/* ═══════════════════════════════════════════════
   STRATEGY THEFUTURE — DESIGN SYSTEM v2
   Typefaces: Cormorant (display serif) · Inter (sans)
   Signature: Kinetic vertical lines + gold ink on deep charcoal
═══════════════════════════════════════════════ */

:root {
  /* Palette */
  --ink:        #080808;
  --ink-2:      #111110;
  --ink-3:      #1A1916;
  --ink-4:      #232118;
  --paper:      #F4F1EB;
  --paper-2:    #EDE9E0;
  --gold:       #C8A97E;
  --gold-2:     #E2C99A;
  --gold-dk:    #8B6B3D;
  --gold-pale:  rgba(200,169,126,0.12);
  --cream:      #F0EDEA;
  --muted:      #7A7268;
  --muted-2:    #A09890;
  --border:     rgba(200,169,126,0.14);
  --border-2:   rgba(200,169,126,0.28);

  /* Type */
  --serif: 'Cormorant', 'Georgia', serif;
  --sans:  'Inter', 'Helvetica Neue', sans-serif;

  /* Scale */
  --display-xl: clamp(4rem, 9vw, 9rem);
  --display-lg: clamp(3rem, 6vw, 6rem);
  --display-md: clamp(2rem, 4vw, 3.8rem);
  --display-sm: clamp(1.6rem, 3vw, 2.6rem);
  --body-lg:    1.125rem;
  --body:       1rem;
  --body-sm:    0.875rem;
  --caption:    0.75rem;

  /* Motion */
  --ease:     cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.0, 0.0, 0.2, 1);
  --spring:   cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; -webkit-font-smoothing: antialiased; }
