/* ============================================================
   B-LINE COUNSELING — v2  (2026.05.15)
   Premium dark/gold redesign — Live Web Studios
   ============================================================ */

:root {
  /* ---- Palette ----------------------------------------- */
  --ink-1000: #000000;
  --ink-900:  #0a0a0a;
  --ink-850:  #111111;
  --ink-800:  #161616;
  --ink-700:  #1d1d1d;
  --ink-600:  #262626;
  --ink-500:  #333333;
  --ink-400:  #555555;
  --ink-300:  #8a8a8a;
  --ink-200:  #c8c8c8;
  --ink-100:  #ececec;
  --ink-50:   #f7f7f7;
  --paper:    #ffffff;

  --gold:        #FFD60A;
  --gold-soft:   #FFEB60;
  --gold-deep:   #C9A62A;
  --cream:       #FFF6BF;
  --cream-soft:  #FFFCE0;

  --accent-glow: rgba(255, 214, 10, 0.18);

  /* Semantic */
  --bg:                  var(--ink-900);
  --bg-elev:             var(--ink-800);
  --bg-card-light:       var(--paper);
  --bg-cream:            var(--cream);
  --bg-band:             var(--ink-850);
  --text:                #f3f3f3;
  --text-muted:          #a4a4a4;
  --text-dim:            #6e6e6e;
  --text-on-light:       #141414;
  --text-on-light-muted: #5a5a5a;
  --border-soft:         rgba(255, 255, 255, 0.07);
  --border-strong:       rgba(255, 255, 255, 0.14);
  --border-light:        rgba(0, 0, 0, 0.07);

  /* Footer-specific */
  --color-footer-bg:   #0a0a0a;
  --color-footer-text: #c8c8c8;

  /* ---- Type ------------------------------------------- */
  --font-display:  'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-body:     'Manrope', 'Inter', system-ui, -apple-system, Segoe UI, Helvetica, Arial, sans-serif;
  --font-script:   'Dancing Script', Georgia, serif;
  --font-serif:    'Zilla Slab', Georgia, serif;

  /* ---- Layout ----------------------------------------- */
  --maxw:        1240px;
  --maxw-narrow:  840px;
  --radius-sm:   8px;
  --radius:      14px;
  --radius-lg:   22px;
  --radius-pill: 999px;
  --shadow-sm:    0 1px 2px rgba(0,0,0,0.05), 0 2px 8px rgba(0,0,0,0.06);
  --shadow:       0 2px 6px rgba(0,0,0,0.06), 0 16px 38px -10px rgba(0,0,0,0.18);
  --shadow-lift:  0 6px 14px rgba(0,0,0,0.08), 0 28px 60px -14px rgba(0,0,0,0.28);
  --shadow-dark:  0 24px 60px -16px rgba(0,0,0,0.55);
  --shadow-gold:  0 8px 24px -8px rgba(255, 214, 10, 0.45);

  /* ---- Motion ----------------------------------------- */
  --ease:        cubic-bezier(0.22, 1, 0.36, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast:      0.18s var(--ease);
  --t:           0.32s var(--ease);
  --t-slow:      0.7s  var(--ease);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--t-fast);
}
a:hover { color: var(--gold-soft); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 0.5em;
}

