:root{
  --olive:#64714F;
  --sage:#9AA27B;
  --sand:#D3BD98;
  --cream:#F7EFDD;
  --ivory:#FBF8F0;
  --charcoal:#1C1B17;
  --line:rgba(28,27,23,.10);
  --shadow:0 22px 70px rgba(28,27,23,.10);
  --display:"EB Garamond", Georgia, serif;
  --sans:"Instrument Sans", system-ui, sans-serif;
  --max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:var(--sans);
  color:var(--charcoal);
  background:var(--cream);
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.site-header{
  position:fixed;
  top:24px;
  left:50%;
  transform:translateX(-50%);
  width:min(calc(100% - 34px), var(--max));
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:14px 18px;
  border:1px solid rgba(255,255,255,.60);
  border-radius:999px;
  background:rgba(247,239,221,.78);
  backdrop-filter:blur(18px);
  box-shadow:0 16px 54px rgba(28,27,23,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:1.18rem;
  font-weight:700;
  letter-spacing:-.02em;
}
.brand img{
  width:42px;
  height:42px;
  object-fit:contain;
}
.nav{
  display:flex;
  align-items:center;
  gap:22px;
  color:rgba(28,27,23,.72);
  font-weight:600;
}
.nav a,.nav button{
  border:0;
  background:none;
  font:inherit;
  color:inherit;
  padding:0;
  cursor:pointer;
}
.nav a:hover,.nav button:hover{color:var(--charcoal)}
.nav-item{position:relative}
.has-submenu button{
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.submenu{
  position:absolute;
  top:calc(100% + 14px);
  left:50%;
  transform:translateX(-50%) translateY(8px);
  min-width:185px;
  padding:10px;
  border-radius:24px;
  background:rgba(247,239,221,.97);
  border:1px solid rgba(255,255,255,.56);
  box-shadow:var(--shadow);
  opacity:0;
  pointer-events:none;
  transition:.22s ease;
}
.has-submenu:hover .submenu,
.has-submenu.is-open .submenu{
  opacity:1;
  pointer-events:auto;
  transform:translateX(-50%) translateY(0);
}
.submenu a{
  display:block;
  padding:14px 16px;
  border-radius:16px;
}
.submenu a:hover{background:rgba(100,113,79,.08)}
.menu-toggle{
  display:none;
  width:46px;
  height:46px;
  border:0;
  border-radius:50%;
  background:var(--olive);
}
.menu-toggle span{
  display:block;
  width:20px;
  height:2px;
  background:var(--cream);
  margin:5px auto;
}

.hero{
  min-height:100svh;
  position:relative;
  display:flex;
  align-items:flex-end;
  overflow:hidden;
  padding:155px max(6vw,28px) 84px;
  background:
    radial-gradient(circle at 18% 18%, rgba(154,162,123,.40), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(211,189,152,.25), transparent 34%),
    linear-gradient(135deg, var(--ivory), #efe5cd 56%, #e0d2ad);
}
.grain{
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity:.14;
  background-image:url("data:image/svg+xml,%3Csvg viewBox='0 0 300 300' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.72' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='.34'/%3E%3C/svg%3E");
  mix-blend-mode:multiply;
}
.hero-plant{
  position:absolute;
  right:5vw;
  top:10vh;
  width:min(42vw,560px);
  height:auto;
  opacity:.76;
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:2;
  width:min(100%, var(--max));
  margin:0 auto;
}
.eyebrow{
  margin:0 0 22px;
  color:var(--olive);
  text-transform:uppercase;
  letter-spacing:.22em;
  font-weight:700;
  font-size:.78rem;
}
.hero h1,
.section-copy h2,
.section-head h2,
.method-copy h2,
.contact-card h2{
  margin:0;
  font-family:var(--display);
  font-weight:600;
  letter-spacing:-.04em;
  line-height:.92;
  color:var(--charcoal);
}
.hero h1{
  max-width:920px;
  font-size:clamp(5rem, 14vw, 12.5rem);
}
.hero-copy{
  max-width:620px;
  margin:28px 0 0;
  font-size:clamp(1.05rem,1.55vw,1.32rem);
  line-height:1.74;
  color:rgba(28,27,23,.78);
}
.hero-actions{
  margin-top:34px;
  display:grid;
  grid-template-columns:repeat(2,minmax(220px,1fr));
  max-width:640px;
  gap:16px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:70px;
  padding:22px 30px;
  border-radius:999px;
  font-weight:700;
  font-size:1.06rem;
  transition:.22s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-dark{
  background:var(--charcoal);
  color:var(--cream);
  box-shadow:0 18px 35px rgba(28,27,23,.15);
}
.btn-light{
  background:rgba(247,239,221,.72);
  color:var(--charcoal);
  border:1px solid rgba(28,27,23,.10);
}

.section{
  width:min(calc(100% - 48px), var(--max));
  margin:0 auto;
  padding:104px 0;
}
.split{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:48px;
  align-items:end;
}
.section-copy h2,
.section-head h2,
.method-copy h2,
.contact-card h2{
  font-size:clamp(3.2rem,7vw,7rem);
}
.soft-card{
  padding:42px;
  border-radius:42px 120px 42px 120px;
  background:rgba(100,113,79,.96);
  color:var(--cream);
  box-shadow:var(--shadow);
}
.soft-card p{
  margin:0;
  font-size:clamp(1.12rem,2vw,1.65rem);
  line-height:1.58;
  color:rgba(247,239,221,.92);
}
.section-head{
  max-width:920px;
  margin-bottom:34px;
}

.paths-cards{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.path-card{
  min-height:295px;
  padding:30px;
  background:rgba(247,239,221,.72);
  border:1px solid var(--line);
  border-radius:34px 86px 34px 86px;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
}
.path-card:nth-child(2){
  background:rgba(154,162,123,.14);
  border-radius:86px 34px 86px 34px;
}
.path-card:nth-child(3){background:rgba(211,189,152,.22)}
.path-card span{
  font-family:var(--display);
  font-size:3.25rem;
  line-height:.85;
  color:rgba(100,113,79,.92);
  font-weight:600;
}
.path-card h3{
  margin:8px 0 10px;
  font-family:var(--display);
  font-size:clamp(2.2rem,3.6vw,3.45rem);
  line-height:.95;
  letter-spacing:-.03em;
  font-weight:600;
}
.path-card p{
  margin:0;
  color:rgba(28,27,23,.72);
  line-height:1.72;
  font-size:1.02rem;
}

.method-section{
  width:100%;
  padding:120px max(6vw,28px);
  background:var(--olive);
  color:var(--cream);
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:60px;
  align-items:center;
}
.method-copy h2{color:var(--cream)}
.method-copy p:not(.eyebrow){
  max-width:620px;
  color:rgba(247,239,221,.84);
  font-size:1.15rem;
  line-height:1.82;
}
.method-copy .eyebrow{color:rgba(247,239,221,.76)}
.method-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
}
.method-card{
  min-height:180px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:30px 34px;
  border-radius:34px 86px 34px 86px;
  border:1px solid rgba(247,239,221,.24);
  background:rgba(247,239,221,.035);
}
.method-card:nth-child(2),
.method-card:nth-child(3){border-radius:86px 34px 86px 34px}
.method-card span{
  font-family:var(--display);
  font-size:4.1rem;
  line-height:.82;
  font-weight:600;
}
.method-card strong{
  font-size:1.15rem;
  color:rgba(247,239,221,.93);
}

.projects-section .section-head{margin-bottom:28px}
.project-card{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:stretch;
  overflow:hidden;
  border-radius:48px;
  background:var(--olive);
  color:var(--cream);
  box-shadow:var(--shadow);
}
.project-copy{
  padding:40px;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  min-height:380px;
}
.project-copy .eyebrow{color:rgba(247,239,221,.72)}
.project-copy h3{
  margin:0;
  font-family:var(--display);
  font-size:clamp(3.4rem,7vw,6.6rem);
  line-height:.9;
  letter-spacing:-.04em;
  font-weight:600;
}
.project-copy p{
  max-width:36ch;
  color:rgba(247,239,221,.84);
  line-height:1.72;
  font-size:1.08rem;
  margin:16px 0 26px;
}
.project-copy span{
  color:var(--sand);
  font-weight:700;
}
.project-visual{min-height:380px}
.project-visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.contact-section{
  width:min(calc(100% - 48px),960px);
  margin:0 auto;
  padding:110px 0;
}
.contact-card{
  padding:48px;
  border-radius:54px 128px 54px 128px;
  background:var(--sand);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.ghl-frame-wrap{
  margin-top:28px;
  width:100%;
  min-height:744px;
  border-radius:34px;
  background:rgba(247,239,221,.55);
  box-shadow:inset 0 0 0 1px rgba(28,27,23,.08);
  overflow:hidden;
}
.ghl-frame-wrap iframe{
  display:block;
  width:100%;
  min-height:744px;
  border:0;
  background:transparent;
}

.footer{
  width:min(calc(100% - 48px),var(--max));
  margin:0 auto;
  padding:36px 0 46px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  color:rgba(28,27,23,.56);
}

.reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.in-view{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.12s}
.delay-2{transition-delay:.22s}
.delay-3{transition-delay:.32s}

@media (max-width:980px){
  .site-header{
    top:14px;
    width:calc(100% - 22px);
    padding:14px;
  }
  .menu-toggle{display:block}
  .nav{
    position:absolute;
    top:calc(100% + 12px);
    left:0;
    right:0;
    display:none;
    flex-direction:column;
    align-items:stretch;
    padding:18px;
    border-radius:30px;
    background:rgba(247,239,221,.96);
    box-shadow:var(--shadow);
  }
  .nav.is-open{display:flex}
  .has-submenu button{width:100%;justify-content:space-between}
  .submenu{
    position:static;
    transform:none;
    box-shadow:none;
    background:rgba(100,113,79,.08);
    opacity:1;
    pointer-events:auto;
    margin-top:10px;
    display:none;
  }
  .has-submenu.is-open .submenu{display:block;transform:none}
  .split,.method-section,.method-grid,.paths-cards,.project-card{
    grid-template-columns:1fr;
  }
  .hero{padding-top:140px}
  .hero h1{font-size:clamp(4.2rem,21vw,9rem)}
  .hero-plant{
    right:-96px;
    top:145px;
    width:520px;
    opacity:.38;
  }
  .hero-actions{
    grid-template-columns:1fr;
    max-width:100%;
  }
  .project-visual{min-height:280px}
}

@media (max-width:640px){
  .brand{font-size:1.02rem}
  .brand img{width:34px;height:34px}
  .section,.contact-section{
    width:min(calc(100% - 28px),var(--max));
    padding:76px 0;
  }
  .hero{
    padding-left:18px;
    padding-right:18px;
  }
  .hero-actions .btn{min-height:64px}
  .section-copy h2,.section-head h2,.method-copy h2,.contact-card h2{
    font-size:clamp(3rem,14vw,4.9rem);
  }
  .path-card,.method-card,.soft-card,.contact-card{
    border-radius:28px 58px 28px 58px;
  }
  .method-section{padding:82px 18px}
  .project-copy{padding:30px;min-height:unset}
  .footer{flex-direction:column;padding-top:28px}
  .ghl-frame-wrap,.ghl-frame-wrap iframe{min-height:760px}
}