body { background: var(--ink); color: var(--cream); font-family: var(--sans);
       font-weight: 300; line-height: 1.7; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul { list-style: none; }

/* scrollbar */
::-webkit-scrollbar { width: 2px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ── TYPOGRAPHY ─────────────────────────────────── */
.t-display-xl { font-family: var(--serif); font-size: var(--display-xl);
                font-weight: 300; line-height: 0.95; letter-spacing: -0.02em; }
.t-display-lg { font-family: var(--serif); font-size: var(--display-lg);
                font-weight: 300; line-height: 1.0; letter-spacing: -0.01em; }
.t-display-md { font-family: var(--serif); font-size: var(--display-md);
                font-weight: 300; line-height: 1.12; letter-spacing: -0.01em; }
.t-display-sm { font-family: var(--serif); font-size: var(--display-sm);
                font-weight: 400; line-height: 1.2; }
.t-eyebrow    { font-size: var(--caption); font-weight: 500; letter-spacing: 0.28em;
                text-transform: uppercase; color: var(--gold); }
.t-body-lg    { font-size: var(--body-lg); font-weight: 300; line-height: 1.85;
                color: var(--muted-2); }
.t-body       { font-size: var(--body); font-weight: 300; line-height: 1.8;
                color: var(--muted-2); }
.t-body strong { color: var(--cream); font-weight: 400; }
em, .gold { color: var(--gold); font-style: italic; }

/* ── LAYOUT ─────────────────────────────────────── */
.wrap     { max-width: 1280px; margin: 0 auto; padding: 0 4rem; }
.wrap-sm  { max-width: 900px;  margin: 0 auto; padding: 0 4rem; }
.wrap-xs  { max-width: 680px;  margin: 0 auto; padding: 0 4rem; }

.grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.grid-3   { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4   { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }

/* ── REVEAL ─────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px);
          transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left { opacity: 0; transform: translateX(-32px);
               transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out); }
.reveal-left.visible { opacity: 1; transform: none; }

/* ── GOLD RULE ──────────────────────────────────── */
.gold-rule { width: 48px; height: 1px; background: var(--gold); opacity: 0.5; margin: 2rem 0; }

/* ══════════════════════════════════════════════════
   NAV
══════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 3rem;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s,
              border-bottom 0.5s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(8,8,8,0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
}
.nav-logo img { height: 32px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2.8rem; }
.nav-links > li { position: relative; }
.nav-links > li > a {
  font-size: 11px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted-2);
  transition: color 0.2s;
  display: flex; align-items: center; gap: 4px;
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--gold); }
.nav-chevron { font-size: 14px; opacity: 0.5; transition: transform 0.2s; }
.has-dropdown:hover .nav-chevron { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 1rem); left: -1.5rem;
  background: rgba(10,10,8,0.98);
  border: 1px solid var(--border-2);
  border-radius: 2px;
  min-width: 260px;
  padding: 0.75rem 0;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
  backdrop-filter: blur(20px);
}
.has-dropdown:hover .nav-dropdown { opacity: 1; visibility: visible; transform: none; }
.nav-dropdown li a {
  display: block;
  padding: 0.6rem 1.5rem;
  font-size: 11.5px; font-weight: 300; letter-spacing: 0.04em;
  color: var(--muted-2);
  transition: color 0.15s, padding-left 0.15s;
}
.nav-dropdown li a:hover { color: var(--gold); padding-left: 2rem; }

/* CTA pill */
.nav-cta {
  font-size: 10px !important; font-weight: 500 !important;
  letter-spacing: 0.2em !important; text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  border-radius: 1px;
  transition: background 0.2s, color 0.2s !important;
}
.nav-cta:hover { background: var(--cream); color: var(--ink) !important; }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 24px; }
.hamburger span { display: block; height: 1px; background: var(--cream);
                  transition: transform 0.3s, opacity 0.3s; }

/* ══════════════════════════════════════════════════
   HERO (home page)
══════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 4rem 7rem;
  overflow: hidden;
  background: var(--ink);
}
.hero-canvas { position: absolute; inset: 0; z-index: 0; }
.hero-vignette {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(ellipse 70% 60% at 60% 50%,
    transparent 0%, rgba(8,8,8,0.5) 60%, rgba(8,8,8,0.92) 100%);
}

.hero-content { position: relative; z-index: 2; max-width: 1280px; margin: 0 auto; width: 100%; }

.hero-eyebrow {
  font-size: 10px; font-weight: 500; letter-spacing: 0.36em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
  display: flex; align-items: center; gap: 1rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before { content: ''; display: block; width: 32px; height: 1px;
                         background: var(--gold); opacity: 0.5; }

.hero-display {
  font-family: var(--serif);
  font-size: clamp(4.5rem, 10vw, 10rem);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.025em;
  color: var(--cream);
  max-width: 860px;
  opacity: 0; animation: fadeUp 1s var(--ease-out) 0.4s forwards;
}
.hero-display .line-gold { color: var(--gold); font-style: italic; }
.hero-display .line-dim  { color: var(--muted); }

.hero-foot {
  margin-top: 4rem;
  display: flex; align-items: flex-end; justify-content: space-between;
  opacity: 0; animation: fadeUp 0.9s var(--ease-out) 0.8s forwards;
}
.hero-sub {
  font-size: clamp(0.9rem, 1.3vw, 1.05rem); font-weight: 300;
  color: var(--muted-2); line-height: 1.85; max-width: 460px;
}
.hero-actions { display: flex; flex-direction: column; gap: 0.9rem; align-items: flex-end; }

/* Stats strip */
.hero-stats-strip {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: rgba(8,8,8,0.8); backdrop-filter: blur(12px);
  opacity: 0; animation: fadeUp 0.8s var(--ease-out) 1.2s forwards;
}
.stat-block {
  padding: 1.6rem 2rem;
  border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-n { font-family: var(--serif); font-size: 2.8rem; font-weight: 300;
           color: var(--cream); line-height: 1; }
.stat-n sup { font-size: 1.4rem; color: var(--gold); }
.stat-l { font-size: 9.5px; font-weight: 400; letter-spacing: 0.14em;
           text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ══════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════ */
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 1rem 2rem; border-radius: 1px;
  transition: background 0.22s, transform 0.22s;
}
.btn-primary:hover { background: var(--cream); transform: translateY(-2px); }
.btn-primary svg { width: 13px; height: 13px; }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.7rem;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted-2);
  border: 1px solid var(--border-2);
  padding: 0.95rem 1.8rem;
  transition: color 0.2s, border-color 0.2s;
}
.btn-outline:hover { color: var(--gold); border-color: var(--gold); }

.btn-text {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); border-bottom: 1px solid rgba(200,169,126,0.25); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-text:hover { color: var(--gold); border-color: var(--gold); }

/* ══════════════════════════════════════════════════
   SECTION SHARED
══════════════════════════════════════════════════ */
.section { padding: 9rem 0; }
.section-alt { background: var(--ink-2); }
.section-dark { background: var(--ink-3); }

.section-header { margin-bottom: 5rem; }
.section-header .t-eyebrow { margin-bottom: 1rem; }

/* ══════════════════════════════════════════════════
   ABOUT (home)
══════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 8rem; align-items: start; }
.about-left { position: sticky; top: 7rem; }
.about-display { font-family: var(--serif); font-size: clamp(3rem, 5vw, 5rem);
                 font-weight: 300; line-height: 1.05; letter-spacing: -0.015em;
                 color: var(--cream); }
.about-display em { font-style: italic; color: var(--gold); }

.about-creds { margin-top: 3.5rem; display: flex; flex-direction: column; gap: 1.5rem;
               border-left: 1px solid var(--border-2); padding-left: 1.5rem; }
.cred { display: flex; align-items: baseline; gap: 1rem; }
.cred-n { font-family: var(--serif); font-size: 2.2rem; font-weight: 300;
           color: var(--gold); min-width: 4rem; line-height: 1; }
.cred-l { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.6; }

.about-right-body { font-size: 1.05rem; font-weight: 300; color: var(--muted-2);
                    line-height: 1.9; margin-bottom: 1.6rem; }
.about-right-body strong { color: var(--cream); font-weight: 400; }
.about-right-body:last-of-type { margin-bottom: 0; }

.about-quote {
  margin-top: 2.5rem;
  padding: 1.8rem 2rem;
  border-left: 2px solid var(--gold);
  background: var(--gold-pale);
}
.about-quote-text { font-family: var(--serif); font-size: 1.35rem; font-weight: 300;
                    font-style: italic; color: var(--cream); line-height: 1.55; }

/* ══════════════════════════════════════════════════
   PRACTICES GRID (home + practices.php)
══════════════════════════════════════════════════ */
.practices-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.practice-card {
  padding: 2.8rem 2.2rem;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background 0.3s var(--ease);
  position: relative; overflow: hidden;
}
.practice-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease-out);
}
.practice-card:hover { background: var(--ink-3); }
.practice-card:hover::after { transform: scaleX(1); }
.practice-card:hover .pc-name { color: var(--gold); }
.practice-card:hover .pc-arrow { opacity: 1; transform: translateX(5px); }

