/* ===========================================
   MARIPOSA PSYCHIATRY — shared stylesheet
   =========================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #F5F1E8;
  color: #2A2A2A;
  font-family: 'PT Sans', 'Lato', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

:root {
  --cream:       #F5F1E8;
  --cream-dark:  #EDE8DC;
  --teal:        #2E5F5F;
  --teal-light:  #3D7070;
  --purple:      #5C3D7A;
  --purple-dark: #4A2E63;
  --gold:        #C8972E;
  --gold-dark:   #A87520;
  --text:        #2A2A2A;
  --text-mid:    #4A4A4A;
  --text-light:  #7A7068;
  --white:       #FFFFFF;
  --serif:       'Monarcha', 'Playfair Display', Georgia, serif;
  --italic:      'Monarcha', 'Cormorant Garamond', Georgia, serif;
  --sans:        'PT Sans', 'Lato', sans-serif;
  --max:         1100px;
  --px:          clamp(20px, 5vw, 60px);
  --section-py:  clamp(60px, 8vw, 100px);
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); }
.section    { padding: var(--section-py) 0; }

/* ---------------------------------------------------------------
   MONARCHA — primary display font (commercial, not free).
   To self-host a licensed webfont kit, drop the files in
   /assets/fonts and uncomment the @font-face blocks below.
   If you use Adobe Fonts instead, add the <link> kit to each
   page's <head> and this block can stay commented out.
   The font stack in :root already lists 'Monarcha' first, so it
   activates automatically once the browser can find it.
   ---------------------------------------------------------------
@font-face {
  font-family: 'Monarcha';
  src: url('assets/fonts/Monarcha-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Monarcha';
  src: url('assets/fonts/Monarcha-SemiBold.woff2') format('woff2');
  font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Monarcha';
  src: url('assets/fonts/Monarcha-Italic.woff2') format('woff2');
  font-weight: 400; font-style: italic; font-display: swap;
}
--------------------------------------------------------------- */

