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

:root {
  --bg: #141320;
  --surface: #1A1928;
  --surface2: #201F32;
  --primary: #9B7FE0;
  --primary-light: #CEBAF2;
  --accent: #5BA8D4;
  --text: #E8E4F4;
  --text-muted: #9890B8;
  --text-dim: #58547A;
  --border: rgba(155,130,210,0.2);
  --border-light: rgba(220,215,245,0.09);
  --ff-heading: 'Cormorant SC', Georgia, serif;
  --ff-body: 'Raleway', sans-serif;
  --header-h: 64px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Raleway', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  min-height: 100vh;
  overflow-x: hidden;
}

#lightning-canvas {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.45;
}

/* ── HEADER ── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--header-h);
  background: rgba(18,17,42,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
}

.header-logo {
  font-family: 'Lora', Georgia, serif;
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  letter-spacing: 0.01em;
  line-height: 1;
  white-space: nowrap;
  flex: 1;
}

.header-logo span {
  color: var(--primary-light);
}

.menu-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s, border-color 0.2s;
  flex-shrink: 0;
}
.menu-btn:hover { color: var(--text); border-color: var(--primary); }
.menu-btn .bars { display: flex; flex-direction: column; gap: 4px; }
.menu-btn .bars span { display: block; width: 18px; height: 1.5px; background: currentColor; border-radius: 2px; transition: transform 0.2s, opacity 0.2s; }
.menu-btn.open .bars span:nth-child(1) { transform: translateY(5.5px) rotate(45deg); }
.menu-btn.open .bars span:nth-child(2) { opacity: 0; }
.menu-btn.open .bars span:nth-child(3) { transform: translateY(-5.5px) rotate(-45deg); }

/* ── DRAWER NAV ── */
.nav-drawer {
  position: fixed;
  top: var(--header-h);
  right: 0;
  width: 280px;
  height: calc(100vh - var(--header-h));
  background: rgba(14,13,34,0.98);
  backdrop-filter: blur(20px);
  border-left: 1px solid var(--border);
  z-index: 190;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
  padding: 2rem 0 3rem;
}
.nav-drawer.open { transform: translateX(0); }

.nav-drawer ul { list-style: none; }

.nav-section-label {
  padding: 1.5rem 1.75rem 0.5rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 700;
}

.nav-drawer a {
  display: block;
  padding: 0.7rem 1.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s, background 0.2s;
  border-left: 2px solid transparent;
}
.nav-drawer a:hover { color: var(--text); background: rgba(139,114,204,0.07); }
.nav-drawer a.active { color: var(--primary-light); border-left-color: var(--primary); background: rgba(139,114,204,0.06); }

.nav-drawer .nav-divider {
  margin: 0.75rem 1.75rem;
  border: none;
  border-top: 1px solid var(--border-light);
}

.nav-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(0,0,0,0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-drawer-overlay.open { opacity: 1; pointer-events: all; }

/* ── LAYOUT ── */
main { position: relative; z-index: 1; }
main p { margin-bottom: 1.4rem; }
main p:last-child { margin-bottom: 0; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.container.narrow { max-width: 760px; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--primary-light); color: var(--bg); transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary-light); }

.text-link {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}
.text-link:hover { color: var(--primary-light); }

/* ── HERO ── */
.hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 6rem 2rem 4rem;
}
.hero-inner { max-width: 1100px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 660px; }
.hero-eyebrow {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-family: 'Poiret One', sans-serif;
  font-weight: 400;
  margin-bottom: 1.5rem;
}
.hero h1 {
  font-family: 'Cormorant SC', Georgia, serif;
  font-size: clamp(2.6rem, 5.5vw, 4.4rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
  font-weight: 500;
}
.hero-tagline {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--primary-light);
  margin-bottom: 1.5rem;
}
.hero-body {
  font-size: 1.08rem;
  color: #EDE8F8;
  font-family: 'Poiret One', sans-serif;
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── INTRO ── */
.intro-section { padding: 7rem 0; }
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.intro-text h2 {
  font-family: var(--ff-heading);
  font-size: 2.1rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  line-height: 1.25;
  font-weight: 500;
}
.intro-text p { color: var(--text-muted); margin-bottom: 1rem; font-size: 1rem; font-weight: 300; }
.intro-text p:last-of-type { margin-bottom: 1.5rem; }
.intro-cards { display: flex; flex-direction: column; gap: 1rem; }
.intro-card {
  display: block;
  padding: 1.5rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s;
}
.intro-card:hover { border-color: var(--primary); background: var(--surface2); }
.intro-card h3 {
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.4rem;
}
.intro-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }

/* ── QUOTE BREAK ── */
.quote-break {
  padding: 5rem 0;
  text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.quote-break blockquote {
  font-family: var(--ff-heading);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  color: var(--primary-light);
  max-width: 700px;
  margin: 0 auto;
  padding: 0 2rem;
  opacity: 0.9;
}

/* ── CTA ── */
.cta-section { padding: 6rem 0; text-align: center; }
.cta-section h2 { font-family: var(--ff-heading); font-size: 2rem; color: var(--text); margin-bottom: 0.75rem; font-weight: 500; }
.cta-section p { color: var(--text-muted); margin-bottom: 2rem; font-size: 1.05rem; font-weight: 300; }

/* ── FOOTER ── */
footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
  text-align: center;
}
footer p { color: var(--text-dim); font-size: 0.85rem; }
.footer-sub { margin-top: 0.35rem; font-size: 0.78rem; }

/* ── PAGE HERO ── */
.page-hero {
  padding: 5rem 0 3rem;
  border-bottom: 1px solid var(--border-light);
  margin-bottom: 4rem;
}
.page-hero h1 {
  font-family: var(--ff-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.page-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  font-style: italic;
  font-family: var(--ff-heading);
  font-weight: 400;
}

/* ── ABOUT ── */
.about-section { padding-bottom: 4rem; }
.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: start;
}
.about-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); opacity: 0.85; }
.about-text-col h2 { font-family: var(--ff-heading); font-size: 1.9rem; color: var(--text); margin-bottom: 1.25rem; font-weight: 500; }
.about-text-col p { color: var(--text-muted); margin-bottom: 1.4rem; line-height: 1.85; font-weight: 300; }

.approach-section { padding: 4rem 0; border-top: 1px solid var(--border-light); }
.approach-section h2 { font-family: var(--ff-heading); font-size: 1.8rem; color: var(--text); margin-bottom: 1.5rem; font-weight: 500; }
.approach-section p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; font-weight: 300; }

.two-col-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; padding-top: 3rem; border-top: 1px solid var(--border-light); }
.list-col h3 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--text); margin-bottom: 1.25rem; font-weight: 500; }
.tag-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag-list span { padding: 0.35rem 0.9rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.85rem; color: var(--text-muted); background: var(--surface); font-weight: 400; }

/* ── SERVICES INDEX ── */
.services-intro { padding-bottom: 3rem; }
.services-intro p { color: var(--text-muted); font-size: 1.05rem; line-height: 1.85; font-weight: 300; max-width: 680px; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  padding-bottom: 5rem;
}

.service-card {
  display: block;
  padding: 2rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.service-card:hover { border-color: var(--primary); background: var(--surface2); transform: translateY(-2px); }
.service-card-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
.service-card h3 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 500; }
.service-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; font-weight: 300; }
.service-card .card-arrow { display: inline-block; margin-top: 1rem; font-size: 0.82rem; color: var(--accent); font-weight: 600; }

/* ── SERVICE DETAIL PAGES ── */
.service-detail { padding-bottom: 5rem; }
.service-detail p { color: var(--text-muted); margin-bottom: 1.6rem; line-height: 1.9; font-weight: 300; font-size: 1.02rem; }
.service-detail h2 { font-family: var(--ff-heading); font-size: 1.6rem; color: var(--text); margin: 3rem 0 1rem; font-weight: 500; }
.service-detail h2:first-child { margin-top: 0; }
.service-detail ul { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.service-detail li { color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 300; line-height: 1.7; }

.service-cta-box {
  margin-top: 3rem;
  padding: 2.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  text-align: center;
}
.service-cta-box p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1rem; }