.pc-tag { font-size: 8.5px; font-weight: 500; letter-spacing: 0.24em; text-transform: uppercase;
          color: var(--gold); opacity: 0.65; margin-bottom: 1.5rem; }
.pc-icon { width: 24px; height: 24px; margin-bottom: 1.2rem; opacity: 0.4;
           stroke: var(--cream); }
.pc-name { font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
           color: var(--cream); margin-bottom: 0.8rem; transition: color 0.3s;
           line-height: 1.4; }
.pc-desc { font-size: 11.5px; font-weight: 300; color: var(--muted); line-height: 1.8; }
.pc-arrow { font-size: 11px; color: var(--gold); margin-top: 1.4rem;
            opacity: 0; display: inline-block;
            transition: opacity 0.3s, transform 0.3s; }

/* ══════════════════════════════════════════════════
   BELIEFS (home)
══════════════════════════════════════════════════ */
.beliefs-wrap { display: grid; grid-template-columns: 380px 1fr; gap: 8rem; align-items: start; }
.beliefs-left { position: sticky; top: 8rem; }
.beliefs-list { display: flex; flex-direction: column; }
.belief {
  padding: 2.8rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s;
}
.belief:first-child { padding-top: 0; }
.belief:last-child { border-bottom: none; padding-bottom: 0; }
.belief-num { font-family: var(--serif); font-style: italic; font-size: 11px;
              color: var(--gold); opacity: 0.5; letter-spacing: 0.12em; margin-bottom: 0.5rem; }
