:root {
  --bg: rgb(234, 232, 225);
  --surface: rgb(249, 247, 246);
  --surface-2: rgb(244, 242, 239);
  --ink: rgb(20, 18, 17);
  --ink-muted: rgba(20, 18, 17, 0.72);
  --olive: rgb(130, 124, 106);
  --accent: rgb(183, 110, 58);
  --accent-soft: rgba(183, 110, 58, 0.12);

  --on-dark: rgb(244, 242, 239);
  --on-dark-muted: rgba(244, 242, 239, 0.66);

  --peach-soft: rgb(250, 228, 208);
  --peach-deep: rgb(194, 137, 81);
  --blue-soft: rgb(220, 228, 234);
  --blue-mid: rgb(204, 211, 217);
  --blue-deep: rgb(148, 161, 170);
  --blue-accent: rgb(64, 104, 138);
  --blue-accent-soft: rgba(64, 104, 138, 0.14);
  --lavender-soft: rgb(229, 219, 235);
  --lavender-deep: rgb(152, 125, 165);

  --maxw: 1280px;
  --radius: 28px;
  --radius-sm: 16px;
  --shadow-soft: 0 18px 50px -24px rgba(20, 18, 17, 0.28);
  --shadow-card: 0 26px 70px -34px rgba(20, 18, 17, 0.40);
  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; -webkit-font-smoothing: antialiased; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  position: relative;
}
/* Subtle film grain over the whole page for warmth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}
.btn:focus-visible, .faq-item summary:focus-visible { outline-offset: 4px; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(234, 232, 225, 0.72);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(234, 232, 225, 0.9);
  border-bottom-color: rgba(20, 18, 17, 0.06);
  box-shadow: 0 8px 30px -18px rgba(20, 18, 17, 0.35);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}
.brand { font-family: var(--font-serif); font-size: 1.15rem; letter-spacing: -0.01em; }
.nav-links { display: flex; gap: 32px; list-style: none; margin: 0; padding: 0; }
.nav-links a { color: var(--ink-muted); font-size: 0.95rem; transition: color 0.2s; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { padding: 9px 18px; font-size: 0.9rem; white-space: nowrap; }

@media (max-width: 760px) {
  .nav-links { display: none; }
}
@media (max-width: 480px) {
  .nav { gap: 12px; }
  .brand { font-size: 1rem; white-space: nowrap; }
  .nav-cta { padding: 8px 14px; font-size: 0.82rem; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 0.98rem;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-dark { background: var(--ink); color: var(--surface); }
.btn-dark:hover { background: #2a2826; box-shadow: 0 14px 30px -14px rgba(20, 18, 17, 0.6); }
.btn-ghost { background: transparent; color: var(--ink); border-color: rgba(20, 18, 17, 0.18); }
.btn-ghost:hover { background: rgba(20, 18, 17, 0.04); }
.btn-light { background: var(--on-dark); color: var(--ink); }
.btn-light:hover { background: #fff; box-shadow: 0 14px 30px -14px rgba(0, 0, 0, 0.5); }
.btn-ghost-light { background: transparent; color: var(--on-dark); border-color: rgba(244, 242, 239, 0.28); }
.btn-ghost-light:hover { background: rgba(244, 242, 239, 0.08); }
.btn-arrow::after {
  content: "\2192";
  margin-left: 0.55em;
  transition: transform 0.2s ease;
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(56px, 8vw, 104px) 0 clamp(48px, 6vw, 80px);
  background:
    radial-gradient(120% 90% at 88% -10%, rgba(250, 228, 208, 0.7), transparent 55%),
    radial-gradient(90% 80% at -10% 20%, rgba(229, 219, 235, 0.45), transparent 50%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--accent);
  margin: 0 0 22px;
}
.display {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 0;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
}
.display .accent {
  color: var(--accent);
  font-style: italic;
}
.lead {
  margin: 26px 0 0;
  font-size: 1.2rem;
  color: var(--ink-muted);
  max-width: 560px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 36px; }
.hero-actions.center { justify-content: center; }

.hero-stats {
  list-style: none;
  margin: 44px 0 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(20, 18, 17, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 36px;
  max-width: 460px;
}
.hero-stats li { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 1.7rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.hero-stats span { font-size: 0.9rem; color: var(--ink-muted); }

.hero-visual { position: relative; }
.hero-visual-inner {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  aspect-ratio: 4 / 5;
  will-change: transform;
}
.hero-visual-inner img { width: 100%; height: 100%; object-fit: cover; }

/* Brand duotone so the photo reads as designed, not stock */
.hero-visual-inner.tinted img {
  filter: grayscale(1) sepia(0.45) saturate(1.8) hue-rotate(-14deg) contrast(1.06) brightness(1.03);
}
.hero-visual-inner.tinted::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(to top, rgba(20, 18, 17, 0.32), transparent 50%);
}

/* Frosted glass proof chip overlapping the hero image */
.hero-chip {
  position: absolute;
  left: -14px;
  bottom: 28px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  background: rgba(249, 247, 246, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 16px 40px -18px rgba(20, 18, 17, 0.5);
}
.hero-chip-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

/* ---------- Sections ---------- */
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section-intro { padding: clamp(48px, 6vw, 72px) 0 clamp(8px, 2vw, 20px); text-align: center; }
.section-intro .section-sub { margin-left: auto; margin-right: auto; }
.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0;
}
.section-sub {
  color: var(--ink-muted);
  font-size: 1.1rem;
  margin: 16px 0 0;
  max-width: 600px;
}
.section-head { margin-bottom: 48px; }