h1 { font-size: clamp(2.2rem, 4.6vw, 4.2rem); font-weight: 800; letter-spacing: -0.025em; }
h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: clamp(1.4rem, 1.8vw, 1.7rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { margin: 0 0 1.05em; }

::selection { background: var(--gold); color: var(--ink-900); }

/* ---- Layout containers ------------------------------- */
.container        { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }
.container-narrow { max-width: var(--maxw-narrow); margin: 0 auto; padding: 0 28px; }
.text-center { text-align: center; }

/* ---- Sections / themes ------------------------------- */
section { padding: clamp(60px, 8vw, 110px) 0; position: relative; }

/* Dark sections — slightly warmer than pure black, with a faint
   green-leaning base so they don't read as a void. */
.section-dark {
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%,  rgba(34, 76, 56, 0.18), transparent 60%),
    radial-gradient(ellipse 70% 50% at 90% 100%, rgba(40, 60, 50, 0.16), transparent 65%),
    linear-gradient(180deg, #0d100f 0%, #14181a 100%);
  color: var(--text);
}
.section-darker {
  background:
    radial-gradient(ellipse 60% 40% at 50% 0%, rgba(34, 76, 56, 0.14), transparent 60%),
    radial-gradient(ellipse 50% 30% at 0% 100%, rgba(255, 214, 10, 0.05), transparent 70%),
    linear-gradient(180deg, #07090a 0%, #0e1213 100%);
  color: var(--text);
}
.section-band  {
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(34, 76, 56, 0.18), transparent 60%),
    linear-gradient(180deg, #11161a 0%, #161b1f 100%);
  color: var(--text);
}
.section-light { background: var(--paper); color: var(--text-on-light); }
.section-light h1, .section-light h2, .section-light h3, .section-light h4 { color: var(--text-on-light); }

/* Premium animated aurora overlay used over .glow-bg dark sections. */
.glow-bg::before {
  content: "";
  position: absolute;
  inset: -10% -5%;
  background:
    radial-gradient(ellipse 50% 40% at 25% 25%, rgba(46, 110, 78, 0.22), transparent 60%),
    radial-gradient(ellipse 40% 30% at 75% 80%, rgba(255, 214, 10, 0.10), transparent 65%),
    radial-gradient(ellipse 50% 40% at 60% 10%, rgba(80, 140, 110, 0.10), transparent 60%);
  filter: blur(40px);
  opacity: 0.85;
  pointer-events: none;
  z-index: 0;
  animation: aurora 22s ease-in-out infinite alternate;
}
.glow-bg > * { position: relative; z-index: 1; }

@keyframes aurora {
  0%   { transform: translate3d(0, 0, 0) scale(1);    }
  50%  { transform: translate3d(2%, -2%, 0) scale(1.06); }
  100% { transform: translate3d(-1%, 1%, 0) scale(1.02); }
}

/* gradient hairline divider */
.hr-gradient {
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--border-strong), transparent);
  margin: 0;
}

/* eyebrow label, used above section headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.section-light .eyebrow { color: var(--gold-deep); }
.section-light .eyebrow::before { background: var(--gold-deep); }

/* ---- Skip / a11y helpers ----------------------------- */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--gold); color: var(--ink-900);
  padding: 10px 16px; font-weight: 700; font-family: var(--font-display);
  text-transform: uppercase; font-size: 13px; letter-spacing: 0.06em;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; color: var(--ink-900); }
:target { scroll-margin-top: 120px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-up, .reveal-fade { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HEADER  /  NAV
   ============================================================ */
.top-bar {
  background: var(--ink-1000);
  color: var(--ink-200);
  font-size: 13px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border-soft);
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
}
.top-bar a { color: var(--ink-200); }
.top-bar a:hover { color: var(--gold); }
.top-bar-left, .top-bar-right {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
}
.top-bar-item i {
  font-style: normal; color: var(--gold); margin-right: 6px;
}
.lang-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  min-height: 34px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), box-shadow var(--t-fast);
}
.lang-toggle [data-lang-flag] { font-size: 15px; line-height: 1; }
.lang-toggle:hover {
  background: var(--gold);
  color: var(--ink-900);
  box-shadow: var(--shadow-gold);
}

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--t), border-color var(--t), box-shadow var(--t);
}
.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  border-color: rgba(0,0,0,0.1);
  box-shadow: 0 6px 18px -10px rgba(0,0,0,0.25);
}
.header-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 28px;       /* tighter vertical padding keeps header height steady */
  display: flex; align-items: center; gap: 28px;
}
.site-logo { display: inline-flex; align-items: center; flex-shrink: 0; }
.site-logo img {
  height: 62px; width: auto;
  /* logo PNG is meant to read dark — keep original */
}
.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; gap: 4px;
}
.nav-list a {
  display: inline-block;
  position: relative;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--t-fast), background var(--t-fast);
}
.nav-list a:hover {
  color: var(--gold-deep);
  background: rgba(201, 166, 42, 0.08);
}
.nav-list a.active { color: var(--gold-deep); }
.nav-list a.active::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px; border-radius: 2px;
  background: var(--gold-deep);
}

