:root {
--navy: #1a2334;
--gold: #b89c6a;
--gold-light: #d4b87a;
--cream: #f5f1ea;
--warm-white: #faf8f4;
--text: #2c2c2c;
--mid: #6b6560;
--border: #ddd5c8;
--serif: 'Cormorant Garamond', Georgia, serif;
--sans: 'Jost', sans-serif;
}

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

body {
font-family: var(--sans);
background: var(--warm-white);
color: var(--text);
font-weight: 300;
line-height: 1.7;
}

/* ── NAV ── */
nav {
position: sticky;
top: 0;
z-index: 100;
background: var(--navy);
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 48px;
height: 68px;
box-shadow: 0 2px 20px rgba(0,0,0,.25);
}

.nav-logo {
font-family: var(--serif);
font-size: 1.25rem;
font-weight: 500;
color: var(--cream);
letter-spacing: .03em;
cursor: pointer;
white-space: nowrap;
}
.nav-logo span { color: var(--gold); }

.nav-links {
display: flex;
align-items: center;
gap: 8px;
list-style: none;
}

.nav-links > li { position: relative; }

.nav-links > li > a,
.nav-links > li > span {
display: flex;
align-items: center;
gap: 5px;
padding: 8px 16px;
color: #c8bfb2;
text-decoration: none;
font-size: .78rem;
letter-spacing: .12em;
text-transform: uppercase;
font-weight: 400;
cursor: pointer;
transition: color .2s;
white-space: nowrap;
}
.nav-links > li > a:hover,
.nav-links > li > span:hover,
.nav-links > li.open > span { color: var(--gold-light); }

.nav-links .chevron {
font-size: .55rem;
transition: transform .2s;
display: inline-block;
}
.nav-links li.open .chevron { transform: rotate(180deg); }

/* dropdown */
.dropdown {
display: none;
position: absolute;
top: calc(100% + 4px);
left: 0;
background: var(--navy);
border-top: 2px solid var(--gold);
min-width: 180px;
box-shadow: 0 8px 30px rgba(0,0,0,.35);
}
.nav-links li.open .dropdown { display: block; }
.dropdown a {
display: block;
padding: 13px 20px;
color: #c8bfb2;
text-decoration: none;
font-size: .75rem;
letter-spacing: .1em;
text-transform: uppercase;
font-weight: 400;
border-bottom: 1px solid rgba(255,255,255,.06);
transition: background .15s, color .15s;
}
.dropdown a:hover { background: rgba(184,156,106,.12); color: var(--gold-light); }

.nav-cta {
font-family: var(--sans);
font-size: .72rem;
font-weight: 400;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--navy) !important;
background: var(--gold);
padding: 9px 20px !important;
transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; color: var(--navy) !important; }

/* hamburger */
.hamburger {
display: none;
flex-direction: column;
gap: 5px;
cursor: pointer;
padding: 6px;
}
.hamburger span {
display: block;
width: 24px;
height: 2px;
background: var(--cream);
transition: .3s;
}

/* ── PAGES ── */
.page { display: none; }
.page.active { display: block; }

