/* ─────────────────────────────────────────────────────────────────────────
   Aleksander Wiśniewski — Ekspert Finansowy
   Cinematic dark navy + gold, luxury minimalism
   ───────────────────────────────────────────────────────────────────────── */

:root {
  --navy-900: #08111e;
  --navy-800: #0D1B2E;
  --navy-700: #10243A;
  --navy-600: #16304b;
  --navy-500: #1d3a5c;
  --gold-700: #A07830;
  --gold-600: #C9A84C;
  --gold-500: #d9b964;
  --gold-400: #E8C97A;
  --gold-300: #f0d99a;
  --cream:    #F5F0E8;
  --mute:     #A8B4C0;
  --mute-2:   #7d8a98;
  --line:     rgba(201, 168, 76, 0.22);
  --line-soft:rgba(245, 240, 232, 0.08);

  --serif:    "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --caps:     "Cinzel", "Trajan Pro", serif;
  --body:     "Lato", "Helvetica Neue", system-ui, sans-serif;

  --maxw: 1280px;
  --pad-x: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--navy-800);
  color: var(--cream);
  font-family: var(--body);
  font-weight: 300;
  font-size: 19px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ── BACKGROUND VARIANTS (Tweak: bgStyle) ─────────────────────────────── */
body::before {
  content: "";
  position: fixed; inset: 0;
  z-index: -2;
  background: var(--navy-800);
  transition: opacity 600ms ease;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 600ms ease;
}

body[data-bg="gradient"]::before {
  background:
    radial-gradient(ellipse 80% 60% at 85% 0%, rgba(201,168,76,0.18) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 10% 100%, rgba(29,58,92,0.5) 0%, transparent 60%),
    var(--navy-800);
}

body[data-bg="noise"]::before {
  background: var(--navy-800);
}
body[data-bg="noise"]::after {
  opacity: 0.5;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.86  0 0 0 0 0.65  0 0 0 0.08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: screen;
}

/* ── TYPE ─────────────────────────────────────────────────────────────── */
.eyebrow {
  font-family: var(--caps);
  font-weight: 400;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold-600);
}
.eyebrow.no-rule::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(48px, 7.2vw, 104px); line-height: 0.98; }
h2 { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.04; }
h3 { font-size: clamp(22px, 1.8vw, 28px); line-height: 1.2; }

.lede {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.45;
  color: var(--mute);
  max-width: 56ch;
}
.lede strong { color: var(--cream); font-weight: 500; font-style: normal; }
.body-text { color: var(--mute); max-width: 60ch; }

/* ── LAYOUT ───────────────────────────────────────────────────────────── */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
section { position: relative; }

/* ── NAV ──────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(8, 17, 30, 0.72);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  height: 84px;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.logo {
  display: flex; align-items: center; gap: 14px;
  text-decoration: none;
}
.logo-mark {
  width: 60px; height: 60px;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  display: grid; place-items: center;
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--gold-400);
  background: linear-gradient(160deg, rgba(201,168,76,0.06), rgba(201,168,76,0));
  position: relative;
  overflow: hidden;
}
.logo-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  filter: brightness(0) invert(1);
}
.logo-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border: 0.5px solid var(--line);
  border-radius: 50%;
}
.logo-text {
  display: flex; flex-direction: column;
  line-height: 1;
}
.logo-text .ln1 {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.logo-text .ln2 {
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.32em;
  color: var(--gold-400);
  margin-top: 4px;
  text-transform: uppercase;
}
.nav-cta { display: none; }
.nav-links {
  display: none;
  list-style: none; margin: 0; padding: 0;
}
.nav-links a {
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 2px;
  white-space: nowrap;
  position: relative;
  transition: color 240ms ease;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 50%; bottom: -2px;
  width: 0; height: 1px;
  background: var(--gold-400);
  transition: width 280ms ease, left 280ms ease;
}
.nav-links a:hover { color: var(--gold-400); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; left: 0; }
.nav-links a.active { color: var(--gold-400); }

/* ── BUTTONS ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 10px;
  font-family: var(--caps);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 16px 28px;
  border: 1px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  position: relative;
  overflow: hidden;
  transition: transform 240ms ease, color 240ms ease, background 240ms ease, border-color 240ms ease;
  white-space: nowrap;
}
.btn .arrow { transition: transform 280ms ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  color: var(--navy-900);
  background: linear-gradient(135deg, var(--gold-400) 0%, var(--gold-600) 60%, var(--gold-700) 110%);
  box-shadow: 0 1px 0 rgba(255, 230, 170, 0.5) inset, 0 14px 36px -18px rgba(201, 168, 76, 0.6);
}
.btn-primary::before {
  /* shimmer sweep */
  content: "";
  position: absolute;
  top: 0; left: -120%;
  width: 80%; height: 100%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 240, 0.55) 50%, transparent 100%);
  transform: skewX(-18deg);
  animation: shimmer 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes shimmer {
  0%, 18% { left: -120%; }
  55%, 100% { left: 140%; }
}
.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
  box-shadow: 0 1px 0 rgba(255, 230, 170, 0.5) inset, 0 10px 40px -10px rgba(201, 168, 76, 0.85);
}
.btn-primary:active {
  transform: translateY(0);
  filter: brightness(0.97);
  transition-duration: 80ms;
}

