:root {
  --bg: #fdf6ec;
  --bg-cream: #fdf6ec;
  --ink: #3B2F2F;
  --maroon: #7A1F2B;
  --maroon-hover: #5f1822;
  --olive: #4A5D3A;
  --gold: #C9A24B;
}

* { box-sizing: border-box; min-width: 0; }

html { overflow-x: hidden; scroll-behavior: smooth;  }

body {
  margin: 0;
  padding-top: var(--nav-h, 90px);
  overflow-x: hidden;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Work Sans', sans-serif;
}

::selection { background: rgba(195, 188, 175, 0.45); color: var(--ink); }

section { border-bottom: 1px solid rgba(59,47,47,0.1); }
section.section--dark, section.stats, section.contact { border-bottom-color: rgba(251,246,239,0.14); }

h1, h2 { font-family: 'Lora', serif; margin: 0; }

a { color: inherit; }

img { max-width: 100%; display: block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  border-radius: 10px;
  font-size: 15px;
  padding: 12px 22px;
  transition: background-color .15s ease, border-color .15s ease, opacity .15s ease;
  border: none;
  cursor: pointer;
}
.btn-primary { background: var(--maroon); color: var(--bg); }
.btn-primary:hover { background: var(--maroon-hover); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid rgba(59,47,47,0.2);
}
.btn-outline:hover { border-color: var(--ink); }
.btn-lg { padding: 16px 28px; font-size: 16px; border-radius: 10px; }
.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-row--center { justify-content: center; }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 243, 241, 0.96);
  border-bottom: 1px solid rgba(59,47,47,0.14);
  box-shadow: 0 2px 12px -6px rgba(59,47,47,0.2);
}

#top, #features, #pricing, #about, #faq, #contact {
  /* Sections carry 88px of their own top padding before the heading;
     without this, scroll-margin-top only accounts for the nav and the
     jump lands with that padding (plus a slice of the previous section)
     showing above the heading instead of the heading itself. */
  scroll-margin-top: calc(var(--nav-h, 90px) - 60px);
}

