/* ─── Fonts ─────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ─── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F0;
  --cream-dark: #F2ECE2;
  --cream-card: #FFF9F2;
  --brown: #2C1A0E;
  --brown-mid: #5C3D22;
  --brown-light: #9A7356;
  --terra: #C0693A;
  --terra-hover: #A8572E;
  --sage: #6E9B78;
  --sage-light: #D6E8D9;
  --border: #DDD0C0;
  --shadow-sm: 0 2px 12px rgba(44, 26, 14, 0.06);
  --shadow-md: 0 8px 32px rgba(44, 26, 14, 0.10);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--brown);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

/* ─── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terra);
  margin-bottom: 0.75rem;
}

/* ─── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

section { padding: 80px 0; }

/* ─── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-align: center;
  line-height: 1.4;
}

.btn-primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192, 105, 58, 0.30);
}
.btn-primary:hover {
  background: var(--terra-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(192, 105, 58, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--terra);
  border: 2px solid var(--terra);
}
.btn-outline:hover {
  background: var(--terra);
  color: #fff;
}

/* ─── Navigation ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: var(--shadow-sm); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: -0.01em;
}
.nav-logo span { color: var(--terra); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--brown-mid);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--terra);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { margin-left: 8px; padding: 10px 24px; font-size: 0.875rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  gap: 4px;
  border-top: 1px solid var(--border);
  background: var(--cream);
}
.mobile-menu a {
  padding: 10px 0;
  font-weight: 500;
  font-size: 1rem;
  color: var(--brown-mid);
  border-bottom: 1px solid var(--cream-dark);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--terra); }
.mobile-menu .btn { margin-top: 12px; display: block; text-align: center; }
.mobile-menu.open { display: flex; }

/* ─── Hero ───────────────────────────────────────────────────── */
.hero {
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
  position: relative;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 20px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--sage);
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 20px;
}
.hero h1 em {
  font-style: italic;
  color: var(--terra);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--brown-mid);
  margin-bottom: 36px;
  line-height: 1.75;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-note {
  font-size: 0.82rem;
  color: var(--brown-light);
  display: flex;
  align-items: center;
  gap: 6px;
}
.hero-note::before {
  content: '✓';
  color: var(--sage);
  font-weight: 700;
}

.hero-image-wrap {
  position: relative;
}

.hero-image-wrap img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -24px;
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.hero-badge p { font-size: 0.78rem; color: var(--brown-mid); margin: 0; }
.hero-badge strong { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--brown); display: block; }

/* ─── For Whom ───────────────────────────────────────────────── */
.for-whom { background: var(--cream-dark); }

.section-header { text-align: center; max-width: 580px; margin: 0 auto 56px; }
.section-header h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--brown); margin-bottom: 16px; }
.section-header p { color: var(--brown-mid); font-size: 1rem; }

.whom-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.whom-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whom-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.whom-icon {
  font-size: 2rem;
  margin-bottom: 16px;
}

.whom-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 10px;
}
.whom-card p { font-size: 0.88rem; color: var(--brown-mid); line-height: 1.65; }

/* ─── How it Works ───────────────────────────────────────────── */
.how-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.how-image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}

.how-steps { display: flex; flex-direction: column; gap: 32px; }

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.step-num {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: 2px solid var(--terra);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--terra);
  margin-top: 2px;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 6px;
}
.step-content p { font-size: 0.9rem; color: var(--brown-mid); line-height: 1.65; }

/* ─── Outcomes ───────────────────────────────────────────────── */
.outcomes { background: var(--cream-dark); }

.outcomes-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.outcomes-list { display: flex; flex-direction: column; gap: 18px; }

.outcome-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--cream-card);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.outcome-item:hover { border-color: var(--terra); }

.outcome-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(192, 105, 58, 0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.outcome-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  margin-bottom: 4px;
}
.outcome-item p { font-size: 0.85rem; color: var(--brown-mid); }

.outcomes-image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-md);
}

/* ─── Gallery ────────────────────────────────────────────────── */
.gallery-heading { text-align: center; margin-bottom: 48px; }
.gallery-heading h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: var(--brown); }

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--cream-dark);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }

.gallery-item.tall { grid-row: span 2; }
.gallery-item.tall img { aspect-ratio: 3/4; }
.gallery-item:not(.tall) img { aspect-ratio: 4/3; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--cream-dark); }

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.faq-item {
  background: var(--cream-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--cream-dark); }

.faq-question span {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  flex: 1;
}

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--terra);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--terra);
  color: #fff;
  border-color: var(--terra);
}

.faq-answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--brown-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }

