*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --clr-bg:        #faf8f5;
  --clr-bg-alt:    #f3ede4;
  --clr-surface:   #ffffff;
  --clr-primary:   #8b6f4e;
  --clr-primary-d: #6e5539;
  --clr-accent:    #c9a97a;
  --clr-text:      #2d2420;
  --clr-text-mid:  #5a4a40;
  --clr-text-lite: #8c7b6e;
  --clr-border:    #e2d5c4;
  --ff-head:       'Cormorant Garamond', Georgia, serif;
  --ff-body:       'Inter', system-ui, sans-serif;
  --max-w:         1160px;
  --radius:        12px;
  --transition:    0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--clr-text);
  background: var(--clr-bg);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-head);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent);
  font-family: var(--ff-body);
  margin-bottom: 0.75rem;
}

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
}
.btn-primary:hover {
  background: var(--clr-primary-d);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139,111,78,.25);
}

.btn-outline {
  background: transparent;
  color: var(--clr-primary);
  border: 1.5px solid var(--clr-primary);
}
.btn-outline:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-1px);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--clr-border);
}

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

.nav-logo {
  font-family: var(--ff-head);
  font-size: 1.55rem;
  color: var(--clr-primary);
  font-weight: 400;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  color: var(--clr-text-mid);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--clr-primary); }

.nav-cta { margin-left: 1rem; }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--clr-text);
  transition: var(--transition);
}

.hero {
  padding: 0;
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.hero-content {
  padding: 5rem 4rem 5rem 0;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--clr-accent);
  margin-bottom: 1.5rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--clr-accent);
}

.hero h1 { margin-bottom: 1.25rem; color: var(--clr-text); }
.hero h1 em { font-style: italic; color: var(--clr-primary); }

.hero-desc {
  color: var(--clr-text-mid);
  font-size: 1.05rem;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-img-wrap {
  position: relative;
  height: 100%;
  min-height: calc(100vh - 68px);
}

.hero-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--clr-bg) 0%, transparent 18%);
}

.about { background: var(--clr-bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }

.about-text h2 { margin-bottom: 1.25rem; }
.about-text p {
  color: var(--clr-text-mid);
  margin-bottom: 1rem;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.pillar {
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem 1.25rem;
}

.pillar-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.pillar h4 {
  font-family: var(--ff-head);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}
.pillar p { font-size: 0.875rem; color: var(--clr-text-mid); }

.format { background: var(--clr-bg-alt); }

.format-header { text-align: center; margin-bottom: 3.5rem; }
.format-header p { color: var(--clr-text-mid); max-width: 520px; margin: 0.75rem auto 0; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  position: relative;
}

.step-num {
  font-family: var(--ff-head);
  font-size: 3rem;
  color: var(--clr-border);
  line-height: 1;
  margin-bottom: 1rem;
}

.step h3 { font-size: 1.2rem; margin-bottom: 0.65rem; }
.step p { font-size: 0.9rem; color: var(--clr-text-mid); }

.audience { background: var(--clr-bg); }

.audience-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.audience-text h2 { margin-bottom: 1rem; }
.audience-text p { color: var(--clr-text-mid); margin-bottom: 1.5rem; }

.audience-list { display: flex; flex-direction: column; gap: 0.85rem; }

.audience-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--clr-bg-alt);
  border-radius: var(--radius);
}

.audience-item-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.audience-item p { font-size: 0.92rem; color: var(--clr-text-mid); }
.audience-item strong { color: var(--clr-text); display: block; margin-bottom: 0.2rem; }

.not-for {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 2px solid var(--clr-border);
  background: var(--clr-bg-alt);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.not-for h4 { font-family: var(--ff-head); font-size: 1.05rem; margin-bottom: 0.5rem; }
.not-for p { font-size: 0.875rem; color: var(--clr-text-mid); }

.results { background: var(--clr-primary); color: #fff; }

.results-inner { text-align: center; }
.results-inner .section-label { color: var(--clr-accent); }
.results-inner h2 { color: #fff; margin-bottom: 0.75rem; }
.results-inner > p { color: rgba(255,255,255,.75); max-width: 520px; margin: 0 auto 3rem; }

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.result-card {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius);
  padding: 2rem 1.25rem;
  text-align: center;
}

.result-card-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.result-card h3 {
  font-family: var(--ff-head);
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 0.4rem;
}
.result-card p { font-size: 0.85rem; color: rgba(255,255,255,.7); }

.image-strip { padding: 0; overflow: hidden; max-height: 380px; }
.image-strip img { width: 100%; height: 380px; object-fit: cover; object-position: center 30%; }

.faq { background: var(--clr-bg); }

.faq-inner { max-width: 760px; margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header p { color: var(--clr-text-mid); margin-top: 0.75rem; }

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  border: 1px solid var(--clr-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--clr-surface);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--clr-text);
  gap: 1rem;
}

.faq-question:hover { color: var(--clr-primary); }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--clr-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  line-height: 1;
  color: var(--clr-primary);
  transition: transform var(--transition);
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.faq-item.open .faq-answer { max-height: 300px; }

.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--clr-text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
}

