
:root{
  --cream:#f7f4ed;
  --cream-2:#eee9df;
  --sage:#7b8266;
  --sage-dark:#5d654b;
  --ink:#2f3129;
  --muted:#6f7069;
  --white:#fffdf8;
  --line:#d8d1c4;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}
.container{width:min(1120px,92%);margin:0 auto}
.site-header{
  position:sticky;top:0;z-index:20;
  background:rgba(247,244,237,.96);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(93,101,75,.12)
}
.nav{
  display:flex;align-items:center;justify-content:space-between;gap:24px;
  min-height:78px
}
.brand{
  display:flex;flex-direction:column;line-height:1.05
}
.brand strong{
  font-family:Georgia, "Times New Roman", serif;
  font-size:1.45rem;letter-spacing:.12em;color:var(--sage-dark)
}
.brand span{font-size:.72rem;letter-spacing:.28em;margin-top:6px}
.nav-links{display:flex;align-items:center;gap:24px;font-size:.94rem;font-family:Inter, Arial, Helvetica, sans-serif}
.nav-links a:hover{color:var(--sage-dark)}
.button{
  display:inline-block;
  background:var(--sage-dark);color:white;
  padding:13px 20px;border-radius:999px;
  font-weight:700;border:1px solid var(--sage-dark)
}
.button.secondary{
  background:transparent;color:var(--sage-dark)
}
.hero{
  display:grid;grid-template-columns:1.02fr .98fr;
  min-height:620px;background:var(--white)
}
.hero-copy{
  padding:80px max(5vw,36px);
  display:flex;flex-direction:column;justify-content:center
}
.eyebrow{
  text-transform:uppercase;letter-spacing:.2em;
  font-size:.78rem;color:var(--sage-dark);font-weight:700
}
h1,h2,h3{
  font-family:"Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  font-weight:500;color:var(--sage-dark);line-height:1.12;letter-spacing:-.025em
}
h1{font-size:clamp(3rem,5.2vw,5.6rem);margin:12px 0 16px}
h2{font-size:clamp(2rem,3.4vw,3.3rem);margin:0 0 16px}
h3{font-size:1.4rem;margin:.3rem 0}
.lead{font-size:1.15rem;color:#4b4d45;max-width:650px}
.hero-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:24px}
.hero-image img{width:100%;height:100%;object-fit:cover}
.band{
  background:var(--sage);color:white;text-align:center;
  padding:14px 20px;font-weight:700;letter-spacing:.06em
}
.section{padding:78px 0}
.section.alt{background:var(--white)}
.section-head{max-width:720px;margin-bottom:34px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.card{
  background:var(--white);border:1px solid var(--line);
  border-radius:20px;padding:28px;box-shadow:0 8px 30px rgba(47,49,41,.04)
}
.icon{
  width:44px;height:44px;border-radius:50%;
  display:grid;place-items:center;background:var(--cream-2);
  color:var(--sage-dark);font-size:1.2rem;margin-bottom:16px
}
.photo-strip{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.photo-strip img{height:330px;width:100%;object-fit:cover;border-radius:18px}
.split{display:grid;grid-template-columns:.9fr 1.1fr;gap:46px;align-items:start}
.list{
  display:grid;grid-template-columns:repeat(2,1fr);gap:16px
}
.list-item{
  background:var(--white);border:1px solid var(--line);
  border-radius:16px;padding:18px
}
.cta{
  background:var(--sage-dark);color:white;border-radius:28px;
  padding:46px;display:flex;align-items:center;justify-content:space-between;gap:30px
}
.cta h2{color:white;margin-bottom:8px}
.cta p{margin:0;color:rgba(255,255,255,.84)}
footer{
  border-top:1px solid var(--line);padding:36px 0 44px;color:var(--muted)
}
.footer-grid{
  display:grid;grid-template-columns:1.4fr 1fr 1fr;gap:28px
}
.small{font-size:.92rem}
.page-hero{
  padding:92px 0 56px;background:var(--white)
}
.page-hero p{max-width:720px}
.gallery{
  display:grid;grid-template-columns:repeat(2,1fr);gap:18px
}
.gallery figure{margin:0;background:white;border-radius:18px;overflow:hidden;border:1px solid var(--line)}
.gallery img{width:100%;height:420px;object-fit:cover}
.gallery figcaption{padding:16px 18px;color:var(--muted)}
.contact-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:36px}
form{
  background:var(--white);padding:28px;border-radius:20px;border:1px solid var(--line)
}
label{display:block;font-weight:700;margin:14px 0 6px}
input,textarea{
  width:100%;padding:13px 14px;border:1px solid #cfc7b9;
  border-radius:12px;background:#fff;font:inherit
}
textarea{min-height:130px;resize:vertical}
.note{font-size:.85rem;color:var(--muted);margin-top:10px}
.mobile-toggle{display:none}
@media (max-width: 860px){
  .hero,.split,.contact-grid{grid-template-columns:1fr}
  .hero-image{min-height:400px}
  .grid-3,.grid-2,.list,.photo-strip,.footer-grid,.gallery{grid-template-columns:1fr}
  .photo-strip img,.gallery img{height:300px}
  .nav-links{display:none}
  .mobile-toggle{display:block;font-size:1.35rem}
  .nav.open .nav-links{
    display:flex;position:absolute;top:78px;left:0;right:0;
    background:var(--cream);padding:18px 4%;flex-direction:column;align-items:flex-start;
    border-bottom:1px solid var(--line)
  }
  .cta{flex-direction:column;align-items:flex-start}
}

.narrow{max-width:760px;margin:0 auto}

.our-home-heading{
  font-size:clamp(2rem,3.2vw,3.4rem);
  max-width:900px;
}


.form-success{
  display:none;
  width:min(1120px,92%);
  margin:28px auto 0;
  padding:18px 22px;
  border:1px solid var(--line);
  border-radius:16px;
  background:var(--white);
  color:var(--ink);
  box-shadow:0 8px 30px rgba(47,49,41,.05);
}
.form-success.show{display:flex;flex-direction:column;gap:3px}
.form-success strong{color:var(--sage-dark);font-size:1.05rem}
