@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700&family=Source+Serif+4:ital,opsz,wght@0,8..60,300;0,8..60,400;0,8..60,600;1,8..60,300;1,8..60,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --coal: #1a1a18;
  --ember: #c8440a;
  --ember-light: #e05a1a;
  --cream: #f7f3ec;
  --warm-white: #fdfaf5;
  --stone: #8c7b6b;
  --stone-light: #c4b8a8;
  --text: #2d2a26;
  --text-muted: #6b6259;
  --border: #e8e0d4;
  --col-width: 680px;
  --col-padding: 24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 18px; }

body {
  background: var(--warm-white);
  color: var(--text);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 300;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--ember); text-decoration: none; transition: color .2s; }
a:hover { color: var(--ember-light); }

img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 0 var(--col-padding);
}

.container--wide {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 var(--col-padding);
}

/* ── HERO ── */
.hero {
  background: var(--coal);
  color: var(--cream);
  padding: 72px 0 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(200,68,10,.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero__kicker {
  font-family: 'DM Sans', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 20px;
}

.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 24px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.hero__title em {
  font-style: italic;
  color: var(--ember);
}

.hero__subtitle {
  font-size: 1.05rem;
  color: var(--stone-light);
  max-width: 520px;
  margin: 0 auto 36px;
  font-weight: 300;
}

.hero__img-wrap {
  margin: 40px auto 0;
  max-width: 640px;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.5);
}

.hero__img-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

/* ── ARTICLE BODY ── */
.article {
  padding: 64px 0 80px;
}

.article p {
  margin-bottom: 1.6em;
  font-size: 1rem;
  line-height: 1.85;
}

.article h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--coal);
  margin: 2.4em 0 .8em;
}

.article h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--coal);
  margin: 2em 0 .6em;
}

.article strong {
  font-weight: 600;
  color: var(--coal);
}

.article em {
  font-style: italic;
}

.article ul, .article ol {
  padding-left: 1.4em;
  margin-bottom: 1.6em;
}

.article li {
  margin-bottom: .5em;
  line-height: 1.75;
}

/* ── PULL QUOTE ── */
.pull-quote {
  border-left: 4px solid var(--ember);
  padding: 20px 28px;
  margin: 2.4em 0;
  background: var(--cream);
  border-radius: 0 4px 4px 0;
}

.pull-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: var(--coal);
  margin: 0;
  line-height: 1.6;
}

/* ── INLINE IMAGE ── */
.inline-img {
  margin: 2.4em -24px;
  border-radius: 4px;
  overflow: hidden;
}

.inline-img img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.inline-img figcaption {
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  color: var(--text-muted);
  padding: 10px 24px 0;
  font-style: italic;
}

/* ── SPEC TABLE ── */
.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2em 0;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
}

.spec-table tr {
  border-bottom: 1px solid var(--border);
}

.spec-table tr:last-child { border-bottom: none; }

.spec-table td {
  padding: 12px 8px;
  vertical-align: top;
}

.spec-table td:first-child {
  color: var(--text-muted);
  width: 45%;
  font-weight: 500;
}

.spec-table td:last-child {
  font-weight: 600;
  color: var(--coal);
}

/* ── CTA BLOCK ── */
.cta-block {
  background: var(--coal);
  color: #fff;
  padding: 40px 36px;
  border-radius: 6px;
  margin: 2.8em 0;
  text-align: center;
}

.cta-block--ember {
  background: linear-gradient(135deg, var(--ember) 0%, #a33208 100%);
}

.cta-block__label {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  margin-bottom: 12px;
}

.cta-block__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}

.cta-block__sub {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
  font-family: 'DM Sans', sans-serif;
}

.cta-block__price {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 20px;
}

.cta-block__price span {
  font-size: 1rem;
  font-weight: 400;
  opacity: .7;
  font-family: 'DM Sans', sans-serif;
}

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  color: inherit;
}

.btn--primary {
  background: var(--ember);
  color: #fff;
}

.btn--primary:hover { background: var(--ember-light); color: #fff; }

.btn--white {
  background: #fff;
  color: var(--coal);
}

.btn--white:hover { background: var(--cream); color: var(--coal); }

.btn--outline {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}

.btn--outline:hover { background: rgba(255,255,255,.1); color: #fff; }

/* ── REVIEW CARDS ── */
.reviews {
  margin: 2.8em 0;
}

.reviews__title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 1.2em;
}

.review-card {
  background: var(--cream);
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 16px;
  border-left: 3px solid var(--ember);
}

.review-card__stars {
  color: var(--ember);
  font-size: .9rem;
  margin-bottom: 10px;
  letter-spacing: .05em;
}

.review-card__text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text);
  margin-bottom: 12px;
  font-style: italic;
}