/* Brand logo image (nav + footer) */
.nav-logo img.brand-mark { width: 30px; height: auto; display: block; }
.footer-logo-img { width: 46px; height: auto; margin-bottom: 14px; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--sans); font-weight: 700;
  font-size: 13px; letter-spacing: 0.05em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background 0.22s, transform 0.22s, box-shadow 0.22s;
  text-decoration: none;
}
.btn-pill { padding: 14px 34px; border-radius: 50px; }
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(200,151,46,0.32); }
.btn-purple { background: var(--purple); color: #fff; padding: 9px 20px; border-radius: 6px; }
.btn-purple:hover { background: var(--purple-dark); }
.btn-outline-dark { background: transparent; color: var(--text); border: 1.5px solid rgba(0,0,0,0.18); padding: 13px 30px; border-radius: 50px; }
.btn-outline-dark:hover { background: rgba(0,0,0,0.04); }
.btn-teal-pill { background: var(--teal); color: #fff; padding: 14px 34px; border-radius: 50px; }
.btn-teal-pill:hover { background: var(--teal-light); transform: translateY(-2px); }

/* NAV */
.nav-top {
  background: var(--text);
  display: flex; justify-content: flex-end; align-items: center;
  gap: 24px; padding: 7px var(--px);
}
.nav-top a { color: rgba(255,255,255,0.55); font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; transition: color 0.2s; }
.nav-top a:hover { color: #fff; }
.nav-top .pipe { color: rgba(255,255,255,0.2); }

.main-nav { position: sticky; top: 0; z-index: 200; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 14px rgba(0,0,0,0.05); }
.nav-inner { max-width: var(--max); margin: 0 auto; padding: 0 var(--px); display: flex; align-items: center; justify-content: space-between; height: 66px; }
.nav-logo { display: flex; align-items: center; gap: 9px; }
.nav-logo-words { line-height: 1.1; }
.nav-logo-words .logo-main { font-family: var(--serif); font-size: 16px; font-weight: 700; letter-spacing: 0.08em; color: var(--text); display: block; }
.nav-logo-words .logo-sub { font-family: var(--sans); font-size: 9px; font-weight: 400; letter-spacing: 0.28em; text-transform: uppercase; color: var(--text-light); display: block; }
.nav-links { display: flex; align-items: center; gap: 30px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 400; letter-spacing: 0.03em; color: var(--text-mid); transition: color 0.2s; }
.nav-links a:hover { color: var(--teal); }
.nav-links a.active { color: var(--teal); font-weight: 700; }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; display: block; transition: all 0.3s; }

.mobile-nav { display: none; position: fixed; inset: 0; z-index: 300; background: var(--cream); padding: 28px var(--px); flex-direction: column; }
.mobile-nav.open { display: flex; }
.mobile-close { align-self: flex-end; background: none; border: none; font-size: 2rem; cursor: pointer; color: var(--text); margin-bottom: 40px; line-height: 1; }
.mobile-nav a { font-family: var(--serif); font-size: 2rem; font-weight: 400; color: var(--text); padding: 16px 0; border-bottom: 1px solid rgba(0,0,0,0.07); display: block; transition: color 0.2s; }
.mobile-nav a:hover { color: var(--purple); }
.mobile-nav .mobile-cta { margin-top: 32px; }

/* HERO */
.hero { background: var(--cream); display: grid; grid-template-columns: 1fr 1.08fr 1fr; min-height: 88vh; overflow: hidden; }
.hero-photo-left { overflow: hidden; position: relative; }
.hero-photo-left img { width: 100%; height: 100%; object-fit: cover; }
.hero-center { display: flex; flex-direction: column; justify-content: center; align-items: center; text-align: center; padding: 60px clamp(24px, 4vw, 48px); }
.hero-eyebrow { font-family: var(--italic); font-style: italic; font-size: 16px; color: var(--teal); margin-bottom: 18px; letter-spacing: 0.01em; }
.hero-h1 { font-family: var(--serif); font-weight: 400; font-size: clamp(2.4rem, 4.5vw, 3.6rem); line-height: 1.18; color: var(--text); margin-bottom: 32px; }
.hero-h1 em { font-style: italic; }
.hero-tagline { font-family: var(--sans); font-size: 13px; color: var(--text-light); margin-top: 20px; letter-spacing: 0.04em; }
.hero-photo-right { overflow: hidden; }
.hero-photo-right img { width: 100%; height: 100%; object-fit: cover; }

/* PAGE HEADER (interior pages) */
.page-header { background: var(--cream); padding: clamp(48px, 7vw, 84px) 0 clamp(28px, 4vw, 44px); text-align: center; }
.page-header .eyebrow { font-family: var(--italic); font-style: italic; font-size: 17px; color: var(--teal); margin-bottom: 12px; }
.page-header h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.1rem, 4.5vw, 3.2rem); color: var(--text); line-height: 1.15; }
.page-header p { color: var(--text-mid); font-size: 15px; max-width: 580px; margin: 16px auto 0; }

/* BUTTERFLY DIVIDER */
.butterfly-divider { text-align: center; padding: 32px 0 12px; background: var(--cream); }

/* MEET SECTION */
.meet-section { background: var(--cream); }
.meet-grid { display: grid; grid-template-columns: 360px 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.meet-photo-wrap { position: relative; }
.meet-photo-frame { border-radius: 18px; overflow: hidden; height: clamp(340px, 45vw, 460px); background: var(--cream-dark); position: relative; z-index: 1; }
.meet-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.blob-teal { position: absolute; width: 110px; height: 75px; background: var(--teal); border-radius: 50% 50% 50% 50% / 60% 40% 60% 40%; top: -18px; left: -22px; z-index: 0; opacity: 0.9; }
.blob-gold { position: absolute; width: 80px; height: 110px; background: var(--gold); border-radius: 50% 40% 50% 40% / 50% 60% 40% 50%; bottom: 28px; right: -20px; z-index: 0; opacity: 0.85; }
.meet-text h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 20px; color: var(--text); }
.meet-text p { color: var(--text-mid); font-size: 15px; line-height: 1.82; margin-bottom: 15px; }
.meet-text p:last-child { margin-bottom: 0; }
.meet-cred { margin-top: 28px; padding-top: 24px; border-top: 1px solid rgba(0,0,0,0.1); display: flex; gap: 28px; flex-wrap: wrap; }
.cred-item { display: flex; flex-direction: column; gap: 2px; }
.cred-item strong { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--teal); font-weight: 700; }
.cred-item span { font-size: 13px; color: var(--text-mid); }
.meet-text .inline-cta { margin-top: 28px; }

