/* ================================================
   websolutions.css
   All styling for the Web Solutions marketing page
   Part of: Web Solutions
   Last cleaned: 2026-05-19
================================================ */

:root {
  --paper: #f6f0e7;
  --paper-2: #eee4d6;
  --ink: #11100e;
  --ink-2: #302b25;
  --muted: #746a5f;
  --line: rgba(17,16,14,.14);
  --gold: #bd8b2d;
  --moss: #556f61;
  --clay: #a45e49;
  --white: #fffaf2;
  --radius: 8px;
  --ease: cubic-bezier(.16,1,.3,1);

  /* Nav island tokens */
  --nav-bg: rgba(13,12,10,.82);
  --nav-border: rgba(189,139,45,.22);
  --nav-text: rgba(246,240,231,.9);
  --nav-shadow: 0 8px 40px rgba(0,0,0,.55), 0 0 0 1px rgba(189,139,45,.1), inset 0 1px 0 rgba(246,240,231,.07);
}

/* ── Light theme ── */
[data-theme="light"] {
  --paper: #ffffff;
  --paper-2: #f0ebe2;
  --ink: #1a1714;
  --ink-2: #302b25;
  --muted: #7a6f64;
  --line: rgba(17,16,14,.12);
  --white: #ffffff;

  --nav-bg: rgba(255,255,255,.88);
  --nav-border: rgba(189,139,45,.28);
  --nav-text: #1a1714;
  --nav-shadow: 0 8px 40px rgba(17,16,14,.14), 0 0 0 1px rgba(189,139,45,.18), inset 0 1px 0 rgba(255,255,255,.9);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 100px; }
body {
  min-height: 100vh;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}
body.menu-open, body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { background: var(--ink); color: var(--paper); }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 100;
  opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.cursor-dot, .cursor-ring {
  position: fixed; left: 0; top: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%, -50%); display: none;
}
.cursor-dot { width: 7px; height: 7px; border-radius: 999px; background: var(--gold); }
.cursor-ring {
  width: 34px; height: 34px;
  border: 1px solid rgba(17,16,14,.28); border-radius: 999px;
  transition: width .25s var(--ease), height .25s var(--ease), border-color .25s var(--ease), background .25s var(--ease);
}
.cursor-ring.is-hover { width: 58px; height: 58px; background: rgba(189,139,45,.08); border-color: rgba(189,139,45,.75); }
@media (pointer: fine) and (min-width: 900px) { .cursor-dot, .cursor-ring { display: block; } }

.progress {
  position: fixed; top: 0; left: 0; z-index: 9998;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--clay), var(--moss));
  transform-origin: left;
}

.loader {
  position: fixed; inset: 0; z-index: 9997;
  display: grid; place-items: center;
  background: var(--ink); color: var(--paper);
  transition: opacity .7s var(--ease), visibility .7s var(--ease);
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader-inner { width: min(540px, calc(100vw - 48px)); }
.loader-kicker {
  display: flex; justify-content: space-between;
  color: rgba(246,240,231,.52); font-size: .76rem;
  letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px;
}
.loader-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.3rem, 8vw, 5.9rem);
  line-height: .9; letter-spacing: -.04em; margin-bottom: 22px;
}
.loader-bar { height: 2px; background: rgba(246,240,231,.18); overflow: hidden; }
.loader-bar span {
  display: block; height: 100%; width: 100%;
  background: var(--gold); transform: translateX(-100%);
  animation: loadBar 1.1s var(--ease) forwards;
}
@keyframes loadBar { to { transform: translateX(0); } }

.container { width: min(1440px, calc(100% - 48px)); margin: 0 auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: .72rem; font-weight: 800; letter-spacing: .17em;
  text-transform: uppercase; color: var(--muted);
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; opacity: .55; }
.serif { font-family: Georgia, "Times New Roman", serif; font-weight: 400; letter-spacing: -.055em; }
.lead { color: var(--muted); font-size: clamp(1.03rem, 1.7vw, 1.42rem); line-height: 1.55; max-width: 760px; }
.section {
  position: relative;
  padding: clamp(82px, 12vw, 168px) 0;
  border-top: 1px solid var(--line);
  transition: background .4s var(--ease);
}
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, .5fr);
  gap: clamp(28px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(36px, 8vw, 86px);
}
.section-head > * { min-width: 0; }
.section-title { font-size: clamp(3rem, 8vw, 8.8rem); line-height: .9; max-width: 990px; }
.section-title em, .hero h1 em { color: var(--gold); font-style: italic; }
.invert { background: var(--ink); color: var(--paper); border-top-color: rgba(246,240,231,.14); }
.invert .lead, .invert .eyebrow, .invert .meta, .invert .muted { color: rgba(246,240,231,.62); }
.invert .line-card, .invert .feature-row, .invert .faq-item { border-color: rgba(246,240,231,.16); }

/* ══ FLOATING ISLAND NAV ══ */
.nav {
  position: fixed;
  left: 50%;
  top: 18px;
  transform: translateX(-50%);
  z-index: 900;
  width: calc(100% - 48px);
  max-width: 1180px;

  /* Island shape */
  border-radius: 999px;
  background: var(--nav-bg);
  border: 1px solid var(--nav-border);
  box-shadow: var(--nav-shadow);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  color: var(--nav-text);

  transition:
    background .4s var(--ease),
    border-color .4s var(--ease),
    box-shadow .4s var(--ease),
    color .4s var(--ease),
    top .4s var(--ease),
    width .4s var(--ease);
}

/* Shrink slightly on scroll for a "tighter" feel */
.nav.is-scrolled {
  top: 12px;
  width: calc(100% - 64px);
}

/* When mobile menu is open, round the bottom corners off */
.nav.is-open { border-radius: 24px; }

/* Inner layout — no container needed, island handles its own padding */
.nav-inner {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 8px 0 20px;
}

.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-weight: 900; letter-spacing: -.03em;
  color: var(--nav-text);
}
.brand-mark {
  width: 31px; height: 31px; display: grid; place-items: center;
  border: 1px solid rgba(189,139,45,.6); border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif; font-weight: 700;
  color: var(--gold);
}

.nav-links {
  display: flex; align-items: center;
  gap: clamp(14px, 2.4vw, 36px); font-size: .82rem; font-weight: 750; letter-spacing: .02em;
}
.nav-link { position: relative; padding: 8px 0; color: inherit; opacity: .78; transition: opacity .25s; }
.nav-link:hover { opacity: 1; }
.nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 4px;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }

/* ── Theme toggle button ── */
.theme-toggle {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(189,139,45,.35);
  background: rgba(189,139,45,.1);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: background .3s var(--ease), transform .3s var(--ease), border-color .3s var(--ease);
}
.theme-toggle:hover { background: rgba(189,139,45,.22); transform: rotate(18deg) scale(1.08); }
.theme-toggle svg { width: 17px; height: 17px; transition: opacity .25s, transform .3s var(--ease); }
.theme-toggle .icon-sun  { display: none; }
.theme-toggle .icon-moon { display: block; }
[data-theme="light"] .theme-toggle .icon-sun  { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ── Nav CTA button ── */
.nav .btn {
  --btn-bg: var(--gold);
  --btn-fg: var(--ink);
  border-color: var(--gold);
  background: var(--gold);
  color: var(--ink);
  height: 38px;
  min-height: unset;
  padding: 0 18px;
  font-size: .75rem;
  border-radius: 999px;
}
.nav .btn:hover { color: var(--ink); }

/* Mobile menu button */
.menu-btn {
  display: none; width: 38px; height: 38px;
  border: 1px solid rgba(189,139,45,.35); border-radius: 50%;
  background: transparent; color: var(--nav-text);
  align-items: center; justify-content: center; flex-direction: column; gap: 5px;
}
.menu-btn span { width: 16px; height: 1.5px; background: currentColor; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.menu-btn.is-open span:first-child { transform: translateY(3.3px) rotate(45deg); }
.menu-btn.is-open span:last-child { transform: translateY(-3.3px) rotate(-45deg); }

.btn {
  --btn-bg: var(--ink); --btn-fg: var(--paper);
  position: relative; min-height: 48px;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  border: 1px solid var(--btn-bg); border-radius: 999px; padding: 14px 22px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-size: .82rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase;
  overflow: hidden; isolation: isolate; white-space: nowrap;
  transition: transform .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--gold); transform: translateY(105%); transition: transform .36s var(--ease);
}
.btn:hover::before { transform: translateY(0); }
.btn:hover { color: var(--ink); border-color: var(--gold); }
.btn.light { --btn-bg: var(--paper); --btn-fg: var(--ink); }
.btn.ghost { --btn-bg: transparent; --btn-fg: currentColor; background: transparent; border-color: currentColor; }
.btn svg { width: 16px; height: 16px; }

.hero {
  min-height: 100svh; position: relative;
  display: grid; align-items: end; padding: 120px 0 44px;
  color: var(--paper); background: var(--ink); overflow: hidden;
}
.hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .84; }
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background:
    linear-gradient(90deg, rgba(17,16,14,.92), rgba(17,16,14,.42) 47%, rgba(17,16,14,.74)),
    radial-gradient(circle at 78% 26%, rgba(189,139,45,.24), transparent 32%),
    radial-gradient(circle at 18% 82%, rgba(85,111,97,.28), transparent 30%);
}
.hero-grid {
  position: absolute; inset: 0; opacity: .2;
  background-image:
    linear-gradient(rgba(246,240,231,.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,240,231,.16) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, transparent, black 18%, black 72%, transparent);
}
.hero-content {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .4fr);
  gap: clamp(32px, 7vw, 100px); align-items: end;
}
.hero-content > * { min-width: 0; }
.hero-kicker {
  display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 26px;
  color: rgba(246,240,231,.7); font-size: .75rem; font-weight: 800;
  letter-spacing: .13em; text-transform: uppercase;
}
.hero-kicker span { border: 1px solid rgba(246,240,231,.16); border-radius: 999px; padding: 8px 11px; backdrop-filter: blur(8px); }
.hero h1 { max-width: 1080px; font-size: clamp(4.2rem, 11.8vw, 12.8rem); line-height: .82; letter-spacing: -.07em; }
.hero-copy { display: grid; gap: 24px; padding-bottom: 10px; }
.hero-copy p { color: rgba(246,240,231,.7); line-height: 1.62; font-size: 1rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.hero-proof {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: clamp(44px, 7vw, 92px);
  border: 1px solid rgba(246,240,231,.16); background: rgba(246,240,231,.12);
}
.stat {
  min-height: 112px; display: flex; flex-direction: column;
  justify-content: space-between; background: rgba(17,16,14,.55); padding: 18px;
}
.stat strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 3.8vw, 4.1rem);
  line-height: .9; font-weight: 400; letter-spacing: -.05em;
}
.stat span { color: rgba(246,240,231,.58); font-size: .72rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.stat.counting strong { animation: countFlash .6s var(--ease) forwards; }
@keyframes countFlash { 0% { opacity: .4; } 50%,100% { opacity: 1; } }
.scroll-hint {
  position: absolute; right: 24px; bottom: 28px; z-index: 3;
  width: 44px; height: 76px;
  border: 1px solid rgba(246,240,231,.2); border-radius: 999px;
  display: grid; place-items: center;
}
.scroll-hint span { width: 2px; height: 22px; background: var(--gold); animation: hint 1.6s infinite var(--ease); }
@keyframes hint {
  0%, 100% { transform: translateY(-10px); opacity: .35; }
  50% { transform: translateY(10px); opacity: 1; }
}

.strategy-list {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.line-card {
  min-height: 280px; padding: clamp(24px, 3.7vw, 52px);
  background: var(--paper); display: flex; flex-direction: column;
  justify-content: space-between; gap: 42px; will-change: transform;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.line-card:hover {
  background: var(--ink); color: var(--paper);
  box-shadow: inset 0 0 0 1px rgba(189,139,45,.18), 0 24px 60px rgba(17,16,14,.12);
}
.line-card .num { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.line-card h3 {
  max-width: 620px; font-size: clamp(1.8rem, 3vw, 3.2rem);
  line-height: .98; letter-spacing: -.05em;
  font-family: Georgia, "Times New Roman", serif; font-weight: 400;
}
.line-card p { color: var(--muted); line-height: 1.62; max-width: 520px; transition: color .35s var(--ease); }
.line-card:hover p { color: rgba(246,240,231,.66); }

.marquee { display: flex; overflow: hidden; border-block: 1px solid var(--line); background: var(--paper-2); }
.marquee-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee span {
  padding: 22px 34px; font-size: clamp(1.3rem, 2.4vw, 3rem);
  font-family: Georgia, "Times New Roman", serif; letter-spacing: -.04em; white-space: nowrap;
}
@keyframes marquee { to { transform: translateX(-50%); } }

.capability-wrap {
  display: grid; grid-template-columns: minmax(0, .38fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 96px); align-items: start;
}
.capability-wrap > * { min-width: 0; }
.sticky-note { position: sticky; top: 110px; display: grid; gap: 22px; }
.feature-row {
  display: grid; grid-template-columns: 86px minmax(0, 1fr) minmax(220px, 330px);
  gap: clamp(18px, 4vw, 64px); align-items: start; padding: 34px 0;
  border-top: 1px solid var(--line);
}
.feature-row:last-child { border-bottom: 1px solid var(--line); }
.feature-row .tag { color: var(--gold); font-weight: 900; letter-spacing: .15em; font-size: .72rem; }
.feature-row h3 {
  font-size: clamp(2rem, 4vw, 5rem); font-family: Georgia, "Times New Roman", serif;
  font-weight: 400; line-height: .92; letter-spacing: -.055em;
}
.feature-row p { color: var(--muted); line-height: 1.62; }
.feature-row ul { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.feature-row li { border: 1px solid var(--line); border-radius: 999px; padding: 8px 10px; color: var(--muted); font-size: .76rem; font-weight: 800; }

.lab { position: relative; overflow: hidden; }
.lab-stage {
  position: relative; min-height: 720px;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 96px); align-items: center;
}
.orbital {
  min-width: 0; position: relative; aspect-ratio: 1;
  border: 1px solid rgba(246,240,231,.16); border-radius: 50%;
  display: grid; place-items: center; transform-style: preserve-3d;
}
.orbital::before, .orbital::after {
  content: ""; position: absolute;
  border: 1px solid rgba(246,240,231,.12); border-radius: 50%;
}
.orbital::before { inset: 12%; animation: orbitSpin 28s linear infinite; transform-origin: center; }
.orbital::after { inset: 27%; border-color: rgba(189,139,45,.3); animation: orbitSpin 18s linear infinite reverse; transform-origin: center; }
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.planet {
  position: absolute; width: clamp(112px, 14vw, 180px); aspect-ratio: 1;
  border-radius: 50%; display: grid; place-items: center; text-align: center; padding: 20px;
  border: 1px solid rgba(246,240,231,.2); background: rgba(246,240,231,.06);
  color: rgba(246,240,231,.78); font-size: .82rem; font-weight: 850;
  letter-spacing: .1em; text-transform: uppercase; backdrop-filter: blur(8px);
  animation: float 5s ease-in-out infinite; cursor: default;
}
.planet:nth-child(1) { left: 4%; top: 18%; animation-delay: -.6s; }
.planet:nth-child(2) { right: 2%; top: 12%; animation-delay: -1.4s; }
.planet:nth-child(3) { right: 10%; bottom: 6%; animation-delay: -2.1s; }
.planet:nth-child(4) { left: 13%; bottom: 9%; animation-delay: -.2s; }
.planet-core {
  position: relative; z-index: 1; width: 34%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, var(--gold), rgba(189,139,45,.18) 58%, transparent 59%);
  box-shadow: 0 0 80px rgba(189,139,45,.34); animation: pulse 2.8s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translate3d(0,0,0); } 50% { transform: translate3d(0,-18px,34px); } }
@keyframes pulse { 0%, 100% { transform: scale(.95); opacity: .75; } 50% { transform: scale(1.08); opacity: 1; } }
.lab-panel { min-width: 0; display: grid; gap: 26px; }
.lab-panel h2 { font-size: clamp(3rem, 6vw, 7.4rem); line-height: .9; }
.ticks { display: grid; gap: 14px; list-style: none; }
.ticks li { display: flex; gap: 12px; color: rgba(246,240,231,.68); line-height: 1.55; }
.ticks li::before { content: ""; flex: 0 0 10px; width: 10px; height: 10px; margin-top: 7px; border-radius: 50%; background: var(--gold); }

.work-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.offer-grid {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
.offer-card {
  min-height: 520px; padding: clamp(22px, 3vw, 36px);
  background: var(--paper); display: flex; flex-direction: column; gap: 28px;
  position: relative; overflow: hidden;
  transition: background .35s var(--ease), color .35s var(--ease), transform .35s var(--ease);
}
.offer-card.featured { background: var(--ink); color: var(--paper); animation: featuredGlow 4s ease-in-out infinite; }
@keyframes featuredGlow {
  0%,100% { box-shadow: 0 0 0 0 rgba(189,139,45,0); }
  50%      { box-shadow: 0 0 40px 4px rgba(189,139,45,.12); }
}
.offer-card::after {
  content: ""; position: absolute; inset: auto -20% -30% auto;
  width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(189,139,45,.22), transparent 68%); pointer-events: none;
}
.offer-card:hover { transform: translateY(-6px); }
.offer-kicker { display: flex; justify-content: space-between; gap: 14px; font-size: .72rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.offer-card.featured .offer-kicker { color: rgba(246,240,231,.58); }
.offer-price { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5.4vw, 5.8rem); line-height: .82; letter-spacing: -.06em; }
.offer-card h3 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 2.6vw, 3.1rem); line-height: .95; letter-spacing: -.05em; font-weight: 400; }
.offer-card p { color: var(--muted); line-height: 1.58; }
.offer-card.featured p { color: rgba(246,240,231,.62); }
.offer-card ul { list-style: none; display: grid; gap: 11px; margin-top: auto; color: var(--muted); line-height: 1.45; font-size: .92rem; }
.offer-card.featured ul { color: rgba(246,240,231,.68); }
.offer-card li { display: flex; gap: 10px; }
.offer-card li::before { content: ""; flex: 0 0 8px; width: 8px; height: 8px; margin-top: 8px; border-radius: 50%; background: var(--gold); }
.authority-strip { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; margin-top: 18px; background: rgba(246,240,231,.14); border: 1px solid rgba(246,240,231,.14); }
.authority-item { min-height: 150px; padding: 24px; background: var(--ink); display: flex; flex-direction: column; justify-content: space-between; gap: 22px; }
.authority-item strong { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.6rem, 3vw, 3.2rem); line-height: 1; letter-spacing: -.04em; font-weight: 400; white-space: nowrap; }
.authority-item span { color: rgba(246,240,231,.56); font-size: .74rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.work-card {
  min-height: 440px; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; background: var(--white); display: flex; flex-direction: column;
  will-change: transform; transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.work-card:hover { transform: translateY(-8px); box-shadow: 0 28px 70px rgba(17,16,14,.12); }
.browser { min-height: 240px; padding: 16px; background: var(--ink); color: var(--paper); display: grid; gap: 12px; align-content: start; }
.browser-top { display: flex; gap: 6px; margin-bottom: 10px; }
.browser-top span { width: 8px; height: 8px; border-radius: 50%; background: rgba(246,240,231,.34); }
.browser-hero {
  height: 86px; border: 1px solid rgba(246,240,231,.16);
  background: linear-gradient(135deg, rgba(189,139,45,.5), transparent), repeating-linear-gradient(90deg, rgba(246,240,231,.11) 0 1px, transparent 1px 18px);
}
.browser-lines { display: grid; gap: 8px; }
.browser-lines span { display: block; height: 8px; border-radius: 99px; background: rgba(246,240,231,.16); }
.browser-lines span:nth-child(1) { width: 82%; }
.browser-lines span:nth-child(2) { width: 62%; }
.browser-lines span:nth-child(3) { width: 74%; background: rgba(189,139,45,.32); }
.work-body { padding: 24px; display: grid; gap: 18px; flex: 1; }
.work-body h3 { font-size: 2rem; line-height: 1; }
.work-body p { color: var(--muted); line-height: 1.55; }
.work-meta { margin-top: auto; display: flex; justify-content: space-between; gap: 12px; border-top: 1px solid var(--line); padding-top: 18px; font-size: .74rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.process { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(246,240,231,.14); border: 1px solid rgba(246,240,231,.14); }
.process-card {
  min-height: 310px; padding: clamp(22px, 3vw, 36px); background: var(--ink);
  display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.process-card:hover { transform: translateY(-4px); }
.process-card::before { counter-increment: step; content: "0" counter(step); color: var(--gold); font-size: .76rem; font-weight: 900; letter-spacing: .16em; }
.process-card:hover::before { color: var(--clay); }
.process-card h3 { font-size: clamp(1.7rem, 2.7vw, 3rem); line-height: .98; }
.process-card p { color: rgba(246,240,231,.58); line-height: 1.55; }

.roi-grid { display: grid; grid-template-columns: minmax(0, .45fr) minmax(0, 1fr); gap: clamp(24px, 6vw, 80px); align-items: stretch; }
.roi-grid > * { min-width: 0; }
.roi-form, .roi-result { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); padding: clamp(22px, 4vw, 42px); }
.field { display: grid; gap: 8px; margin-bottom: 18px; }
.field label { color: var(--muted); font-size: .73rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--paper); color: var(--ink); padding: 14px 15px; outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { min-height: 120px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(189,139,45,.12); }
.roi-result { display: grid; align-content: center; gap: 28px; background: var(--ink); color: var(--paper); border-color: var(--ink); }
.roi-big { font-size: clamp(4rem, 11vw, 12rem); line-height: .84; }
.roi-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(246,240,231,.12); border: 1px solid rgba(246,240,231,.12); }
.roi-mini { background: var(--ink); padding: 18px; }
.roi-mini strong { display: block; font-size: 1.4rem; margin-bottom: 6px; }
.roi-mini span { color: rgba(246,240,231,.55); font-size: .78rem; line-height: 1.4; }

.testimonials { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.quote {
  min-height: 320px; border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(22px, 3vw, 34px); background: var(--white);
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(17,16,14,.1); }
.quote p { font-size: clamp(1.12rem, 1.7vw, 1.48rem); line-height: 1.35; letter-spacing: -.025em; }
.quote footer { color: var(--muted); font-size: .78rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }

.faq-list { max-width: 1040px; margin-left: auto; }
.faq-item { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%; min-height: 92px; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: transparent; border: 0; color: inherit; text-align: left;
  font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.5rem, 3vw, 3.2rem); line-height: 1; letter-spacing: -.04em;
}
.faq-q span:last-child { flex: 0 0 42px; width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-family: inherit; transition: transform .25s var(--ease); }
.faq-item.is-open .faq-q span:last-child { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; color: var(--muted); transition: max-height .35s var(--ease); }
.faq-a p { max-width: 760px; padding: 0 0 32px; line-height: 1.65; }

.contact-band { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, .45fr); gap: clamp(34px, 7vw, 100px); align-items: end; }
.contact-band > * { min-width: 0; }
.contact-band h2 { font-size: clamp(4rem, 11vw, 12rem); line-height: .82; }
.contact-actions { display: grid; gap: 14px; }
.footer { padding: 28px 0; border-top: 1px solid rgba(246,240,231,.14); background: var(--ink); color: rgba(246,240,231,.62); font-size: .84rem; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

.float-cta { position: fixed; right: 20px; bottom: 20px; z-index: 850; box-shadow: 0 18px 44px rgba(17,16,14,.18); }

.modal-backdrop { position: fixed; inset: 0; z-index: 950; display: none; place-items: end; padding: 18px; background: rgba(17,16,14,.58); backdrop-filter: blur(10px); }
.modal-backdrop.is-open { display: grid; }
.modal { width: min(520px, 100%); max-height: calc(100svh - 36px); overflow: auto; border: 1px solid rgba(246,240,231,.14); border-radius: var(--radius); background: var(--paper); color: var(--ink); box-shadow: 0 34px 90px rgba(0,0,0,.3); animation: modalIn .36s var(--ease); }
@keyframes modalIn { from { transform: translateY(24px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-head { display: flex; justify-content: space-between; align-items: start; gap: 18px; padding: 26px; border-bottom: 1px solid var(--line); }
.modal-head h3 { font-size: 2.3rem; line-height: .95; }
.close { flex: 0 0 42px; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%; background: transparent; }
.modal-body { padding: 26px; }
.form-success { display: none; margin-top: 16px; padding: 14px; border: 1px solid rgba(85,111,97,.35); border-radius: var(--radius); background: rgba(85,111,97,.12); color: var(--moss); line-height: 1.45; }
.form-success.is-visible { display: block; }

[data-reveal] { opacity: 0; transform: translateY(38px); transition: opacity .85s var(--ease), transform .85s var(--ease); transition-delay: 0ms; }
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
.split-line { display: block; overflow: hidden; }
.split-line > span { display: block; transform: translateY(110%); transition: transform .95s var(--ease); }
.is-visible .split-line > span, .hero-ready .split-line > span { transform: translateY(0); }

[data-stagger] > * { opacity: 0; transform: translateY(32px); transition: opacity .72s var(--ease), transform .72s var(--ease); }
[data-stagger].is-visible > *:nth-child(1) { opacity: 1; transform: none; transition-delay: 0ms; }
[data-stagger].is-visible > *:nth-child(2) { opacity: 1; transform: none; transition-delay: 70ms; }
[data-stagger].is-visible > *:nth-child(3) { opacity: 1; transform: none; transition-delay: 140ms; }
[data-stagger].is-visible > *:nth-child(4) { opacity: 1; transform: none; transition-delay: 210ms; }
[data-stagger].is-visible > *:nth-child(5) { opacity: 1; transform: none; transition-delay: 280ms; }
[data-stagger].is-visible > *:nth-child(6) { opacity: 1; transform: none; transition-delay: 350ms; }

/* ── Hero 2 (21.st style) ── */
.hero2 {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 140px 24px 0;
  text-align: center;
  overflow: hidden;
  background: radial-gradient(ellipse 90% 55% at 50% 100%, rgba(189,139,45,.28) 0%, rgba(189,139,45,.08) 50%, transparent 75%), var(--ink);
  color: var(--paper);
}

/* Grid BG */
.hero2-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(to right,  rgba(246,240,231,.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(246,240,231,.1) 1px, transparent 1px);
  background-size: 88px 80px;
  mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 60%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 55% at 50% 0%, #000 60%, transparent 100%);
}

/* Radial bottom ellipse — dark gold glow, not white */
.hero2-radial {
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
  width: clamp(900px, 160vw, 2200px);
  height: clamp(600px, 65vw, 1000px);
  border-radius: 50%;
  background: radial-gradient(
    closest-side,
    rgba(189,139,45,.45) 0%,
    rgba(189,139,45,.22) 40%,
    rgba(189,139,45,.06) 70%,
    transparent 100%
  );
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  animation: h2RadialIn 1.4s var(--ease) 0.5s forwards;
}
@keyframes h2RadialIn {
  from { opacity: 0; transform: translateX(-50%) translateY(60px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* All content above the radial */
.hero2-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  min-height: calc(100svh - 140px);
}

/* Eyebrow pills */
.hero2-kicker {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
  opacity: 0;
  animation: h2Up 0.8s var(--ease) 1.0s forwards;
}
.hero2-kicker span {
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(246,240,231,.8);
  border: 1px solid rgba(246,240,231,.22);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(246,240,231,.07);
}

/* Headline — solid white, no clip tricks */
.hero2-title {
  font-size: clamp(3.6rem, 10.5vw, 10.5rem);
  line-height: .86;
  letter-spacing: -.07em;
  color: var(--paper);
  margin-bottom: 30px;
  opacity: 0;
  animation: h2Up 0.9s var(--ease) 1.1s forwards;
}
.hero2-title em {
  color: var(--gold);
  font-style: italic;
}

/* Subtitle */
.hero2-sub {
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(.98rem, 1.7vw, 1.18rem);
  line-height: 1.65;
  color: rgba(246,240,231,.82);
  max-width: 560px;
  margin-bottom: 36px;
  opacity: 0;
  animation: h2Up 0.9s var(--ease) 1.2s forwards;
  text-shadow: 0 1px 24px rgba(17,16,14,.8), 0 0 40px rgba(17,16,14,.6);
}

/* CTAs */
.hero2-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 0;
  opacity: 0;
  animation: h2Up 0.9s var(--ease) 1.3s forwards;
  position: relative;
  z-index: 12;
}

/* Stats bar — pinned to bottom, the radial glow sits behind it */
.hero2-proof {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: 100%;
  max-width: 100%;
  border: 1px solid rgba(246,240,231,.16);
  background: rgba(246,240,231,.12);
  opacity: 0;
  animation: h2Up 1s var(--ease) 1.45s forwards;
  margin-top: auto;
}
.hero2-proof .stat {
  background: rgba(17,16,14,.55);
  backdrop-filter: blur(12px);
  min-height: 110px;
}
.hero2-proof .stat strong { color: var(--paper); }
.hero2-proof .stat span   { color: rgba(246,240,231,.55); }

@keyframes h2Up {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Pricing Story-Scroll ── */
.pricing-scroll-root { position: relative; background: var(--paper); }
.pricing-scroll-header {
  padding: clamp(82px, 12vw, 168px) 0 clamp(36px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.pricing-cards-viewport { position: relative; width: 100%; }
.pricing-scroll-spacer { height: 100svh; }

.pricing-card-wrap {
  position: sticky;
  top: 0;
  height: 100svh;
  width: 100%;
  display: flex;
  align-items: stretch;
}
.pricing-card-inner {
  width: 100%;
  height: 100%;
  transform-origin: bottom left;
  will-change: transform;
}

.ps-card {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.5rem, 6vw, 5rem);
  position: relative; overflow: hidden;
}
.ps-card--paper { background: var(--paper); color: var(--ink); }
.ps-card--ink   { background: var(--ink);   color: var(--paper); }
.ps-card--moss  { background: var(--moss);  color: var(--paper); }
.ps-card--clay  { background: var(--clay);  color: var(--paper); }

.ps-card__deco {
  position: absolute; right: -8%; bottom: -18%;
  width: clamp(200px, 40vw, 420px); aspect-ratio: 1;
  border-radius: 50%; border: 1px solid currentColor;
  opacity: .1; pointer-events: none;
}
.ps-card__deco::after {
  content: ""; position: absolute; inset: 16%;
  border-radius: 50%; border: 1px solid currentColor;
}

.ps-card__top {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 1rem;
}
.ps-card__kicker {
  font-size: .72rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase;
  color: var(--muted);
}
.ps-card__kicker--gold { color: var(--gold); }
.ps-card__kicker--pale { color: rgba(246,240,231,.65); }

.ps-card__badge {
  font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase;
  padding: 6px 14px; border: 1px solid rgba(17,16,14,.22); border-radius: 999px;
  color: var(--muted);
}
.ps-card__badge--dim { border-color: rgba(246,240,231,.28); color: rgba(246,240,231,.5); }

.ps-card__main {
  flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 1.5rem 0;
}
.ps-card__price {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: .8; letter-spacing: -.06em; font-weight: 400;
}
.ps-card__price--gold { color: var(--gold); }
.ps-card__price-unit  { font-size: clamp(2rem, 5vw, 4rem); opacity: .6; }

.ps-card__title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.6rem, 4vw, 3.4rem);
  line-height: .95; letter-spacing: -.04em; font-weight: 400; margin-top: 1rem;
}

.ps-card__body {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 2rem; flex-wrap: wrap;
}
.ps-card__left { display: flex; flex-direction: column; gap: 1rem; }

.ps-card__desc {
  font-size: clamp(.9rem, 1.5vw, 1.1rem); line-height: 1.62; max-width: 500px;
  color: var(--muted);
}
.ps-card__desc--dim { color: rgba(246,240,231,.65); }

.ps-card__cta {
  display: inline-flex; align-items: center;
  font-size: .76rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase;
  padding: 12px 22px; border: 1px solid rgba(17,16,14,.3); border-radius: 999px;
  background: transparent; color: var(--ink); cursor: pointer;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
  width: fit-content;
}
.ps-card__cta:hover { opacity: .65; transform: translateY(-1px); }
.ps-card__cta--gold { color: var(--gold); border-color: rgba(189,139,45,.45); }
.ps-card__cta--pale { color: var(--paper); border-color: rgba(246,240,231,.38); }

.ps-card__features {
  list-style: none; display: flex; flex-direction: column; gap: 9px;
  min-width: 200px; color: var(--muted);
}
.ps-card__features--dim { color: rgba(246,240,231,.65); }
.ps-card__features li {
  font-size: .78rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase;
  display: flex; align-items: center; gap: 9px;
}
.ps-card__features li::before {
  content: ""; flex: 0 0 5px; width: 5px; height: 5px;
  border-radius: 50%; background: currentColor; opacity: .7;
}

@media (max-width: 1080px) {
  .hero-content, .section-head, .capability-wrap, .lab-stage, .roi-grid, .contact-band { grid-template-columns: 1fr; }
  .hero-proof, .process { grid-template-columns: repeat(2, 1fr); }
  .work-grid, .testimonials, .authority-strip { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-note { position: relative; top: auto; }
  .feature-row { grid-template-columns: 54px 1fr; }
  .feature-row > div:last-child { grid-column: 2; }
}
@media (max-width: 960px) {
  .nav-inner { height: 60px; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: calc(100% + 8px);
    display: grid; gap: 0; padding: 10px 14px 18px;
    background: var(--nav-bg); backdrop-filter: blur(22px) saturate(160%);
    border: 1px solid var(--nav-border);
    border-radius: 20px;
    box-shadow: var(--nav-shadow);
    transform: translateY(-12px) scale(.97); opacity: 0; pointer-events: none;
    transition: transform .38s var(--ease), opacity .38s var(--ease);
  }
  .nav-links.is-open { transform: translateY(0) scale(1); opacity: 1; pointer-events: auto; }
  .nav-link { padding: 14px 6px; border-bottom: 1px solid var(--line); font-size: .9rem; color: var(--nav-text); opacity: 1; }
  .nav-link:last-child { border-bottom: none; }
  .menu-btn { display: inline-flex; }
  .nav .btn { display: none; }
}
@media (max-width: 760px) {
  .container { width: min(100% - 28px, 1440px); }
  .nav-inner { height: 66px; }
  .nav-links { inset: 66px 0 auto 0; }
  .hero { min-height: auto; padding: 112px 0 34px; }
  .hero-copy { padding-bottom: 0; }
  .hero-proof, .strategy-list, .process, .roi-mini-grid { grid-template-columns: 1fr; }
  .offer-grid { grid-template-columns: 1fr; }
  .stat { min-height: 92px; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row > div:last-child { grid-column: auto; }
  .lab-stage { min-height: auto; }
  .orbital { min-height: 360px; }
  .planet { width: 118px; font-size: .7rem; }
  .scroll-hint { display: none; }
  .float-cta { right: 14px; bottom: 14px; padding: 12px 16px; }
  .footer-inner { display: grid; }
  .ps-card__body { flex-direction: column; gap: 1.5rem; }
  .ps-card__deco { display: none; }
  .ps-card__price { font-size: clamp(4rem, 18vw, 7rem); }
  .hero2 { padding: 120px 20px 0; }
  .hero2-proof { grid-template-columns: repeat(2, 1fr); }
  .hero2-kicker { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
  .hero-canvas, .cursor-dot, .cursor-ring { display: none !important; }
  [data-reveal], .split-line > span, [data-stagger] > * { opacity: 1 !important; transform: none !important; }
  .hero2-kicker, .hero2-title, .hero2-sub, .hero2-actions, .hero2-proof, .hero2-radial { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ══ LIGHT THEME OVERRIDES ══ */
[data-theme="light"] body { background: var(--paper); color: var(--ink); }
[data-theme="light"] .loader { background: #f6f0e7; color: var(--ink); }
[data-theme="light"] .loader-kicker { color: rgba(17,16,14,.45); }

[data-theme="light"] .hero2 {
  background: radial-gradient(ellipse 90% 55% at 50% 100%, rgba(189,139,45,.22) 0%, rgba(189,139,45,.06) 50%, transparent 75%), #ede8de;
  color: var(--ink);
}
[data-theme="light"] .hero2-grid {
  background-image:
    linear-gradient(to right,  rgba(17,16,14,.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(17,16,14,.08) 1px, transparent 1px);
}
[data-theme="light"] .hero2-kicker span {
  color: rgba(17,16,14,.7);
  border-color: rgba(17,16,14,.18);
  background: rgba(17,16,14,.05);
}
[data-theme="light"] .hero2-title { color: var(--ink); }
[data-theme="light"] .hero2-sub { color: rgba(17,16,14,.72); text-shadow: none; }
[data-theme="light"] .hero2-proof { background: rgba(17,16,14,.08); border-color: rgba(17,16,14,.14); }
[data-theme="light"] .hero2-proof .stat { background: rgba(255,255,255,.7); }
[data-theme="light"] .hero2-proof .stat strong { color: var(--ink); }
[data-theme="light"] .hero2-proof .stat span   { color: var(--muted); }
[data-theme="light"] .hero2-radial { background: radial-gradient(closest-side, rgba(189,139,45,.28) 0%, rgba(189,139,45,.1) 40%, transparent 100%); }

[data-theme="light"] .line-card { background: #fff; }
[data-theme="light"] .line-card:hover { background: var(--ink); }
[data-theme="light"] .work-card,
[data-theme="light"] .quote { background: #fff; border-color: rgba(17,16,14,.1); }
[data-theme="light"] .roi-form { background: #fff; border-color: rgba(17,16,14,.1); }
[data-theme="light"] .field input,
[data-theme="light"] .field select,
[data-theme="light"] .field textarea { background: #f8f4ee; border-color: rgba(17,16,14,.14); }
[data-theme="light"] .marquee { background: #e8e2d8; }
[data-theme="light"] .modal { background: #fff; }
[data-theme="light"] .modal-backdrop { background: rgba(0,0,0,.45); }
[data-theme="light"] .ps-card--paper { background: #fff; }
[data-theme="light"] .pricing-scroll-root { background: var(--paper); }
[data-theme="light"] #ws-chat { background: #fff; border-color: rgba(189,139,45,.28); }
[data-theme="light"] #ws-chat-header { background: #f8f4ee; border-color: rgba(17,16,14,.08); }
[data-theme="light"] #ws-chat-name { color: var(--ink); }
[data-theme="light"] .ws-msg.bot .ws-bubble { background: #f3ede4; border-color: rgba(17,16,14,.1); color: var(--ink); }
[data-theme="light"] .ws-opt { background: rgba(189,139,45,.07); border-color: rgba(189,139,45,.25); color: var(--ink-2); }
[data-theme="light"] .ws-opt:hover { background: rgba(189,139,45,.16); }

/* Smooth theme transition */
body, .hero2, .line-card, .work-card, .quote, .roi-form, .marquee, .modal, #ws-chat, #ws-chat-header {
  transition: background .42s var(--ease), color .42s var(--ease), border-color .42s var(--ease);
}

/* Chat Widget */
/* Container is click-through — only its visible controls capture the pointer,
   so the widget's corner never blocks hover/clicks on page content behind it. */
#ws-chat-root { position: fixed; right: 20px; bottom: 20px; z-index: 850; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; pointer-events: none; }
#ws-chat-toggle { pointer-events: auto; width: 54px; height: 54px; border-radius: 50%; background: var(--gold); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 8px 32px rgba(189,139,45,.4); transition: transform .3s var(--ease), box-shadow .3s var(--ease); position: relative; flex-shrink: 0; }
#ws-chat-toggle:hover { transform: scale(1.08); box-shadow: 0 12px 44px rgba(189,139,45,.55); }
#ws-chat-toggle svg { position: absolute; transition: opacity .22s var(--ease), transform .22s var(--ease); color: var(--ink); }
#ws-chat-toggle .icon-chat  { opacity: 1; transform: scale(1); }
#ws-chat-toggle .icon-close { opacity: 0; transform: scale(.6) rotate(-45deg); }
#ws-chat-toggle.open .icon-chat  { opacity: 0; transform: scale(.6) rotate(45deg); }
#ws-chat-toggle.open .icon-close { opacity: 1; transform: scale(1) rotate(0deg); }
#ws-chat-badge { position: absolute; top: -3px; right: -3px; width: 17px; height: 17px; background: var(--clay); border-radius: 50%; border: 2px solid var(--paper); display: flex; align-items: center; justify-content: center; font-size: 8px; font-weight: 900; color: var(--paper); animation: wsBadgePulse 2s ease-in-out infinite; }
#ws-chat-badge.hidden { display: none; }
@keyframes wsBadgePulse { 0%,100%{transform:scale(1);} 50%{transform:scale(1.18);} }
#ws-chat { width: 320px; background: var(--ink-2); border: 1px solid rgba(189,139,45,.2); border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; box-shadow: 0 24px 80px rgba(17,16,14,.55); opacity: 0; pointer-events: none; transform: translateY(14px) scale(.97); transition: opacity .35s var(--ease), transform .35s var(--ease); max-height: calc(100svh - 100px); }
#ws-chat.open { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
#ws-chat-header { display: flex; align-items: center; gap: 10px; padding: 13px 15px; background: var(--ink); border-bottom: 1px solid rgba(189,139,45,.12); flex-shrink: 0; }
#ws-chat-avatar { width: 34px; height: 34px; border-radius: 50%; background: var(--gold); display: flex; align-items: center; justify-content: center; font-family: Georgia, serif; font-weight: 700; font-size: 14px; color: var(--ink); flex-shrink: 0; }
#ws-chat-title-area { flex: 1; }
#ws-chat-name { font-size: 13px; font-weight: 700; color: var(--paper); letter-spacing: .01em; }
#ws-chat-status { font-size: 10px; color: var(--moss); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.ws-live-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--moss); animation: wsLivePulse 2s ease infinite; }
@keyframes wsLivePulse { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:.4;transform:scale(.7);} }
#ws-chat-messages { flex: 1; overflow-y: auto; padding: 14px 14px 6px; display: flex; flex-direction: column; gap: 12px; min-height: 80px; max-height: 260px; scrollbar-width: none; }
#ws-chat-messages::-webkit-scrollbar { display: none; }
.ws-msg { display: flex; flex-direction: column; gap: 3px; opacity: 0; animation: wsMsgIn .3s var(--ease) forwards; }
@keyframes wsMsgIn { from{opacity:0;transform:translateY(6px);} to{opacity:1;transform:translateY(0);} }
.ws-msg.bot { align-items: flex-start; }
.ws-msg.user { align-items: flex-end; }
.ws-msg-name { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: rgba(246,240,231,.28); padding: 0 3px; }
.ws-bubble { padding: 9px 12px; font-size: 13px; font-weight: 400; line-height: 1.58; max-width: 232px; }
.ws-msg.bot  .ws-bubble { background: rgba(246,240,231,.06); border: 1px solid rgba(246,240,231,.1); color: rgba(246,240,231,.88); border-radius: 3px 10px 10px 10px; }
.ws-msg.user .ws-bubble { background: rgba(189,139,45,.14); border: 1px solid rgba(189,139,45,.26); color: rgba(246,240,231,.9); border-radius: 10px 3px 10px 10px; }
.ws-typing-wrap { display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.ws-typing { display: flex; align-items: center; gap: 4px; padding: 10px 13px; background: rgba(246,240,231,.06); border: 1px solid rgba(246,240,231,.1); border-radius: 3px 10px 10px 10px; width: fit-content; }
.ws-tdot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); animation: wsTdot 1.1s ease infinite; }
.ws-tdot:nth-child(2) { animation-delay: .16s; }
.ws-tdot:nth-child(3) { animation-delay: .32s; }
@keyframes wsTdot { 0%,60%,100%{transform:translateY(0);opacity:.4;} 30%{transform:translateY(-4px);opacity:1;} }
#ws-chat-options { padding: 8px 12px 12px; display: flex; flex-direction: column; gap: 6px; flex-shrink: 0; border-top: 1px solid rgba(246,240,231,.06); }
.ws-opt { font-size: 12.5px; font-weight: 500; padding: 9px 13px; border-radius: 8px; border: 1px solid rgba(189,139,45,.2); background: rgba(189,139,45,.05); color: rgba(246,240,231,.72); cursor: pointer; text-align: left; transition: background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease); opacity: 0; animation: wsMsgIn .3s var(--ease) forwards; line-height: 1.4; }
.ws-opt:hover { background: rgba(189,139,45,.12); border-color: rgba(189,139,45,.45); color: var(--paper); }
.ws-cta { font-size: 11px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; padding: 11px 14px; border-radius: 8px; cursor: pointer; text-align: center; text-decoration: none; display: block; transition: all .2s var(--ease); opacity: 0; animation: wsMsgIn .3s var(--ease) forwards; }
.ws-cta.primary { background: var(--gold); color: var(--ink); border: 1px solid var(--gold); }
.ws-cta.primary:hover { background: #c99534; }
.ws-cta.ghost { background: transparent; border: 1px solid rgba(246,240,231,.1); color: rgba(246,240,231,.4); font-size: 10px; letter-spacing: .05em; text-transform: none; font-weight: 500; }
.ws-cta.ghost:hover { color: rgba(246,240,231,.7); border-color: rgba(246,240,231,.22); }



/* ══════════════════════════════════════════
   FULLSCREEN CALENDAR BOOKING MODAL
   Mirrors fullscreen-calendar.tsx layout
   ══════════════════════════════════════════ */

/* Backdrop — full viewport overlay */
.fsc-backdrop {
  position: fixed;
  inset: 0;
  z-index: 970;
  background: rgba(17,16,14,.82);
  backdrop-filter: blur(18px);
  display: none;
  align-items: stretch;
  justify-content: stretch;
}
.fsc-backdrop.is-open { display: flex; }

/* Shell — fills viewport like the demo's h-screen */
.fsc-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  color: #1a1918;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* ── Header bar ── */
.fsc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 20px;
  border-bottom: 1px solid #e5e0d8;
  flex-shrink: 0;
  flex-wrap: wrap;
}

.fsc-header-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}

/* Today badge (small month+date box, matches React component) */
.fsc-today-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 48px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.fsc-today-month {
  width: 100%;
  text-align: center;
  font-size: .6rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #8a7f74;
  background: #f5f0e8;
  padding: 3px 0;
}
.fsc-today-num {
  width: 100%;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1a1918;
  background: #fff;
  border-top: 1px solid #e5e0d8;
  padding: 4px 0;
}

.fsc-month-info { display: flex; flex-direction: column; gap: 2px; }
.fsc-month-title { font-size: 1.05rem; font-weight: 700; color: #1a1918; line-height: 1.1; }
.fsc-month-range { font-size: .76rem; color: #8a7f74; }

/* Header right controls */
.fsc-header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fsc-icon-btn {
  width: 34px; height: 34px;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  background: #fff;
  color: #8a7f74;
  display: grid; place-items: center;
  cursor: pointer;
  transition: background .18s ease, border-color .18s ease, color .18s ease;
}
.fsc-icon-btn:hover { background: #f5f0e8; color: #1a1918; }

.fsc-sep {
  width: 1px;
  height: 24px;
  background: #e5e0d8;
  flex-shrink: 0;
}

/* Prev / Today / Next button group */
.fsc-nav-group {
  display: inline-flex;
  border: 1px solid #e5e0d8;
  border-radius: 8px;
  overflow: hidden;
}
.fsc-nav-btn {
  height: 34px;
  padding: 0 12px;
  background: #fff;
  border: none;
  border-right: 1px solid #e5e0d8;
  color: #3a3530;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s ease;
  white-space: nowrap;
}
.fsc-nav-btn:last-child { border-right: none; }
.fsc-nav-btn:hover { background: #f5f0e8; }

/* Close button styled as "New Event" button in the component */
.fsc-close-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 36px;
  padding: 0 16px;
  background: #11100e;
  color: #f6f0e7;
  border: none;
  border-radius: 8px;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .18s ease;
}
.fsc-close-btn:hover { background: #bd8b2d; }

/* ── Weekday header row ── */
.fsc-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  border-bottom: 1px solid #e5e0d8;
  border-left: 1px solid #e5e0d8;
  flex-shrink: 0;
}
.fsc-wd {
  padding: 8px 0;
  text-align: center;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: #8a7f74;
  border-right: 1px solid #e5e0d8;
}

/* ── Body: grid + Calendly panel ── */
.fsc-body {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/* Calendar grid wrapper */
.fsc-grid-wrap {
  flex: 1;
  overflow: hidden;
  border-left: 1px solid #e5e0d8;
}

.fsc-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-auto-rows: 1fr;
  height: 100%;
  border-right: 1px solid #e5e0d8;
  border-bottom: 1px solid #e5e0d8;
}

/* ── Individual grid cell (matches React component's desktop cell) ── */
.fsc-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid #e5e0d8;
  border-right: 1px solid #e5e0d8;
  min-height: 80px;
  background: #fff;
  transition: background .15s ease;
}

.fsc-cell--out      { background: #f9f6f1; }
.fsc-cell--disabled { cursor: default; }
.fsc-cell--clickable {
  cursor: pointer;
}
.fsc-cell--clickable:hover { background: #fdf8f2; }
.fsc-cell--selected { background: #fdf5e4 !important; }

/* Cell header: day number */
.fsc-cell-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 10px 4px;
}

.fsc-cell-num {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: transparent;
  border: none;
  font-size: .82rem;
  font-weight: 500;
  color: #3a3530;
  cursor: inherit;
  transition: background .15s ease, color .15s ease;
  flex-shrink: 0;
}
/* Out-of-month days */
.fsc-cell--out .fsc-cell-num { color: #c5bdb4; }
/* Past / weekend days */
.fsc-cell--disabled:not(.fsc-cell--out) .fsc-cell-num { color: #c5bdb4; }

/* Today ring */
.fsc-cell-num--today {
  border: 1px solid #e5e0d8;
  font-weight: 600;
  color: #1a1918;
}
/* Selected (not today) */
.fsc-cell-num--sel {
  background: #11100e !important;
  color: #f6f0e7 !important;
  font-weight: 700;
}
/* Today + selected */
.fsc-cell-num--today-sel {
  background: #bd8b2d !important;
  color: #11100e !important;
  font-weight: 700;
  border: none !important;
}

/* Hover on clickable number */
.fsc-cell--clickable .fsc-cell-num:hover:not(.fsc-cell-num--sel):not(.fsc-cell-num--today-sel) {
  border: 1px solid #e5e0d8;
  background: #f5f0e8;
}

/* Cell body: event dots / event chips */
.fsc-cell-body {
  flex: 1;
  padding: 2px 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* ── Calendly panel (right side, slides in) ── */
.fsc-cal-panel {
  width: 420px;
  flex-shrink: 0;
  border-left: 1px solid #e5e0d8;
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: width .35s cubic-bezier(.16,1,.3,1);
}

.fsc-cal-panel-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

/* Idle */
.fsc-panel-idle {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 40px 32px;
  color: #c5bdb4;
}
.fsc-panel-idle p { font-size: .88rem; line-height: 1.65; color: #8a7f74; }

/* Loading dots */
.fsc-panel-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fsc-panel-loading p { font-size: .82rem; color: #8a7f74; }
.fsc-dots { display: flex; gap: 6px; }
.fsc-dots span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #bd8b2d;
  animation: fscDot 1s ease-in-out infinite;
}
.fsc-dots span:nth-child(2) { animation-delay: .16s; }
.fsc-dots span:nth-child(3) { animation-delay: .32s; }
@keyframes fscDot {
  0%,60%,100% { transform: translateY(0); opacity: .3; }
  30% { transform: translateY(-7px); opacity: 1; }
}

/* Success */
.fsc-panel-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
  padding: 40px 32px;
}
.fsc-success-title { font-size: 1.1rem; font-weight: 700; color: #1a1918; }
.fsc-success-sub   { font-size: .85rem; color: #8a7f74; line-height: 1.5; }
.fsc-done-btn {
  margin-top: 10px;
  padding: 11px 28px;
  background: #11100e;
  color: #f6f0e7;
  border: none;
  border-radius: 999px;
  font-size: .8rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s ease;
}
.fsc-done-btn:hover { background: #bd8b2d; color: #11100e; }

/* Embed container */
#fscEmbed {
  position: absolute;
  inset: 0;
}
#fscEmbed .calendly-inline-widget,
#fscEmbed iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .fsc-cal-panel { width: 360px; }
  .fsc-search-btn, .fsc-sep:first-of-type { display: none; }
}
@media (max-width: 680px) {
  .fsc-shell { flex-direction: column; }
  .fsc-body  { flex-direction: column; overflow-y: auto; }
  .fsc-grid-wrap { flex: none; }
  .fsc-grid { grid-auto-rows: 64px; height: auto; }
  .fsc-cal-panel { width: 100%; height: 520px; border-left: none; border-top: 1px solid #e5e0d8; }
  .fsc-cell { min-height: 64px; }
  .fsc-header { padding: 10px 14px; }
  .fsc-month-info { display: none; }
}

/* ══════════════════════════════════════════
   2026-07 CONTENT REFRESH ADDITIONS
   Hero line reveal · Consulting section · Gold pricing card
   ══════════════════════════════════════════ */

/* ── Hero headline masked line reveal ── */
.hero2-title .hl { display: block; overflow: hidden; padding: .12em 0; margin: -.12em 0; }
.hero2-title .hl > span { display: block; transform: translateY(115%); animation: hlUp 1s var(--ease) forwards; }
.hero2-title .hl:nth-child(1) > span { animation-delay: 1.12s; }
.hero2-title .hl:nth-child(2) > span { animation-delay: 1.24s; }
.hero2-title .hl:nth-child(3) > span { animation-delay: 1.36s; }
@keyframes hlUp { to { transform: translateY(0); } }

/* ── Consulting section ── */
.consult { background: linear-gradient(180deg, transparent 0%, rgba(189,139,45,.05) 55%, transparent 100%); }
.consult-steps { display: flex; gap: 14px; min-height: 440px; }
.consult-step {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; justify-content: space-between; gap: 40px;
  padding: clamp(22px, 3vw, 40px);
  border: 1px solid var(--line); border-radius: var(--radius); background: var(--white);
  transition: flex .65s var(--ease), background .4s var(--ease), color .4s var(--ease),
              border-color .4s var(--ease), box-shadow .4s var(--ease);
  will-change: flex;
}
.consult-step:hover {
  flex: 2.1; background: var(--ink); color: var(--paper);
  border-color: rgba(189,139,45,.45);
  box-shadow: 0 24px 60px rgba(17,16,14,.14);
}
.consult-step .num { color: var(--gold); font-size: .78rem; font-weight: 900; letter-spacing: .16em; }
.consult-step h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.9rem);
  line-height: .98; letter-spacing: -.045em; font-weight: 400; margin-bottom: 14px;
}
.consult-step p {
  color: var(--muted); line-height: 1.6; font-size: .95rem;
  transition: color .4s var(--ease);
}
.consult-step:hover p { color: rgba(246,240,231,.72); }
.consult-foot {
  margin-top: clamp(30px, 5vw, 56px);
  display: grid; grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(20px, 4vw, 60px); align-items: center;
  border-top: 1px solid var(--line); padding-top: clamp(24px, 3vw, 40px);
}
.consult-foot-actions { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.consult-price {
  display: inline-flex; align-items: center; gap: 9px;
  border: 1px solid rgba(189,139,45,.5); color: var(--gold); border-radius: 999px;
  padding: 12px 18px; font-size: .74rem; font-weight: 900;
  letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.consult-price::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--gold); animation: wsLivePulse 2s ease infinite;
}

/* ── Gold pricing card (consulting finale) ── */
.ps-card--gold {
  background: linear-gradient(160deg, #cf9c38 0%, var(--gold) 55%, #a87a24 100%);
  color: var(--ink);
}
.ps-card__kicker--ink   { color: rgba(17,16,14,.62); }
.ps-card__badge--ink    { border-color: rgba(17,16,14,.32); color: rgba(17,16,14,.66); }
.ps-card__desc--ink     { color: rgba(17,16,14,.74); }
.ps-card__features--ink { color: rgba(17,16,14,.74); }
.ps-card__cta--ink      { color: var(--ink); border-color: rgba(17,16,14,.42); }

/* ── Responsive ── */
@media (max-width: 1080px) {
  .consult-foot { grid-template-columns: 1fr; align-items: start; }
}
@media (max-width: 960px) {
  .consult-steps { flex-direction: column; min-height: auto; }
  .consult-step { gap: 22px; }
  .consult-step:hover { flex: 1; }
}

/* ── Light theme ── */
[data-theme="light"] .consult-step { background: #fff; border-color: rgba(17,16,14,.1); }
[data-theme="light"] .consult-step:hover { background: var(--ink); }

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero2-title .hl > span { transform: none !important; animation: none !important; }
  .consult-step, .consult-step:hover { flex: 1; }
}

/* ── Hero ghost CTA: theme-aware (replaces old inline dark-only style) ── */
.hero2-actions .btn.ghost { color: var(--paper); border-color: rgba(246,240,231,.38); }
[data-theme="light"] .hero2-actions .btn.ghost { color: var(--ink); border-color: rgba(17,16,14,.32); }

/* ══════════════════════════════════════════
   2026-07 NAV WHATSAPP CTA + FOOTER SOCIALS
   ══════════════════════════════════════════ */

/* ── Nav "Text us" WhatsApp button ── */
.nav-wa {
  display: inline-flex; align-items: center; gap: 8px;
  height: 38px; padding: 0 16px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(189,139,45,.4);
  background: rgba(189,139,45,.1);
  color: var(--nav-text);
  font-size: .75rem; font-weight: 850; letter-spacing: .06em; text-transform: uppercase;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease);
}
.nav-wa:hover { background: rgba(189,139,45,.2); border-color: rgba(189,139,45,.7); }
.nav-wa svg { width: 17px; height: 17px; fill: var(--gold); flex-shrink: 0; }

/* Icon-only on tight widths so it survives on mobile */
@media (max-width: 600px) {
  .nav-wa { width: 38px; padding: 0; justify-content: center; }
  .nav-wa span { display: none; }
}

/* ── Footer social icons ── */
.footer-social { display: flex; align-items: center; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid rgba(246,240,231,.2);
  color: rgba(246,240,231,.72);
  transition: background .25s var(--ease), color .25s var(--ease),
              border-color .25s var(--ease), transform .25s var(--ease);
}
.footer-social a:hover {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
  transform: translateY(-2px);
}
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }
.footer-social a:nth-child(2) svg { fill: none; stroke: currentColor; }
.footer-inner { align-items: center; }

/* ══════════════════════════════════════════
   2026-07 NAV "TALK TO NUVRA" AI CHIP
   Theme-aware gold chip with a living orb + flowing gold border
   ══════════════════════════════════════════ */
.nav-nuvra {
  position: relative;
  display: inline-flex; align-items: center; gap: 9px;
  height: 38px; padding: 0 16px; flex-shrink: 0;
  border-radius: 999px;
  border: 1px solid rgba(189,139,45,.55);
  background: rgba(189,139,45,.1);
  color: var(--nav-text);
  font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  white-space: nowrap;
  transition: background .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-nuvra:hover { background: rgba(189,139,45,.2); border-color: rgba(189,139,45,.85); box-shadow: 0 0 22px rgba(189,139,45,.35); transform: translateY(-1px); }
.nav-nuvra-label strong { font-weight: 900; letter-spacing: .08em; color: var(--gold); }

.nav-nuvra-orb {
  width: 20px; height: 20px; border-radius: 50%; flex-shrink: 0;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #e8c877, #bd8b2d);
  animation: nuvraOrb 2.4s ease-in-out infinite;
}
.nav-nuvra-orb svg { width: 12px; height: 12px; fill: #11100e; }
@keyframes nuvraOrb {
  0%, 100% { box-shadow: 0 0 7px rgba(189,139,45,.5); }
  50%      { box-shadow: 0 0 15px rgba(189,139,45,.8); }
}

/* Collapse to an orb-only chip on tight widths so it survives on mobile */
@media (max-width: 640px) {
  .nav-nuvra { padding: 0; width: 38px; justify-content: center; }
  .nav-nuvra-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .nav-nuvra { animation: none; }
  .nav-nuvra-orb { animation: none; box-shadow: 0 0 9px rgba(189,139,45,.55); }
}

/* Narrow phones: show only the logo mark so the nav action icons fit one line */
@media (max-width: 560px) {
  .brand span:last-child { display: none; }
}