.btn-ghost {
  border-color: var(--gold-600);
  color: var(--gold-400);
}
.btn-ghost:hover {
  background: rgba(201, 168, 76, 0.08);
  color: var(--gold-300);
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px -8px rgba(201, 168, 76, 0.3);
}
.btn-ghost:active {
  transform: translateY(0);
  transition-duration: 80ms;
}

.btn-link {
  padding: 10px 0;
  color: var(--gold-400);
  border: 0;
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: transparent;
}
.btn-link:hover { color: var(--gold-300); }

/* shared accent line */
.gold-rule {
  display: block;
  width: 56px; height: 1px;
  background: var(--gold-600);
}

/* ── HERO ─────────────────────────────────────────────────────────────── */
.hero { display: none !important; }
body[data-hero="1"] .hero[data-variant="1"] { display: block !important; }
body[data-hero="2"] .hero[data-variant="2"] { display: grid !important; }
body[data-hero="3"] .hero[data-variant="3"] { display: grid !important; }

.lens-flare {
  position: absolute;
  pointer-events: none;
  width: 720px; height: 720px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(232,201,122,0.22) 0%, rgba(201,168,76,0.10) 30%, transparent 65%);
  filter: blur(2px);
  animation: breathe 8s ease-in-out infinite;
}
@keyframes breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50%      { opacity: 0.95; transform: scale(1.08); }
}

/* ── HERO V1 — Editorial Card (text left, framed portrait right) ──── */
.hero-v1 {
  padding: 88px 0 120px;
  overflow: hidden;
}
.hero-v1 .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
  position: relative;
}
.hero-v1 .flare { top: -120px; right: -160px; }
.hero-v1 h1 {
  margin-top: 28px;
  text-wrap: balance;
}
.hero-v1 h1 .ital { font-style: italic; color: var(--gold-300); }
.hero-v1 .sub {
  margin-top: 28px;
  max-width: 44ch;
  color: var(--mute);
  font-size: 18px;
}
.hero-v1 .ctas {
  margin-top: 44px;
  display: flex; flex-wrap: wrap; gap: 14px;
}
.hero-v1 .meta {
  margin-top: 44px;
  display: flex; gap: 36px;
  border-top: 1px solid var(--line-soft);
  padding-top: 26px;
}
.hero-v1 .meta-item .k {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--gold-400);
  line-height: 1;
}
.hero-v1 .meta-item .v {
  display: block;
  font-family: var(--caps);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--mute-2);
  text-transform: uppercase;
  margin-top: 8px;
}

