/* ==========================================================
   Charlotte Powell VA — stylesheet
   Palette: navy / burgundy / mustard / cream
   ========================================================== */

:root {
  --navy: #1a2332;
  --navy-2: #243044;
  --burgundy: #7a2e2a;
  --burgundy-2: #9b3a35;
  --mustard: #c89943;
  --mustard-2: #d9ab55;
  --cream: #f7f1e8;
  --cream-2: #ede4d3;
  --paper: #fbf8f3;
  --ink: #1f1a14;
  --ink-soft: #4a4137;
  --ink-mute: #7a6f60;
  --rule: #e3d9c5;

  --serif: 'Newsreader', Georgia, 'Times New Roman', serif;
  --sans: 'Manrope', system-ui, -apple-system, sans-serif;
  --hand: 'Caveat', cursive;

  --container: 1200px;
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 24px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ====== Type primitives ====== */
.eyebrow,
.section-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.section-eyebrow--light { color: var(--mustard-2); }
.eyebrow__dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mustard);
  display: inline-block;
}
.section-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  color: var(--navy);
  text-wrap: balance;
}
.section-title--light { color: var(--cream); }
.section-sub {
  max-width: 600px;
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.lede {
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 18px;
  font-weight: 400;
}
.handwritten {
  font-family: var(--hand);
  font-weight: 600;
  font-size: 1.5em;
  color: var(--burgundy);
  line-height: 1;
}
.underline-script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  display: inline-block;
}
.underline-script::after {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: -6px;
  height: 10px;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q50 2 100 6 T198 4' stroke='%23c89943' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}
.underline-script--light::after {
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 12' preserveAspectRatio='none'><path d='M2 8 Q50 2 100 6 T198 4' stroke='%23d9ab55' stroke-width='2.5' fill='none' stroke-linecap='round'/></svg>") no-repeat;
  background-size: 100% 100%;
}
.link-arrow {
  display: inline-block;
  font-weight: 600;
  color: var(--burgundy);
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
  transition: gap 0.2s;
}
.link-arrow:hover { text-decoration: none; color: var(--mustard); }

/* ====== Buttons ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s, color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn--small { padding: 9px 16px; font-size: 13px; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--burgundy);
  color: var(--cream);
}
.btn--primary:hover { background: var(--burgundy-2); box-shadow: 0 8px 20px -8px rgba(122,46,42,0.5); }
.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); }
.btn--mustard {
  background: var(--mustard);
  color: var(--navy);
  border-color: var(--mustard);
}
.btn--mustard:hover { background: var(--mustard-2); box-shadow: 0 8px 20px -8px rgba(200,153,67,0.5); }

/* ====== Nav ====== */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 28px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand {
  display: inline-flex;
  align-items: center;
  color: var(--navy);
  text-decoration: none;
}
.nav__brand:hover { text-decoration: none; }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  line-height: 1;
}
.wordmark__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.015em;
  color: var(--navy);
}
.wordmark__rule {
  width: 1px;
  height: 22px;
  background: var(--burgundy);
  display: inline-block;
  flex-shrink: 0;
}
.wordmark__sub {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
}
.wordmark--footer .wordmark__name { font-size: 19px; }
.wordmark--footer .wordmark__sub { font-size: 10px; }
.nav__links {
  display: flex;
  gap: 32px;
}
.nav__links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
  position: relative;
}
.nav__links a:hover {
  color: var(--navy);
  text-decoration: none;
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%;
  bottom: -4px; height: 1.5px;
  background: var(--mustard);
  transition: right 0.25s;
}
.nav__links a:hover::after { right: 0; }
.nav__cta { flex-shrink: 0; }
.nav__menu-btn {
  display: none;
  background: none;
  border: 0;
  width: 36px; height: 36px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav__menu-btn span {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
}

/* ====== Hero ====== */
.hero {
  position: relative;
  padding: 80px 0 0;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 100px; right: -180px;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,67,0.18), transparent 70%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 60px;
}
.hero__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--navy);
  margin: 0 0 24px;
}
.hero__title-script {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--burgundy);
  position: relative;
  display: inline-block;
  padding: 0 6px;
}
.hero__title-script::before {
  content: '';
  position: absolute;
  inset: 8% -8%;
  border: 2px solid var(--mustard);
  border-radius: 50%;
  transform: rotate(-3deg);
  opacity: 0.7;
  pointer-events: none;
}
.hero__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0 0 24px;
  max-width: 480px;
}
.hero__points {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  gap: 8px;
}
.hero__points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  font-weight: 500;
}
.check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.hero__handwritten {
  margin: 0;
  font-size: 22px;
  color: var(--burgundy);
}