.nav-inner {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  padding: 10px 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-mark {
  width: 54px; height: 54px; border-radius: 8px;
  object-fit: contain; flex-shrink: 0;
  margin: -8px 0px;
  margin-top: 5px;
}
.logo-text { font-family: 'Lora', serif; font-weight: 700; font-size: 24px; letter-spacing: -0.01em; white-space: nowrap; }
.nav-drawer-brand { display: none; }
.logo-text-accent { color: var(--maroon); }
.logo-q {
  display: inline-block;
  font-family: 'Lora', serif;
  font-weight: 900;
  font-style: italic;
  font-size: 1.6em;
  color: var(--maroon);
  transform: translateY(3px);
  margin-right: 4px;
}

.nav-links { display: flex; align-items: center; grid-column: 2; justify-self: center; gap: 32px; }
.nav-links a {
  text-decoration: none; font-size: 17px; font-weight: 550; opacity: 0.8;
  transition: color .15s ease, opacity .15s ease;
}
.nav-links a:hover { opacity: 1; color: var(--maroon); }
.nav-right { display: flex; align-items: center; grid-column: 3; justify-self: end; gap: 16px; }
.nav-cta {
  white-space: nowrap;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px; height: 34px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 59;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .3s ease, visibility .3s ease;
}
.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.no-scroll { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  max-width: 1350px;
  margin: 0 auto;
  padding: 96px 32px 64px;
  min-height: calc(100vh - 67px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.hero-copy {
  max-width: 680px;
}
.hero-art {
  align-self: stretch;
}
.hero-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transform: scale(1.36) translate(10px, 55px);
}
.eyebrow {
  display: inline-block;
  background: rgba(74,93,58,0.1);
  font-size: 22px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: width .2s ease;
}
.eyebrow-prefix { color: var(--ink); }
.eyebrow-word {
  color: var(--maroon);
  font-family: 'Lora', serif;
  font-weight: 1000;
  font-style: italic;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
.eyebrow-cursor {
  display: inline-block;
  color: var(--maroon);
  font-weight: 700;
  margin-left: 2px;
  animation: eyebrow-blink 0.8s step-end infinite;
}
.eyebrow-cursor::after { content: "."; }
@keyframes eyebrow-blink {
  50% { opacity: 0; }
}
.h1 {
  font-size: 58px;
  line-height: 1.08;
  font-weight: 700;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}
.accent { color: var(--maroon); }
.lede {
  font-size: 19px;
  line-height: 1.6;
  color: rgba(59,47,47,0.75);
  margin: 0 0 32px;
  max-width: 520px;
}

/* ---------- Stats ---------- */
.stats { background: var(--maroon) }
.stats-inner {
  max-with: 1350px;
  margin: 0 auto;
  padding: 36px 16px;
  text-align: center;
}
.stats-label {
  color: var(--bg);
  font-family: 'Lora', serif;
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-num { font-family: 'Lora', serif; font-size: 32px; font-weight: 700; color: var(--gold); }
.stat-label { font-family: 'Work Sans', sans-serif; font-size: 17px; font-weight: 400; color: var(--bg); opacity: 0.75; margin-top: 4px; }

/* ---------- Sections ---------- */
.section { max-width: 1300px; margin: 0 auto; padding: 75px 16px; }
.section--cream { background: var(--bg-cream); max-width: none; }
.section--dark { background: var(--ink); max-width: none; }
.section-inner { max-width: 1350px; margin: 0 auto; }
.section-head { text-align: center; margin-bottom: 56px; }
.h2 { font-size: 38px; font-weight: 700; margin: 0 0 12px; }
.section-inner > .h2 { margin-bottom: 56px; }
.h2--center { text-align: center; }
.h2--light { color: var(--bg); }
.sub { font-size: 17px; color: rgba(59,47,47,0.65); margin: 0; }
.sub--center { text-align: center; margin: 0 0 48px; }
.sub--wide { max-width: 620px; margin: 0 auto; }
.kicker {
  color: var(--olive);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.kicker--gold { color: var(--gold); }

.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 42px; }

.card {
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px -8px rgba(59,47,47,0.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -18px rgba(59,47,47,0.4);
}
.card-media {
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.card-media--maroon {
  background:
    linear-gradient(180deg, rgba(59,47,47,0) 40%, var(--ink) 100%),
    radial-gradient(120% 100% at 20% 15%, rgba(122,31,43,0.55), rgba(59,47,47,0.95) 60%);
}
.card-media--olive {
  background:
    linear-gradient(180deg, rgba(59,47,47,0) 40%, var(--ink) 100%),
    radial-gradient(120% 100% at 20% 15%, rgba(74,93,58,0.55), rgba(59,47,47,0.95) 60%);
}
.card-media--photo {
  background-size: cover;
  background-position: center;
}
.card-media--photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(59,47,47,0) 40%, var(--ink) 100%);
}
.card-media--photo .glyph { position: relative; z-index: 1; }
.glyph {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(251,246,239,0.12);
  border: 1px solid rgba(251,246,239,0.25);
  backdrop-filter: blur(4px);
  color: var(--bg);
  display: grid;
  place-items: center;
}
.card-body { padding: 18px 20px 22px; }
.card-title { font-weight: 800; font-size: 17.5px; margin-bottom: 8px; color: var(--bg); }
.card-desc { font-size: 13.5px; line-height: 1.55; color: rgba(251,246,239,0.65); }

/* How it works */
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--maroon);
  color: var(--bg);
  font-family: 'Lora', serif;
  font-size: 22px;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
}

/* Testimonials */
.testimonial-viewport {
  overflow: hidden;
  margin-top: 40px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.testimonial-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: testimonial-scroll 32s linear infinite;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes testimonial-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.quote-card {
  background: #fff;
  border: 1px solid rgba(59,47,47,0.08);
  border-top: 3px solid var(--maroon);
  border-radius: 16px;
  padding: 28px;
  width: min(380px, 82vw);
  flex-shrink: 0;
  box-shadow: 0 4px 16px -10px rgba(59,47,47,0.15);
}
.stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; }
.quote-text { color: var(--ink); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; opacity: 0.85; }
.quote-name { color: var(--ink); font-weight: 600; font-size: 14.5px; }
.quote-role { color: var(--ink); opacity: 0.55; font-size: 13.5px; }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin: 0 auto 64px;
  max-width: 1350px;
  padding: 0 16px;
}
.price-card {
  background: #fff;
  border-radius: 24px;
  padding: 40px 34px 34px;
  border: 1px solid rgba(59,47,47,0.1);
  box-shadow: 0 4px 16px -10px rgba(59,47,47,0.18);
  position: relative;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.price-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--price-accent, var(--olive));
}
.price-card:hover { transform: translateY(-6px); box-shadow: 0 20px 36px -18px rgba(59,47,47,0.3); }
.price-card--dark {
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 12px 32px -14px rgba(59,47,47,0.45);
  transform: scale(1.04);
}
.price-card--dark:hover { transform: scale(1.04) translateY(-6px); }
.price-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--price-accent, var(--olive));
  margin-bottom: 20px;
}
.badge {
  position: absolute;
  top: 20px; right: 20px;
  background: var(--gold);
  color: var(--ink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 100px;
}
.price-name { font-weight: 700; font-size: 24px; margin-bottom: 8px; }
.price-name--light { color: var(--bg); }
.price-desc { font-size: 15px; color: rgba(59,47,47,0.6); margin-bottom: 24px; }
.price-desc--light { color: rgba(251,246,239,0.7); }
.price-amount { display: flex; align-items: baseline; gap: 8px; margin-bottom: 28px; padding-bottom: 26px; border-bottom: 1px solid rgba(59,47,47,0.08); }
.price-card--dark .price-amount { border-bottom-color: rgba(251,246,239,0.12); }
.price-num { font-family: 'Lora', serif; font-size: 46px; font-weight: 700; }
.price-num--light { color: var(--bg); }
.price-period { font-size: 15px; color: rgba(59,47,47,0.6); }
.price-period--light { color: rgba(251,246,239,0.7); }
.price-onboarding { font-size: 13px; color: rgba(59,47,47,0.55); margin-bottom: 20px; }
.price-onboarding--light { color: rgba(251,246,239,0.6); }
.price-cta {
  display: block; text-align: center; width: 100%; margin-bottom: 28px; padding: 15px; font-size: 15.5px;
  transition: filter .15s ease, transform .15s ease, box-shadow .15s ease;
}
.price-cta:hover { filter: brightness(0.9); transform: translateY(-2px); box-shadow: 0 8px 16px -8px rgba(59,47,47,0.4); }
.price-features { list-style: none; margin: 0; padding: 0; }
.price-features li {
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 14px; font-size: 15px; color: rgba(59,47,47,0.7);
}
.price-features--light li { color: rgba(251,246,239,0.75); }
.check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  background: color-mix(in srgb, var(--price-accent, var(--olive)) 18%, transparent);
}