.portrait-card {
  position: relative;
  aspect-ratio: 3 / 4;
  padding: 14px;
}
.portrait-card::before,
.portrait-card::after {
  content: "";
  position: absolute;
  width: 36px; height: 36px;
  border: 1px solid var(--gold-600);
}
.portrait-card::before { top: 0; left: 0; border-right: 0; border-bottom: 0; }
.portrait-card::after  { bottom: 0; right: 0; border-left: 0; border-top: 0; }
.portrait-card .frame {
  position: absolute; inset: 14px;
  border: 1px solid var(--line);
  background: var(--navy-700);
  overflow: hidden;
}
.portrait-card .frame::after {
  /* subtle vignette */
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 30%, transparent 40%, rgba(8,17,30,0.7) 100%);
  pointer-events: none;
}
.portrait-card image-slot {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.portrait-card .stamp {
  position: absolute;
  bottom: -18px; right: -10px;
  z-index: 2;
  background: var(--navy-800);
  padding: 10px 18px;
  border: 1px solid var(--gold-600);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* ── HERO V1 — Floating Cards Visual ──────────────────────────────── */
.hero-vis {
  position: relative;
  min-height: 500px;
  isolation: isolate;
}
.hero-vis::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  border: 1px solid rgba(201,168,76,0.07);
  pointer-events: none;
}
.vis-connector-svg {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  overflow: visible;
}
.vis-connector {
  stroke: rgba(201,168,76,0.1);
  stroke-width: 1;
  fill: none;
  stroke-dasharray: 5 5;
  opacity: 0;
  animation: fcard-fade 0.6s ease 2.2s forwards;
}
.fcard {
  position: absolute;
  background: rgba(13,27,46,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 8px;
  padding: 18px 22px;
  opacity: 0;
  cursor: default;
  z-index: 1;
  transition: transform 350ms cubic-bezier(.22,.68,0,1.2), border-color 280ms ease, box-shadow 280ms ease, background-color 280ms ease, z-index 0ms;
}
.fcard::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.35), transparent);
  transition: opacity 280ms ease;
}
.fcard:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(201,168,76,0.55);
  background-color: rgba(17,34,64,0.96);
  box-shadow: 0 28px 64px -12px rgba(0,0,0,0.65), 0 0 0 1px rgba(201,168,76,0.1), 0 0 40px -8px rgba(201,168,76,0.22);
  animation-play-state: paused;
  z-index: 20;
}
.fcard:hover::before { opacity: 2; }
.card-center:hover { transform: translate(-50%, -50%) translateY(-10px) scale(1.04); }
.fcard-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.22);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 10px;
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease, transform 320ms cubic-bezier(.22,.68,0,1.2);
}
.fcard-icon svg {
  width: 14px; height: 14px;
  stroke: var(--gold-400); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
  transition: stroke 280ms ease;
}
.card-center .fcard-icon { margin: 0 auto 10px; }
.fcard:hover .fcard-icon {
  background: rgba(201,168,76,0.18);
  border-color: rgba(201,168,76,0.55);
  box-shadow: 0 0 22px -4px rgba(201,168,76,0.45);
  transform: scale(1.15) rotate(5deg);
}
.fcard:hover .fcard-icon svg { stroke: var(--gold-300); }
.fcard-val {
  font-family: var(--serif);
  font-size: 26px; font-weight: 600;
  color: var(--gold-400);
  line-height: 1; margin-bottom: 4px;
  transition: color 280ms ease;
}
.fcard-unit { font-size: 15px; font-weight: 400; }
.fcard:hover .fcard-val { color: var(--gold-300); }
.fcard-label {
  font-family: var(--caps);
  font-size: 8.5px; letter-spacing: 0.14em;
  color: var(--mute); text-transform: uppercase;
  transition: color 280ms ease;
}
.fcard:hover .fcard-label { color: rgba(168,180,192,1); }
.fcard-desc {
  font-size: 12px; color: rgba(168,180,192,0.75);
  line-height: 1.5; margin-top: 7px;
  transition: color 280ms ease;
}
.fcard:hover .fcard-desc { color: rgba(168,180,192,0.95); }
.fcard-dots { display: flex; gap: 5px; margin-top: 10px; align-items: center; }
.fdot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(201,168,76,0.22);
  transition: background 280ms ease, transform 280ms ease;
}
.fdot.active { background: var(--gold-600); }
.fcard:hover .fdot { background: rgba(201,168,76,0.4); }
.fcard:hover .fdot.active { background: var(--gold-300); transform: scale(1.3); }
.fcard-bars {
  display: flex; align-items: flex-end; gap: 4px;
  height: 26px; margin-top: 9px;
}
.fbar {
  flex: 1; background: rgba(201,168,76,0.18);
  border-radius: 2px 2px 0 0; transform-origin: bottom;
  scale: 0;
  animation: fbar-grow 0.5s cubic-bezier(.22,.68,0,1.2) both;
  transition: background 280ms ease;
}
.fbar:nth-child(1) { height: 40%; animation-delay: 1.8s; }
.fbar:nth-child(2) { height: 60%; animation-delay: 1.9s; background: rgba(201,168,76,0.28); }
.fbar:nth-child(3) { height: 75%; animation-delay: 2.0s; }
.fbar:nth-child(4) { height: 55%; animation-delay: 2.1s; background: rgba(201,168,76,0.28); }
.fbar:nth-child(5) { height: 90%; animation-delay: 2.2s; background: rgba(201,168,76,0.55); }
.fcard:hover .fbar { background: rgba(201,168,76,0.35); }
.fcard:hover .fbar:nth-child(2),
.fcard:hover .fbar:nth-child(4) { background: rgba(201,168,76,0.5); }
.fcard:hover .fbar:nth-child(5) { background: var(--gold-400); }
.fcard-arrow {
  display: flex; align-items: center; gap: 6px;
  margin-top: 10px;
  color: var(--gold-400);
  font-family: var(--caps); font-size: 8.5px; letter-spacing: 0.12em;
  transition: gap 280ms ease, color 280ms ease;
}
.fcard-arrow svg { stroke: currentColor; fill: none; transition: transform 280ms ease; }
.fcard:hover .fcard-arrow { gap: 10px; color: var(--gold-300); }
.fcard:hover .fcard-arrow svg { transform: translateX(3px); }
/* Card positions — 3 clear rows, no overlap */
.card-banks {
  top: 0; left: 0; width: 180px;
  animation: fcard-in 0.7s cubic-bezier(.22,.68,0,1.2) 0.3s forwards, hero-float-a 5s ease-in-out 1.2s infinite;
}
.card-exp {
  top: 0; right: 0; width: 165px;
  animation: fcard-in 0.7s cubic-bezier(.22,.68,0,1.2) 0.6s forwards, hero-float-b 6s ease-in-out 1.5s infinite;
}
.card-clients {
  bottom: 0; left: 0; width: 190px;
  animation: fcard-in 0.7s cubic-bezier(.22,.68,0,1.2) 0.9s forwards, hero-float-c 5.5s ease-in-out 1.8s infinite;
}
.card-cta {
  bottom: 0; right: 0; width: 175px;
  text-decoration: none;
  animation: fcard-in 0.7s cubic-bezier(.22,.68,0,1.2) 1.2s forwards, hero-float-a 7s ease-in-out 2.1s infinite;
}
.card-center {
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150px; text-align: center;
  border-color: rgba(201,168,76,0.35);
  animation: fcard-in 0.9s cubic-bezier(.22,.68,0,1.2) 1.5s forwards, hero-float-b 8s ease-in-out 2.4s infinite;
}
/* About photo stamp */
.about-stamp {
  position: absolute;
  bottom: -18px; right: -10px;
  z-index: 2;
  background: var(--navy-800);
  padding: 10px 18px;
  border: 1px solid var(--gold-600);
  font-family: var(--caps);
  font-size: 10px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
}
/* Keyframes */
@keyframes fcard-in {
  from { opacity: 0; translate: 0 20px; scale: 0.94; }
  to   { opacity: 1; translate: 0 0; scale: 1; }
}
@keyframes hero-float-a {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -10px; }
}
@keyframes hero-float-b {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -7px; }
}
@keyframes hero-float-c {
  0%, 100% { translate: 0 0; }
  50%       { translate: 0 -13px; }
}
@keyframes fbar-grow {
  from { scale: 0; }
  to   { scale: 1; }
}
@keyframes fcard-fade {
  to { opacity: 1; }
}