/* ---- Dropdown submenu (e.g. About Us → Our Staff) ---- */
.nav-list .has-dropdown { position: relative; }
.nav-list .has-dropdown > a::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  margin-right: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  vertical-align: middle;
  opacity: 0.55;
  transition: transform var(--t-fast), opacity var(--t-fast);
}
.nav-list .has-dropdown:hover > a::before,
.nav-list .has-dropdown:focus-within > a::before {
  opacity: 1;
  transform: rotate(225deg) translate(2px,-1px);
}
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: rgba(255,255,255,0.99);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  box-shadow: 0 12px 32px -10px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.05);
  padding: 6px;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity var(--t-fast), transform var(--t-fast), visibility var(--t-fast);
  z-index: 200;
}
.nav-list .has-dropdown:hover > .dropdown,
.nav-list .has-dropdown:focus-within > .dropdown,
.nav-list .has-dropdown.open > .dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.dropdown a {
  display: block;
  padding: 10px 14px;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-700);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 4px;
  white-space: nowrap;
  background: transparent;
}
.dropdown a:hover,
.dropdown a:focus-visible {
  background: rgba(201,166,42,0.10);
  color: var(--gold-deep);
}

.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  flex-shrink: 0;
}

.menu-toggle {
  display: none;
  background: transparent; border: 0;
  width: 44px; height: 44px;
  cursor: pointer; padding: 0;
  position: relative;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block; background: var(--ink-800);
  height: 2px; width: 24px; border-radius: 2px;
  position: relative; margin: 0 auto;
  transition: transform var(--t), top var(--t), opacity var(--t);
}
.menu-toggle span::before, .menu-toggle span::after {
  content: ""; position: absolute; left: 0;
}
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top: 7px; }
.menu-toggle.open span { background: transparent; }
.menu-toggle.open span::before { top: 0; transform: rotate(45deg); }
.menu-toggle.open span::after  { top: 0; transform: rotate(-45deg); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn, .btn-bio {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.02em;
  padding: 13px 22px;
  border: 0;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform var(--t-fast), background var(--t-fast),
              color var(--t-fast), box-shadow var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}
/* Subtle yellow primary — a hint of glass: faint top highlight,
   gentle body gradient, soft drop shadow. */
.btn-primary, .btn {
  color: var(--ink-900);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0) 55%, rgba(0,0,0,0.04) 100%),
    linear-gradient(180deg, #FFDC2E 0%, #FFD60A 60%, #EFC400 100%);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.35),
    0 1px 2px rgba(0,0,0,0.06),
    0 4px 10px -4px rgba(120,80,0,0.22);
}
.btn-primary:hover, .btn:hover {
  color: var(--ink-900);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.28) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.04) 100%),
    linear-gradient(180deg, #FFE350 0%, #FFD60A 60%, #EFC400 100%);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.45),
    0 2px 4px rgba(0,0,0,0.07),
    0 8px 16px -6px rgba(120,80,0,0.30);
}
.btn:active, .btn-primary:active {
  transform: translateY(0);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.25),
    inset 0 2px 4px rgba(120,80,0,0.12),
    0 1px 2px rgba(0,0,0,0.06);
}

.btn-ghost {
  background: transparent; color: var(--text);
  border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.06); color: var(--gold); border-color: var(--gold); }

.btn-dark {
  background: var(--ink-900); color: var(--text);
}
.btn-dark:hover { background: var(--ink-800); color: var(--gold); transform: translateY(-1px); }

.btn-bio {
  background: var(--ink-900); color: var(--paper);
  padding: 10px 18px; font-size: 12px;
}
.btn-bio:hover { background: var(--gold); color: var(--ink-900); transform: translateY(-1px); }
.section-light .btn-bio { background: var(--ink-900); color: var(--paper); }