/* FULL-BLEED IMAGE BAND */
.img-band { width: 100%; height: clamp(200px, 30vw, 340px); overflow: hidden; position: relative; }
.img-band img { width: 100%; height: 100%; object-fit: cover; object-position: center 40%; }
.img-band-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(46,95,95,0.55) 0%, rgba(46,95,95,0.12) 42%, rgba(0,0,0,0) 100%); }
.img-band-text { position: absolute; left: var(--px); top: 50%; transform: translateY(-50%); color: #fff; max-width: 440px; }
.img-band-text p { font-family: var(--italic); font-style: italic; font-size: clamp(1.1rem, 2.5vw, 1.6rem); line-height: 1.5; color: rgba(255,255,255,0.95); }

/* SERVICES */
.services-section { background: var(--cream-dark); }
.services-section-inner { background: var(--cream); border-radius: 20px; padding: clamp(36px, 5vw, 60px); box-shadow: 0 4px 32px rgba(0,0,0,0.06); }
.services-header { text-align: center; margin-bottom: clamp(36px, 5vw, 52px); }
.services-header h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 500; color: var(--text); margin-bottom: 8px; }
.services-header p { color: var(--text-light); font-size: 14px; max-width: 460px; margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 36px); }
.service-card { cursor: default; }
.service-img { height: 190px; border-radius: 14px; overflow: hidden; margin-bottom: 20px; background: var(--cream-dark); }
.service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.service-card:hover .service-img img { transform: scale(1.04); }
.service-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; margin-bottom: 5px; color: var(--text); }
.service-price { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--teal); margin-bottom: 10px; }
.service-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; }
.services-note { text-align: center; margin-top: 32px; font-size: 12.5px; color: var(--text-light); font-style: italic; }
.services-cta { text-align: center; margin-top: 28px; }

/* PRACTICE FOCUS */
.focus-section { background: var(--cream); }
.focus-intro { text-align: center; max-width: 640px; margin: 0 auto clamp(40px,5vw,60px); }
.focus-intro h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 14px; }
.focus-intro p { color: var(--text-mid); font-size: 15px; }
.focus-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.5vw, 28px); }
.focus-card { background: var(--cream-dark); border-radius: 14px; padding: clamp(24px, 3vw, 36px); border-left: 4px solid var(--teal); transition: box-shadow 0.25s, transform 0.25s; }
.focus-card:hover { box-shadow: 0 10px 32px rgba(0,0,0,0.09); transform: translateY(-3px); }
.focus-card.full-width { grid-column: span 2; border-left-color: var(--purple); }
.focus-card h3 { font-family: var(--serif); font-size: 1.2rem; font-weight: 600; color: var(--teal); margin-bottom: 12px; }
.focus-card.full-width h3 { color: var(--purple); }
.focus-card p { font-size: 13.5px; color: var(--text-mid); line-height: 1.8; margin-bottom: 10px; }
.focus-card p:last-child { margin-bottom: 0; }
.focus-card ul { padding-left: 16px; margin-top: 4px; }
.focus-card ul li { font-size: 13px; color: var(--text-mid); line-height: 1.75; margin-bottom: 5px; }
.subspecialty-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 24px; margin-top: 8px; }
.subspecialty-grid li { font-size: 13px; color: var(--text-mid); line-height: 1.7; }

/* APPROACH (teal panel) */
.approach-section { background: var(--cream-dark); }
.approach-block { display: grid; grid-template-columns: 0.85fr 1.15fr; border-radius: 18px; overflow: hidden; box-shadow: 0 6px 40px rgba(0,0,0,0.1); min-height: 420px; }
.approach-photo { overflow: hidden; }
.approach-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block; }
.approach-content { background: var(--teal); color: #fff; padding: clamp(36px, 5vw, 60px) clamp(32px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; }
.approach-content h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.6rem, 2.8vw, 2.2rem); color: #fff; margin-bottom: 22px; line-height: 1.25; }
.approach-content p { font-size: 14.5px; line-height: 1.88; color: rgba(255,255,255,0.85); margin-bottom: 16px; }
.approach-content p:last-of-type { margin-bottom: 28px; }

/* PHILOSOPHY (prose block) */
.philosophy-section { background: var(--cream); }
.philosophy-wrap { max-width: 760px; margin: 0 auto; }
.philosophy-wrap h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 2.8vw, 2.3rem); margin-bottom: 22px; color: var(--text); text-align: center; }
.philosophy-wrap p { color: var(--text-mid); font-size: 15.5px; line-height: 1.9; margin-bottom: 18px; }
.philosophy-wrap p:last-child { margin-bottom: 0; }