/* ── HERO ── */
.hero {
display: grid;
grid-template-columns: 1fr 1fr;
min-height: calc(100vh - 68px);
max-height: 820px;
}
.hero-img {
background: #c5bdb0 url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=900&q=80') center/cover no-repeat;
position: relative;
}
.hero-img::after {
content: '';
position: absolute;
inset: 0;
background: linear-gradient(to right, rgba(26,35,52,.15), rgba(26,35,52,.0));
}
.hero-content {
background: var(--navy);
display: flex;
flex-direction: column;
justify-content: center;
padding: 80px 64px;
}
.hero-eyebrow {
font-family: var(--sans);
font-size: .7rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 20px;
}
.hero-content h1 {
font-family: var(--serif);
font-weight: 300;
font-size: 3rem;
line-height: 1.2;
color: var(--cream);
margin-bottom: 28px;
}
.hero-content h1 em { font-style: italic; color: var(--gold-light); }
.hero-content p {
color: #a09890;
font-size: .9rem;
line-height: 1.8;
max-width: 440px;
margin-bottom: 36px;
}
.btn-group { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-primary {
background: var(--gold);
color: var(--navy);
padding: 13px 28px;
font-size: .75rem;
letter-spacing: .14em;
text-transform: uppercase;
font-weight: 500;
text-decoration: none;
transition: background .2s;
cursor: pointer;
border: none;
font-family: var(--sans);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
border: 1px solid rgba(184,156,106,.5);
color: var(--gold-light);
padding: 13px 28px;
font-size: .75rem;
letter-spacing: .14em;
text-transform: uppercase;
font-weight: 400;
text-decoration: none;
transition: border-color .2s, color .2s;
cursor: pointer;
background: none;
font-family: var(--sans);
}
.btn-outline:hover { border-color: var(--gold-light); color: #fff; }

/* ── SECTIONS (shared) ── */
section { padding: 80px 0; }

.container {
max-width: 1060px;
margin: 0 auto;
padding: 0 40px;
}

.section-label {
font-size: .68rem;
letter-spacing: .22em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 12px;
}
.section-title {
font-family: var(--serif);
font-size: 2.4rem;
font-weight: 300;
color: var(--navy);
line-height: 1.2;
margin-bottom: 20px;
}
.divider {
width: 50px;
height: 2px;
background: var(--gold);
margin-bottom: 36px;
}

/* ── PRACTICE AREAS GRID ── */
.areas-grid {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 1px;
background: var(--border);
border: 1px solid var(--border);
margin-top: 48px;
}
.area-card {
background: var(--warm-white);
padding: 36px 28px;
transition: background .2s;
}
.area-card:hover { background: var(--cream); }
.area-card h3 {
font-family: var(--serif);
font-size: 1.15rem;
font-weight: 500;
color: var(--navy);
margin-bottom: 10px;
}
.area-card p { font-size: .85rem; color: var(--mid); line-height: 1.7; }

/* ── STEPS ── */
.steps-section { background: var(--navy); }
.steps-section .section-title { color: var(--cream); }
.steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 48px;
margin-top: 48px;
}
.step { position: relative; padding-top: 20px; }
.step-num {
font-family: var(--serif);
font-size: 4rem;
font-weight: 300;
color: rgba(184,156,106,.25);
line-height: 1;
margin-bottom: 16px;
}
.step h3 {
font-family: var(--serif);
font-size: 1.25rem;
font-weight: 500;
color: var(--cream);
margin-bottom: 12px;
}
.step p { color: #8a8178; font-size: .88rem; line-height: 1.8; }

/* ── EXPERIENCE BAR ── */
.exp-section { background: var(--cream); }
.exp-inner {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: center;
}
.exp-stats { display: flex; flex-direction: column; gap: 32px; }
.stat-row { border-bottom: 1px solid var(--border); padding-bottom: 28px; }
.stat-row:last-child { border-bottom: none; padding-bottom: 0; }
.stat-num {
font-family: var(--serif);
font-size: 3rem;
font-weight: 300;
color: var(--navy);
line-height: 1;
margin-bottom: 6px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--mid); }

/* ── CTA BAND ── */
.cta-band {
background: var(--gold);
padding: 48px 0;
text-align: center;
}
.cta-band p {
font-family: var(--serif);
font-size: 1.6rem;
font-weight: 300;
color: var(--navy);
margin-bottom: 6px;
}
.cta-band small {
display: block;
font-size: .78rem;
color: rgba(26,35,52,.65);
letter-spacing: .08em;
margin-bottom: 24px;
}
.cta-band .btn-navy {
background: var(--navy);
color: var(--cream);
padding: 13px 32px;
font-size: .75rem;
letter-spacing: .14em;
text-transform: uppercase;
font-weight: 400;
text-decoration: none;
transition: background .2s;
border: none;
font-family: var(--sans);
cursor: pointer;
}
.cta-band .btn-navy:hover { background: #243048; }

/* ── CONTACT FORM ── */
.contact-section { background: var(--warm-white); }
.contact-grid {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 80px;
align-items: start;
}
.form-field { margin-bottom: 20px; }
.form-field label {
display: block;
font-size: .72rem;
letter-spacing: .14em;
text-transform: uppercase;
color: var(--mid);
margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
width: 100%;
border: 1px solid var(--border);
background: #fff;
padding: 12px 16px;
font-family: var(--sans);
font-size: .9rem;
color: var(--text);
font-weight: 300;
outline: none;
transition: border-color .2s;
}
.form-field input:focus,
.form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { height: 140px; resize: vertical; }
.form-note { font-size: .78rem; color: var(--mid); font-style: italic; margin-top: 14px; line-height: 1.6; }

.contact-info h3 {
font-family: var(--serif);
font-size: 1.5rem;
font-weight: 400;
color: var(--navy);
margin-bottom: 8px;
}
.contact-info .divider { margin-bottom: 24px; }
.contact-block { margin-bottom: 32px; }
.contact-block h4 {
font-size: .7rem;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 10px;
}
.contact-block p { font-size: .88rem; color: var(--mid); line-height: 1.8; }
.contact-phone {
font-family: var(--serif);
font-size: 1.5rem;
color: var(--navy);
font-weight: 500;
display: block;
margin-bottom: 4px;
text-decoration: none;
}
.contact-phone:hover { color: var(--gold); }

/* ── FOOTER ── */
footer {
background: var(--navy);
padding: 56px 0 32px;
}
.footer-inner {
display: grid;
grid-template-columns: 2fr 1fr 1fr;
gap: 48px;
margin-bottom: 40px;
}
.footer-brand {
font-family: var(--serif);
font-size: 1.3rem;
color: var(--cream);
margin-bottom: 14px;
font-weight: 400;
}
.footer-brand span { color: var(--gold); }
.footer-tagline { font-size: .82rem; color: #7a7168; line-height: 1.7; max-width: 280px; }
.footer-col h5 {
font-size: .68rem;
letter-spacing: .18em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 16px;
}
.footer-col p,
.footer-col a {
font-size: .83rem;
color: #7a7168;
line-height: 1.9;
display: block;
text-decoration: none;
}
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
border-top: 1px solid rgba(255,255,255,.07);
padding-top: 24px;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 12px;
}
.footer-bottom p { font-size: .75rem; color: #5a544d; line-height: 1.6; max-width: 600px; }
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ── INNER PAGES ── */
.page-hero {
background: var(--navy);
padding: 80px 0 60px;
position: relative;
overflow: hidden;
}
.page-hero::before {
content: '';
position: absolute;
top: -60px; right: -60px;
width: 400px; height: 400px;
background: radial-gradient(circle, rgba(184,156,106,.08) 0%, transparent 70%);
}
.page-hero-eyebrow {
font-size: .68rem;
letter-spacing: .2em;
text-transform: uppercase;
color: var(--gold);
margin-bottom: 14px;
}
.page-hero h1 {
font-family: var(--serif);
font-size: 3rem;
font-weight: 300;
color: var(--cream);
line-height: 1.15;
max-width: 640px;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }

/* about layout */
.about-grid {
display: grid;
grid-template-columns: 340px 1fr;
gap: 80px;
align-items: start;
margin-top: -40px;
}
.about-photo {
position: relative;
top: -40px;
}
.about-photo img {
width: 100%;
display: block;
filter: grayscale(20%);
box-shadow: 12px 12px 0 var(--gold);
}
.about-photo .photo-placeholder {
width: 100%;
aspect-ratio: 3/4;
background: linear-gradient(145deg, #2d3d54, #1a2334);
display: flex;
align-items: center;
justify-content: center;
box-shadow: 12px 12px 0 var(--gold);
color: rgba(184,156,106,.4);
font-family: var(--serif);
font-size: 1.1rem;
font-style: italic;
text-align: center;
padding: 20px;
}
.about-text h2 {
font-family: var(--serif);
font-size: 1.8rem;
font-weight: 400;
color: var(--navy);
margin-bottom: 8px;
}
.about-text .divider { margin-bottom: 24px; }
.about-text p { font-size: .9rem; color: var(--mid); line-height: 1.9; margin-bottom: 20px; }
.about-text p strong { color: var(--navy); font-weight: 500; }
.about-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 32px; }

/* practice area page */
.practice-intro { max-width: 680px; margin-bottom: 56px; }
.practice-intro p { font-size: .95rem; color: var(--mid); line-height: 1.9; }
.practice-blocks { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--border); border: 1px solid var(--border); }
.practice-block {
background: var(--warm-white);
padding: 40px 36px;
transition: background .2s;
}
.practice-block:hover { background: var(--cream); }
.practice-block h3 {
font-family: var(--serif);
font-size: 1.3rem;
color: var(--navy);
margin-bottom: 10px;
font-weight: 500;
}
.practice-block p { font-size: .87rem; color: var(--mid); line-height: 1.8; }
.practice-block ul { list-style: none; margin-top: 14px; }
.practice-block ul li {
font-size: .84rem;
color: var(--mid);
padding: 5px 0;
border-bottom: 1px solid var(--border);
display: flex;
align-items: center;
gap: 8px;
}
.practice-block ul li::before { content: '—'; color: var(--gold); font-size: .7rem; }

/* FAQs */
.faq-list { max-width: 720px; }
.faq-item {
border-bottom: 1px solid var(--border);
padding: 28px 0;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-q {
font-family: var(--serif);
font-size: 1.1rem;
font-weight: 500;
color: var(--navy);
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
gap: 20px;
}
.faq-q::after {
content: '+';
font-size: 1.4rem;
color: var(--gold);
font-weight: 300;
flex-shrink: 0;
transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { display: none; font-size: .88rem; color: var(--mid); line-height: 1.9; padding-top: 16px; }
.faq-item.open .faq-a { display: block; }

/* ── MOBILE ── */
@media (max-width: 768px) {
nav { padding: 0 24px; flex-wrap: wrap; height: auto; min-height: 68px; align-items: flex-start; padding-top: 16px; padding-bottom: 0; }
.nav-links { display: none; width: 100%; flex-direction: column; gap: 0; padding-bottom: 12px; }
.nav-links.mobile-open { display: flex; }
.hamburger { display: flex; margin-top: 4px; margin-bottom: 12px; }

/* mobile: nav items full-width */
.nav-links > li { width: 100%; }
.nav-links > li > a,
.nav-links > li > span {
  width: 100%;
  justify-content: space-between;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

/* mobile: dropdowns are in-flow, not absolute */
.dropdown {
  position: static;
  box-shadow: none;
  border-top: none;
  border-left: 2px solid var(--gold);
  margin-left: 12px;
  background: rgba(255,255,255,.04);
}
.dropdown a { padding: 10px 16px; font-size: .73rem; }

.nav-cta { margin: 10px 0 4px; text-align: center; justify-content: center; }
}

@media (max-width: 768px) {
.hero { grid-template-columns: 1fr; max-height: none; }
.hero-img { height: 40vh; }
.hero-content { padding: 48px 28px; }
.hero-content h1 { font-size: 2.2rem; }

.areas-grid { grid-template-columns: 1fr; }
.steps-grid { grid-template-columns: 1fr; gap: 32px; }
.exp-inner { grid-template-columns: 1fr; gap: 40px; }
.contact-grid { grid-template-columns: 1fr; gap: 40px; }
.footer-inner { grid-template-columns: 1fr; gap: 32px; }
.about-grid { grid-template-columns: 1fr; }
.practice-blocks { grid-template-columns: 1fr; }
.page-hero h1 { font-size: 2.2rem; }
}