/* ── HERO V2 — Cinematic Centered ─────────────────────────────────── */
.hero-v2 {
  min-height: 92vh;
  place-items: center;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-v2 .flare-center {
  position: absolute;
  width: 1100px; height: 1100px;
  top: -200px; left: 50%; transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,201,122,0.18) 0%, rgba(201,168,76,0.05) 35%, transparent 60%);
  pointer-events: none;
  animation: breathe 9s ease-in-out infinite;
}
.hero-v2 .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, transparent 40%, var(--navy-800) 90%);
  pointer-events: none;
}
.hero-v2 .content {
  position: relative; z-index: 2;
  max-width: 1000px;
  padding: 0 var(--pad-x);
}
.hero-v2 .gold-rule { margin: 0 auto 28px; }
.hero-v2 .eyebrow { justify-content: center; }
.hero-v2 h1 {
  margin-top: 36px;
  text-wrap: balance;
}
.hero-v2 h1 .ital { font-style: italic; color: var(--gold-300); }
.hero-v2 .sub {
  margin: 28px auto 0;
  max-width: 52ch;
  color: var(--mute);
  font-size: 19px;
  font-style: italic;
  font-family: var(--serif);
}
.hero-v2 .ctas {
  margin-top: 48px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.hero-v2 .scroll-cue {
  position: absolute;
  bottom: 36px; left: 50%; transform: translateX(-50%);
  font-family: var(--caps);
  font-size: 9.5px;
  letter-spacing: 0.32em;
  color: var(--mute-2);
  text-transform: uppercase;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.hero-v2 .scroll-cue .line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold-600), transparent);
}

