:root{
  --bg:#fbf8f2;
  --paper:#f3eadc;
  --paper-2:#efe3d1;
  --sage:#7b856f;
  --sage-dark:#5f6b57;
  --graphite:#24303a;
  --muted:#687078;
  --line:rgba(36,48,58,.14);
  --white:#fffdf8;
  --shadow:0 24px 70px rgba(36,48,58,.11);
  --radius:28px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--graphite);
  background:var(--bg);
  font-family:"Nunito Sans",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  line-height:1.65;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  height:82px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px clamp(18px,4vw,72px);
  background:rgba(251,248,242,.88);
  backdrop-filter:blur(18px);
  z-index:20;
  border-bottom:1px solid rgba(36,48,58,.08);
}
.brand img{
  height:54px;
  width:auto;
  border-radius:7px;
}
.main-nav{
  display:flex;
  gap:30px;
  font-size:14px;
  letter-spacing:.04em;
}
.main-nav a{position:relative;color:var(--graphite)}
.main-nav a:after{
  content:"";
  position:absolute;
  left:0;bottom:-8px;
  width:0;height:1px;
  background:var(--sage);
  transition:.25s;
}
.main-nav a:hover:after{width:100%}
.menu-toggle{
  display:none;
  width:44px;height:44px;
  border:0;background:transparent;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.menu-toggle span{
  display:block;height:2px;width:26px;
  background:var(--graphite);
}
.section{
  padding:clamp(70px,8vw,120px) clamp(20px,6vw,96px);
  scroll-margin-top:86px;
}
.hero{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.05fr .95fr;
  align-items:center;
  gap:clamp(32px,6vw,90px);
  padding-top:130px;
  background:
    radial-gradient(circle at 85% 20%, rgba(123,133,111,.2), transparent 32%),
    linear-gradient(115deg, var(--bg) 0%, var(--bg) 54%, var(--paper) 54%, var(--paper) 100%);
}
.eyebrow{
  margin:0 0 14px;
  color:var(--sage-dark);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:12px;
  font-weight:700;
}
h1,h2,h3{
  font-family:"Cormorant Garamond",Georgia,serif;
  line-height:1.08;
  margin:0;
}
h1{font-size:clamp(46px,7vw,86px);max-width:770px}
h2{font-size:clamp(34px,4vw,56px)}
h3{font-size:25px}
.lead{
  max-width:670px;
  margin:28px 0 34px;
  font-size:clamp(18px,2vw,22px);
  color:var(--muted);
}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 24px;
  border-radius:999px;
  font-weight:700;
  font-size:13px;
  letter-spacing:.06em;
  text-transform:uppercase;
  transition:.2s;
}
.btn.primary{background:var(--sage);color:white}
.btn.primary:hover{background:var(--sage-dark);transform:translateY(-1px)}
.btn.secondary{border:1px solid var(--line);background:rgba(255,255,255,.45)}
.btn.secondary:hover{border-color:var(--sage)}
.hero-card,.section-image{
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
}
.photo-placeholder{
  min-height:560px;
  display:grid;
  place-items:center;
  background:
    linear-gradient(rgba(239,227,209,.35), rgba(239,227,209,.35)),
    url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?auto=format&fit=crop&w=1200&q=80") center/cover;
}
.photo-placeholder.small{
  min-height:315px;
  background:
    linear-gradient(rgba(239,227,209,.25), rgba(239,227,209,.25)),
    url("https://images.unsplash.com/photo-1600494603989-9650cf6ddd3d?auto=format&fit=crop&w=1000&q=80") center/cover;
}
.photo-placeholder.portrait{
  min-height:420px;
  background:
    linear-gradient(rgba(239,227,209,.28), rgba(239,227,209,.28)),
    url("https://images.unsplash.com/photo-1517841905240-472988babdf9?auto=format&fit=crop&w=1000&q=80") center/cover;
}
.photo-placeholder span{
  padding:10px 16px;
  border-radius:20px;
  background:rgba(251,248,242,.8);
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.about,.profile{
  display:grid;
  grid-template-columns:.85fr 1.15fr;
  gap:clamp(30px,6vw,72px);
  align-items:center;
}
.profile{grid-template-columns:1.05fr .95fr;background:var(--white)}
.section-text p:not(.eyebrow){
  max-width:720px;
  color:var(--muted);
  font-size:17px;
}
.services,.steps{background:var(--paper)}
.section-heading{
  text-align:center;
  max-width:820px;
  margin:0 auto 46px;
}
.service-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:1px;
  border:1px solid var(--line);
  background:var(--line);
  border-radius:24px;
  overflow:hidden;
}
.service-card{
  background:rgba(251,248,242,.72);
  padding:34px 22px;
  text-align:center;
}
.icon{
  width:48px;height:48px;
  margin:0 auto 16px;
  border:1px solid rgba(95,107,87,.28);
  border-radius:50%;
  display:grid;
  place-items:center;
  color:var(--sage-dark);
  font-size:24px;
}
.service-card p,.step p{color:var(--muted);font-size:15px;margin-bottom:0}
.text-link{
  display:inline-block;
  margin-top:10px;
  color:var(--sage-dark);
  font-weight:800;
}
.steps-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.step{
  background:rgba(251,248,242,.7);
  padding:34px;
  border-radius:22px;
  text-align:center;
  border:1px solid var(--line);
}
.step span{
  display:grid;
  place-items:center;
  width:34px;height:34px;
  margin:0 auto 18px;
  border-radius:50%;
  background:var(--sage);
  color:white;
  font-weight:800;
}
.contact{
  background:
    linear-gradient(rgba(251,248,242,.92), rgba(251,248,242,.92)),
    radial-gradient(circle at 20% 20%, rgba(123,133,111,.18), transparent 35%);
}
.contact-panel{
  background:var(--white);
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:clamp(28px,5vw,58px);
  display:grid;
  grid-template-columns:1fr 1.2fr auto;
  gap:30px;
  align-items:center;
}
.contact-list p{margin:3px 0;color:var(--muted)}
.contact-list strong{color:var(--graphite)}
footer{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:26px clamp(20px,6vw,96px);
  background:var(--sage-dark);
  color:white;
  font-size:14px;
}
.footer-brand{
  font-family:"Cormorant Garamond",Georgia,serif;
  letter-spacing:.35em;
}
.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s ease, transform .7s ease;
}
.reveal.visible{
  opacity:1;
  transform:none;
}
@media (max-width:1100px){
  .service-grid{grid-template-columns:repeat(3,1fr)}
  .contact-panel{grid-template-columns:1fr}
}
@media (max-width:820px){
  .site-header{height:74px}
  .brand img{height:48px}
  .menu-toggle{display:flex}
  .main-nav{
    position:absolute;
    top:74px;left:16px;right:16px;
    display:none;
    flex-direction:column;
    gap:0;
    padding:12px;
    background:var(--white);
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:var(--shadow);
  }
  .main-nav.open{display:flex}
  .main-nav a{padding:13px 10px}
  .hero{
    min-height:auto;
    grid-template-columns:1fr;
    padding-top:112px;
    background:linear-gradient(180deg,var(--bg),var(--paper));
  }
  .photo-placeholder{min-height:360px}
  .about,.profile{
    grid-template-columns:1fr;
  }
  .profile .section-image{order:-1}
  .service-grid{grid-template-columns:1fr 1fr}
  .steps-grid{grid-template-columns:1fr}
  footer{flex-direction:column;text-align:center}
}
@media (max-width:540px){
  .section{padding-left:18px;padding-right:18px}
  h1{font-size:42px}
  h2{font-size:32px}
  .lead{font-size:17px}
  .hero-actions .btn{width:100%}
  .service-grid{grid-template-columns:1fr}
  .service-card{padding:28px 20px}
  .contact-panel .btn{width:100%}
}

.social-link{
  margin-top:14px !important;
}
.social-link a{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--sage-dark);
  font-weight:700;
  transition:color .2s ease, transform .2s ease;
}
.social-link a:hover{
  color:#9b4668;
  transform:translateY(-1px);
}
.instagram-svg{
  width:24px;
  height:24px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
}