/* QUOTES */
.quotes-section { background: var(--cream); }
.quotes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); max-width: 860px; margin: 0 auto; }
.quote-block { text-align: center; }
.quote-block blockquote { font-family: var(--italic); font-style: italic; font-size: clamp(1rem, 1.8vw, 1.25rem); line-height: 1.7; color: var(--text-mid); margin-bottom: 14px; }
.quote-block cite { font-family: var(--sans); font-style: normal; font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); }

/* CV / CREDENTIALS */
.cv-section { background: var(--cream-dark); }
.cv-header { text-align: center; margin-bottom: clamp(40px, 5vw, 60px); }
.cv-header h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 10px; }
.cv-header p { color: var(--text-mid); font-size: 15px; max-width: 560px; margin: 0 auto; }
.cv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 3vw, 40px); }
.cv-block-label { font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--teal); margin-bottom: 14px; display: block; }
.cv-block ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.cv-block ul li { font-size: 13.5px; color: var(--text-mid); line-height: 1.65; padding-left: 14px; position: relative; }
.cv-block ul li::before { content: ''; position: absolute; left: 0; top: 9px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

/* PUBLICATIONS */
.pubs-section { background: var(--cream); }
.pubs-header { text-align: center; margin-bottom: 40px; }
.pubs-header h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.5vw, 2rem); font-weight: 500; margin-bottom: 8px; }
.pub-list { max-width: 800px; margin: 0 auto; list-style: none; }
.pub-list li { padding: 14px 0; border-bottom: 1px solid rgba(0,0,0,0.09); font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }
.pub-list li:last-child { border-bottom: none; }
.pub-list em { font-style: italic; }