/* ── HERO V3 — Split Image / Vertical Rule ────────────────────────── */
.hero-v3 {
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 92vh;
  position: relative;
}
.hero-v3 .img-side {
  position: relative;
  background: var(--navy-700);
  overflow: hidden;
}
.hero-v3 .img-side image-slot {
  width: 100%; height: 100%;
}
.hero-v3 .img-side::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 60%, rgba(13,27,46,0.85) 100%),
    linear-gradient(180deg, rgba(13,27,46,0.45) 0%, transparent 30%, transparent 70%, rgba(13,27,46,0.85) 100%);
  pointer-events: none;
}
.hero-v3 .img-corner {
  position: absolute;
  bottom: 32px; left: 32px;
  z-index: 2;
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--gold-400);
  text-transform: uppercase;
  display: flex; gap: 14px; align-items: center;
}
.hero-v3 .img-corner::before {
  content: ""; width: 24px; height: 1px; background: var(--gold-600);
}
.hero-v3 .txt-side {
  padding: clamp(48px, 8vw, 120px) clamp(28px, 6vw, 96px);
  display: flex; flex-direction: column; justify-content: center;
  position: relative;
}
.hero-v3 .txt-side::before {
  content: "";
  position: absolute;
  left: 0; top: 18%; bottom: 18%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold-600) 30%, var(--gold-600) 70%, transparent);
}
.hero-v3 h1 {
  margin-top: 32px;
  text-wrap: balance;
}
.hero-v3 h1 .ital { font-style: italic; color: var(--gold-300); }
.hero-v3 .sub {
  margin-top: 28px;
  max-width: 42ch;
  color: var(--mute);
  font-size: 18px;
}
.hero-v3 .ctas {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.hero-v3 .signoff {
  margin-top: 64px;
  display: flex; align-items: center; gap: 18px;
}
.hero-v3 .signoff .sig {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-400);
  line-height: 1;
}
.hero-v3 .signoff .role {
  font-family: var(--caps);
  font-size: 9.5px;
  letter-spacing: 0.28em;
  color: var(--mute);
  text-transform: uppercase;
  border-left: 1px solid var(--line);
  padding-left: 18px;
}
.hero-v3 .flare { top: -80px; right: -200px; }

/* ── SECTION HEAD ─────────────────────────────────────────────────── */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: 72px;
}
.sec-head h2 { text-wrap: balance; }
.sec-head .ital { font-style: italic; color: var(--gold-300); }
.sec-head .right {
  align-self: end;
  padding-bottom: 6px;
}

/* ── ABOUT ────────────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  position: relative;
}
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.about-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--navy-700);
}
.about-photo image-slot { width: 100%; height: 100%; }
.about-photo .corner-tl,
.about-photo .corner-br {
  position: absolute;
  width: 32px; height: 32px;
  border: 1px solid var(--gold-600);
}
.about-photo .corner-tl { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
.about-photo .corner-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }
.about-photo .badge {
  position: absolute;
  top: 24px; left: 24px;
  background: rgba(8,17,30,0.78);
  border: 1px solid var(--line);
  padding: 10px 14px;
  font-family: var(--caps);
  font-size: 9.5px;
  letter-spacing: 0.24em;
  color: var(--gold-400);
  text-transform: uppercase;
}

.about-text h3 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
  margin-bottom: 28px;
  text-wrap: balance;
}
.about-text h3 .ital { font-style: italic; color: var(--gold-300); }
.about-text p { color: var(--mute); margin: 0 0 18px; font-size: 19px; }
.about-text p strong { color: var(--cream); font-weight: 500; }
.about-text p + p { margin-top: 0; }
.about-signature {
  margin-top: 32px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-400);
}

.stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.stat {
  padding: 28px 24px;
  border-left: 1px solid var(--line-soft);
}
.stat:first-child { border-left: 0; padding-left: 0; }
.stat .num {
  font-family: var(--serif);
  font-size: clamp(40px, 4vw, 56px);
  color: var(--gold-400);
  line-height: 1;
  display: flex; align-items: baseline; gap: 6px;
}
.stat .num .suffix {
  font-size: 22px;
  color: var(--gold-600);
}
.stat .lbl {
  margin-top: 12px;
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--mute-2);
  text-transform: uppercase;
}

/* ── OFFERINGS ────────────────────────────────────────────────────── */
.offer {
  padding: 120px 0;
  background:
    linear-gradient(180deg, transparent 0%, rgba(16, 36, 58, 0.55) 50%, transparent 100%);
  position: relative;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.offer-card {
  padding: 48px 36px 40px;
  border-left: 1px solid var(--line-soft);
  position: relative;
  transition: background 320ms ease, transform 320ms ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.offer-card:first-child { border-left: 0; }
.offer-card::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 420ms ease;
}
.offer-card:hover {
  background: linear-gradient(180deg, rgba(201,168,76,0.04), transparent);
  transform: translateY(-4px);
}
.offer-card:hover::after { transform: scaleX(1); }
.offer-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold-600);
  margin-bottom: 32px;
}
.offer-card h3 {
  font-size: 28px;
  margin-bottom: 14px;
}
.offer-card h3 .ital { font-style: italic; color: var(--gold-300); }
.offer-card p {
  color: var(--mute);
  margin: 0 0 32px;
  font-size: 17px;
}
.offer-card p strong { color: var(--cream); font-weight: 500; }
.offer-card .icon {
  width: 56px; height: 56px;
  border: 1px solid var(--gold-600);
  border-radius: 50%;
  display: grid; place-items: center;
  margin-bottom: 28px;
  color: var(--gold-400);
  background: linear-gradient(160deg, rgba(201,168,76,0.06), transparent);
}
.offer-card .icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.2; }
.offer-card .more {
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.24em;
  color: var(--gold-400);
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 6px;
  transition: color 240ms ease, border-color 240ms ease;
  margin-top: auto;
  align-self: flex-start;
}
.offer-card:hover .more { color: var(--gold-300); border-color: var(--gold-400); }