.belief-stmt { font-family: var(--serif); font-size: 1.4rem; font-weight: 400;
               color: var(--cream); line-height: 1.38; margin-bottom: 0.7rem; }
.belief-body { font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.85; }

/* ══════════════════════════════════════════════════
   REACH (home)
══════════════════════════════════════════════════ */
.reach-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7rem; align-items: center; }
.reach-map-frame {
  aspect-ratio: 16/9; background: var(--ink-3);
  border: 1px solid var(--border); overflow: hidden;
  position: relative;
}
.reach-regions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.reach-pill {
  font-size: 9px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); padding: 5px 12px;
  border: 1px solid var(--border);
  transition: color 0.2s, border-color 0.2s;
  cursor: default;
}
.reach-pill:hover { color: var(--gold); border-color: var(--gold-dk); }

/* ══════════════════════════════════════════════════
   INSIGHTS PREVIEW (home) + INSIGHTS PAGE
══════════════════════════════════════════════════ */
.insights-header-row { display: flex; justify-content: space-between; align-items: flex-end;
                        margin-bottom: 3.5rem; }
.insights-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.insight-card {
  background: var(--ink-2);
  padding: 2.4rem;
  border: 1px solid var(--border);
  transition: background 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
  cursor: pointer;
}
.insight-card:hover { background: var(--ink-3); border-color: var(--border-2); }
.insight-card:hover .insight-title { color: var(--gold); }
.insight-tag { font-size: 8.5px; font-weight: 500; letter-spacing: 0.22em;
               text-transform: uppercase; color: var(--gold); opacity: 0.75;
               margin-bottom: 1rem; }
.insight-title { font-family: var(--serif); font-size: 1.15rem; font-weight: 400;
                 color: var(--cream); line-height: 1.4; margin-bottom: 1rem;
                 flex-grow: 1; transition: color 0.25s; }
.insight-summary { font-size: 12px; color: var(--muted); line-height: 1.75;
                   margin-bottom: 1.2rem; }
.insight-meta { font-size: 10px; font-weight: 300; color: var(--muted);
                letter-spacing: 0.08em; }
.insight-read { font-size: 10px; color: var(--gold); letter-spacing: 0.1em;
                text-transform: uppercase; margin-top: 1.2rem; }

/* Insight article page */
.article-hero { padding: 12rem 4rem 6rem; background: var(--ink); }
.article-body { padding: 5rem 0 8rem; }
.article-body p { font-size: 1.05rem; line-height: 1.95; color: var(--muted-2);
                  margin-bottom: 1.6rem; }
.article-body p:first-child::first-letter { font-family: var(--serif); font-size: 4.5rem;
  font-weight: 300; color: var(--gold); float: left; line-height: 0.8;
  margin: 0.1em 0.12em 0 0; }

/* ══════════════════════════════════════════════════
   CONTACT PAGE
══════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 7rem; align-items: start; }
.contact-detail { margin-bottom: 1.6rem; }
.cd-label { font-size: 8.5px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
            color: var(--muted); margin-bottom: 5px; }
.cd-value { font-size: 15px; font-weight: 300; color: var(--cream); letter-spacing: 0.02em; }
.cd-value a:hover { color: var(--gold); }
.contact-details-block { border-left: 1px solid var(--border-2); padding-left: 1.6rem; margin-top: 2.5rem; }

.form-label { font-size: 8.5px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
              color: var(--muted); display: block; margin-bottom: 0.5rem; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: var(--ink-2);
  border: 1px solid var(--border);
  padding: 0.9rem 1rem;
  font-family: var(--sans); font-size: 13.5px; font-weight: 300;
  color: var(--cream); outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted); opacity: 0.4; }
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--gold); background: var(--ink-3);
}
.form-select { appearance: none; cursor: pointer;
               background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C8A97E' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
               background-repeat: no-repeat; background-position: right 1rem center; }
.form-textarea { resize: vertical; min-height: 140px; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  display: inline-flex; align-items: center; gap: 0.8rem;
  font-family: var(--sans); font-size: 10.5px; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink); background: var(--gold);
  padding: 1.1rem 2.2rem; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--cream); transform: translateY(-2px); }
.form-status { font-size: 12.5px; color: var(--gold); min-height: 1.4rem;
               margin-bottom: 0.5rem; letter-spacing: 0.04em; }

/* WA button */
.wa-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 10.5px; font-weight: 400; letter-spacing: 0.14em; text-transform: uppercase;
  color: #25D366; border: 1px solid rgba(37,211,102,0.25);
  padding: 0.6rem 1.2rem; margin-top: 0.5rem;
  transition: background 0.2s, color 0.2s;
}
.wa-btn:hover { background: rgba(37,211,102,0.08); }