.btn-arrow::after {
  content: "→"; font-weight: 800;
  transition: transform var(--t-fast);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================================
   HOME HERO with video background
   ============================================================ */
.home-hero {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden;
  padding: clamp(80px, 12vw, 140px) 0 clamp(80px, 10vw, 120px);
  background: var(--ink-1000);
}
.home-hero__video, .home-hero__poster {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.home-hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.55) 60%, rgba(10,10,10,0.92) 100%),
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(0,0,0,0.55), transparent 70%);
  z-index: 1;
}
.home-hero__content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.home-hero h1 {
  color: #ffffff;
  margin-bottom: 22px;
}
.home-hero h1 .accent {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  color: transparent;
}
.home-hero .lead {
  font-size: clamp(1.05rem, 1.4vw, 1.2rem);
  color: var(--ink-100);
  max-width: 580px;
  margin: 0 0 32px;
  line-height: 1.6;
}
.home-hero .actions { display: flex; gap: 12px; flex-wrap: wrap; }
.home-hero .meta-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid var(--border-strong);
  color: var(--ink-100);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-bottom: 18px;
  backdrop-filter: blur(6px);
}
.home-hero .meta-pill::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--gold); box-shadow: 0 0 12px var(--gold);
}

/* hero floating cards (stat) */
.hero-stats {
  position: absolute; right: 8%; bottom: 12%;
  display: grid; gap: 12px;
  z-index: 2;
}
.hero-stat {
  background: rgba(20,20,20,0.72);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 16px 20px;
  min-width: 200px;
}
.hero-stat strong {
  display: block; font-size: 1.8rem; font-weight: 800; color: var(--gold);
  line-height: 1.1;
}
.hero-stat span { color: var(--ink-100); font-size: 13px; }

/* ============================================================
   GENERIC PAGE HERO  (about / services / contact / faq / bio)
   ============================================================ */
.page-hero {
  position: relative;
  padding: clamp(110px, 14vw, 170px) 0 clamp(60px, 8vw, 100px);
  background: var(--ink-900);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero .lead {
  color: var(--ink-200); font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 640px; margin: 0;
}
.page-hero.with-image .hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
}
.page-hero.with-image .hero-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-dark);
}
.page-hero.with-image .hero-photo img {
  width: 100%; height: 100%; object-fit: cover;
}

/* ============================================================
   CARD PRIMITIVES
   ============================================================ */
.card {
  background: var(--paper);
  color: var(--text-on-light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  transition: transform var(--t), box-shadow var(--t);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card-dark {
  background: var(--ink-800);
  color: var(--text);
  border: 1px solid var(--border-soft);
}
.card-cream { background: var(--cream); color: var(--text-on-light); }
.card-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gold); color: var(--ink-900);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   HOME — SERVICES TEASER (4 service tiles)
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 36px;
}
.service-tile {
  background: var(--ink-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 26px;
  position: relative;
  overflow: hidden;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.service-tile:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: linear-gradient(180deg, var(--ink-700) 0%, var(--ink-800) 100%);
}
.service-tile__icon {
  width: 42px; height: 42px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--ink-900); font-weight: 800;
  margin-bottom: 16px;
  font-size: 1.1rem;
  box-shadow: var(--shadow-gold);
}
.service-tile h3 { font-size: 1.15rem; margin-bottom: 8px; color: var(--text); }
.service-tile p  { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* ============================================================
   HOME — feature row (image + text alternating)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}
.feature-row + .feature-row { margin-top: clamp(60px, 8vw, 110px); }
.feature-row.reverse > :first-child { order: 2; }
.feature-row.reverse > :last-child  { order: 1; }
.feature-row .feature-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow);
}
.feature-row .feature-media img,
.feature-row .feature-media video {
  width: 100%; height: 100%; object-fit: cover;
}
.feature-row h2 { margin-bottom: 18px; }
.feature-row p  { color: var(--text-on-light-muted); font-size: 1.02rem; }
.section-dark .feature-row p { color: var(--text-muted); }

.bullet-list { list-style: none; margin: 0 0 24px; padding: 0; }
.bullet-list li {
  position: relative;
  padding: 8px 0 8px 30px;
  border-bottom: 1px solid var(--border-light);
  font-size: 0.98rem;
}
.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: inset 0 0 0 4px var(--paper);
}
.section-dark .bullet-list li { border-color: var(--border-soft); color: var(--ink-100); }
.section-dark .bullet-list li::before { box-shadow: inset 0 0 0 4px var(--ink-800); }

