:root{
  --green:#294f45;
  --green-dark:#17372f;
  --gold:#b69455;
  --cream:#f4f0e8;
  --paper:#fbfaf7;
  --ink:#1c211f;
  --muted:#686f6c;
  --line:#d9d5cb;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Inter",system-ui,sans-serif;
  color:var(--ink);
  background:var(--paper);
  line-height:1.65;
}

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

.site-header{
  position:sticky;
  top:0;
  z-index:20;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:16px 5vw;
  background:rgba(251,250,247,.94);
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:blur(12px);
}

.brand{display:flex;align-items:center;gap:12px;font-weight:600}
.brand-mark{
  display:grid;place-items:center;
  width:42px;height:42px;
  border-radius:50%;
  background:var(--green);
  color:white;
  font-family:"Cormorant Garamond",serif;
  font-size:20px;
}
.brand-text{font-family:"Cormorant Garamond",serif;font-size:24px}

.main-nav{display:flex;gap:22px;font-size:14px}
.main-nav a{position:relative}
.main-nav a:after{
  content:"";position:absolute;left:0;right:100%;bottom:-5px;height:1px;
  background:var(--gold);transition:.2s;
}
.main-nav a:hover:after{right:0}

.menu-toggle{
  display:none;
  background:none;border:0;font-size:25px;cursor:pointer;
}

.hero{
  min-height:78vh;
  position:relative;
  display:flex;
  align-items:center;
  padding:8vw 7vw;
  background:
    linear-gradient(90deg,rgba(16,45,38,.92),rgba(16,45,38,.55)),
    radial-gradient(circle at 70% 30%,#8c7955 0,transparent 28%),
    linear-gradient(135deg,#264d43,#111d1a);
  color:white;
  overflow:hidden;
}
.hero:after{
  content:"";
  position:absolute;
  right:-80px;bottom:-150px;
  width:540px;height:540px;border:1px solid rgba(255,255,255,.12);border-radius:50%;
}
.hero-content{position:relative;z-index:2;max-width:820px}
.eyebrow,.section-kicker{
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:600;
}
.eyebrow{color:#e6d3ad}
.hero h1{
  margin:.18em 0 .05em;
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(58px,9vw,112px);
  font-weight:600;
  line-height:.88;
}
.hero-subtitle{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(28px,3.5vw,44px);
  margin:22px 0 12px;
}
.hero-text{max-width:670px;font-size:18px;color:#f0f0ec}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}

.btn{
  display:inline-block;
  padding:13px 20px;
  border-radius:2px;
  border:1px solid transparent;
  font-weight:600;
  font-size:14px;
}
.btn.primary{background:var(--gold);color:#18221f}
.btn.ghost{border-color:rgba(255,255,255,.5);color:white}

.trio{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  max-width:1200px;
  margin:-44px auto 0;
  position:relative;
  z-index:5;
  background:var(--paper);
  box-shadow:0 18px 48px rgba(20,35,30,.10);
}
.trio article{padding:34px;border-right:1px solid var(--line)}
.trio article:last-child{border-right:0}
.trio span{color:var(--gold);font-size:12px}
.trio h2{
  margin:8px 0 4px;
  font-family:"Cormorant Garamond",serif;
  font-size:38px;
}

.section{padding:100px 7vw;max-width:1400px;margin:0 auto}
.soft-bg{max-width:none;background:var(--cream)}
.soft-bg > *{max-width:1200px;margin-left:auto;margin-right:auto}
.section-kicker{color:var(--gold);margin:0 0 14px}
.section-title,.section h2{
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
}
.section-title{font-size:clamp(42px,5vw,66px);line-height:1.05;margin:0 0 40px}

.two-col{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:8vw;
  align-items:start;
}
.two-col h2{font-size:clamp(44px,5.4vw,72px);line-height:1.02;margin:0}
.prose{font-size:18px;color:#38413e}
.prose p:first-child{margin-top:0}

.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.card{
  background:var(--paper);
  padding:34px;
  min-height:310px;
  border-top:3px solid var(--green);
}
.card-number{color:var(--gold);font-size:12px}
.card h3{
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
  line-height:1.05;
  margin:32px 0 18px;
}

.text-list{border-top:1px solid var(--line)}
.text-item{
  display:flex;
  justify-content:space-between;
  gap:25px;
  align-items:center;
  padding:28px 0;
  border-bottom:1px solid var(--line);
}
.text-item h3{
  margin:5px 0 3px;
  font-family:"Cormorant Garamond",serif;
  font-size:34px;
}
.text-item p{margin:0;color:var(--muted)}
.tag{font-size:11px;letter-spacing:.12em;text-transform:uppercase;color:var(--gold)}
.arrow{font-size:34px;color:var(--green)}

.gallery-section{max-width:1400px}
.gallery-grid{
  display:grid;
  grid-template-columns:1.3fr .7fr;
  grid-template-rows:260px 260px;
  gap:14px;
}
.photo{
  position:relative;
  display:flex;
  align-items:flex-end;
  padding:22px;
  overflow:hidden;
  background:#d9d2c5;
}
.photo:before{
  content:"";
  position:absolute;inset:0;
  background:
    linear-gradient(to top,rgba(0,0,0,.55),transparent 60%),
    radial-gradient(circle at 30% 25%,rgba(255,255,255,.55),transparent 24%);
}
.photo span{position:relative;color:white;font-weight:600;letter-spacing:.04em}
.ph1{grid-row:1/3;background:linear-gradient(135deg,#677a6f,#bda782)}
.ph2{background:linear-gradient(135deg,#7d6d5a,#d3c2a5)}
.ph3{background:linear-gradient(135deg,#52655f,#aaa99d)}
.ph4{display:none}

.about{border-top:1px solid var(--line)}
.contact{
  text-align:center;
  max-width:900px;
}
.contact h2{font-size:clamp(42px,5vw,64px);line-height:1.05}
.contact p{font-size:18px;color:var(--muted)}
.contact .btn{margin-top:14px}

.note{font-size:13px;color:#888;margin-top:18px}

footer{
  display:flex;
  justify-content:space-between;
  gap:30px;
  padding:40px 7vw;
  background:var(--green-dark);
  color:#e9ece8;
}
footer strong{font-family:"Cormorant Garamond",serif;font-size:25px}
footer p{margin:4px 0;color:#cfd7d3}

@media (max-width:900px){
  .main-nav{
    display:none;
    position:absolute;
    top:74px;left:0;right:0;
    padding:18px 5vw 24px;
    background:var(--paper);
    flex-direction:column;
    border-bottom:1px solid var(--line);
  }
  .main-nav.open{display:flex}
  .menu-toggle{display:block}
  .trio{grid-template-columns:1fr;margin:0}
  .trio article{border-right:0;border-bottom:1px solid var(--line)}
  .two-col{grid-template-columns:1fr;gap:28px}
  .cards{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr;grid-template-rows:250px 220px 220px}
  .ph1{grid-row:auto}
  footer{flex-direction:column}
}