/* FAQ */
.faq-section { background: var(--cream-dark); }
.faq-header { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.faq-header h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.4rem); font-weight: 500; margin-bottom: 10px; }
.faq-header p { color: var(--text-mid); font-size: 15px; }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-group-label { font-family: var(--serif); font-size: 1.1rem; font-weight: 600; color: var(--teal); margin: 36px 0 6px; }
.faq-group-label:first-of-type { margin-top: 0; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-item:first-of-type { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-btn { width: 100%; background: none; border: none; cursor: pointer; padding: 20px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; text-align: left; }
.faq-btn-text { font-family: var(--serif); font-size: 1.05rem; font-weight: 500; color: var(--text); line-height: 1.35; transition: color 0.2s; }
.faq-btn:hover .faq-btn-text { color: var(--teal); }
.faq-icon-wrap { width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: rgba(0,0,0,0.07); display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--teal); font-family: var(--sans); font-weight: 300; transition: background 0.22s, transform 0.3s; line-height: 1; }
.faq-item.open .faq-icon-wrap { background: var(--teal); color: #fff; transform: rotate(45deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height 0.38s cubic-bezier(0.4,0,0.2,1); }
.faq-body-inner { padding-bottom: 20px; }
.faq-body-inner p { font-size: 14.5px; color: var(--text-mid); line-height: 1.82; margin-bottom: 10px; }
.faq-body-inner p:last-child { margin-bottom: 0; }
.faq-body-inner a { color: var(--teal); text-decoration: underline; }
.faq-body-inner ul { padding-left: 18px; }
.faq-body-inner ul li { font-size: 14.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 6px; }
.faq-item.open .faq-body { max-height: 1400px; }

/* JOURNEY / CTA */
.journey-section { background: var(--cream); text-align: center; }
.journey-section h2 { font-family: var(--serif); font-weight: 400; font-size: clamp(2rem, 5vw, 3.8rem); color: var(--text); margin-bottom: 16px; line-height: 1.2; }
.journey-section p { color: var(--text-mid); font-size: 15px; max-width: 480px; margin: 0 auto 32px; }

/* CONTACT */
.contact-section { background: var(--cream-dark); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.contact-intro h2 { font-family: var(--serif); font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 500; margin-bottom: 14px; }
.contact-intro p { color: var(--text-mid); font-size: 15px; line-height: 1.85; margin-bottom: 16px; }
.contact-intro .inquiry-cta { margin-top: 26px; margin-bottom: 8px; }
.contact-intro .inquiry-note { font-size: 12.5px; color: var(--text-light); font-style: italic; }
.inquiry-callout { background: var(--cream); border-radius: 14px; padding: clamp(24px,3vw,34px); box-shadow: 0 3px 18px rgba(0,0,0,0.07); border-left: 4px solid var(--gold); }
.inquiry-callout h3 { font-family: var(--serif); font-size: 1.3rem; font-weight: 600; margin-bottom: 10px; }
.inquiry-callout p { font-size: 13.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 18px; }

.contact-info-head { font-family: var(--serif); font-size: 1.6rem; font-weight: 500; margin-bottom: 28px; color: var(--text); }
.contact-card { background: var(--cream); border-radius: 14px; padding: clamp(24px, 3vw, 36px); box-shadow: 0 3px 18px rgba(0,0,0,0.07); margin-bottom: 16px; }
.contact-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.contact-row:last-child { margin-bottom: 0; }
.contact-icon-box { width: 42px; height: 42px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.ci-teal { background: rgba(46,95,95,0.12); }
.ci-purple { background: rgba(92,61,122,0.1); }
.ci-gold { background: rgba(200,151,46,0.12); }
.ci-dark { background: rgba(0,0,0,0.07); }
.contact-icon-box svg { width: 18px; height: 18px; }
.contact-row-body strong { display: block; font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 3px; }
.contact-row-body a { color: var(--text-mid); font-size: 14px; transition: color 0.2s; }
.contact-row-body a:hover { color: var(--teal); }
.contact-row-body span { color: var(--text-mid); font-size: 14px; line-height: 1.6; display: block; }
.hours-card { background: var(--cream); border-radius: 14px; padding: clamp(20px, 3vw, 28px); box-shadow: 0 3px 18px rgba(0,0,0,0.07); }
.hours-card h4 { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; color: var(--text-light); margin-bottom: 10px; }
.hours-card p { font-size: 14px; color: var(--text-mid); line-height: 1.75; }
.hours-note { font-size: 12px; color: var(--gold); font-style: italic; margin-top: 6px; }

/* EMERGENCY BANNER */
.emergency-banner { background: rgba(92,61,122,0.08); border: 1px solid rgba(92,61,122,0.2); border-radius: 12px; padding: 20px 24px; max-width: 800px; margin: 0 auto; }
.emergency-banner p { font-size: 13.5px; color: var(--text-mid); line-height: 1.7; }
.emergency-banner strong { color: var(--purple); }

/* FOOTER */
footer { background: #1E1B16; color: rgba(255,255,255,0.6); }
.footer-main { padding: clamp(48px, 6vw, 72px) 0 clamp(36px, 5vw, 56px); display: grid; grid-template-columns: 1.8fr 1fr 1fr; gap: clamp(32px, 5vw, 56px); border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-brand .footer-logo-words .logo-main { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; letter-spacing: 0.08em; color: #fff; display: block; }
.footer-brand .footer-logo-words .logo-sub { font-size: 9px; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-family: var(--sans); display: block; margin-top: 2px; }
.footer-brand p { font-size: 13px; line-height: 1.8; color: rgba(255,255,255,0.5); margin-top: 14px; max-width: 320px; }
.footer-brand .footer-cta { margin-top: 22px; }
.footer-col h5 { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact-item { margin-bottom: 14px; }
.footer-contact-item span:first-child { display: block; font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 2px; }
.footer-contact-item a, .footer-contact-item span:last-child { font-size: 13px; color: rgba(255,255,255,0.6); transition: color 0.2s; display: block; line-height: 1.55; }
.footer-contact-item a:hover { color: #fff; }
.footer-bottom { padding: 22px 0; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.28); line-height: 1.65; }
.footer-disclaimer { max-width: 620px; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-photo-left, .hero-photo-right { display: none; }
  .hero-center { padding: 70px var(--px) 60px; background: var(--cream); }
  .hero-h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .meet-grid { grid-template-columns: 1fr; }
  .meet-photo-wrap { max-width: 420px; }
  .services-grid { grid-template-columns: 1fr; }
  .focus-grid { grid-template-columns: 1fr; }
  .focus-card.full-width { grid-column: auto; }
  .approach-block { grid-template-columns: 1fr; }
  .approach-photo { height: 260px; }
  .cv-grid { grid-template-columns: 1fr 1fr; }
  .quotes-grid { grid-template-columns: 1fr; gap: 36px; max-width: 520px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 40px; }
  .nav-links, .nav-inner > .btn-purple { display: none; }
  .hamburger { display: flex; }
  .img-band-text { display: none; }
}
@media (max-width: 600px) {
  .cv-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .meet-cred { gap: 18px; }
  .subspecialty-grid { grid-template-columns: 1fr; }
}

/* focus visibility for keyboard users */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--teal); outline-offset: 2px;
}
