/* ── Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Exo+2:wght@600;700&family=Fraunces:ital,opsz,wght@0,9..144,700;0,9..144,800;1,9..144,700&family=Plus+Jakarta+Sans:wght@400;500;600&family=DM+Mono:wght@400&display=swap');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Variables ── */
:root {
  --forest: #1B4332;
  --forest-light: #2D6A4F;
  --sage: #52796F;
  --cream: #F5F0E8;
  --warm-white: #FEFCF7;
  --sun: #F4A429;
  --sun-light: #FAC97A;
  --sky: #7BB8C4;
  --blush: #E8C4B3;
  --clay: #C47A5A;
  --text: #1A1A1A;
  --text-body: #4A4A4A;
  --border: rgba(27,67,50,0.12);
  --border-strong: rgba(27,67,50,0.24);
  --shadow-sm: 0 1px 3px rgba(27,67,50,0.08), 0 1px 2px rgba(27,67,50,0.05);
  --shadow-md: 0 4px 16px rgba(27,67,50,0.10), 0 2px 6px rgba(27,67,50,0.06);
  --shadow-lg: 0 12px 40px rgba(27,67,50,0.14), 0 4px 12px rgba(27,67,50,0.08);
  --shadow-cta: 0 8px 24px rgba(244,164,41,0.40);
  --font-display: "Fraunces", Georgia, serif;
  --font-brand: "Exo 2", system-ui, sans-serif;
  --font-heading: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-sans: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "DM Mono", monospace;
}

/* ── Base ── */
body {
  background: var(--warm-white);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1rem; }
.container--sm { max-width: 64rem; }
.container--md { max-width: 72rem; }

