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

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

:root{
  --bg:hsl(38,15%,95%);
  --fg:hsl(120,25%,15%);
  --primary:hsl(120,40%,35%);
  --primary-dark:hsl(120,40%,28%);
  --primary-fg:hsl(38,15%,95%);
  --card:hsl(38,20%,98%);
  --card-border:hsl(38,15%,88%);
  --muted-fg:hsl(120,15%,45%);
  --accent:hsl(35,75%,55%);
  --border:hsl(38,12%,85%);
  --radius:0.375rem;
}

html{scroll-behavior:smooth}

body{
  font-family:'Inter',system-ui,sans-serif;
  background:var(--bg);
  color:var(--fg);
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}

body::after{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:9999;
  opacity:.03;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 1.5rem;
}

.display{font-family:'Cormorant Garamond',Georgia,serif;line-height:1.15}

header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  background:hsla(38,15%,95%,.85);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid var(--border);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:1.1rem 0;
}

.logo{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.7rem;
  font-weight:600;
  color:var(--fg);
  letter-spacing:-.02em;
}

nav{display:flex;align-items:center;gap:2rem}

nav a{
  font-size:.875rem;
  font-weight:500;
  color:var(--muted-fg);
  transition:color .2s;
}

nav a:hover{color:var(--fg)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.65rem 1.35rem;
  border-radius:var(--radius);
  font-family:'Inter',sans-serif;
  font-size:.875rem;
  font-weight:500;
  cursor:pointer;
  border:1px solid transparent;
  transition:opacity .2s,background .2s,color .2s,border-color .2s;
  text-decoration:none;
  white-space:nowrap;
}

.btn-primary{
  background:var(--primary);
  color:var(--primary-fg);
  border-color:var(--primary);
}

.btn-primary:hover{background:var(--primary-dark);border-color:var(--primary-dark)}

.btn-outline{
  background:transparent;
  color:var(--fg);
  border-color:var(--border);
}

.btn-outline:hover{border-color:var(--fg)}

.btn-ghost{
  background:transparent;
  color:var(--muted-fg);
  border-color:transparent;
  padding:.5rem .75rem;
}

.btn-ghost:hover{color:var(--fg)}

.btn-lg{padding:.85rem 1.75rem;font-size:1rem}

.hamburger{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:.35rem;
  color:var(--fg);
}

.hamburger svg{display:block}

.mobile-nav{
  display:none;
  flex-direction:column;
  gap:1rem;
  padding:1.25rem 0 1rem;
  border-top:1px solid var(--border);
}

.mobile-nav.open{display:flex}
.mobile-nav a{font-size:.9375rem;font-weight:500;color:var(--muted-fg)}
.mobile-nav a:hover{color:var(--fg)}
.mobile-nav .btn-primary{align-self:flex-start}

section{padding:5rem 0}

.section-card{background:var(--card);border-top:1px solid var(--card-border);border-bottom:1px solid var(--card-border)}

.section-header{max-width:720px;margin:0 auto 4rem;text-align:center}

.section-header h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2.2rem,5vw,3.25rem);
  font-weight:700;
  margin-bottom:1rem;
  color:var(--fg);
}

.section-header p{font-size:1.1rem;color:var(--muted-fg);line-height:1.7}

.hero{padding:8rem 0 5rem}

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

.hero-text h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(3rem,6vw,4.75rem);
  font-weight:700;
  line-height:1.1;
  margin-bottom:1.5rem;
  color:var(--fg);
}

.hero-text h1 .accent{color:var(--primary)}

.hero-text p{font-size:1.125rem;color:var(--muted-fg);margin-bottom:2.5rem;line-height:1.75;max-width:480px}

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

.hero-image{position:relative}

.hero-image-wrap{
  aspect-ratio:4/5;
  border-radius:.75rem;
  overflow:hidden;
  box-shadow:0 24px 48px rgba(45,90,39,.14);
}

.hero-image-wrap img{width:100%;height:100%;object-fit:cover}

.hero-glow-1{
  position:absolute;
  bottom:-2rem;left:-2rem;
  width:8rem;height:8rem;
  background:hsla(35,75%,55%,.15);
  border-radius:50%;
  filter:blur(2.5rem);
  pointer-events:none;
}

.hero-glow-2{
  position:absolute;
  top:-2rem;right:-2rem;
  width:10rem;height:10rem;
  background:hsla(120,40%,35%,.08);
  border-radius:50%;
  filter:blur(3rem);
  pointer-events:none;
}

.benefits-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:2.5rem;
  margin-top:1rem;
}

.benefit{text-align:center}

.benefit-icon{
  width:4rem;height:4rem;
  margin:0 auto 1.25rem;
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}

.benefit-icon.green{background:hsla(120,40%,35%,.1)}
.benefit-icon.amber{background:hsla(35,75%,55%,.1)}
.benefit-icon.brown{background:hsla(30,25%,35%,.1)}

.benefit-icon svg{width:1.75rem;height:1.75rem}
.benefit-icon.green svg{color:var(--primary)}
.benefit-icon.amber svg{color:var(--accent)}
.benefit-icon.brown svg{color:hsl(30,25%,35%)}