.hero__media {
  position: relative;
}
.hero__photo {
  position: relative;
  border-radius: var(--r-lg);
  overflow: visible;
  aspect-ratio: 4/5;
  max-width: 480px;
  margin-left: auto;
  transform: rotate(1.5deg);
}
.hero__photo-img {
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 30px 60px -25px rgba(26,35,50,0.35), 0 0 0 8px var(--paper), 0 0 0 9px var(--rule);
}
.hero__photo-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.placeholder-photo {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 8px;
  background:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(26,35,50,0.04) 14px 28px),
    var(--cream-2);
  color: var(--ink-mute);
  text-align: center;
  padding: 24px;
}
.placeholder-photo__label {
  font-family: 'Courier New', monospace;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.placeholder-photo__hint {
  font-family: 'Courier New', monospace;
  font-size: 11px;
  color: var(--ink-mute);
  opacity: 0.8;
}
.hero__photo-tag {
  position: absolute;
  left: 16px; bottom: 16px;
  background: var(--navy);
  color: var(--cream);
  padding: 9px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 10px 20px -10px rgba(0,0,0,0.4);
  transform: rotate(-1.5deg);
}
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mustard);
  display: inline-block;
}
.dot--live {
  background: #6fcf97;
  box-shadow: 0 0 0 0 rgba(111,207,151,0.7);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(111,207,151,0.7); }
  70% { box-shadow: 0 0 0 8px rgba(111,207,151,0); }
  100% { box-shadow: 0 0 0 0 rgba(111,207,151,0); }
}
.hero__photo-stamp {
  position: absolute;
  top: -18px; right: -10px;
  background: var(--mustard);
  color: var(--navy);
  width: 86px; height: 86px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(-12deg);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.3);
  font-size: 26px;
  z-index: 2;
}
.hero__arrow {
  position: absolute;
  bottom: -30px; left: -40px;
  width: 100px; height: 70px;
  color: var(--burgundy);
  transform: rotate(-8deg);
  opacity: 0.5;
}

/* hero marquee */
.hero__marquee {
  background: var(--navy);
  color: var(--cream);
  border-top: 1px solid var(--navy-2);
  border-bottom: 1px solid var(--navy-2);
  padding: 18px 0;
  overflow: hidden;
}
.marquee {
  width: 100%;
  overflow: hidden;
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  white-space: nowrap;
  animation: scroll 40s linear infinite;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
}
.marquee__star { color: var(--mustard); font-style: normal; }
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ====== Section heads (centered) ====== */
.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.section-head--light .section-eyebrow { color: var(--mustard-2); }
.section-head .section-sub { margin-left: auto; margin-right: auto; }

/* ====== About ====== */
.about {
  padding: 100px 0;
  background: var(--cream);
  border-top: 1px solid var(--rule);
}
.about__inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p { color: var(--ink-soft); }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.stat {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 30px 26px;
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.stat--accent {
  background: var(--mustard);
  border-color: var(--mustard);
  color: var(--navy);
}
.stat--dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.stat__num {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.stat--accent .stat__num,
.stat--dark .stat__num {
  color: inherit;
}
.stat__num--small {
  font-size: 44px;
  letter-spacing: 0.02em;
}
.stat__plus {
  font-size: 0.6em;
  color: var(--burgundy);
  font-weight: 400;
}
.stat--accent .stat__plus { color: var(--burgundy); }
.stat--dark .stat__plus { color: var(--mustard); }
.stat__label {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-soft);
  margin-top: 8px;
  line-height: 1.4;
}
.stat--accent .stat__label { color: var(--navy); opacity: 0.85; }
.stat--dark .stat__label { color: var(--cream); opacity: 0.8; }

/* ====== Services ====== */
.services {
  padding: 110px 0;
  background: var(--paper);
}
.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.service {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 36px 32px 32px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -20px rgba(26,35,50,0.18);
}
.service--featured {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.service__num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--burgundy);
  margin-bottom: 18px;
}
.service--featured .service__num { color: var(--mustard); }
.service__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  margin: 0 0 12px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.service--featured .service__title { color: var(--cream); }
.service__desc {
  font-size: 15.5px;
  color: var(--ink-soft);
  margin: 0 0 22px;
  line-height: 1.55;
}
.service--featured .service__desc { color: rgba(247,241,232,0.8); }
.service__list {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 8px;
  font-size: 14.5px;
}
.service__list li {
  position: relative;
  padding-left: 20px;
  color: var(--ink-soft);
}
.service__list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--burgundy);
  font-weight: 700;
  font-size: 13px;
}
.service--featured .service__list li { color: rgba(247,241,232,0.85); }
.service--featured .service__list li::before { color: var(--mustard); }
.service__badge {
  position: absolute;
  top: -14px; right: 28px;
  background: var(--mustard);
  color: var(--navy);
  padding: 4px 14px;
  border-radius: 999px;
  font-size: 18px;
  transform: rotate(3deg);
}
.services__footnote {
  text-align: center;
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 15px;
}