/* ══════════════════════════════════════════════════
   PRACTICE PAGE TEMPLATE
══════════════════════════════════════════════════ */
.practice-hero {
  min-height: 70vh; display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 4rem 6rem; position: relative; overflow: hidden;
  background: var(--ink);
}
.practice-hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, var(--ink) 50%, var(--ink-3) 100%);
}
.practice-hero-line {
  position: absolute; right: 0; top: 0; bottom: 0; width: 1px;
  background: linear-gradient(180deg, transparent, var(--gold), transparent);
  opacity: 0.3;
}
.practice-hero-content { position: relative; z-index: 1; }
.practice-stats { display: flex; gap: 3rem; margin-top: 2.5rem; flex-wrap: wrap; }
.pstat { border-left: 1px solid var(--border-2); padding-left: 1.2rem; }
.pstat-n { font-family: var(--serif); font-size: 1.8rem; font-weight: 300;
            color: var(--gold); line-height: 1; }
.pstat-l { font-size: 9.5px; font-weight: 300; letter-spacing: 0.1em;
            text-transform: uppercase; color: var(--muted); margin-top: 3px; }

.service-accordion { border-top: 1px solid var(--border); }
.service-item { border-bottom: 1px solid var(--border); }
.service-trigger {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.8rem 0; cursor: pointer;
  font-size: 14px; font-weight: 400; color: var(--cream);
  letter-spacing: 0.02em;
  background: none; border: none; font-family: var(--sans);
  text-align: left; transition: color 0.2s;
}
.service-trigger:hover { color: var(--gold); }
.service-trigger.open { color: var(--gold); }
.service-icon { font-size: 20px; color: var(--gold); opacity: 0.5;
                transition: transform 0.3s, opacity 0.3s; }
.service-trigger.open .service-icon { transform: rotate(45deg); opacity: 1; }
.service-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease-out); }
.service-body-inner { padding-bottom: 1.8rem; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 2rem; }
.service-list li {
  font-size: 12.5px; font-weight: 300; color: var(--muted); line-height: 1.7;
  padding-left: 1rem; position: relative;
}
.service-list li::before { content: '—'; position: absolute; left: 0;
                            color: var(--gold); opacity: 0.5; }

.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; margin-top: 3rem; }
.why-card { padding: 2.2rem; background: var(--ink-3); border: 1px solid var(--border); }
.why-title { font-size: 13px; font-weight: 500; color: var(--cream); margin-bottom: 0.8rem; }
.why-body { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.8; }

.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.related-card {
  padding: 2rem;
  background: var(--ink-2); border: 1px solid var(--border);
  display: block;
  transition: background 0.25s, border-color 0.25s;
}
.related-card:hover { background: var(--ink-3); border-color: var(--border-2); }
.related-tag { font-size: 8.5px; font-weight: 500; letter-spacing: 0.2em;
               text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.6rem; }
.related-title { font-size: 13px; font-weight: 400; color: var(--cream); margin-bottom: 0.5rem; }
.related-desc { font-size: 11.5px; font-weight: 300; color: var(--muted); line-height: 1.7; }

/* Breadcrumb */
.breadcrumb { font-size: 10.5px; font-weight: 300; letter-spacing: 0.1em;
              color: var(--muted); margin-bottom: 2rem;
              display: flex; align-items: center; gap: 0.6rem; }
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb sep { opacity: 0.4; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--ink-2); border-top: 1px solid var(--border); }
.footer-top {
  max-width: 1280px; margin: 0 auto; padding: 5rem 4rem 4rem;
  display: grid; grid-template-columns: 260px 1fr; gap: 5rem;
}
.footer-logo { opacity: 0.35; filter: brightness(0.6); margin-bottom: 1.2rem; }
.footer-tagline { font-size: 12px; font-weight: 300; color: var(--muted); line-height: 1.7;
                  margin-bottom: 1.5rem; }