/* ── LOCATION ── */
.location-block { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3.5rem; padding-top: 3.5rem; border-top: 1px solid var(--border-light); }
.location-card { padding: 2rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.location-card h3 { font-family: var(--ff-heading); font-size: 1.1rem; color: var(--text); margin-bottom: 0.75rem; font-weight: 500; }
.location-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.7; font-weight: 300; }

/* ── STAFF ── */
.staff-section { padding-bottom: 5rem; }
.staff-grid { display: grid; grid-template-columns: 320px 1fr; gap: 4rem; align-items: start; margin-bottom: 4rem; }
.staff-photo { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 12px; border: 1px solid var(--border); opacity: 0.85; }
.staff-text h2 { font-family: var(--ff-heading); font-size: 1.9rem; color: var(--text); margin-bottom: 0.4rem; font-weight: 500; }
.staff-title { font-size: 0.85rem; color: var(--accent); letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin-bottom: 1.5rem; }
.staff-text p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.85; font-weight: 300; }

.credentials-wall {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-light);
}
.credential-frame {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 110px;
}
.credential-frame .cred-type { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); margin-bottom: 0.4rem; font-weight: 600; }
.credential-frame .cred-name { font-family: var(--ff-heading); font-size: 0.95rem; color: var(--text); font-weight: 500; }
.credential-frame .cred-school { font-size: 0.78rem; color: var(--text-muted); margin-top: 0.25rem; font-weight: 300; }

/* ── FAQ ── */
.faq-section { padding-bottom: 5rem; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item { border-bottom: 1px solid var(--border-light); }
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  text-align: left;
  font-family: var(--ff-heading);
  font-size: 1.05rem;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 500;
}
.faq-q:hover { color: var(--primary-light); }
.faq-q .faq-icon { font-size: 1.2rem; color: var(--text-dim); transition: transform 0.2s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 1.5rem; color: var(--text-muted); line-height: 1.85; font-weight: 300; font-size: 0.97rem; }
.faq-item.open .faq-a { display: block; }

/* ── FORMS PAGE ── */
.forms-section { padding-bottom: 5rem; }
.forms-section p { color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
.forms-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.25rem; margin-top: 2.5rem; }
.form-card { padding: 1.75rem; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; }
.form-card h3 { font-family: var(--ff-heading); font-size: 1rem; color: var(--text); margin-bottom: 0.5rem; font-weight: 500; }
.form-card p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; line-height: 1.6; font-weight: 300; }
.form-card a { font-size: 0.85rem; color: var(--accent); font-weight: 600; text-decoration: none; }

/* ── PRIVACY ── */
.privacy-section { padding-bottom: 5rem; }
.privacy-section h2 { font-family: var(--ff-heading); font-size: 1.5rem; color: var(--text); margin: 2.5rem 0 1rem; font-weight: 500; }
.privacy-section p { color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; font-size: 0.97rem; }
.privacy-section ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.privacy-section li { color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 300; }