.lead-form-section { background: var(--clr-bg-alt); }

.lead-form-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lead-form-text h2 { margin-bottom: 1rem; }
.lead-form-text p { color: var(--clr-text-mid); }

.lead-form {
  background: var(--clr-surface);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 40px rgba(139,111,78,.08);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.form-group label {
  font-size: 0.85rem;
  color: var(--clr-text-mid);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--clr-border);
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--clr-text);
  background: var(--clr-bg);
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--clr-primary);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-privacy {
  font-size: 0.78rem;
  color: var(--clr-text-lite);
  margin-top: 1rem;
  line-height: 1.5;
}

.form-privacy a {
  color: var(--clr-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

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

.site-footer {
  background: var(--clr-text);
  color: rgba(255,255,255,.7);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-brand .nav-logo { color: var(--clr-accent); font-size: 1.6rem; }
.footer-brand p {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.5);
  max-width: 260px;
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--clr-accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-top: 2rem;
  gap: 1.5rem;
  flex-wrap: wrap;
}

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

.footer-legal span { display: block; }

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 680px;
  background: var(--clr-text);
  color: rgba(255,255,255,.8);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 8px 40px rgba(0,0,0,.25);
  z-index: 999;
  flex-wrap: wrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, transform 0.4s ease;
  transform: translateX(-50%) translateY(20px);
}

.cookie-banner.visible {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.cookie-text { font-size: 0.875rem; line-height: 1.55; flex: 1; min-width: 200px; }
.cookie-text a { color: var(--clr-accent); text-decoration: underline; text-underline-offset: 2px; }

.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }

.cookie-accept {
  background: var(--clr-accent);
  color: var(--clr-text);
  border: none;
  border-radius: 50px;
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.cookie-accept:hover { background: #d4b48a; }

.cookie-decline {
  background: transparent;
  color: rgba(255,255,255,.5);
  border: none;
  padding: 0.55rem 0.75rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: color var(--transition);
}
.cookie-decline:hover { color: rgba(255,255,255,.85); }

.legal-page { padding: 5rem 0 6rem; }
.legal-page h2 {
  font-size: 1.3rem;
  margin: 2rem 0 0.75rem;
  color: var(--clr-primary);
}
.legal-page p { color: var(--clr-text-mid); margin-bottom: 0.85rem; }
.legal-page ul {
  list-style: disc;
  padding-left: 1.5rem;
  color: var(--clr-text-mid);
  margin-bottom: 0.85rem;
}
.legal-page ul li { margin-bottom: 0.4rem; }
.legal-header { background: var(--clr-bg-alt); padding: 3rem 0 2.5rem; border-bottom: 1px solid var(--clr-border); }
.legal-header h1 { margin-bottom: 0; }
.legal-header .section-label { margin-bottom: 0.5rem; }

.success-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.success-inner { max-width: 480px; }
.success-icon { font-size: 3.5rem; margin-bottom: 1.5rem; }
.success-inner h1 { margin-bottom: 1rem; }
.success-inner p { color: var(--clr-text-mid); margin-bottom: 2rem; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--clr-primary);
  transition: gap var(--transition);
}
.back-link:hover { gap: 0.75rem; }

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content { padding: 4rem 0 2.5rem; order: 1; }
  .hero-img-wrap { order: 0; min-height: 55vw; height: 55vw; }
  .hero-img-wrap::after { display: none; }

  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .steps { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr 1fr; }
  .audience-inner { grid-template-columns: 1fr; }
  .lead-form-wrap { grid-template-columns: 1fr; gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--clr-bg);
    padding: 1.5rem;
    border-bottom: 1px solid var(--clr-border);
    gap: 1.25rem;
    z-index: 99;
  }
  .nav-cta { display: none; }
  .burger { display: flex; }
}

@media (max-width: 600px) {
  section { padding: 3.5rem 0; }
  .about-pillars { grid-template-columns: 1fr; }
  .results-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; }
  .lead-form { padding: 1.75rem 1.25rem; }
}