.benefit h3{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:.6rem;
  color:var(--fg);
}

.benefit p{font-size:.9375rem;color:var(--muted-fg)}

.program-inner{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
}

.program-steps{display:flex;flex-direction:column;gap:2rem}

.step{display:flex;gap:1.25rem;align-items:flex-start}

.step-num{
  flex-shrink:0;
  width:3rem;height:3rem;
  border-radius:50%;
  background:hsla(120,40%,35%,.1);
  display:flex;align-items:center;justify-content:center;
  font-weight:600;
  color:var(--primary);
  font-size:1rem;
}

.step-body h3{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.2rem;
  font-weight:600;
  margin-bottom:.4rem;
  color:var(--fg);
}

.step-body p{font-size:.9375rem;color:var(--muted-fg);line-height:1.65}

.program-image{aspect-ratio:4/5;border-radius:.75rem;overflow:hidden;box-shadow:0 16px 32px rgba(45,90,39,.1)}
.program-image img{width:100%;height:100%;object-fit:cover}

.process-top{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:center;
  margin-bottom:3.5rem;
}

.process-image{aspect-ratio:16/9;border-radius:.75rem;overflow:hidden;box-shadow:0 16px 32px rgba(45,90,39,.1)}
.process-image img{width:100%;height:100%;object-fit:cover}

.process-features{display:flex;flex-direction:column;gap:1.75rem}

.feature{display:flex;gap:1rem;align-items:flex-start}

.feature-icon{
  flex-shrink:0;
  margin-top:.15rem;
  color:var(--primary);
}

.feature-icon svg{width:1.4rem;height:1.4rem}

.feature h3{font-size:1rem;font-weight:600;margin-bottom:.35rem;color:var(--fg)}
.feature p{font-size:.9rem;color:var(--muted-fg);line-height:1.6}

.gallery{display:grid;grid-template-columns:1fr 1fr;gap:1.5rem;max-width:900px;margin:0 auto}
.gallery-item{aspect-ratio:1;border-radius:.75rem;overflow:hidden;box-shadow:0 8px 24px rgba(45,90,39,.08)}
.gallery-item img{width:100%;height:100%;object-fit:cover}

.faq-list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:1rem}

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

.faq-question{
  width:100%;
  background:none;
  border:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:1rem;
  padding:1.25rem 1.5rem;
  font-family:'Inter',sans-serif;
  font-size:1rem;
  font-weight:500;
  color:var(--fg);
  text-align:left;
}

.faq-icon{
  flex-shrink:0;
  width:1.25rem;height:1.25rem;
  position:relative;
  transition:transform .3s;
}

.faq-icon::before,.faq-icon::after{
  content:'';
  position:absolute;
  background:var(--muted-fg);
  border-radius:2px;
  transition:transform .3s,opacity .3s;
}

.faq-icon::before{width:1.25rem;height:2px;top:50%;left:0;transform:translateY(-50%)}
.faq-icon::after{width:2px;height:1.25rem;top:0;left:50%;transform:translateX(-50%)}

.faq-item.open .faq-icon::after{transform:translateX(-50%) rotate(90deg);opacity:0}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
  font-size:.9375rem;
  color:var(--muted-fg);
  line-height:1.7;
}

.faq-answer-inner{padding:0 1.5rem 1.25rem}

.contact-section{background:linear-gradient(135deg,hsla(120,40%,35%,.05) 0%,transparent 50%,hsla(35,75%,55%,.05) 100%)}

.form-card{
  max-width:640px;
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:.75rem;
  padding:2.5rem;
  box-shadow:0 16px 48px rgba(45,90,39,.08);
}

.form-group{margin-bottom:1.5rem}

.form-group label{
  display:block;
  font-size:.875rem;
  font-weight:500;
  margin-bottom:.5rem;
  color:var(--fg);
}

.form-group input{
  width:100%;
  padding:.75rem 1rem;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:var(--bg);
  color:var(--fg);
  font-family:'Inter',sans-serif;
  font-size:.9375rem;
  transition:border-color .2s,box-shadow .2s;
  outline:none;
}

.form-group input:focus{border-color:var(--primary);box-shadow:0 0 0 3px hsla(120,40%,35%,.12)}
.form-group input::placeholder{color:var(--muted-fg)}

.form-note{font-size:.8125rem;color:var(--muted-fg);text-align:center;margin-top:1rem}
.form-note a{text-decoration:underline;transition:color .2s}
.form-note a:hover{color:var(--fg)}

footer{
  background:var(--card);
  border-top:1px solid var(--card-border);
  padding:4rem 0 2.5rem;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:3rem;
  margin-bottom:3rem;
}

.footer-brand .logo{font-size:1.5rem;margin-bottom:.75rem}
.footer-brand p{font-size:.875rem;color:var(--muted-fg);line-height:1.65}

footer h4{font-size:.9375rem;font-weight:600;margin-bottom:1rem;color:var(--fg)}

.footer-links{display:flex;flex-direction:column;gap:.6rem}
.footer-links a{font-size:.875rem;color:var(--muted-fg);transition:color .2s}
.footer-links a:hover{color:var(--fg)}