/* ── TESTIMONIALS ─────────────────────────────────────────────────── */
.testi {
  padding: 120px 0;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testi-link {
  display: block;
  text-decoration: none;
  color: inherit;
  height: 100%;
}
.testi-card {
  position: relative;
  padding: 48px 32px 32px;
  background: var(--navy-700);
  border: 1px solid var(--line-soft);
  transition: border-color 280ms ease, transform 280ms ease, background 280ms ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.testi-link:hover .testi-card {
  border-color: var(--gold-600);
  transform: translateY(-4px);
  background: #122d47;
}
.google-badge {
  display: flex; align-items: center; gap: 8px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-soft);
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mute-2);
  text-transform: uppercase;
}
.google-badge svg { width: 14px; height: 14px; flex-shrink: 0; }
.testi-card .quote-mark {
  position: absolute;
  top: -8px; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 96px;
  line-height: 1;
  color: var(--gold-600);
  opacity: 0.7;
}
.testi-card .stars {
  display: flex; gap: 4px;
  margin-bottom: 18px;
  color: var(--gold-400);
}
.testi-card .stars svg { width: 14px; height: 14px; fill: currentColor; }
.testi-card blockquote {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: 23px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.45;
  color: var(--cream);
  text-wrap: pretty;
  flex: 1;
}
.testi-card .author {
  display: flex; align-items: center; gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.testi-card .author .initials {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--gold-600);
  display: grid; place-items: center;
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gold-400);
}
.testi-card .author .meta {
  display: flex; flex-direction: column;
}
.testi-card .author .name {
  font-family: var(--serif);
  font-size: 18px;
  color: var(--cream);
}
.testi-card .author .role {
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--mute-2);
  text-transform: uppercase;
  margin-top: 4px;
}

/* ── BIG CTA ──────────────────────────────────────────────────────── */
.bigcta {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.bigcta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(201,168,76,0.14), transparent 65%);
  pointer-events: none;
}
.bigcta .content {
  position: relative; z-index: 2;
  max-width: 820px;
  margin: 0 auto;
}
.bigcta h2 {
  margin-top: 28px;
  text-wrap: balance;
}
.bigcta h2 .ital { font-style: italic; color: var(--gold-300); }
.bigcta .ctas {
  margin-top: 44px;
  display: flex; gap: 18px; justify-content: center; flex-wrap: wrap;
}
.bigcta .phone {
  margin-top: 36px;
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.28em;
  color: var(--mute);
  text-transform: uppercase;
}
.bigcta .phone a {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  letter-spacing: 0.02em;
  color: var(--gold-400);
  text-transform: none;
  margin-left: 12px;
}

/* ── FOOTER ───────────────────────────────────────────────────────── */
.footer {
  padding: 80px 0 36px;
  border-top: 1px solid var(--line-soft);
  background: var(--navy-900);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--line-soft);
}
.footer h4 {
  font-family: var(--caps);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin: 0 0 22px;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul li { font-family: var(--body); font-size: 15px; color: var(--mute); font-weight: 300; }
.footer a { font-family: var(--body); color: var(--mute); transition: color 240ms ease; font-size: 15px; font-weight: 300; }
.footer a:hover { color: var(--gold-400); }
.footer .brand-blurb {
  color: var(--mute);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 300;
  max-width: 32ch;
  margin: 20px 0 24px;
}
.footer .phone-big {
  font-family: var(--body);
  font-style: normal;
  font-size: 28px;
  font-weight: 300;
  color: var(--gold-400);
}
.footer .socials {
  display: flex; gap: 12px;
  margin-top: 24px;
}
.footer .socials a {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--mute);
}
.footer .socials a:hover { border-color: var(--gold-600); color: var(--gold-400); }
.footer .socials svg { width: 14px; height: 14px; fill: currentColor; }
.footer-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px;
  color: var(--mute-2);
  font-family: var(--caps);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.footer-bottom a { color: var(--mute-2); }
.footer-bottom a:hover { color: var(--gold-400); }

/* ── IMAGE SLOTS — dark/elegant placeholder treatment ────────────── */
image-slot {
  --slot-bg: #16304b;
  --slot-fg: rgba(232,201,122,0.55);
  --slot-border: rgba(201,168,76,0.20);
}

/* ── RESPONSIVE ───────────────────────────────────────────────────── */

/* ── 1440px+ — spacious desktops ─────────────────────────────────── */
@media (min-width: 1440px) {
  :root { --pad-x: clamp(48px, 4vw, 80px); }
  .about { padding: 140px 0; }
  .offer { padding: 140px 0; }
  .testi { padding: 140px 0; }
}