.footer-contact-quick { display: flex; flex-direction: column; gap: 0.3rem; }
.footer-contact-quick a { font-size: 11.5px; font-weight: 300; color: var(--muted);
                           transition: color 0.2s; }
.footer-contact-quick a:hover { color: var(--gold); }

.footer-cols { display: grid; grid-template-columns: 1fr 0.5fr 0.7fr; gap: 3rem; }
.footer-col-head { font-size: 8.5px; font-weight: 500; letter-spacing: 0.22em;
                   text-transform: uppercase; color: var(--gold); opacity: 0.65;
                   margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 12px; font-weight: 300; color: var(--muted);
                  transition: color 0.2s; }
.footer-links a:hover { color: var(--cream); }
.footer-links li { font-size: 12px; font-weight: 300; color: var(--muted); }

.footer-bottom {
  max-width: 1280px; margin: 0 auto; padding: 1.8rem 4rem;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-copy { font-size: 10.5px; font-weight: 300; color: var(--muted); letter-spacing: 0.06em; }
.footer-domains { font-size: 10.5px; font-weight: 300; color: var(--muted); letter-spacing: 0.08em; }

/* ══════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════ */
.page-hero {
  padding: 12rem 0 6rem; background: var(--ink);
  border-bottom: 1px solid var(--border);
}

/* ══════════════════════════════════════════════════
   INSIGHTS PAGE — filters
══════════════════════════════════════════════════ */
.filter-strip { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  font-size: 9.5px; font-weight: 400; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--muted); padding: 6px 14px;
  border: 1px solid var(--border);
  background: none; cursor: pointer; font-family: var(--sans);
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  color: var(--gold); border-color: var(--gold-dk);
  background: var(--gold-pale);
}

/* ══════════════════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}
@keyframes pulseRing {
  0%, 100% { opacity: 0.5; r: 6; }
  50%       { opacity: 1;   r: 10; }
}

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .practices-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid, .beliefs-wrap { grid-template-columns: 1fr; gap: 4rem; }
  .about-left, .beliefs-left { position: static; }
  .reach-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .footer-top { grid-template-columns: 1fr; gap: 3rem; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 900px) {
  .wrap, .wrap-sm, .wrap-xs { padding: 0 1.5rem; }
  .hero { padding: 0 1.5rem 6rem; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .hero-actions { align-items: flex-start; }
  .hero-stats-strip { grid-template-columns: 1fr 1fr; }
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column; align-items: flex-start; gap: 0;
    position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(8,8,8,0.98); padding: 5rem 2rem 2rem;
    z-index: 199;
    backdrop-filter: blur(20px);
    overflow-y: auto;
  }
  .nav-links.open > li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-links.open > li > a {
    display: block; padding: 1.2rem 0; font-size: 13px;
    color: var(--cream);
  }
  .nav-dropdown { position: static; opacity: 1; visibility: visible;
                  transform: none; background: none; border: none;
                  padding: 0 0 0.5rem 1rem; min-width: auto; display: block; }
  .has-dropdown:hover .nav-dropdown { display: block; }
  .nav-dropdown li a { padding: 0.5rem 0; font-size: 12px; }
  .nav-cta { display: none; }
  .section { padding: 6rem 0; }
  .insights-grid, .grid-3 { grid-template-columns: 1fr; }
  .practices-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .service-list { grid-template-columns: 1fr; }
  .why-grid, .related-grid { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .practice-hero { padding: 0 1.5rem 4rem; min-height: 55vh; }
  .page-hero { padding: 9rem 0 4rem; }
  .article-hero { padding: 9rem 1.5rem 4rem; }
  .article-body { padding: 3rem 0 5rem; }
  .insights-header-row { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal, .reveal-left { opacity: 1; transform: none; }
}