/* ============================================================
   TESTIMONIALS  — premium quote cards
   ============================================================ */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.testimonial {
  background: var(--ink-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px;
  position: relative;
  font-style: normal;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 12px; left: 22px;
  font-family: Georgia, serif;
  font-size: 4rem; line-height: 1; color: var(--gold);
  opacity: 0.5;
}
.testimonial p { color: var(--text); position: relative; z-index: 1; margin-top: 22px; }
.testimonial cite {
  display: block; margin-top: 18px;
  font-style: normal;
  color: var(--gold);
  font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ============================================================
   STAFF GRID
   ============================================================ */
.staff-section { background: var(--paper); }
.staff-section .eyebrow { color: var(--gold-deep); }
.staff-section .eyebrow::before { background: var(--gold-deep); }
.staff-section h2 { color: var(--text-on-light); }

.staff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
  margin-top: 50px;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  padding: 0 28px;
}
.staff-card {
  /* very pastel mint — almost imperceptible green tint */
  background: #eef5ef;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: left;
  display: flex; flex-direction: column;
  /* subtle resting shadow — deeper on hover */
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), 0 8px 20px -12px rgba(0,0,0,0.18);
  transition: transform var(--t), box-shadow var(--t), border-color var(--t);
}
.staff-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.08), 0 28px 50px -16px rgba(0,0,0,0.35);
  border-color: var(--gold);
}
.staff-photo {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--ink-100);
  text-decoration: none;
  position: relative;
}
.staff-photo::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.18) 100%);
  opacity: 0;
  transition: opacity var(--t);
}
.staff-card:hover .staff-photo::after { opacity: 1; }
.staff-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.staff-card:hover .staff-photo img { transform: scale(1.06); }
.staff-card .meta {
  padding: 18px 20px 22px;
  display: flex; flex-direction: column; gap: 6px; flex-grow: 1;
}
.staff-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-on-light);
  margin: 0;
  line-height: 1.25;
}
.staff-title {
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
  margin: 0 0 14px;
  flex-grow: 1;
}
.staff-card .btn-bio {
  align-self: flex-start;
}

/* ============================================================
   SERVICES PAGE — service cards
   ============================================================ */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.service-block + .service-block { margin-top: clamp(60px, 8vw, 110px); }
.service-block.reverse > :first-child { order: 2; }
.service-block.reverse > :last-child  { order: 1; }
.service-block__media {
  border-radius: var(--radius-lg);
  aspect-ratio: 5/4;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.service-block__media img { width: 100%; height: 100%; object-fit: cover; }
.service-block h3 { font-size: clamp(1.6rem, 2.2vw, 2.2rem); }
.section-light .service-block p { color: var(--text-on-light-muted); }

.service-card-pair {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 38px;
}
.service-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--border-light);
  position: relative;
  transition: transform var(--t), box-shadow var(--t);
}
.service-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.service-card__price {
  font-size: 2.2rem; font-weight: 800;
  color: var(--text-on-light);
  margin: 6px 0 4px;
  letter-spacing: -0.02em;
}

/* ============================================================
   FAQ section — "happier dark" with floral light
   ============================================================ */