.review-card__author {
  font-family: 'DM Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ── FEATURE GRID ── */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 2em 0;
}

.feature-item {
  background: var(--cream);
  border-radius: 6px;
  padding: 20px 22px;
}

.feature-item__icon {
  font-size: 1.4rem;
  color: var(--ember);
  margin-bottom: 10px;
}

.feature-item__title {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  color: var(--coal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.feature-item__text {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.6;
  font-family: 'DM Sans', sans-serif;
}

/* ── DIVIDER ── */
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2.4em 0;
}

.divider--ornament {
  text-align: center;
  border: none;
  margin: 2.4em 0;
  position: relative;
}

.divider--ornament::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}

.divider--ornament span {
  position: relative;
  background: var(--warm-white);
  padding: 0 16px;
  color: var(--ember);
  font-size: 1.1rem;
}

/* ── BADGE ── */
.badge {
  display: inline-block;
  background: var(--ember);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

/* ── STICKY CTA BAR ── */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--coal);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 100;
  box-shadow: 0 -4px 24px rgba(0,0,0,.3);
  transform: translateY(100%);
  transition: transform .35s ease;
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar__text {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  font-weight: 500;
}

.sticky-bar__text strong {
  color: var(--ember);
  font-weight: 700;
}

/* ── FOOTER ── */
footer {
  background: var(--coal);
  color: rgba(255,255,255,.6);
  padding: 56px 0 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  margin-bottom: 32px;
  list-style: none;
}

.footer-nav a {
  color: rgba(255,255,255,.55);
  font-size: .8rem;
  transition: color .2s;
}

.footer-nav a:hover { color: #fff; }

.footer-company {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  margin-bottom: 20px;
  line-height: 1.9;
}

.footer-company strong {
  color: rgba(255,255,255,.85);
  font-weight: 600;
}

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 20px;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
  line-height: 1.7;
}

/* ── LEGACY PAGES ── */
.page-hero {
  background: var(--coal);
  color: #fff;
  padding: 56px 0 48px;
  text-align: center;
}

.page-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
}

.page-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  color: rgba(255,255,255,.5);
  margin-top: 10px;
}

.legal-body {
  padding: 56px 0 80px;
}

.legal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--coal);
  margin: 2em 0 .6em;
}

.legal-body p, .legal-body li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 1em;
}

.legal-body ul { padding-left: 1.4em; }

/* ── CONTACT ── */
.contact-form {
  background: var(--cream);
  border-radius: 6px;
  padding: 40px;
  margin-top: 2em;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--coal);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: #fff;
  transition: border-color .2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--ember);
}

.form-group textarea { min-height: 120px; resize: vertical; }

/* ── ABOUT ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  margin: 2.4em 0;
}

.about-grid img {
  border-radius: 4px;
  aspect-ratio: 4/3;
  object-fit: cover;
  width: 100%;
}

/* ── TABOOLA ── */
.taboola-hero {
  background: linear-gradient(135deg, #0d1117 0%, #1a2332 100%);
  color: #fff;
  padding: 64px 0 56px;
  text-align: center;
}

.taboola-hero__logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: #00b4d8;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.taboola-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 16px;
}

.taboola-hero__sub {
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: rgba(255,255,255,.6);
  max-width: 520px;
  margin: 0 auto;
}

.taboola-section {
  padding: 56px 0;
}

.taboola-section:nth-child(even) {
  background: var(--cream);
}

.taboola-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--coal);
  margin-bottom: 1em;
}

.taboola-section p, .taboola-section li {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: .8em;
}

.taboola-section ul { padding-left: 1.4em; }

.taboola-section h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--coal);
  margin: 1.4em 0 .5em;
  text-transform: uppercase;
  letter-spacing: .06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 720px) {
  :root { --col-padding: 20px; }
  html { font-size: 17px; }

  .inline-img { margin: 2em -20px; }

  .feature-grid { grid-template-columns: 1fr; }

  .about-grid { grid-template-columns: 1fr; }

  .cta-block { padding: 32px 24px; }

  .contact-form { padding: 28px 20px; }

  .sticky-bar { flex-direction: column; text-align: center; gap: 10px; padding: 16px; }

  .hero { padding: 52px 0 48px; }

  .hero__img-wrap { margin-top: 28px; }
}

@media (max-width: 480px) {
  .btn { padding: 13px 24px; font-size: .85rem; }
  .cta-block__price { font-size: 1.6rem; }
}