.compare {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(59,47,47,0.08);
  overflow: hidden;
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 0;
}
.compare-row {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  padding: 16px 24px;
  font-size: 14px;
  border-top: 1px solid rgba(59,47,47,0.06);
}
.compare-row > div:not(:first-child) { text-align: center; color: var(--olive); font-weight: 600; }
.compare-head {
  background: var(--bg-cream);
  font-weight: 700;
  border-top: none;
}
.compare-head > div:not(:first-child) { color: var(--ink); }

/* About */
.about-inner { max-width: 1350px; margin: 0 auto; }
.about-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: start;
}
.about-h2 { font-size: 40px; margin: 0 0 24px; }
.about-p {
  font-size: 17px; line-height: 1.7;
  color: rgba(251,246,239,0.75);
  margin: 0 0 20px;
}
.about-grid { display: flex; flex-direction: column; gap: 20px; }
.about-card {
  background: rgba(251,246,239,0.06);
  border: 1px solid rgba(251,246,239,0.12);
  border-left: 3px solid var(--about-accent, var(--gold));
  border-radius: 14px;
  padding: 22px 24px;
  transition: transform .2s ease, background .2s ease;
}
.about-card:hover { transform: translateX(4px); background: rgba(251,246,239,0.09); }
.about-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  background: var(--about-accent, var(--gold));
  margin-bottom: 14px;
}
.about-card-title { color: var(--gold); font-weight: 700; font-size: 16px; margin-bottom: 8px; }
.about-card-desc { color: rgba(251,246,239,0.7); font-size: 14px; line-height: 1.6; }

@media (max-width: 900px) {
  .about-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* FAQ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
  border-left: 1px dashed rgba(59,47,47,0.2);
}
.faq-category {
  color: var(--olive);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 20px;
}
.faq-item {
  border-bottom: 1px dashed rgba(59,47,47,0.15);
  padding: 18px 0;
}
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: rgba(59,47,47,0.5);
  font-size: 20px;
  font-weight: 300;
  display: grid;
  place-items: center;
}
.faq-item[open] summary::after { content: "\2715"; font-size: 14px; }
.faq-item[open] {
  background: rgba(59,47,47,0.04);
  border-radius: 12px;
  padding: 18px 20px;
  margin: 0 -20px;
}
.faq-answer {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(59,47,47,0.65);
}