/* ─── Lead Form ──────────────────────────────────────────────── */
.lead-form-section {
  background: linear-gradient(135deg, #2C1A0E 0%, #4A2C14 100%);
  position: relative;
  overflow: hidden;
}
.lead-form-section::before {
  content: '';
  position: absolute;
  top: -40%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(192,105,58,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.lead-form-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}

.lead-text .section-label { color: var(--terra); }
.lead-text h2 { font-size: clamp(1.75rem, 3vw, 2.4rem); color: #fff; margin-bottom: 16px; }
.lead-text p { color: rgba(255,255,255,0.7); font-size: 1rem; }

.lead-text-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
}
.lead-text-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
}
.lead-text-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(192,105,58,0.25);
  border: 1.5px solid var(--terra);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C0693A'%3E%3Cpath d='M13.5 3.5L6 11 2.5 7.5' stroke='%23C0693A' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E");
  background-size: 12px;
  background-repeat: no-repeat;
  background-position: center;
}

.form-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 40px;
}

.form-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-card .form-subtitle {
  font-size: 0.88rem;
  color: var(--brown-light);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 16px; }

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--brown-mid);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--brown);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input::placeholder { color: var(--brown-light); }
.form-group input:focus,
.form-group select:focus {
  border-color: var(--terra);
  box-shadow: 0 0 0 3px rgba(192,105,58,0.10);
}

.form-group input.error { border-color: #C0392B; }
.form-error { font-size: 0.78rem; color: #C0392B; margin-top: 4px; display: none; }
.form-group input.error + .form-error { display: block; }

.form-submit { width: 100%; margin-top: 8px; padding: 15px; font-size: 1rem; }

.form-agree {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--brown-light);
  text-align: center;
  line-height: 1.5;
}
.form-agree a {
  color: var(--terra);
  text-decoration: underline;
}

/* ─── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 56px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 32px;
}

.footer-brand .nav-logo { color: #fff; }
.footer-brand .nav-logo span { color: var(--terra); }
.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
}

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.60);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--terra); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-align: right;
}

/* ─── Cookie Banner ──────────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
  background: var(--brown);
  color: rgba(255,255,255,0.85);
  border-radius: var(--radius);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
  max-width: 680px;
  width: calc(100% - 48px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}

.cookie-text { font-size: 0.85rem; line-height: 1.6; flex: 1; }
.cookie-text a { color: var(--terra); text-decoration: underline; }

.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }

.cookie-btn {
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
}
.cookie-accept {
  background: var(--terra);
  color: #fff;
}
.cookie-accept:hover { background: var(--terra-hover); }
.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.25);
}
.cookie-decline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }

/* ─── Inner Pages ────────────────────────────────────────────── */
.inner-hero {
  padding: 140px 0 60px;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
}

.inner-hero h1 {
  font-size: clamp(1.75rem, 3.5vw, 2.6rem);
  color: var(--brown);
  margin-bottom: 12px;
}

.inner-hero p {
  font-size: 0.9rem;
  color: var(--brown-light);
}

.inner-content { padding: 60px 0 80px; max-width: 760px; margin: 0 auto; }
.inner-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: var(--brown);
  margin: 36px 0 12px;
}
.inner-content h2:first-child { margin-top: 0; }
.inner-content p { font-size: 0.95rem; color: var(--brown-mid); margin-bottom: 14px; line-height: 1.8; }
.inner-content ul { padding-left: 20px; margin-bottom: 14px; }
.inner-content ul li { font-size: 0.95rem; color: var(--brown-mid); margin-bottom: 8px; line-height: 1.7; }
.inner-content a { color: var(--terra); text-decoration: underline; }
.inner-content a:hover { color: var(--terra-hover); }

/* ─── Success Page ───────────────────────────────────────────── */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}
.success-card {
  background: var(--cream-card);
  border-radius: 24px;
  padding: 56px 48px;
  text-align: center;
  max-width: 520px;
  width: 100%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.success-icon {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(110,155,120,0.15);
  border: 2px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 28px;
}
.success-card h1 {
  font-size: 1.9rem;
  color: var(--brown);
  margin-bottom: 14px;
}
.success-card p { font-size: 1rem; color: var(--brown-mid); margin-bottom: 32px; line-height: 1.75; }

/* ─── Divider ────────────────────────────────────────────────── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--terra);
  border-radius: 2px;
  margin: 0 auto 24px;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .whom-grid { grid-template-columns: repeat(2, 1fr); }
  .how-inner { gap: 48px; }
  .outcomes-inner { gap: 48px; }
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-wrap { order: -1; }
  .hero-badge { left: 0; bottom: -16px; }
  .how-inner { grid-template-columns: 1fr; }
  .how-image { order: -1; }
  .how-image img { aspect-ratio: 16/9; }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-image { display: none; }
  .lead-form-inner { grid-template-columns: 1fr; gap: 40px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item.tall { grid-row: span 1; }
  .gallery-item.tall img { aspect-ratio: 4/3; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .burger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  section { padding: 60px 0; }
  .whom-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }
  .footer-copy { text-align: left; }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
  .form-card { padding: 28px 20px; }
  .success-card { padding: 40px 24px; }
  .hero { padding-top: 120px; }
}