.section-faq {
  background:
    radial-gradient(circle 580px at 12% 18%, rgba(60, 130, 95, 0.30), transparent 62%),
    radial-gradient(circle 460px at 92% 6%,  rgba(255, 214, 10, 0.16), transparent 60%),
    radial-gradient(circle 700px at 80% 108%, rgba(64, 135, 100, 0.24), transparent 62%),
    radial-gradient(circle 380px at -4% 78%, rgba(255, 200, 100, 0.10), transparent 65%),
    linear-gradient(180deg, #131914 0%, #181f1a 50%, #141a16 100%);
  color: var(--text);
  position: relative;
  overflow: hidden;
}
/* Two large floral SVG silhouettes drifting in the background — feels
   alive without being literal. */
.section-faq::before, .section-faq::after {
  content: "";
  position: absolute;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.18;
  filter: blur(0.5px);
}
.section-faq::before {
  width: 540px; height: 540px;
  top: -120px; right: -120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%23FFD60A' stroke-width='0.6' opacity='0.9'><path d='M100 30 C120 60 130 90 100 110 C70 90 80 60 100 30 Z'/><path d='M170 100 C140 80 110 90 100 110 C120 130 150 130 170 100 Z'/><path d='M100 170 C80 140 70 110 100 90 C130 110 120 140 100 170 Z'/><path d='M30 100 C60 80 90 90 100 110 C80 130 50 130 30 100 Z'/><circle cx='100' cy='100' r='14' fill='%23FFD60A' opacity='0.25'/></g></svg>");
  animation: floralDrift 24s ease-in-out infinite alternate;
}
.section-faq::after {
  width: 480px; height: 480px;
  bottom: -100px; left: -120px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 200'><g fill='none' stroke='%234fa67c' stroke-width='0.6' opacity='1'><path d='M100 24 C124 56 132 86 100 108 C68 86 76 56 100 24 Z'/><path d='M178 100 C146 76 116 84 100 108 C124 132 156 132 178 100 Z'/><path d='M100 176 C76 144 68 114 100 92 C132 114 124 144 100 176 Z'/><path d='M22 100 C54 76 84 84 100 108 C76 132 44 132 22 100 Z'/><circle cx='100' cy='100' r='12' fill='%234fa67c' opacity='0.3'/></g></svg>");
  animation: floralDrift 30s ease-in-out infinite alternate-reverse;
}
@keyframes floralDrift {
  0%   { transform: translate3d(0,0,0) rotate(0deg); }
  100% { transform: translate3d(20px,-14px,0) rotate(8deg); }
}
.section-faq > * { position: relative; z-index: 1; }

/* ============================================================
   FAQ accordion (dark)
   ============================================================ */
.faq-list { max-width: 820px; margin: 40px auto 0; }
.faq-item {
  background: var(--ink-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color var(--t);
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  cursor: pointer;
  padding: 20px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text);
  list-style: none;
  position: relative;
  outline: none;
  padding-right: 60px;
  transition: background var(--t-fast);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--ink-700); }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--gold);
  font-size: 1.2rem; font-weight: 300;
  transition: transform var(--t), border-color var(--t), background var(--t);
}
.faq-item[open] summary::after {
  content: "−";
  background: var(--gold);
  color: var(--ink-900);
  border-color: var(--gold);
  transform: translateY(-50%) rotate(180deg);
}
.faq-item .answer {
  padding: 0 26px 22px;
  color: var(--text-muted);
}

