/* === LANDING PAGE STYLES === */

:root {
  --bg: #F1EAE0;
  --paper: #FFFFFF;
  --ink: #2A2421;
  --muted: #6B5E54;
  --rule: rgba(42,36,33,0.10);
  --terra: #B85C3E;
  --olive: #6B7050;
  --sand: #E8DBC7;
  --cream: #FBF6EE;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--bg);
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  scroll-behavior: smooth;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(241,234,224,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
}
.brand-logo {
  height: 28px;
  display: block;
}
.brand-logo-dark {
  filter: invert(1) brightness(1.05);
  height: 26px;
}
.nav-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: inline-flex; align-items: center; justify-content: center;
  font-style: normal;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 14px;
}
.nav-links {
  display: flex;
  gap: 28px;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--terra); }
.nav-cta {
  background: var(--ink);
  color: var(--bg) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  transition: background 0.2s;
}
.nav-cta:hover { background: var(--terra); }

/* ============ HERO ============ */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 32px 100px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.hero-blob-1 {
  width: 480px; height: 480px;
  background: var(--terra);
  opacity: 0.18;
  top: -120px; right: -80px;
}
.hero-blob-2 {
  width: 360px; height: 360px;
  background: var(--olive);
  opacity: 0.20;
  bottom: -100px; left: 20%;
}
.hero-grid {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-eyebrow .star { color: var(--olive); font-size: 14px; }

.hero h1 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.022em;
  font-weight: 400;
  margin: 0 0 24px;
  text-wrap: balance;
  max-width: 640px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 0 36px;
  max-width: 540px;
}
.hero-lede strong { color: var(--ink); font-weight: 600; }

.hero-cta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 36px;
}
.hero-meta {
  font-size: 14px;
  color: var(--muted);
}

.btn {
  display: inline-block;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  padding: 18px 32px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover {
  background: var(--terra);
  transform: translateY(-1px);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}
.trust-stars {
  color: var(--terra);
  font-size: 18px;
  letter-spacing: 2px;
}
.trust-text {
  font-size: 14px;
  color: var(--muted);
}
.trust-text strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 6px;
}

/* hero photo */
.hero-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 32px;
}
image-slot {
  --is-bg: var(--sand);
  --is-border: transparent;
  --is-radius: 32px;
  --is-placeholder-color: rgba(42,36,33,0.45);
  width: 100%;
  height: 100%;
  display: block;
}
.hero-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 75%;
  border-radius: 32px;
  display: block;
}
.hero-photo-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 12px 40px -16px rgba(42,36,33,0.30);
  z-index: 3;
}
.hero-photo-card-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-photo-card-role {
  font-size: 13px;
  color: var(--muted);
}
.hero-photo-pill {
  position: absolute;
  top: 24px;
  right: 24px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 3;
}
.dot-g {
  width: 7px; height: 7px;
  background: var(--olive);
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 900px) {
  .hero { padding: 48px 24px 60px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .nav-links a:not(.nav-cta) { display: none; }
}

/* ============ SOCIAL PROOF STRIP ============ */
.social-proof {
  background: var(--ink);
  color: var(--bg);
  padding: 36px 32px;
}
.social-proof-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr) auto auto auto auto;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.sp-item {
  text-align: center;
}
.sp-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 34px;
  line-height: 1;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.sp-num em {
  font-style: italic;
  color: oklch(0.82 0.13 60);
}
.sp-label {
  font-size: 12px;
  color: rgba(241,234,224,0.65);
  letter-spacing: 0.04em;
}
.sp-divider {
  width: 1px;
  height: 40px;
  background: rgba(241,234,224,0.15);
}
@media (max-width: 900px) {
  .social-proof-inner {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
  }
  .sp-divider { display: none; }
}

/* ============ HOW IT WORKS ============ */
.how {
  background: var(--cream);
  padding: 100px 32px;
}
.how-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.how-eyebrow, .reviews-eyebrow, .cta-eyebrow {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.cta-eyebrow .star { color: var(--olive); font-size: 14px; }

.how-title, .reviews-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(40px, 4.5vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 400;
  margin: 0 0 60px;
  text-wrap: balance;
  max-width: 800px;
}
.how-title em, .reviews-title em {
  font-style: italic;
  color: var(--terra);
}

.how-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how-step {
  background: var(--paper);
  border-radius: 24px;
  padding: 36px 32px;
  border: 1px solid var(--rule);
}
.how-step-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 36px;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 20px;
}
.how-step h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
}
.how-step p {
  font-size: 15px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
@media (max-width: 900px) {
  .how-steps { grid-template-columns: 1fr; }
  .how { padding: 60px 24px; }
}

/* ============ REVIEWS ============ */
.reviews {
  background: var(--bg);
  padding: 100px 32px;
}
.reviews-inner {
  max-width: 1180px;
  margin: 0 auto;
}
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.review {
  background: var(--paper);
  border-radius: 24px;
  padding: 32px;
  border: 1px solid var(--rule);
}
.review-stars {
  color: var(--terra);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.review-text {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 19px;
  line-height: 1.45;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0 0 24px;
  text-wrap: pretty;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px dashed var(--rule);
}
.review-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 20px;
  color: var(--paper);
  flex-shrink: 0;
}
.review-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}
.review-meta {
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px;
}
.reviews-foot {
  margin-top: 40px;
  text-align: center;
}
.reviews-link {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1.5px solid var(--terra);
  padding-bottom: 2px;
}
.reviews-link:hover { color: var(--terra); }
@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews { padding: 60px 24px; }
}

/* ============ FINAL CTA ============ */
.cta-final {
  background: var(--sand);
  padding: 120px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-final::before {
  content: '';
  position: absolute;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: var(--terra);
  opacity: 0.13;
  filter: blur(100px);
  top: -180px; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.cta-final-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  margin: 0 auto;
}
.cta-final-title {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(54px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.022em;
  font-weight: 400;
  margin: 0 0 24px;
  text-wrap: balance;
}
.cta-final-title em { font-style: italic; color: var(--terra); }
.cta-final-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0 auto 40px;
  max-width: 560px;
}
.btn-big {
  font-size: 18px;
  padding: 22px 40px;
}
.cta-final-meta {
  margin-top: 24px;
  font-size: 14px;
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .cta-final { padding: 80px 24px; }
}

/* ============ FOOTER ============ */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 40px 32px;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-name {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: 22px;
}
.footer-tag {
  font-size: 13px;
  color: rgba(241,234,224,0.6);
}
.footer-links {
  font-size: 13px;
  display: flex;
  gap: 12px;
  align-items: center;
  color: rgba(241,234,224,0.6);
}
.footer-links a {
  color: var(--bg);
  text-decoration: none;
}
.footer-links a:hover { color: oklch(0.78 0.13 55); }