/* Contact */
.contact {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  padding: 88px 16px;
  text-align: center;
}
.contact-blob { position: absolute; border-radius: 50%; background: rgba(251,246,239,0.08); }
.contact-blob--1 { top: -120px; left: -120px; width: 340px; height: 340px; }
.contact-blob--2 { top: 60px; left: -40px; width: 220px; height: 220px; background: rgba(251,246,239,0.1); }
.contact-blob--3 { bottom: -140px; right: -100px; width: 360px; height: 360px; }
.contact-blob--4 { bottom: -40px; right: 120px; width: 200px; height: 200px; background: rgba(251,246,239,0.1); }
.contact-inner { position: relative; max-width: 760px; margin: 0 auto; }
.contact-inner .h2 { font-size: 38px; margin: 0 0 18px; }
.contact-p { font-size: 17px; line-height: 1.6; color: rgba(251,246,239,0.85); margin: 0 0 36px; }
.contact-btn-light {
  background: var(--bg); color: var(--maroon);
  padding: 14px 30px; font-size: 19px; font-weight: 700;
}
.contact-btn-light:hover { background: #f0e6d4; }
.contact-btn-outline {
  background: transparent; color: var(--bg);
  padding: 14px 30px; font-size: 15.5px; font-weight: 700;
  border: 1.5px solid rgba(251,246,239,0.6);
}
.contact-btn-outline:hover { border-color: var(--bg); }

/* Footer */
.footer { background: #1f1e1e; padding: 56px 16px 32px; }
.footer-inner { max-width: 1350px; margin: 0 auto; }
.footer-cols {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(19, 18, 18, 0.12);
  margin-bottom: 24px;
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo-mark { width: 40px; height: 40px; border-radius: 7px; object-fit: contain; }
.footer-logo span { font-family: 'Lora', serif; font-weight: 700; font-size: 19px; color: var(--bg); }
.footer-logo .logo-q { color: var(--maroon); font-size: 2em; }
.footer-desc {
  color: rgba(251,246,239,0.6); font-size: 15.5px; line-height: 1.6;
  max-width: 280px; margin-bottom: 18px;
}
.footer-contact { color: rgba(251,246,239,0.65); font-size: 15px; margin-bottom: 6px; }
.footer-contact strong { color: var(--bg); }
.socials { display: flex; align-items: center; gap: 1.25rem; margin-top: 18px; }

.socials a {
  color: var(--brand);
  font-size: 1.5rem;
  line-height: 1;
  transition: transform .2s ease;
}

.socials a:hover { transform: translateY(-2px); }

.socials a:focus-visible {
  outline: 2px solid #C9A961;
  outline-offset: 4px;
  border-radius: 4px;
}
.footer-heading { color: var(--bg-cream); font-size: 15px; font-weight: 700; margin-bottom: 14px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(251,246,239,0.65); text-decoration: none; font-size: 15.5px; }
.footer-links a:hover { color: var(--bg); }
.footer-card { background: rgba(251,246,239,0.06); border-radius: 14px; padding: 24px; }
.footer-card-title { color: var(--bg); font-weight: 700; font-size: 18px; margin-bottom: 12px; }
.footer-card-desc { color: rgba(251,246,239,0.7); font-size: 15.5px; line-height: 1.6; margin-bottom: 18px; }
.footer-bottom {
  max-width: 1350px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom div { color: rgba(251,246,239,0.45); font-size: 14.5px; }

/* ---------- Responsive ---------- */

/* Tablet landscape / small laptop (e.g. iPad landscape ~1024px) */
@media (min-width: 901px) and (max-width: 1100px) {
  .hero { gap: 32px; padding: 88px 24px 56px; }
  .h1 { font-size: 48px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 20px; padding: 0 24px; }
  .about-layout { gap: 40px; }
  .stats-grid { gap: 16px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding-top: 56px; min-height: auto; }
  .hero-copy { max-width: none; }
  /* The desktop zoom/crop transform is tuned for the 2-column layout; at
     single-column widths the same scale renders far too large for its box
     (worst around iPad-portrait widths), pushing the image past the edges
     of the screen and into the section below. Let it render at its natural
     contained size instead so the full image stays visible. */
  .hero-img { transform: none; }
  .h1 { font-size: 42px; }
  .eyebrow { white-space: normal; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .compare-row { grid-template-columns: 1.4fr repeat(3, 1fr); padding: 14px 16px; font-size: 12.5px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }

  .section { padding: 56px 16px; }
  .section-head { margin-bottom: 36px; }
  .h2 { font-size: 30px; }
  .about-h2 { font-size: 30px; }
  .contact-inner .h2 { font-size: 30px; }
  .legal-header h1 { font-size: 30px; }
  .about-layout { gap: 32px; }
  .about-p { font-size: 16px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(78vw, 320px);
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 90px 24px 24px;
    box-shadow: -8px 0 30px -10px rgba(59,47,47,0.3);
    transform: translateX(100%);
    transition: transform .3s ease;
    overflow-y: auto;
    z-index: 60;
  }
  .nav-links.is-open { transform: translateX(0); }
  .nav-drawer-brand {
    display: flex;
    align-items: center;
    position: absolute;
    top: 0;
    left: 24px;
    height: 67px;
  }
  .nav-links a {
    padding: 14px 0;
    width: 100%;
    font-weight: 600;
    border-bottom: 1px solid rgba(59,47,47,0.1);
  }
  .nav-cta {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    margin-top: 20px;
    padding: 14px;
  }
  .nav-toggle { display: flex; position: relative; z-index: 61; }
}

@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 32px; }
  .footer-desc { max-width: none; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 6px; }
  .compare-row { grid-template-columns: 1.2fr repeat(3, 1fr); font-size: 11px; }

  .h1 { font-size: 32px; }
  .lede { font-size: 16px; }
  .eyebrow { font-size: 16px; padding: 6px 14px; }
  .hero { padding-left: 20px; padding-right: 20px; }
  .h2 { font-size: 26px; }
  .about-h2 { font-size: 26px; }
  .contact-inner .h2 { font-size: 26px; }
  .legal-header h1 { font-size: 26px; }
  .stats-label { font-size: 24px; margin-bottom: 28px; }
  .stat-num { font-size: 26px; }
  .price-card { padding: 30px 24px 26px; }
  .price-num { font-size: 38px; }
  .quote-card { padding: 22px; }
  .section { padding: 44px 16px; }
  .legal-wrap { padding: 64px 16px 72px; }
}

/* Video Modal */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-modal.is-open { display: flex; }
.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(59,47,47,0.75);
  backdrop-filter: blur(4px);
}
.video-modal-dialog {
  position: relative;
  width: 100%;
  max-width: 900px;
  animation: video-modal-in .25s ease;
}
@keyframes video-modal-in {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.video-modal-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
}
.video-modal-frame video { width: 100%; height: 100%; object-fit: cover; }
.video-modal-close {
  position: absolute;
  top: -46px; right: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(251,246,239,0.5);
  background: transparent;
  color: var(--bg);
  font-size: 15px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .15s ease, border-color .15s ease;
}
.video-modal-close:hover { background: var(--maroon); border-color: var(--maroon); }

@media (max-width: 560px) {
  .video-modal-close { top: -42px; right: 0; }
}

/* ---------- Legal pages (Privacy Policy / Terms of Service) ---------- */
.legal-wrap { max-width: 780px; margin: 0 auto; padding: 88px 16px 100px; }
.legal-header { margin-bottom: 40px; }
.legal-header .kicker { margin-bottom: 12px; }
.legal-header h1 {
  font-family: 'Lora', serif;
  font-size: 40px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #7A1F2B;
}
.legal-updated { font-size: 14px; color: rgba(59,47,47,0.55); }

.legal-body { font-size: 17px; line-height: 1.75; color: var(--ink); }
.legal-body > * + * { margin-top: 1.2em; }
.legal-body h2 {
  font-family: 'Lora', serif;
  font-size: 23px;
  font-weight: 700;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
}
.legal-body p { margin: 1.1em 0; }
.legal-body ul, .legal-body ol { padding-left: 1.4em; margin: 1.1em 0; }
.legal-body li + li { margin-top: 0.5em; }
.legal-body li::marker { color: var(--maroon); }
.legal-body a { color: var(--maroon); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--maroon-hover); }
.legal-body strong { color: var(--ink); }