.footer-reqs p{font-size:.875rem;color:var(--muted-fg);line-height:1.75}
.footer-reqs a{transition:color .2s}
.footer-reqs a:hover{color:var(--fg)}

.footer-copy{
  border-top:1px solid var(--card-border);
  padding-top:1.5rem;
  font-size:.8125rem;
  color:var(--muted-fg);
  text-align:center;
}

.cookie-banner{
  position:fixed;
  bottom:0;left:0;right:0;
  z-index:200;
  padding:1rem 1.5rem;
  transform:translateY(100%);
  transition:transform .4s cubic-bezier(.22,1,.36,1);
}

.cookie-banner.visible{transform:translateY(0)}

.cookie-inner{
  max-width:900px;
  margin:0 auto;
  background:var(--card);
  border:1px solid var(--card-border);
  border-radius:.75rem;
  box-shadow:0 -4px 32px rgba(45,90,39,.1);
  padding:1.25rem 1.5rem;
  display:flex;
  align-items:center;
  gap:1.5rem;
  flex-wrap:wrap;
}

.cookie-text{flex:1;min-width:220px;font-size:.9rem;color:var(--fg)}

.cookie-actions{display:flex;align-items:center;gap:.75rem;flex-shrink:0}

.cookie-close{
  background:none;
  border:none;
  cursor:pointer;
  color:var(--muted-fg);
  padding:.35rem;
  border-radius:var(--radius);
  transition:color .2s;
  display:flex;align-items:center;
}

.cookie-close:hover{color:var(--fg)}
.cookie-close svg{width:1.1rem;height:1.1rem}

.legal-page{padding:8rem 0 5rem;min-height:100vh}

.legal-back{
  display:inline-flex;
  align-items:center;
  gap:.5rem;
  font-size:.875rem;
  color:var(--muted-fg);
  margin-bottom:2.5rem;
  transition:color .2s;
}

.legal-back:hover{color:var(--fg)}
.legal-back svg{width:1rem;height:1rem}

.legal-content h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,4vw,3rem);
  font-weight:700;
  color:var(--fg);
  margin-bottom:2rem;
}

.legal-content .date{font-size:.875rem;color:var(--muted-fg);margin-bottom:2rem}

.legal-content h2{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:1.4rem;
  font-weight:600;
  color:var(--fg);
  margin-top:2.5rem;
  margin-bottom:.75rem;
}

.legal-content h3{
  font-size:1rem;
  font-weight:600;
  color:var(--fg);
  margin-top:1.5rem;
  margin-bottom:.5rem;
}

.legal-content p{font-size:.9375rem;color:var(--muted-fg);line-height:1.75;margin-bottom:1rem}

.legal-content ul{
  list-style:disc;
  padding-left:1.5rem;
  color:var(--muted-fg);
  font-size:.9375rem;
  line-height:1.75;
  margin-bottom:1rem;
}

.legal-content ul li{margin-bottom:.4rem}

.legal-content strong{color:var(--fg);font-weight:500}

.legal-reqs{
  margin-top:3rem;
  padding-top:2rem;
  border-top:1px solid var(--border);
}

.legal-reqs h3{font-size:.9375rem;font-weight:600;color:var(--fg);margin-bottom:.75rem}
.legal-reqs p{font-size:.9rem;color:var(--muted-fg);line-height:1.85}

.success-page{
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

.success-main{
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:6rem 1.5rem;
}

.success-card{max-width:560px;text-align:center}

.success-icon{
  width:5rem;height:5rem;
  margin:0 auto 2rem;
  border-radius:50%;
  background:hsla(120,40%,35%,.1);
  display:flex;align-items:center;justify-content:center;
}

.success-icon svg{width:2.75rem;height:2.75rem;color:var(--primary)}

.success-card h1{
  font-family:'Cormorant Garamond',Georgia,serif;
  font-size:clamp(2rem,4vw,2.75rem);
  font-weight:700;
  color:var(--fg);
  margin-bottom:1.25rem;
}

.success-card p{font-size:1.0625rem;color:var(--muted-fg);line-height:1.75;margin-bottom:2rem}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .6s cubic-bezier(.22,1,.36,1),transform .6s cubic-bezier(.22,1,.36,1);
}

.reveal.visible{opacity:1;transform:translateY(0)}

.reveal-delay-1{transition-delay:.1s}
.reveal-delay-2{transition-delay:.2s}
.reveal-delay-3{transition-delay:.3s}

@media(max-width:900px){
  .hero-inner,.program-inner,.process-top{grid-template-columns:1fr}
  .hero-image{order:-1}
  .benefits-grid{grid-template-columns:1fr 1fr}
  .process-image{order:-1}
  .footer-grid{grid-template-columns:1fr 1fr}
  nav{display:none}
  .hamburger{display:flex}
}

@media(max-width:600px){
  .benefits-grid{grid-template-columns:1fr}
  .gallery{grid-template-columns:1fr}
  .footer-grid{grid-template-columns:1fr}
  .form-card{padding:1.75rem 1.25rem}
  .hero-actions{flex-direction:column}
  .btn-lg{width:100%;justify-content:center}
}
