:root {
  --sage: #7A9E7E;
  --sage-light: #EAF0EB;
  --sage-dark: #3D5C41;
  --warm-light: #F7F0E6;
  --ink: #1C2321;
  --ink-mid: #4A5250;
  --ink-soft: #8A9490;
  --cream: #FAF8F4;
  --white: #FFFFFF;
  --border: rgba(28,35,33,0.1);
  --serif: 'Playfair Display', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); background: var(--cream); color: var(--ink); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ---- HEADER ---- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,248,244,0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  height: 68px;
}
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between; height: 100%;
}
.site-logo { font-family: var(--serif); font-size: 1.1rem; color: var(--ink); }
.site-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.82rem; font-weight: 400; color: var(--ink-mid); letter-spacing: 0.05em; text-transform: uppercase; transition: color 0.2s; }
.nav-links a:hover { color: var(--sage-dark); }
.nav-cta { background: var(--sage) !important; color: var(--white) !important; padding: 0.4rem 1rem; border-radius: 100px; font-weight: 500 !important; }
.nav-cta:hover { background: var(--sage-dark) !important; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }

/* ---- BUTTONS ---- */
.btn-primary { display: inline-block; background: var(--sage); color: var(--white); padding: 0.85rem 1.85rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; transition: background 0.2s, transform 0.15s; }
.btn-primary:hover { background: var(--sage-dark); transform: translateY(-1px); color: var(--white); }
.btn-secondary { display: inline-flex; align-items: center; gap: 0.4rem; font-size: 0.95rem; color: var(--ink); transition: color 0.2s; }
.btn-secondary::after { content: '→'; }
.btn-secondary:hover { color: var(--sage-dark); }
.btn-white { display: inline-block; background: var(--white); color: var(--sage-dark); padding: 0.85rem 1.85rem; border-radius: 100px; font-size: 0.95rem; font-weight: 500; transition: background 0.2s; }
.btn-white:hover { background: var(--cream); }
.btn-outline-white { display: inline-block; border: 1.5px solid rgba(255,255,255,0.5); color: var(--white); padding: 0.85rem 1.85rem; border-radius: 100px; font-size: 0.95rem; transition: border-color 0.2s; }
.btn-outline-white:hover { border-color: var(--white); color: var(--white); }

/* ---- SHARED ---- */
.eyebrow { display: block; font-size: 0.72rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--sage); margin-bottom: 1rem; }
.eyebrow.light { color: rgba(255,255,255,0.55); }
h2 { font-family: var(--serif); font-size: clamp(1.9rem, 2.6vw, 2.6rem); font-weight: 400; line-height: 1.25; color: var(--ink); margin-bottom: 1.25rem; }
p { color: var(--ink-mid); font-size: 1rem; line-height: 1.85; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.two-col.reverse .col-visual { order: 2; }
.two-col.reverse .col-text { order: 1; }

.col-visual { position: relative; border-radius: 20px; overflow: hidden; aspect-ratio: 3/4; }
.warm-bg { background: var(--warm-light); }
.sage-bg { background: var(--sage-light); }

/* ---- HERO ---- */
.hero { display: grid; grid-template-columns: 1fr 1fr; min-height: 100vh; padding-top: 68px; }
.hero-text { display: flex; flex-direction: column; justify-content: center; padding: 5rem 4% 5rem 7%; }
.hero-text .eyebrow { margin-bottom: 1.25rem; }
.hero-text h1 { font-family: var(--serif); font-size: clamp(2.6rem, 4vw, 4rem); font-weight: 400; line-height: 1.18; color: var(--ink); margin-bottom: 1.5rem; }
.hero-text h1 em { font-style: italic; color: var(--sage-dark); }
.hero-sub { font-size: 1.02rem; max-width: 440px; margin-bottom: 2.25rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-visual { position: relative; overflow: hidden; background: var(--sage-light); }
.hero-visual svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.hero-tag { position: absolute; bottom: 2rem; left: 2rem; background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); border-radius: 12px; padding: 0.9rem 1.1rem; border: 1px solid rgba(255,255,255,0.8); z-index: 2; }
.hero-tag-label { font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-soft); margin-bottom: 0.25rem; }
.hero-tag-value { font-size: 0.92rem; font-weight: 500; color: var(--ink); }

/* ---- INTRO STRIP ---- */
.intro-strip { background: var(--sage-dark); color: var(--white); padding: 2.25rem 7%; display: flex; gap: 3rem; flex-wrap: wrap; align-items: center; }
.intro-stat { flex: 1; min-width: 140px; }
.stat-num { font-family: var(--serif); font-size: 2.2rem; line-height: 1; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.82rem; opacity: 0.7; }

