:root{
  --ink:#12181f;
  --ink-soft:#2a333d;
  --paper:#f7f5f1;
  --paper-alt:#efece5;
  --gold:#a8823a;
  --gold-soft:#c9a45c;
  --line:rgba(18,24,31,.12);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:'Inter', system-ui, sans-serif;
}

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

html{scroll-behavior:smooth}

body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--paper);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

.wrap{
  max-width:1120px;
  margin:0 auto;
  padding:0 24px;
}

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

h1,h2,h3{font-family:var(--font-display);font-weight:600;line-height:1.15}

.eyebrow{
  font-size:.78rem;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-bottom:.6rem;
}

/* header */
.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(247,245,241,.92);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--line);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:76px;
}

.brand{
  font-family:var(--font-display);
  font-size:1.3rem;
  font-weight:600;
  letter-spacing:.03em;
}

.brand-sub{
  font-family:var(--font-body);
  font-size:.68rem;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
  margin-left:.5rem;
  vertical-align:middle;
}

.site-nav{display:flex;gap:2.2rem}

.site-nav a{
  font-size:.92rem;
  font-weight:500;
  color:var(--ink-soft);
  position:relative;
  padding:.3rem 0;
}

.site-nav a::after{
  content:"";
  position:absolute;
  left:0;right:0;bottom:0;
  height:1px;
  background:var(--gold);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}

.site-nav a:hover::after{transform:scaleX(1)}

.nav-toggle{
  display:none;
  flex-direction:column;
  justify-content:center;
  gap:5px;
  width:40px;
  height:40px;
  background:none;
  border:0;
  cursor:pointer;
}

.nav-toggle span{
  display:block;
  height:2px;
  background:var(--ink);
  border-radius:1px;
}

/* hero */
.hero{
  padding:88px 0 96px;
  border-bottom:1px solid var(--line);
}

.hero-inner{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:64px;
  align-items:center;
}

.hero h1{
  font-size:clamp(2.5rem,5vw,3.6rem);
  letter-spacing:.005em;
}

.hero .lead{
  margin-top:1.4rem;
  font-size:1.08rem;
  color:var(--ink-soft);
  max-width:44ch;
}

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

.btn{
  display:inline-block;
  padding:.9rem 1.7rem;
  font-size:.92rem;
  font-weight:600;
  border-radius:2px;
  transition:background .2s ease, color .2s ease, border-color .2s ease;
}

.btn-primary{
  background:var(--ink);
  color:var(--paper);
}
.btn-primary:hover{background:var(--gold);color:var(--ink)}

.btn-ghost{
  border:1px solid var(--ink);
}
.btn-ghost:hover{border-color:var(--gold);color:var(--gold-soft)}

.hero-portrait{
  position:relative;
  justify-self:end;
  max-width:340px;
}

.hero-portrait::before{
  content:"";
  position:absolute;
  inset:16px -16px -16px 16px;
  border:1px solid var(--gold);
  z-index:0;
}

.hero-portrait img{
  position:relative;
  z-index:1;
  width:100%;
  height:auto;
  display:block;
  filter:grayscale(.15);
  box-shadow:0 24px 48px -24px rgba(18,24,31,.4);
}

/* sections */
.section{padding:88px 0}
.section:nth-of-type(even){background:var(--paper-alt)}

.section-head{max-width:640px;margin-bottom:2.8rem}
.section-head h2{font-size:clamp(1.9rem,3vw,2.5rem)}

.about-inner{max-width:900px}
.about-body p{color:var(--ink-soft);max-width:70ch}
.about-body p + p{margin-top:1rem}

.stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.5rem;
  margin-top:2.6rem;
  border-top:1px solid var(--line);
  padding-top:2rem;
}

.stats dt{
  font-family:var(--font-display);
  font-size:1.7rem;
  color:var(--gold);
  font-weight:600;
}
.stats dd{margin-top:.3rem;font-size:.88rem;color:var(--ink-soft)}

.practice-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:1.6rem;
}

.practice-card{
  background:var(--paper);
  border:1px solid var(--line);
  padding:2rem 1.8rem;
  transition:border-color .2s ease, transform .2s ease;
}
.practice-card:hover{border-color:var(--gold);transform:translateY(-3px)}

.practice-card h3{font-size:1.3rem;margin-bottom:.7rem}
.practice-card p{color:var(--ink-soft);font-size:.95rem}

.experience-list{
  max-width:760px;
  list-style:none;
}
.experience-list li{
  position:relative;
  padding-left:1.6rem;
  color:var(--ink-soft);
  margin-bottom:1rem;
}
.experience-list li::before{
  content:"";
  position:absolute;
  left:0;top:.55em;
  width:8px;height:1px;
  background:var(--gold);
}

.contact-inner{max-width:900px}

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

.contact-card{
  display:flex;
  flex-direction:column;
  gap:.4rem;
  background:var(--paper);
  border:1px solid var(--line);
  padding:1.6rem 1.5rem;
  transition:border-color .2s ease;
}
a.contact-card:hover{border-color:var(--gold)}

.contact-label{
  font-size:.72rem;
  letter-spacing:.1em;
  text-transform:uppercase;
  color:var(--gold);
  font-weight:600;
}
.contact-value{font-size:1.05rem;font-weight:500}

/* footer */
.site-footer{
  border-top:1px solid var(--line);
  padding:2rem 0;
}
.footer-inner{
  font-size:.82rem;
  color:var(--ink-soft);
  display:flex;
  justify-content:center;
}

/* responsive */
@media (max-width:860px){
  .hero-inner{grid-template-columns:1fr;gap:40px}
  .hero-portrait{justify-self:start;max-width:260px;order:-1}
  .stats,.practice-grid,.contact-grid{grid-template-columns:1fr}
}

@media (max-width:720px){
  .site-nav{
    position:absolute;
    top:76px;left:0;right:0;
    background:var(--paper);
    border-bottom:1px solid var(--line);
    flex-direction:column;
    gap:0;
    max-height:0;
    overflow:hidden;
    transition:max-height .25s ease;
  }
  .site-nav.open{max-height:280px}
  .site-nav a{padding:1rem 24px;border-top:1px solid var(--line)}
  .nav-toggle{display:flex}
}