/* ====== Process ====== */
.process {
  padding: 110px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,153,67,0.12), transparent 70%);
  pointer-events: none;
}
.process__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: steps;
  position: relative;
  z-index: 1;
}
.process__step {
  position: relative;
}
.process__step::after {
  content: '→';
  position: absolute;
  top: 12px;
  right: -16px;
  color: var(--mustard);
  font-size: 22px;
  opacity: 0.5;
}
.process__step:last-child::after { display: none; }
.process__step-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 60px;
  color: var(--mustard);
  line-height: 1;
  margin-bottom: 18px;
}
.process__step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin: 0 0 12px;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.process__step p {
  font-size: 15px;
  color: rgba(247,241,232,0.75);
  line-height: 1.55;
  margin: 0;
}

/* ====== Pricing ====== */
.pricing {
  padding: 110px 0;
  background: var(--cream);
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 36px 30px 32px;
  display: flex;
  flex-direction: column;
}
.plan--featured {
  background: var(--burgundy);
  color: var(--cream);
  border-color: var(--burgundy);
  transform: translateY(-12px);
  box-shadow: 0 30px 60px -25px rgba(122,46,42,0.4);
}
.plan__ribbon {
  position: absolute;
  top: -22px;
  right: 24px;
  color: var(--mustard);
  font-size: 22px;
  transform: rotate(-3deg);
}
.plan__name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 24px;
  margin: 0 0 16px;
  color: var(--navy);
}
.plan--featured .plan__name { color: var(--cream); }
.plan__price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}
.plan__from {
  font-size: 13px;
  color: var(--ink-mute);
  font-weight: 500;
  margin-right: 6px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.plan--featured .plan__from { color: rgba(247,241,232,0.7); }
.plan__currency {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 28px;
  color: var(--navy);
}
.plan--featured .plan__currency { color: var(--mustard); }
.plan__amount {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--navy);
}
.plan--featured .plan__amount { color: var(--cream); }
.plan__per {
  font-size: 16px;
  color: var(--ink-mute);
  font-weight: 500;
}
.plan--featured .plan__per { color: rgba(247,241,232,0.7); }
.plan__desc {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 16px 0 22px;
  line-height: 1.55;
  min-height: 64px;
}
.plan--featured .plan__desc { color: rgba(247,241,232,0.8); }
.plan__list {
  list-style: none;
  padding: 0; margin: 0 0 28px;
  display: grid;
  gap: 9px;
  font-size: 14px;
  flex-grow: 1;
}
.plan__list li {
  position: relative;
  padding-left: 22px;
  color: var(--ink-soft);
}
.plan__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 1.5px;
  background: var(--mustard);
}
.plan--featured .plan__list li { color: rgba(247,241,232,0.85); }
.plan--featured .btn--primary {
  background: var(--mustard);
  color: var(--navy);
}
.plan--featured .btn--primary:hover { background: var(--mustard-2); }

/* ====== Testimonials ====== */
.testimonials {
  padding: 110px 0;
  background: var(--paper);
}
.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}
.quote {
  background: var(--cream);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 32px 28px;
  margin: 0;
  position: relative;
}
.quote--accent {
  background: var(--mustard);
  border-color: var(--mustard);
}
.quote__mark {
  font-family: var(--serif);
  font-size: 80px;
  line-height: 0.5;
  color: var(--burgundy);
  margin-bottom: 8px;
  opacity: 0.4;
}
.quote--accent .quote__mark { color: var(--burgundy); opacity: 0.6; }
.quote blockquote {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.5;
  color: var(--navy);
  margin: 0 0 22px;
  font-weight: 400;
  letter-spacing: -0.005em;
}
.quote figcaption {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 13.5px;
}
.quote figcaption strong {
  color: var(--navy);
  font-weight: 600;
}
.quote figcaption span {
  color: var(--ink-mute);
}
.quote--accent figcaption span { color: rgba(26,35,50,0.7); }

.testimonials__trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 28px;
  background: var(--cream);
  border: 1px dashed var(--burgundy);
  border-radius: var(--r-md);
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 14px;
}
.trust-badge__icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--burgundy);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
}
.trust-badge strong {
  display: block;
  font-size: 14px;
  color: var(--navy);
  font-weight: 600;
}
.trust-badge span {
  display: block;
  font-size: 12.5px;
  color: var(--ink-mute);
}