/* ---- SECTIONS ---- */
.section-about, .section-approach { padding: 6rem 7%; }
.section-sammy { background: var(--white); padding: 6rem 7%; }
.section-specialties { background: var(--cream); padding: 6rem 7%; }
.section-fees { background: var(--warm-light); padding: 6rem 7%; }
.section-contact { background: var(--sage-dark); color: var(--white); text-align: center; padding: 6rem 7%; }
.section-contact h2 { color: var(--white); max-width: 560px; margin: 0 auto 1rem; }
.section-contact p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 0.75rem; }
.section-intro { max-width: 560px; margin-bottom: 0.5rem; }
.contact-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin: 2rem 0 1.5rem; }
.contact-note { font-size: 0.8rem !important; opacity: 0.45; }

/* ---- SUPPORT LIST ---- */
.support-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.85rem; }
.support-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 1rem; color: var(--ink-mid); }
.support-list li::before { content: ''; display: block; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); margin-top: 0.55rem; flex-shrink: 0; }

/* ---- CRED LIST ---- */
.cred-list { list-style: none; margin-top: 1.5rem; display: flex; flex-direction: column; gap: 0.65rem; }
.cred-list li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: var(--ink-mid); }
.cred-list li::before { content: ''; display: block; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); margin-top: 0.55rem; flex-shrink: 0; }

/* ---- SPECIALTIES ---- */
.spec-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.spec-card { background: var(--white); border-radius: 18px; padding: 1.75rem; border: 1.5px solid #d4d9d5; transition: border-color 0.2s, transform 0.2s; }
.spec-card:hover { border-color: var(--sage); transform: translateY(-3px); }
.spec-card h3 { font-family: var(--serif); font-size: 1.15rem; font-weight: 400; color: var(--ink); margin-bottom: 0.5rem; }
.spec-card p { font-size: 0.88rem; line-height: 1.7; margin: 0; }

/* ---- APPROACH ---- */
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 2rem; }
.tag-list span { font-size: 0.78rem; padding: 0.3rem 0.85rem; border-radius: 100px; background: var(--sage-light); color: var(--sage-dark); border: 1px solid rgba(122,158,126,0.3); }
.tag-list.insurance span { background: var(--white); color: var(--ink-mid); border-color: var(--border); }
.pull-quote { background: var(--sage-dark); color: var(--white); border-radius: 20px; padding: 2.75rem; position: relative; }
.pull-quote p { font-family: var(--serif); font-size: 1.2rem; font-style: italic; line-height: 1.7; opacity: 0.95; color: var(--white); position: relative; z-index: 1; margin: 0; }
.pull-quote cite { display: block; margin-top: 1.25rem; font-size: 0.78rem; font-style: normal; opacity: 0.6; letter-spacing: 0.06em; text-transform: uppercase; position: relative; z-index: 1; }
.quote-mark { font-family: var(--serif); font-size: 6rem; line-height: 0.4; opacity: 0.15; position: absolute; top: 2rem; left: 2rem; color: var(--white); user-select: none; }

/* ---- FEES ---- */
.fees-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 1.1rem; margin: 2rem 0 0; }
.fee-card { background: var(--white); border-radius: 16px; padding: 1.6rem; border: 1.5px solid #d4d9d5; }
.fee-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink-soft); margin-bottom: 0.5rem; }
.fee-value { font-family: var(--serif); font-size: 1.9rem; color: var(--ink); margin-bottom: 0.3rem; }
.fee-note { font-size: 0.82rem; color: var(--ink-mid); margin: 0; }
.insurance-label { margin-top: 1.75rem; font-size: 0.88rem; color: var(--ink-mid); margin-bottom: 0.5rem; }
.insurance-note { margin-top: 1rem; font-size: 0.82rem; color: var(--ink-soft); }

/* ---- FOOTER ---- */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.6); padding: 2.5rem 7%; }
.footer-inner { max-width: 1280px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-logo { font-family: var(--serif); font-size: 1.05rem; color: var(--white); }
.footer-links { display: flex; gap: 1.75rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.8rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }
.footer-legal { font-size: 0.72rem; }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 2.5rem; }
  .two-col.reverse .col-visual { order: -1; }
  .two-col.reverse .col-text { order: 1; }
  .col-visual { aspect-ratio: 3/4; max-height: 480px; }
  .col-visual img { object-position: top center; }
  .section-about, .section-sammy, .section-specialties, .section-approach, .section-fees, .section-contact { padding: 4rem 6%; }
}
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { height: 75vw; min-height: 320px; max-height: 480px; }
  .hero-visual img { object-position: top center; }
  .hero-text { padding: 3rem 6%; }
  .intro-strip { gap: 1.5rem; padding: 2rem 6%; display: grid; grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 1.5rem; }
}
@media (max-width: 720px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav-links.open { display: flex; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(250,248,244,0.97); backdrop-filter: blur(12px); padding: 1.5rem 6%; gap: 1.25rem; border-bottom: 1px solid var(--border); z-index: 99; }
  .nav-links.open a { font-size: 1rem; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