.icon-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 620px;
  margin: 60px auto 0;
}
.icon-card {
  background: var(--ink-800);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.icon-card .icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--ink-900);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700;
  margin-bottom: 14px;
  box-shadow: var(--shadow-gold);
}
.icon-card h4 { color: var(--text); margin: 6px 0 6px; }
.icon-card a { color: var(--text-muted); }
.icon-card a:hover { color: var(--gold); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-hero {
  position: relative;
  background: var(--ink-1000) url("../images/headerbg.jpg") center / cover no-repeat;
  padding: clamp(110px, 14vw, 170px) 0 clamp(140px, 16vw, 220px);
}
.contact-hero::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.55), rgba(10,10,10,0.85));
}
.contact-hero .container { position: relative; z-index: 1; }
.contact-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 860px) {
  .contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .contact-hero-grid .eyebrow { justify-content: center; }
  .contact-hero-grid .contact-form-card {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
}

.contact-form-card {
  background: var(--paper);
  color: var(--text-on-light);
  max-width: 480px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lift);
  margin-top: 24px;
}
.contact-form-card h2 {
  color: var(--text-on-light);
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.contact-form label {
  display: block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-on-light-muted);
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 12px 14px;
  background: var(--ink-50);
  border: 1px solid var(--border-light);
  color: var(--text-on-light);
  border-radius: var(--radius-sm);
  transition: border-color var(--t-fast), background var(--t-fast);
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 14px; }
.field { margin-bottom: 14px; }
.form-status {
  margin-top: 16px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.92rem;
}
.form-status.success { display: block; background: #e6f3df; color: #2a6b14; }
.form-status.error   { display: block; background: #fae3e3; color: #8b2a2a; }

.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 50px;
}
.contact-card {
  background: var(--paper);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform var(--t), box-shadow var(--t);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.contact-card.dark {
  background: var(--ink-900); color: var(--text);
  border-color: var(--border-soft);
}
.contact-card.dark h4 { color: var(--text); }
.contact-card .ic {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--gold);
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  color: var(--ink-900); font-weight: 700;
}

.map-wrap iframe {
  width: 100%; height: 340px; border: 0;
  border-radius: var(--radius); margin-top: 40px;
  filter: grayscale(0.3) contrast(1.05);
}

/* ============================================================
   BIO PAGE
   ============================================================ */
.bio-section {
  padding: clamp(80px, 10vw, 130px) 0 clamp(60px, 8vw, 110px);
  color: var(--text-on-light);
  position: relative;
  /* warm cream-to-white gradient + faint dot pattern for depth */
  background:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.04) 1px, transparent 1.5px) 0 0/22px 22px,
    radial-gradient(ellipse 70% 50% at 20% 0%,   rgba(255, 214, 10, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(46, 110, 78, 0.07), transparent 65%),
    linear-gradient(180deg, #fafaf6 0%, #ffffff 50%, #fbf8ef 100%);
}
.bio-section::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 380px at 90% 8%, rgba(255, 214, 10, 0.10), transparent 70%);
  z-index: 0;
}
.bio-section .container { position: relative; z-index: 1; }
.bio-section h1, .bio-section h2 { color: var(--text-on-light); }
.bio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: start;
}
.bio-photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-content h1 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 800;
  margin-bottom: 4px;
}
.bio-content .credentials {
  display: inline-block;
  background: var(--cream);
  color: var(--ink-900);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  margin: 0 0 10px;
}
.bio-content .bio-title {
  color: var(--text-on-light-muted);
  font-size: 1.05rem;
  margin: 0 0 22px;
  font-weight: 500;
}
.bio-content p { color: var(--text-on-light-muted); margin-bottom: 1em; line-height: 1.75; }
.back-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 26px;
  font-family: var(--font-display);
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink-900);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: var(--gold);
  transition: background var(--t-fast), transform var(--t-fast);
}
.back-link:hover { background: var(--gold-soft); color: var(--ink-900); transform: translateY(-1px); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 80px 0 24px;
  position: relative;
}
.site-footer::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, var(--accent-glow), transparent 60%);
  pointer-events: none;
}
.site-footer .container {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.site-footer h5 {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 16px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a {
  color: var(--ink-200);
  font-size: 0.95rem;
  transition: color var(--t-fast);
}
.site-footer a:hover { color: var(--gold); }
.footer-brand img { height: 48px; filter: brightness(0) invert(1); margin-bottom: 16px; }
.footer-brand p { color: var(--ink-300); font-size: 0.9rem; max-width: 280px; }
.footer-contact p { color: var(--ink-200); font-size: 0.95rem; margin: 0 0 6px; }

.footer-bar {
  background: var(--ink-1000);
  border-top: 1px solid var(--border-soft);
  padding: 18px 0;
  font-size: 12px;
  color: var(--ink-300);
}
.footer-bar .footer-copy a { color: var(--ink-200); text-decoration: underline; text-decoration-color: rgba(255,255,255,0.25); text-underline-offset: 2px; transition: color var(--t-fast), text-decoration-color var(--t-fast); }
.footer-bar .footer-copy a:hover { color: var(--gold); text-decoration-color: var(--gold); }
.footer-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 14px; flex-wrap: wrap;
}
.footer-bar-nav { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bar-nav a {
  color: var(--ink-300);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-display);
  font-size: 11px; font-weight: 600;
}
.footer-bar-nav a:hover { color: var(--gold); }
.lws-badge img { height: 28px; }

/* ============================================================
   BEE ACCENT — the "B" in B-Line as a soft decorative mark.
   Absolute-positioned inside a relative ancestor (hero / section).
   Slow drift + gentle rotation, low opacity so it never competes
   with the headline.
   ============================================================ */
.bee-accent {
  position: absolute;
  z-index: 4;                 /* above .home-hero__overlay (z:1) and content (z:2-3) wash backgrounds */
  pointer-events: none;
  width: 110px;
  height: auto;
  opacity: 0.6;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
  animation: beeFloat 7s ease-in-out infinite alternate;
}
.bee-accent--top-right    { top: 96px; right: 4%; }
.bee-accent--bottom-right { bottom: 40px; right: 4%; }
.bee-accent--top-left     { top: 96px; left: 4%; }
.bee-accent--bottom-left  { bottom: 40px; left: 4%; }
.bee-accent--lg           { width: 160px; }
.bee-accent--sm           { width: 80px; opacity: 0.32; }
.bee-accent--on-light     { opacity: 0.22; filter: drop-shadow(0 6px 12px rgba(0,0,0,0.15)); }

@keyframes beeFloat {
  0%   { transform: translateY(0) rotate(-4deg); }
  50%  { transform: translateY(-6px) rotate(2deg); }
  100% { transform: translateY(-12px) rotate(4deg); }
}

/* Make sure heroes & sections that host a bee are positioning contexts. */
.home-hero, .page-hero, .contact-hero, .bio-section,
.section-dark, .section-darker, .section-band, .section-faq,
.site-footer, .staff-section { position: relative; overflow: hidden; }

@media (max-width: 760px) {
  .bee-accent { width: 70px; opacity: 0.30; }
  .bee-accent--lg { width: 90px; }
  .bee-accent--top-right, .bee-accent--top-left { top: 100px; }
}

/* ============================================================
   REVEAL ANIMATIONS  (used by animations.js IntersectionObserver)
   ============================================================ */
.reveal, .reveal-up, .reveal-fade, .fade-in, .staff-card {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  will-change: opacity, transform;
}
.reveal-fade { transform: translateY(0); }
.reveal.visible, .reveal-up.visible, .reveal-fade.visible,
.fade-in.visible, .staff-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* stagger child reveals (parent uses class .reveal-stagger and child class .reveal) */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.19s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.26s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.33s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger > .reveal:nth-child(7) { transition-delay: 0.47s; }
.reveal-stagger > .reveal:nth-child(8) { transition-delay: 0.54s; }
.reveal-stagger > .reveal:nth-child(n+9) { transition-delay: 0.6s; }

/* animated gradient glow (used optionally on dark sections for depth) */
@keyframes drift {
  0%, 100% { transform: translate3d(0,0,0); }
  50%      { transform: translate3d(20px,-10px,0); }
}
.glow-drift::before {
  animation: drift 12s ease-in-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .feature-row, .service-block { grid-template-columns: 1fr; }
  .feature-row.reverse > :first-child,
  .feature-row.reverse > :last-child,
  .service-block.reverse > :first-child,
  .service-block.reverse > :last-child { order: initial; }
  .page-hero.with-image .hero-grid { grid-template-columns: 1fr; }
  .bio-layout { grid-template-columns: 1fr; }
  .bio-photo { max-width: 360px; }
  .site-footer .container { grid-template-columns: 1fr 1fr; }
  .hero-stats { display: none; }
}

@media (max-width: 760px) {
  .menu-toggle { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 8px 20px -10px rgba(0,0,0,0.25);
    padding: 8px 0;
  }
  .main-nav.open { display: flex; }
  .nav-list { flex-direction: column; gap: 0; width: 100%; }
  .nav-list a {
    display: block;
    padding: 14px 24px;
    text-align: center;
    min-height: 44px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }
  .nav-list a.active::after { display: none; }
  .header-cta .btn { display: none; }

  /* Dropdown on mobile — inline reveal instead of floating */
  .nav-list .has-dropdown > a::before { display: none; }
  .dropdown {
    position: static;
    background: rgba(0,0,0,0.03);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--t);
  }
  .nav-list .has-dropdown.open > .dropdown { max-height: 300px; }
  .dropdown a {
    padding: 14px 24px 14px 48px;
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-align: center;
  }
  .site-footer .container { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-left: auto; margin-right: auto; }
  .footer-brand p { margin-left: auto; margin-right: auto; }
  .footer-bar .container { justify-content: center; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .icon-row { grid-template-columns: 1fr; }
  .home-hero { min-height: 70vh; }
}

@media (max-width: 480px) {
  .home-hero h1, h1 { font-size: 2.1rem; }
  .testimonial { padding: 22px; }
  .contact-form-card { padding: 24px; }
}