/* ── ≤ 1280px — tablets & small laptops ──────────────────────────── */
@media (max-width: 1280px) {
}

/* ── ≤ 1024px — tablets ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-vis { min-height: 360px; }
  .hero-v1 .wrap,
  .hero-v3 { grid-template-columns: 1fr; }
  .hero-v3 .img-side { aspect-ratio: 4 / 3; }
  .hero-v3 .txt-side::before { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
  .offer-card { border-left: 0; border-top: 1px solid var(--line-soft); }
  .offer-card:nth-child(-n+3) { border-top: 0; }
  .offer-card:nth-child(3n+2),
  .offer-card:nth-child(3n+3) { border-left: 1px solid var(--line-soft); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sec-head { grid-template-columns: 1fr; gap: 24px; }
}



/* ── ≤ 720px — mobile ────────────────────────────────────────────── */
@media (max-width: 720px) {
  body { font-size: 17px; }

  .nav-inner { height: 64px; }

  .hero-vis { display: none; }
  .mobile-cta { display: block; }
  .hero-v1 { padding: 48px 0 64px; }
  .hero-v1 .ctas { margin-top: 28px; }
  .hero-v1 .meta { gap: 20px; margin-top: 28px; padding-top: 20px; }
  .hero-v1 .meta-item .k { font-size: 28px; }
  .hero-v2 { padding: 56px 0; min-height: auto; }
  .hero-v3 { min-height: auto; }
  .hero-v3 .img-side { aspect-ratio: 16 / 9; }
  .hero-v3 .txt-side { padding: 40px 24px; }

  .about { padding: 72px 0; }
  .about-text h3 { font-size: clamp(26px, 6vw, 36px); }

  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line-soft); padding-left: 0; }
  .stat:first-child { border-top: 0; }

  .offer { padding: 72px 0; }
  .offer-grid { grid-template-columns: 1fr; }
  .offer-card { padding: 36px 24px 32px; border-left: 0; border-top: 1px solid var(--line-soft); }
  .offer-card:first-child { border-top: 0; }

  .testi { padding: 72px 0; }
  .testi-grid { grid-template-columns: 1fr; }

  .bigcta { padding: 72px 0; }

  .footer { padding: 56px 0 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
}

/* ── ≤ 480px — small phones ──────────────────────────────────────── */
@media (max-width: 480px) {
  .about { padding: 56px 0; }
  .offer { padding: 56px 0; }
  .testi { padding: 56px 0; }
  .bigcta { padding: 56px 0; }
  .sec-head { margin-bottom: 36px; padding-bottom: 32px; }
  .hero-v1 { padding: 36px 0 48px; }
  .hero-v3 .txt-side { padding: 32px 20px; }
  .btn { padding: 14px 22px; letter-spacing: 0.18em; }
}

/* ── ABOUT AWARDS ─────────────────────────────────────────────────── */
.about-awards {
  margin-top: 56px;
  padding-top: 48px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.about-awards-label {
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--mute-2);
  white-space: nowrap;
}
.award-badge {
  display: inline-block;
  transition: transform 300ms ease;
}
.award-badge:hover { transform: scale(1.05); }
.award-badge img {
  height: 68px;
  width: auto;
  display: block;
  filter: sepia(0.4) saturate(1.8) hue-rotate(10deg) brightness(0.86);
  transition: filter 300ms ease;
}
.award-badge:hover img {
  filter: sepia(0.15) saturate(2.2) hue-rotate(8deg) brightness(1.05);
}

/* ─────────────────────────────────────────────────────────────────────────
   ENHANCEMENTS — scroll reveal · hamburger · mobile drawer · mobile CTA
   ───────────────────────────────────────────────────────────────────────── */

/* ── SCROLL REVEAL ────────────────────────────────────────────────── */
.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease-out, transform 700ms ease-out;
}
.reveal-ready.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ── HAMBURGER BUTTON ─────────────────────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--line);
  padding: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  height: 1px;
  background: var(--gold-400);
  transition: transform 280ms ease, opacity 280ms ease, width 280ms ease;
}
.hamburger span:nth-child(1) { width: 18px; }
.hamburger span:nth-child(2) { width: 12px; }
.hamburger span:nth-child(3) { width: 18px; }
.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
  width: 18px;
}
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
  width: 18px;
}