/* ====== FAQ ====== */
.faq {
  padding: 110px 0;
  background: var(--cream);
}
.faq__inner {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 80px;
  align-items: start;
}
.faq__head { position: sticky; top: 90px; }
.faq__list {
  display: grid;
  gap: 12px;
}
.faq__item {
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.faq__item[open] {
  border-color: var(--burgundy);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 300;
  font-size: 26px;
  color: var(--burgundy);
  line-height: 1;
  transition: transform 0.25s;
  flex-shrink: 0;
}
.faq__item[open] summary::after {
  transform: rotate(45deg);
}
.faq__answer p {
  font-size: 15.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 14px 0 4px;
}

/* ====== Contact ====== */
.contact {
  padding: 110px 0;
  background: var(--navy);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.contact::after {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122,46,42,0.4), transparent 70%);
  pointer-events: none;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.contact__lede {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.55;
  color: rgba(247,241,232,0.85);
  margin: 0 0 32px;
  max-width: 460px;
}
.contact__direct {
  list-style: none;
  padding: 0; margin: 0 0 32px;
  display: grid;
  gap: 20px;
  border-top: 1px solid rgba(247,241,232,0.15);
  padding-top: 28px;
}
.contact__direct li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  align-items: baseline;
}
.contact__direct-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--mustard);
  font-weight: 600;
}
.contact__direct a {
  color: var(--cream);
  border-bottom: 1px dashed rgba(247,241,232,0.3);
  font-weight: 500;
}
.contact__direct a:hover { color: var(--mustard); border-color: var(--mustard); text-decoration: none; }
.contact__direct li > span:not(.contact__direct-label) {
  color: rgba(247,241,232,0.85);
}
.contact__sign {
  font-size: 32px;
  color: var(--mustard);
  margin: 16px 0 0;
}

.contact__form {
  background: var(--paper);
  border-radius: var(--r-lg);
  padding: 36px;
  color: var(--ink);
  display: grid;
  gap: 18px;
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.4);
}
.field {
  display: grid;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122,46,42,0.12);
}
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.contact__form-note {
  text-align: center;
  font-size: 13px;
  color: var(--ink-mute);
  margin: 0;
}
.hp { position: absolute; left: -9999px; }

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success__check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--mustard);
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 12px;
}
.form-success p {
  color: var(--ink-soft);
  font-size: 16px;
}
.form-success .handwritten {
  display: block;
  margin-top: 16px;
  font-size: 26px;
}

/* ====== Footer ====== */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--rule);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}
.footer__tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 14px;
  color: var(--ink-mute);
}
.footer__links {
  display: flex;
  gap: 28px;
}
.footer__links a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 500;
}
.footer__small {
  font-size: 12.5px;
  color: var(--ink-mute);
  text-align: right;
  line-height: 1.6;
  margin: 0;
}

/* ====== Responsive ====== */
@media (max-width: 980px) {
  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--paper);
    flex-direction: column;
    padding: 18px 28px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--rule);
    box-shadow: 0 10px 24px -10px rgba(0,0,0,0.1);
  }
  .nav__links--open { display: flex; }
  .nav__menu-btn { display: flex; }
  .nav__cta { display: none; }

  .hero { padding-top: 50px; }
  .hero__inner { grid-template-columns: 1fr; gap: 50px; }
  .hero__photo { margin: 0 auto; max-width: 380px; }
  .hero__arrow { display: none; }

  .about__inner { grid-template-columns: 1fr; gap: 50px; }
  .services__grid { grid-template-columns: 1fr; }
  .process__steps { grid-template-columns: 1fr 1fr; gap: 40px 24px; }
  .process__step::after { display: none; }
  .pricing__grid { grid-template-columns: 1fr; }
  .plan--featured { transform: none; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__trust { grid-template-columns: 1fr 1fr; }
  .faq__inner { grid-template-columns: 1fr; gap: 40px; }
  .faq__head { position: static; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__small { text-align: center; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .wordmark__rule, .wordmark__sub { display: none; }
  .wordmark__name { font-size: 18px; }
  .hero { padding-top: 40px; }
  .hero__title { font-size: 56px; }
  .about, .services, .process, .pricing, .testimonials, .faq, .contact { padding: 70px 0; }
  .about__stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .stat { padding: 22px 18px; min-height: 140px; }
  .stat__num { font-size: 48px; }
  .process__steps { grid-template-columns: 1fr; }
  .testimonials__trust { grid-template-columns: 1fr; }
  .contact__form { padding: 26px; }
  .contact__direct li { grid-template-columns: 1fr; gap: 4px; }
}

/* prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