/* ── BILLING ── */
.billing-section { padding-bottom: 5rem; }
.billing-section p { color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
.billing-section h2 { font-family: var(--ff-heading); font-size: 1.5rem; color: var(--text); margin: 2.5rem 0 1rem; font-weight: 500; }
.insurance-list { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.insurance-badge { padding: 0.5rem 1.1rem; border: 1px solid var(--border); border-radius: 100px; font-size: 0.88rem; color: var(--text-muted); background: var(--surface); font-weight: 500; }
.fee-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.fee-table td { padding: 0.75rem 0; border-bottom: 1px solid var(--border-light); font-size: 0.92rem; color: var(--text-muted); font-weight: 300; }
.fee-table td:last-child { text-align: right; color: var(--text); font-weight: 500; }

/* ── CONTACT ── */
.contact-section { padding-bottom: 5rem; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.contact-info h2 { font-family: var(--ff-heading); font-size: 1.8rem; color: var(--text); margin-bottom: 1.25rem; font-weight: 500; }
.contact-info p { color: var(--text-muted); margin-bottom: 1rem; line-height: 1.8; font-weight: 300; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-detail { display: flex; flex-direction: column; gap: 0.25rem; }
.contact-detail strong { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-dim); font-weight: 600; }
.contact-detail a, .contact-detail span { color: var(--text-muted); font-size: 0.95rem; text-decoration: none; font-weight: 300; }
.contact-detail a:hover { color: var(--accent); }
.map-placeholder { margin-top: 2rem; height: 220px; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 0.85rem; }

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--text-muted); letter-spacing: 0.02em; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1px solid var(--border); border-radius: 8px;
  padding: 0.7rem 1rem; color: var(--text); font-family: var(--ff-body); font-size: 0.95rem;
  transition: border-color 0.2s; outline: none; width: 100%; font-weight: 300;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group select option { background: var(--surface); }
.form-group textarea { resize: vertical; }
.form-disclaimer { font-size: 0.78rem; color: var(--text-dim); line-height: 1.6; padding: 0.75rem; background: rgba(91,168,212,0.06); border-radius: 6px; border: 1px solid rgba(91,168,212,0.12); font-weight: 300; }

/* ── SCHEDULING ── */
.scheduling-section { padding-bottom: 5rem; }
.scheduling-section p { color: var(--text-muted); line-height: 1.85; font-weight: 300; margin-bottom: 1rem; }
.scheduling-embed-placeholder { margin-top: 2rem; min-height: 500px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; display: flex; align-items: center; justify-content: center; color: var(--text-dim); font-size: 0.9rem; text-align: center; padding: 2rem; }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .intro-grid, .about-grid, .staff-grid, .contact-grid, .two-col-lists, .location-block { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero { padding: 4rem 2rem 3rem; min-height: auto; }
  .services-grid { grid-template-columns: 1fr; }
}

/* ── NAV ACCORDION ── */
.nav-accordion-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0.7rem 1.75rem;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s, background 0.2s;
}
.nav-accordion-btn:hover { color: var(--text); background: rgba(139,114,204,0.07); }
.nav-accordion-btn.open { color: var(--primary-light); }
.nav-accordion-chevron {
  font-size: 0.7rem;
  transition: transform 0.2s;
  opacity: 0.5;
}
.nav-accordion-btn.open .nav-accordion-chevron { transform: rotate(180deg); }

.nav-accordion-panel {
  display: none;
  background: rgba(0,0,0,0.15);
  border-left: 2px solid var(--border);
  margin: 0 0 0.25rem 1.75rem;
}
.nav-accordion-panel.open { display: block; }
.nav-accordion-panel a {
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  border-left: none;
}

/* ── NAV ITEM COLORS ── */
.nav-drawer li:nth-child(1) > a { color: #F0ECD8; }
.nav-drawer li:nth-child(1) > a:hover { color: #fff; background: rgba(240,236,216,0.08); }

.nav-drawer li:nth-child(2) .nav-accordion-btn { color: #E8C97A; }
.nav-drawer li:nth-child(2) .nav-accordion-btn:hover { color: #F5DC9A; background: rgba(232,201,122,0.08); }
.nav-drawer li:nth-child(2) .nav-accordion-btn.open { color: #F5DC9A; }
.nav-drawer li:nth-child(2) .nav-accordion-panel { border-left-color: rgba(232,201,122,0.3); }
.nav-drawer li:nth-child(2) .nav-accordion-panel a { color: rgba(232,201,122,0.7); }
.nav-drawer li:nth-child(2) .nav-accordion-panel a:hover { color: #E8C97A; background: rgba(232,201,122,0.07); }
.nav-drawer li:nth-child(2) .nav-accordion-panel a.active { color: #F5DC9A; border-left-color: #E8C97A; }

.nav-drawer li:nth-child(3) .nav-accordion-btn { color: #5ECFC4; }
.nav-drawer li:nth-child(3) .nav-accordion-btn:hover { color: #7DDDD3; background: rgba(94,207,196,0.08); }
.nav-drawer li:nth-child(3) .nav-accordion-btn.open { color: #7DDDD3; }
.nav-drawer li:nth-child(3) .nav-accordion-panel { border-left-color: rgba(94,207,196,0.3); }
.nav-drawer li:nth-child(3) .nav-accordion-panel a { color: rgba(94,207,196,0.7); }
.nav-drawer li:nth-child(3) .nav-accordion-panel a:hover { color: #5ECFC4; background: rgba(94,207,196,0.07); }
.nav-drawer li:nth-child(3) .nav-accordion-panel a.active { color: #7DDDD3; border-left-color: #5ECFC4; }

.nav-drawer li:nth-child(4) .nav-accordion-btn { color: #E8866A; }
.nav-drawer li:nth-child(4) .nav-accordion-btn:hover { color: #F0A088; background: rgba(232,134,106,0.08); }
.nav-drawer li:nth-child(4) .nav-accordion-btn.open { color: #F0A088; }
.nav-drawer li:nth-child(4) .nav-accordion-panel { border-left-color: rgba(232,134,106,0.3); }
.nav-drawer li:nth-child(4) .nav-accordion-panel a { color: rgba(232,134,106,0.7); }
.nav-drawer li:nth-child(4) .nav-accordion-panel a:hover { color: #E8866A; background: rgba(232,134,106,0.07); }
.nav-drawer li:nth-child(4) .nav-accordion-panel a.active { color: #F0A088; border-left-color: #E8866A; }

.nav-drawer li:nth-child(5) .nav-accordion-btn { color: #7EC896; }
.nav-drawer li:nth-child(5) .nav-accordion-btn:hover { color: #9ADAAF; background: rgba(126,200,150,0.08); }
.nav-drawer li:nth-child(5) .nav-accordion-btn.open { color: #9ADAAF; }
.nav-drawer li:nth-child(5) .nav-accordion-panel { border-left-color: rgba(126,200,150,0.3); }
.nav-drawer li:nth-child(5) .nav-accordion-panel a { color: rgba(126,200,150,0.7); }
.nav-drawer li:nth-child(5) .nav-accordion-panel a:hover { color: #7EC896; background: rgba(126,200,150,0.07); }
.nav-drawer li:nth-child(5) .nav-accordion-panel a.active { color: #9ADAAF; border-left-color: #7EC896; }

.nav-drawer li:nth-child(6) > a { color: #E84FA8; }
.nav-drawer li:nth-child(6) > a:hover { color: #F570C0; background: rgba(232,79,168,0.08); }
.nav-drawer li:nth-child(6) > a.active { color: #F570C0; border-left-color: #E84FA8; }

/* ── PHOTO SECTIONS ── */
.office-hero {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
  opacity: 0.8;
}

.photo-caption {
  font-size: 0.78rem;
  color: var(--text-dim);
  font-style: italic;
  text-align: center;
  margin-top: 0.5rem;
  font-family: var(--ff-body);
}

.office-interior-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin: 3rem 0;
}

.office-interior-grid img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  opacity: 0.82;
}

.cats-section {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-light);
}

.cat-photo-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cat-photo-wrap img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--border);
  opacity: 0.85;
}

.cat-photo-wrap.wide img {
  aspect-ratio: 4/3;
}

.hero-exterior {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 16px 16px;
  margin-bottom: 2rem;
}

.hero-exterior img {
  width: 100%;
  max-height: 320px;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.7;
  display: block;
}

.hero-exterior-caption {
  position: absolute;
  bottom: 1rem;
  left: 1.5rem;
  font-size: 0.78rem;
  color: rgba(220,215,245,0.7);
  font-style: italic;
  font-family: var(--ff-body);
}

@media (max-width: 860px) {
  .office-interior-grid { grid-template-columns: 1fr; }
  .cats-section { grid-template-columns: 1fr 1fr; }
}

/* ── MENU BUTTON UMBRELLA ── */
.menu-icon {
  font-size: 1.3rem;
  margin-right: 0.35rem;
  vertical-align: -0.1em;
  line-height: 1;
}
.menu-btn {
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.06em;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
}