/* ── MOBILE DRAWER ────────────────────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100dvh;
  background: var(--navy-900);
  border-left: 1px solid var(--line-soft);
  z-index: 100;
  padding: 100px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  transform: translateX(100%);
  transition: transform 380ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-close {
  position: absolute;
  top: 22px;
  right: 20px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--mute);
  width: 40px;
  height: 40px;
  font-size: 22px;
  line-height: 1;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-family: var(--serif);
  transition: color 240ms ease, border-color 240ms ease;
}
.drawer-close:hover { color: var(--gold-400); border-color: var(--gold-600); }

.drawer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.drawer-links li { border-bottom: 1px solid var(--line-soft); }
.drawer-links a {
  display: block;
  padding: 20px 0;
  font-family: var(--caps);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color 240ms ease, padding-left 240ms ease;
}
.drawer-links a:hover { color: var(--gold-400); padding-left: 8px; }
.drawer-links a.active { color: var(--gold-400); }

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8, 17, 30, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 99;
  opacity: 0;
  pointer-events: none;
  transition: opacity 380ms ease;
}
.drawer-overlay.open {
  opacity: 1;
  pointer-events: all;
}

/* ── MOBILE STICKY CTA ────────────────────────────────────────────── */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px var(--pad-x) 28px;
  background: linear-gradient(to top, var(--navy-900) 65%, transparent);
  z-index: 40;
}
.mobile-cta .btn { width: 100%; justify-content: center; }

/* ─────────────────────────────────────────────────────────────────────────
   CONSULTATION POPUP
   ───────────────────────────────────────────────────────────────────────── */
.consult-overlay {
  position: fixed;
  inset: 0;
  background: rgba(8,17,30,0.72);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease;
}
.consult-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.consult-popup {
  position: fixed;
  z-index: 901;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%) scale(0.93);
  width: min(520px, 92vw);
  padding: 56px 52px 48px;
  background: var(--navy-700);
  border: 1px solid rgba(201,168,76,0.28);
  box-shadow: 0 40px 100px -20px rgba(8,17,30,0.9), 0 0 0 1px rgba(201,168,76,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease, transform 420ms cubic-bezier(0.34,1.46,0.64,1);
  overflow: hidden;
}
.consult-popup.active {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.consult-glow {
  position: absolute;
  top: -100px; right: -60px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.13) 0%, transparent 65%);
  pointer-events: none;
}
.consult-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, transparent, var(--gold-600) 30%, var(--gold-600) 70%, transparent);
}
.consult-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--line-soft);
  color: var(--mute);
  font-size: 13px;
  display: grid; place-items: center;
  cursor: pointer;
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
  line-height: 1;
}
.consult-close:hover {
  border-color: var(--gold-600);
  color: var(--cream);
  background: rgba(201,168,76,0.06);
}
.consult-eyebrow { margin-bottom: 18px; }
.consult-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.1;
  margin: 0 0 18px;
  color: var(--cream);
}
.consult-title em {
  font-style: italic;
  color: var(--gold-300);
}
.consult-sub {
  color: var(--mute);
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 32px;
  max-width: 44ch;
}
.consult-cta {
  width: 100%;
  justify-content: center;
}
.consult-note {
  margin-top: 18px;
  text-align: center;
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--mute-2);
}

@media (max-width: 480px) {
  .consult-popup { padding: 44px 28px 36px; }
}

/* ── Banks Marquee Strip ───────────────────────────────────────────── */
.banks-strip {
  padding: 40px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.banks-strip-label {
  font-family: var(--caps);
  font-size: 9px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--mute-2);
  text-align: center;
  margin: 0 0 24px;
}
.banks-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}
.banks-track {
  display: flex;
  align-items: center;
  gap: 72px;
  width: max-content;
  animation: marquee-banks 32s linear infinite;
}
.banks-track:hover { animation-play-state: paused; }
.banks-track img {
  height: 32px;
  width: auto;
  opacity: 0.45;
  transition: opacity 300ms ease;
  flex-shrink: 0;
}
.banks-track img[src$=".png"] {
  filter: brightness(0) invert(1);
}
.banks-track img[src$=".jpg"] {
  filter: grayscale(1) brightness(1.4) contrast(0.85);
}
.banks-track img:hover { opacity: 0.8; }
@keyframes marquee-banks {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Cookie Banner ─────────────────────────────────────────────────── */
.cookie-bar {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--navy-700);
  border-top: 1px solid var(--line-soft);
  padding: 16px var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  transform: translateY(100%);
  transition: transform 400ms cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-bar.show { transform: translateY(0); }
.cookie-bar p {
  font-family: var(--body);
  font-size: 14px;
  color: var(--mute);
  margin: 0;
  line-height: 1.5;
}
.cookie-bar p a {
  color: var(--gold-400);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-bar-btn {
  flex-shrink: 0;
  padding: 10px 24px;
  background: var(--gold-400);
  color: var(--navy-900);
  font-family: var(--caps);
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 200ms ease;
  white-space: nowrap;
}
.cookie-bar-btn:hover { background: var(--gold-300); }

@media (max-width: 640px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 20px 20px 28px;
  }
}