/* ── Typography ── */
.display { font-family: var(--font-display); font-weight: 800; line-height: 1.1; color: var(--forest); }
.display--lg { font-size: clamp(2rem, 4.5vw, 3.2rem); }
.display--md { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.display--sm { font-family: var(--font-heading); font-size: clamp(1.5rem, 3vw, 2rem); }
.display--700 { font-weight: 700; }
.mono { font-family: var(--font-mono); }
.label { font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--sage); }
.text-body { color: var(--text-body); line-height: 1.65; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-center { text-align: center; }
.text-forest { color: var(--forest); }
.text-sage { color: var(--sage); }
.text-clay { color: var(--clay); }

/* ── Layout helpers ── */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.items-start { align-items: start; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-14 { gap: 3.5rem; }
.gap-16 { gap: 4rem; }
.grid { display: grid; }
.grid-2 { grid-template-columns: 1fr 1fr; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-5 { margin-bottom: 1.25rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-20 { margin-bottom: 5rem; }
.mb-28 { margin-bottom: 7rem; }
.max-w-sm { max-width: 24rem; }
.max-w-md { max-width: 28rem; }

.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.leading-snug { line-height: 1.35; }
.leading-relaxed { line-height: 1.65; }
.font-semibold { font-weight: 600; }

/* ── Navbar ── */
.navbar {
  position: sticky; top: 0; z-index: 50; width: 100%;
  background: rgba(254,252,247,0.9); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.navbar__inner { height: 4rem; display: flex; align-items: center; justify-content: space-between; }
.navbar__brand { display: flex; align-items: center; gap: 0.625rem; }
.navbar__icon {
  width: 2rem; height: 2rem; border-radius: 0.5rem; background: var(--forest);
  display: flex; align-items: center; justify-content: center;
}
.navbar__title { font-family: var(--font-brand); font-weight: 700; font-size: 1.25rem; color: var(--forest); }
.navbar__title span { color: var(--sage); }
.navbar__links { display: flex; align-items: center; gap: 2rem; }
.navbar__link { font-size: 0.875rem; font-weight: 500; color: var(--text-body); transition: color 0.2s; }
.navbar__link:hover { color: var(--forest); }
.navbar__auth { display: flex; align-items: center; gap: 1rem; }

.navbar__signin { font-size: 0.875rem; font-weight: 500; color: var(--sage); transition: color 0.2s; }
.navbar__signin:hover { color: var(--forest); }
.btn-cta {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 1.25rem; height: 2.25rem; border-radius: 9999px;
  font-size: 0.875rem; font-weight: 600; border: none; cursor: pointer;
  background: var(--sun); color: var(--forest);
  box-shadow: 0 4px 14px rgba(244,164,41,0.35);
  transition: transform 0.15s;
}
.btn-cta:hover { transform: scale(1.05); }
.btn-cta:active { transform: scale(0.95); }
.btn-cta--lg { height: 3.5rem; padding: 0 2.5rem; font-size: 1rem; font-weight: 700; box-shadow: var(--shadow-cta); }

/* ── Sections ── */
.section { padding: 6rem 0; }
.section--cream { background: var(--cream); }
.section--white { background: var(--warm-white); }
.section--dark { background: var(--forest); position: relative; overflow: hidden; }
.section--dark .display { color: var(--cream); }

/* ── Cards ── */
.card {
  background: #fff; border-radius: 1rem; padding: 2rem;
  border: 1px solid rgba(27,67,50,0.08);
  box-shadow: 0 2px 12px rgba(27,67,50,0.06);
}
.card--problem {
  border-color: rgba(196,122,90,0.25);
  background: rgba(232,196,179,0.12);
}
.card--solution {
  border-color: rgba(27,67,50,0.18);
  background: rgba(27,67,50,0.04);
}

/* ── Feature images ── */
.feature-img {
  border-radius: 1rem; overflow: hidden;
  border: 1px solid rgba(27,67,50,0.1);
  box-shadow: var(--shadow-lg);
  transition: transform 0.5s;
}
.feature-img--tilt { transform: rotate(1deg); }
.feature-img--tilt-neg { transform: rotate(-1deg); }
.feature-img:hover { transform: rotate(0deg); }

/* ── Step numbers ── */
.step-num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 700; opacity: 0.7; margin-bottom: 1.25rem; }

/* ── Pill badge ── */
.pill {
  display: inline-block; font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-family: var(--font-mono); color: var(--sage);
  padding: 0.25rem 0.75rem; border-radius: 9999px;
  border: 1px solid rgba(82,121,111,0.25);
}

/* ── List items ── */
.list-item { display: flex; align-items: flex-start; gap: 0.5rem; }
.list-icon { margin-top: 0.125rem; flex-shrink: 0; }

/* ── Pricing card ── */
.pricing-card {
  background: var(--forest); border-radius: 1rem;
  padding: 2.5rem; text-align: center;
  box-shadow: 0 16px 48px rgba(27,67,50,0.28);
}
.pricing-amount { font-family: var(--font-brand); font-weight: 700; font-size: 7rem; line-height: 1; color: var(--cream); }
.pricing-dollar { font-size: 1.5rem; color: rgba(245,240,232,0.5); vertical-align: top; margin-top: 1rem; display: inline-block; }

/* ── Footer ── */
.footer { background: var(--forest); color: var(--cream); }
.footer__inner { padding: 4rem 1rem; display: flex; justify-content: space-between; gap: 3rem; flex-wrap: wrap; }
.footer__brand { max-width: 20rem; }
.footer__brand-link { display: flex; align-items: center; gap: 0.625rem; margin-bottom: 1.25rem; }
.footer__brand-icon {
  width: 1.75rem; height: 1.75rem; border-radius: 0.375rem; background: var(--sun);
  display: flex; align-items: center; justify-content: center;
}
.footer__brand-title { font-family: var(--font-brand); font-weight: 700; font-size: 1.125rem; color: var(--cream); }
.footer__desc { font-size: 0.875rem; line-height: 1.65; color: rgba(245,240,232,0.65); }
.footer__domain { font-size: 0.75rem; margin-top: 1.25rem; color: rgba(245,240,232,0.4); font-family: var(--font-mono); }
.footer__columns { display: flex; gap: 4rem; }
.footer__col-title { font-size: 0.75rem; color: var(--sun); margin-bottom: 1.25rem; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--font-mono); }
.footer__col-link { display: block; font-size: 0.875rem; color: rgba(245,240,232,0.65); padding: 0.375rem 0; transition: color 0.2s; }
.footer__col-link:hover { color: var(--cream); }
.footer__bottom {
  border-top: 1px solid rgba(245,240,232,0.1);
  padding: 1.5rem 1rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem;
}
.footer__copy { font-size: 0.75rem; color: rgba(245,240,232,0.4); }
.footer__tagline { font-size: 0.75rem; color: rgba(245,240,232,0.35); }

/* ── Dark section text ── */
.dark-text { color: rgba(245,240,232,0.9); }
.dark-text-muted { color: rgba(245,240,232,0.7); }
.dark-text-faint { color: rgba(245,240,232,0.45); }
.dark-text-ghost { color: rgba(245,240,232,0.35); }

/* ── Decorative circles (CTA section) ── */
.circle-deco {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(244,164,41,0.12);
  pointer-events: none;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .navbar__links { display: none; }
  .navbar__signin { display: none; }
  .footer__inner { flex-direction: column; }
  .footer__columns { flex-direction: column; gap: 2rem; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .feature-img--tilt, .feature-img--tilt-neg { transform: none; }
  .pricing-amount { font-size: 5rem; }
  .order-first-mobile { order: -1; }
}

/* ── FAQ page ── */
.faq-item {
  background: #f8fafc; padding: 1.5rem 2rem; border-radius: 1rem;
  border: 1px solid #f1f5f9; box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s;
}
.faq-item:hover { box-shadow: var(--shadow-md); }
.faq-question { font-size: 1.25rem; font-weight: 700; color: #1e293b; margin-bottom: 0.75rem; }
.faq-answer { color: #475569; line-height: 1.65; font-size: 1.125rem; }

/* ── Tour page ── */
.tour-card {
  background: #fff; padding: 2rem 3rem; border-radius: 1.5rem;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(241,245,249,0.5);
}
.tour-card--tinted {
  background: rgba(37,99,235,0.03);
  border-color: rgba(37,99,235,0.1);
}
.tour-img {
  border-radius: 0.75rem; overflow: hidden;
  box-shadow: var(--shadow-lg); border: 4px solid #f8fafc;
}