/* ---------- Cards / split panels ---------- */
.card {
  border-radius: var(--radius);
  padding: clamp(32px, 4vw, 56px);
  margin-bottom: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.card-peach { background: linear-gradient(135deg, var(--surface) 0%, var(--peach-soft) 100%); }
.card-blue { background: linear-gradient(135deg, var(--blue-soft) 0%, var(--surface) 100%); }
.card-peach:hover, .card-blue:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.badge {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.card-blue .badge { color: var(--blue-accent); background: var(--blue-accent-soft); }

.split { display: grid; grid-template-columns: 1.1fr 1fr; gap: 44px; align-items: center; }
.split-reverse .split-text { order: 2; }
.split-reverse .split-media { order: 1; }
.split-text h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.16;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
}
.split-text > p { color: var(--ink-muted); margin: 0 0 24px; }

.feature-list { list-style: none; margin: 0 0 28px; padding: 0; display: grid; gap: 16px; }
.feature-list li {
  position: relative;
  padding-left: 26px;
  color: var(--ink-muted);
}
.feature-list li strong { color: var(--ink); font-weight: 600; }
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55em;
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
}
.card-blue .feature-list li::before { background: var(--blue-accent); }

.split-media {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  align-self: stretch;
  min-height: 300px;
}
.split-media img {
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.card:hover .split-media img { transform: scale(1.05); }

/* ---------- Process steps ---------- */
.section-process { background: var(--surface); border-radius: 40px; margin: 0 12px; }
.steps {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
/* connector line behind the steps */
.steps::before {
  content: "";
  position: absolute;
  top: 52px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(20,18,17,0.18) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  border: 1px solid rgba(20, 18, 17, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); }
.step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent);
  margin-bottom: 16px;
}
.step-icon svg { width: 24px; height: 24px; }
.step-num {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: var(--accent);
  display: block;
  margin-bottom: 6px;
}
.step h4 { font-size: 1.12rem; margin: 0 0 8px; font-weight: 600; }
.step p { color: var(--ink-muted); margin: 0; font-size: 0.97rem; }

/* ---------- Testimonial ---------- */
.section-quote { text-align: center; }
.quote { margin: 0; max-width: 880px; margin-inline: auto; }
.quote blockquote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  margin: 0;
}
.quote blockquote::before { content: "\201C"; color: var(--accent); }
.quote blockquote::after { content: "\201D"; color: var(--accent); }
.quote figcaption {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}
.quote-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  background: linear-gradient(135deg, var(--peach-deep), var(--accent));
  color: var(--surface);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.quote-meta { display: flex; flex-direction: column; text-align: left; line-height: 1.3; }
.quote-meta strong { font-weight: 600; }
.quote-meta span { color: var(--ink-muted); font-size: 0.92rem; }

/* ---------- FAQ ---------- */
.section-faq .section-title { margin-bottom: 36px; }
.faq-list { max-width: 820px; }
.faq-item {
  border-bottom: 1px solid rgba(20, 18, 17, 0.12);
  padding: 6px 0;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-size: 1.18rem;
  font-family: var(--font-serif);
  padding: 20px 40px 20px 0;
  position: relative;
  transition: color 0.2s ease;
}
.faq-item summary:hover { color: var(--accent); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: var(--ink-muted);
  transition: transform 0.25s ease, color 0.2s ease;
  font-family: var(--font-sans);
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }
.faq-body { padding: 0 40px 22px 0; }
.faq-body p { color: var(--ink-muted); margin: 0; }
.faq-item[open] .faq-body { animation: fadeUp 0.35s ease; }

/* ---------- CTA (dark band) ---------- */
.section-cta { padding-bottom: clamp(64px, 8vw, 112px); }
.card-cta {
  position: relative;
  background:
    radial-gradient(80% 120% at 15% 0%, rgba(183, 110, 58, 0.35), transparent 55%),
    radial-gradient(70% 110% at 100% 100%, rgba(152, 125, 165, 0.3), transparent 55%),
    var(--ink);
  color: var(--on-dark);
  text-align: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 64px);
  box-shadow: var(--shadow-card);
}
.card-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, -20%), rgba(183, 110, 58, 0.4), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.card-cta:hover::before { opacity: 1; }
.card-cta > * { position: relative; z-index: 1; }
.eyebrow-light { color: rgba(244, 242, 239, 0.7); }
.cta-title { font-size: clamp(2.2rem, 4.5vw, 3.4rem); color: var(--on-dark); }
.card-cta .section-sub { margin-left: auto; margin-right: auto; color: var(--on-dark-muted); }

/* ---------- Footer ---------- */
.site-footer { padding: 56px 0; background: var(--ink); color: var(--on-dark); }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer .brand { color: var(--on-dark); }
.footer-links { display: flex; gap: 24px; list-style: none; margin: 0; padding: 0; }
.footer-links a { color: var(--on-dark-muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--on-dark); }
.site-footer small { color: var(--on-dark-muted); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: calc(var(--i, 0) * 90ms);
}
.reveal.is-visible { opacity: 1; transform: none; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-visual-inner { transform: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 440px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
}
@media (max-width: 720px) {
  .split, .split-reverse .split-text, .split-reverse .split-media { grid-template-columns: 1fr; order: initial; }
  .split-media { order: -1; min-height: 220px; }
  .split-media img { min-height: 220px; }
  .section-process { margin: 0; border-radius: 0; }
  .hero-stats { gap: 24px; }
}
@media (max-width: 520px) {
  .steps { grid-template-columns: 1fr; }
  .hero-chip { left: 8px; bottom: 14px; font-size: 0.82rem; padding: 9px 14px; }
}
