/* =========================================================================
   SKELON.AI — 3D Edition v2  ·  image-free
   Dramatic dark 3D hero (2.txt concept) → light editorial body
   Type: Sora (hero/UI + body) · Instrument Serif (accents) · JetBrains Mono (labels)
   ========================================================================= */
@import url('https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=JetBrains+Mono:wght@400;500&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --paper:    #ffffff;
  --paper-2:  #f5f2ea;
  --paper-3:  #efeadf;
  --ink:      #0d1f29;
  --ink-2:    #051a24;
  --black:    #08090b;
  --muted:    #5b6a72;
  --muted-2:  #8a959b;
  --line:     rgba(5, 26, 36, 0.12);
  --line-2:   rgba(5, 26, 36, 0.22);
  --gold:     #b4884a;
  --gold-soft:#cda766;

  --font-hero:  'Sora', system-ui, sans-serif;
  --font-serif: 'Instrument Serif', Georgia, serif;
  --font-body:  'Sora', system-ui, sans-serif;
  --font-mono:  'JetBrains Mono', ui-monospace, monospace;

  --t-eyebrow: clamp(0.7rem, 0.66rem + 0.16vw, 0.78rem);
  --t-small:   clamp(0.85rem, 0.82rem + 0.15vw, 0.95rem);
  --t-body:    clamp(1rem, 0.96rem + 0.2vw, 1.1rem);
  --t-lead:    clamp(1.1rem, 1rem + 0.5vw, 1.4rem);
  --t-h3:      clamp(1.6rem, 1.2rem + 1.6vw, 2.6rem);
  --t-h2:      clamp(2.4rem, 1.5rem + 3.6vw, 5rem);

  --maxw: 1200px;
  --gutter: clamp(1.3rem, 4vw, 3.2rem);
  --radius: 18px;
  --radius-lg: 32px;
  --radius-xl: 40px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-primary: 0 1px 2px 0 rgba(5,26,36,0.10), 0 4px 4px 0 rgba(5,26,36,0.09), 0 9px 6px 0 rgba(5,26,36,0.05), 0 17px 7px 0 rgba(5,26,36,0.01), inset 0 2px 8px 0 rgba(255,255,255,0.5);
  --shadow-soft: 0 0 0 0.5px rgba(0,0,0,0.05), 0 4px 30px rgba(0,0,0,0.08);
  --shadow-card: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lift: 0 30px 60px -30px rgba(5,26,36,0.30);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body { font-family: var(--font-body); font-size: var(--t-body); line-height: 1.6; color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg, video, canvas { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
::selection { background: rgba(180,136,74,0.22); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3rem, 6vw, 6rem); position: relative; }
.section--tight { padding-block: clamp(2.25rem, 4.5vw, 4.25rem); }
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--ink); color: #fff; padding: .7rem 1.2rem; }
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 { font-weight: 400; line-height: 1.05; letter-spacing: -0.02em; color: var(--ink); }
.serif { font-family: var(--font-serif); font-style: normal; }
.serif.italic { font-style: italic; }
.title { font-size: var(--t-h2); font-family: var(--font-body); font-weight: 500; letter-spacing: -0.03em; }
.lead { font-size: var(--t-lead); color: var(--muted); line-height: 1.5; max-width: 44ch; }
p { max-width: 62ch; }
.muted { color: var(--muted); }
.eyebrow { font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); }
.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .eyebrow { display: block; margin-bottom: 1.2rem; }
.section-head.center { margin-inline: auto; text-align: center; }

/* ---------- buttons ---------- */
.btn { position: relative; display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-body); font-weight: 500; font-size: var(--t-small); padding: .9rem 1.7rem; border-radius: 100px; transition: transform .4s var(--ease), background .4s var(--ease), color .4s var(--ease); will-change: transform; }
.btn svg { width: 16px; height: 16px; transition: transform .4s var(--ease); }
.btn-primary { background: var(--ink); color: #f6fcff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-2px); }
.btn-primary:hover svg { transform: translate(3px,-3px); }
.btn-secondary { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-soft); }
.btn-secondary:hover { transform: translateY(-2px); }
.btn-white { background: #fff; color: #000; }
.btn-white:hover { background: #e9e9e9; }
.btn-lg { padding: 1.05rem 2rem; font-size: var(--t-body); }

/* ---------- custom cursor ---------- */
.cursor-dot, .cursor-ring { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; border-radius: 50%; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor-dot { width: 6px; height: 6px; background: #fff; }
.cursor-ring { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.6); transition: width .3s var(--ease), height .3s var(--ease); }
body.cursor-active .cursor-ring { width: 60px; height: 60px; }
@media (hover: none) { .cursor-dot, .cursor-ring { display: none; } }

/* ---------- pill navbar (2.txt) ---------- */
.pillnav { position: fixed; inset: 1.2rem 0 auto 0; z-index: 90; padding-inline: clamp(1rem, 4vw, 2.5rem); }
.pillnav .row { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.pill { display: flex; align-items: center; gap: .4rem; background: rgba(18,20,24,0.6); -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 8px 24px -12px rgba(5,26,36,0.4); border-radius: 100px; padding: .55rem .65rem; }
.pill.brand-pill { padding: .55rem 1.2rem .55rem .9rem; gap: .6rem; }
.pillnav .logo { width: 22px; height: 22px; overflow: visible; color: #fff; --seam: #16181d; transform-origin: center; animation: logoBloom .9s var(--ease) both; }
.pillnav .logo .gold { transform-box: fill-box; transform-origin: center; }
@keyframes logoBloom { 0% { opacity: 0; transform: scale(.5); } 60% { opacity: 1; transform: scale(1.06); } 100% { opacity: 1; transform: scale(1); } }
@keyframes goldPulse { 0%, 100% { opacity: .78; } 50% { opacity: 1; } }
.logo-wrap { position: relative; display: inline-block; line-height: 0; }
.logo-sweep { position: absolute; inset: 0; z-index: 2; pointer-events: none; background: url(../img/logo-mark-gold.png) center/contain no-repeat; -webkit-clip-path: polygon(-80% 0, -40% 0, -20% 100%, -60% 100%); clip-path: polygon(-80% 0, -40% 0, -20% 100%, -60% 100%); animation: logoGleam 4s ease-in-out infinite; }
@keyframes logoGleam {
  0%   { -webkit-clip-path: polygon(-80% 0, -40% 0, -20% 100%, -60% 100%); clip-path: polygon(-80% 0, -40% 0, -20% 100%, -60% 100%); }
  32%  { -webkit-clip-path: polygon(140% 0, 180% 0, 200% 100%, 160% 100%); clip-path: polygon(140% 0, 180% 0, 200% 100%, 160% 100%); }
  100% { -webkit-clip-path: polygon(140% 0, 180% 0, 200% 100%, 160% 100%); clip-path: polygon(140% 0, 180% 0, 200% 100%, 160% 100%); }
}
@media (prefers-reduced-motion: reduce) { .logo-sweep { animation: none; } }
.pillnav .brand { position: relative; display: inline-block; font-family: var(--font-hero); font-size: .95rem; color: #fff; font-weight: 400; letter-spacing: -0.01em; transform-origin: left center; transition: transform .4s cubic-bezier(0.34,1.2,0.4,1); }
.pillnav .brand .ai { color: #fff; transition: color .4s var(--ease); }
.pillnav .brand-pill { transition: transform .4s var(--ease); }
.pillnav .brand-pill:hover { transform: translateY(-1px); }
.pillnav .brand-pill:hover .brand { transform: scale(1.04); }
.pillnav .brand-pill:hover .brand .ai { color: #fff; }
.pillnav .brand-pill:hover .logo .gold { animation: goldPulse 1.1s var(--ease) infinite; }
.pill.links { display: none; }
.pill.links a { color: rgba(255,255,255,0.7); font-size: .9rem; padding: .5rem 1.1rem; border-radius: 100px; transition: color .3s, background .3s; }
.pill.links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.pillnav .nav-item { position: relative; display: flex; align-items: center; }
.pillnav .nav-drop { position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(6px); min-width: 230px; display: flex; flex-direction: column; gap: 2px; padding: .5rem; border-radius: 18px; background: rgba(18,20,24,0.6); -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%); border: 1px solid rgba(255,255,255,0.12); box-shadow: 0 16px 40px -16px rgba(5,26,36,0.6); opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; z-index: 95; }
.pillnav .nav-drop::before { content: ''; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }
.pillnav .nav-item:hover .nav-drop, .pillnav .nav-item:focus-within .nav-drop { opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0); }
.pillnav .nav-drop a { display: block; padding: .6rem .9rem; border-radius: 12px; color: rgba(255,255,255,0.92); font-size: .88rem; font-family: var(--font-hero); white-space: nowrap; background: transparent; transition: color .25s var(--ease), background .25s var(--ease); }
.pillnav .nav-drop a:hover { color: #fff; background: rgba(255,255,255,0.09); }
.pillnav .cta { background: rgba(18,20,24,0.6); -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%); color: #fff; border: 1px solid rgba(255,255,255,0.22); box-shadow: 0 8px 24px -12px rgba(5,26,36,0.4); font-size: .9rem; font-weight: 500; border-radius: 100px; padding: .75rem 1.5rem; transition: background .3s, border-color .3s, transform .3s var(--ease); }
.pillnav .cta:hover { background: rgba(18,20,24,0.72); border-color: rgba(255,255,255,0.36); transform: translateY(-1px); }
@media (min-width: 880px) { .pill.links { display: flex; } }

/* ---------- HERO (dark, 3D, staggered type) ---------- */
.hero { position: relative; height: 100svh; min-height: 640px; background: var(--black); overflow: hidden; color: #fff; }
#hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; }
.hero-bg { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position: absolute; inset: 0; z-index: 1; pointer-events: none; background:
  linear-gradient(180deg, rgba(8,9,11,0.5), rgba(8,9,11,0.32) 42%, rgba(8,9,11,0.55)),
  radial-gradient(120% 90% at 50% 30%, transparent 45%, rgba(8,9,11,0.6) 100%); }

/* ---------- scroll build-up section ---------- */
.buildscroll { position: relative; height: 340vh; background: var(--black); }
.build-sticky { position: sticky; top: 0; height: 100vh; height: 100svh; overflow: hidden; }
.build-video { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover; }
.build-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(120% 100% at 50% 50%, rgba(8,9,11,0.25), rgba(8,9,11,0.78)); }
.build-stage { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding-inline: var(--gutter); font-family: var(--font-serif); font-size: clamp(2.2rem, 6vw, 5.2rem); line-height: 0.82; color: #fff; opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.build-stage .serif { color: var(--gold-soft); }
.build-stage.is-on { opacity: 1; transform: translateY(0); }
.hero-fade { position: absolute; left: 0; right: 0; bottom: 0; height: 140px; z-index: 3; pointer-events: none; background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.4) 58%, rgba(255,255,255,0.82) 84%, #ffffff 100%); }
.hero-words { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.hero-words .w { position: absolute; font-family: var(--font-hero); font-weight: 500; font-size: 14vw; line-height: 0.9; letter-spacing: -0.04em; color: #fff; text-transform: lowercase; }
.hero-words .w1 { left: var(--gutter); top: 16%; }
.hero-words .w2 { right: var(--gutter); top: 37%; }
.hero-words .w3 { left: 26%; top: 58%; }
.hero-words .w .serif { color: var(--gold-soft); }
@media (min-width: 768px) { .hero-words .w { font-size: 13vw; } }

.hero-desc { position: absolute; z-index: 2; left: var(--gutter); top: 46%; max-width: 250px; font-size: 15px; line-height: 1.4; color: rgba(255,255,255,0.9); }
.hero-stat { position: absolute; z-index: 2; }
.hero-stat .row { display: flex; align-items: center; gap: .8rem; }
.hero-stat .num { font-family: var(--font-hero); font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 500; letter-spacing: -0.02em; color: #fff; }
.hero-stat .lbl { font-size: var(--t-small); color: rgba(255,255,255,0.7); margin-top: .3rem; }
.hero-stat .div { height: 1px; width: 90px; background: rgba(255,255,255,0.4); }
.hero-stat.tr { right: clamp(1.3rem, 6vw, 6rem); top: 15%; text-align: right; }
.hero-stat.tr .div { transform: rotate(20deg); }
.hero-stat.bl { left: clamp(1.3rem, 5vw, 5rem); bottom: 16%; }
.hero-stat.bl .div { transform: rotate(-20deg); }
.hero-stat.br { right: clamp(1.3rem, 5vw, 5rem); bottom: 13%; text-align: right; }
.hero-stat.br .div { transform: rotate(-20deg); }
@media (max-width: 767px) { .hero-stat .div { display: none; } .hero-desc { top: 42%; max-width: 200px; } .hero-stat.br { display: none; } }
/* Hero CTA cluster + micro-credential strip (sits above the paper fade) */
.hero-cta { position: absolute; z-index: 4; left: 50%; bottom: clamp(11.5rem, 24vh, 15rem); transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 1.05rem; width: max-content; max-width: 92vw; text-align: center; }
.hero-cta-row { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; justify-content: center; }
.hero-cta-ghost { display: inline-flex; align-items: center; gap: .5rem; color: rgba(255,255,255,0.88); font-size: var(--t-small); font-weight: 500; transition: color .3s var(--ease), gap .3s var(--ease); }
.hero-cta-ghost:hover { color: var(--gold-soft); gap: .75rem; }
.hero-cred { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,0.58); }
@media (max-width: 767px) { .hero-cta { bottom: clamp(10rem, 20vh, 12rem); gap: .85rem; } .hero-cred { font-size: .6rem; letter-spacing: .12em; } }

/* ---------- text marquee ---------- */
.marquee { overflow: hidden; border-bottom: 1px solid var(--line); padding-block: clamp(1.4rem,3vw,2.4rem); }
.marquee-track { display: flex; gap: 3rem; width: max-content; animation: marquee 36s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: var(--font-body); font-style: normal; font-weight: 500; font-size: clamp(1.6rem, 3vw, 2.6rem); letter-spacing: -0.02em; color: var(--ink); display: inline-flex; align-items: center; gap: 3rem; white-space: nowrap; }
.marquee-track span::after { content: '✦'; font-style: normal; color: var(--gold); font-size: .7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- services rows ---------- */
.svc { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3, auto); grid-auto-flow: column; gap: clamp(1rem, 2vw, 1.6rem); }
.svc-row { position: relative; overflow: hidden; display: flex; flex-direction: column; min-height: clamp(18rem, 23vw, 20rem); padding: clamp(1.5rem, 2.4vw, 2.1rem); border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--paper-2); box-shadow: var(--shadow-card); transition: background .35s var(--ease), box-shadow .4s var(--ease), border-color .35s var(--ease); }
.svc-row > * { position: relative; z-index: 1; }
.svc-row::after { content: ''; position: absolute; inset: 0; z-index: 0; background: linear-gradient(115deg, transparent 32%, rgba(255,255,255,0.55) 50%, rgba(205,167,102,0.18) 56%, transparent 70%); transform: translateX(-130%); transition: transform .85s var(--ease); pointer-events: none; }
.svc-row .idx { display: none; }
.svc-row h3 { margin-top: .35rem; font-family: var(--font-serif); font-size: var(--t-h3); transition: transform .35s var(--ease); }
.svc-row .svc-lead { margin-top: .5rem; color: var(--muted); font-size: var(--t-small); }
.svc-row .svc-line { margin-top: 1.2rem; height: 1px; width: 100%; background: var(--line-2); transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease); }
.svc-row .desc { margin-top: .9rem; color: var(--muted); font-size: var(--t-small); max-width: 46ch; transition: color .35s var(--ease); }
.svc-row .svc-ctas { display: flex; align-items: center; justify-content: space-between; gap: .7rem 1rem; flex-wrap: wrap; margin-top: 1rem; }
.svc-row .svc-cta { display: inline-flex; align-items: center; gap: .5rem; font-weight: 500; font-size: var(--t-small); color: var(--ink); transition: color .3s var(--ease); }
.svc-row .svc-cta:hover { color: var(--gold); }
.svc-row .svc-book { font-weight: 500; font-size: var(--t-small); color: var(--ink); border: 1px solid var(--line-2); border-radius: 100px; padding: .45rem 1rem; white-space: nowrap; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease); }
.svc-row .svc-book:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.svc-row .svc-cta svg { width: 18px; height: 18px; color: var(--gold); transition: transform .35s var(--ease); }
/* hover / focus polish: focus-in + gold sheen sweep (content stays visible) */
.svc-row:focus-visible { background: var(--paper); border-color: rgba(180,136,74,0.35); box-shadow: var(--shadow-lift), 0 0 0 1px rgba(180,136,74,0.12), 0 18px 44px -26px rgba(180,136,74,0.42); }
.svc-row:focus-visible h3 { transform: translateY(-4px); }
.svc-row:focus-visible .svc-line { transform: scaleX(1); }
.svc-row:focus-visible .desc { color: var(--ink); }
.svc-row:focus-visible .svc-cta svg { transform: translate(3px,-3px); }
.svc-row:focus-visible::after { transform: translateX(130%); }
@media (hover: hover) {
  .svc-row:hover { background: var(--paper); border-color: rgba(180,136,74,0.35); box-shadow: var(--shadow-lift), 0 0 0 1px rgba(180,136,74,0.12), 0 18px 44px -26px rgba(180,136,74,0.42); }
  .svc-row:hover h3 { transform: translateY(-4px); }
  .svc-row:hover .svc-line { transform: scaleX(1); }
  .svc-row:hover .desc { color: var(--ink); }
  .svc-row:hover .svc-cta svg { transform: translate(3px,-3px); }
  .svc-row:hover::after { transform: translateX(130%); }
}

/* ---------- work / case cards (hover-reveal) ---------- */
.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; }
.work-card { position: relative; border-radius: var(--radius-lg); border: 1px solid rgba(255,255,255,0.08); box-shadow: var(--shadow-card); overflow: hidden; transition: transform .5s var(--ease), box-shadow .5s var(--ease); min-height: 360px; color: #fff; cursor: pointer; }
.work-card .bg { position: absolute; inset: 0; background-color: var(--black); background-size: cover; background-position: center; filter: brightness(1.05) saturate(1.05); transition: filter .5s var(--ease), transform .6s var(--ease); }
.work-card .scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: linear-gradient(180deg, transparent 52%, rgba(6,12,18,0.78) 100%); transition: background .5s var(--ease); }
.work-card:hover .bg, .work-card.is-open .bg { filter: blur(2.5px) brightness(1.02) saturate(1.05); transform: scale(1.04); }
.work-card:hover .scrim, .work-card.is-open .scrim { background: linear-gradient(180deg, transparent 18%, rgba(6,12,18,0.5) 52%, rgba(6,12,18,0.88) 100%); }
.work-card .content { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.4rem, 2.6vw, 1.9rem); }
.work-card h3 { font-family: var(--font-body); font-weight: 600; font-size: clamp(1.3rem, 2.2vw, 1.6rem); letter-spacing: -0.02em; color: #fff; line-height: 1.2; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.work-card h3 .sub { font-weight: 400; color: rgba(255,255,255,0.75); }
.work-card .learn { display: inline-flex; align-items: center; gap: .4rem; margin-top: .7rem; width: fit-content; font-size: var(--t-small); font-weight: 500; color: var(--gold-soft); text-shadow: 0 1px 8px rgba(0,0,0,0.5); transition: opacity .35s var(--ease); }
.work-card .reveal { overflow: hidden; max-height: 0; opacity: 0; transform: translateY(8px); transition: max-height .55s var(--ease), opacity .45s var(--ease), transform .55s var(--ease); }
.work-card:hover .reveal, .work-card.is-open .reveal, .work-card:focus-within .reveal { max-height: 440px; opacity: 1; transform: translateY(0); }
.work-card:hover .learn, .work-card.is-open .learn { opacity: 0; height: 0; margin: 0; }
.work-card .reveal p { margin-top: .7rem; font-size: var(--t-small); line-height: 1.55; color: rgba(255,255,255,0.92); text-shadow: 0 1px 8px rgba(0,0,0,0.5); max-width: 44ch; }
.work-card .wc-metrics { display: flex; gap: 1.6rem; margin-top: .9rem; }
.work-card .wc-metrics .m { display: block; font-family: var(--font-hero); font-size: clamp(1.4rem, 2.4vw, 1.9rem); font-weight: 600; color: #fff; line-height: 1; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.work-card .wc-metrics small { display: block; margin-top: .25rem; font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.75); text-shadow: 0 1px 6px rgba(0,0,0,0.5); }
.work-card .book { display: inline-flex; align-items: center; gap: .5rem; margin-top: 1.1rem; width: fit-content; background: #fff; color: var(--ink); font-weight: 600; font-size: var(--t-small); padding: .72rem 1.3rem; border-radius: 100px; transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.work-card .book:hover { transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(0,0,0,0.5); }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; } }

/* ---------- case studies · stacked-focus carousel ---------- */
.section-head .lead { margin-top: 1.1rem; }
.case-carousel { margin-top: clamp(1rem, 2vw, 1.6rem); }
.case-viewport { overflow: hidden; padding-block: 44px; margin-block: -44px; }
.case-viewport:focus-visible { outline: 2px solid var(--gold); outline-offset: 8px; border-radius: var(--radius-lg); }
.case-track { display: flex; align-items: stretch; gap: clamp(1rem, 2.5vw, 2rem); will-change: transform; transition: transform .62s var(--ease-soft); }
.case-track .work-card { flex: 0 0 auto; width: 64%; transform: scale(.94); opacity: .62; transition: transform .62s var(--ease-soft), opacity .62s var(--ease-soft), box-shadow .5s var(--ease); }
.case-track .work-card.is-active { transform: scale(1); opacity: 1; z-index: 2; box-shadow: var(--shadow-lift); }
.case-track .work-card:hover { transform: scale(.94); }
.case-track .work-card.is-active:hover { transform: scale(1); }
.case-controls { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); flex-wrap: wrap; }
.case-nav { display: flex; gap: .6rem; }
.case-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease); }
.case-btn:hover { background: var(--ink); color: #fff; border-color: var(--ink); }
.case-btn svg { width: 18px; height: 18px; }
.case-btn:disabled { opacity: .3; cursor: default; }
.case-btn:disabled:hover { background: none; color: var(--ink); border-color: var(--line-2); }
.case-progress { display: flex; align-items: center; gap: 1rem; }
.case-count { font-family: var(--font-mono); font-size: var(--t-eyebrow); letter-spacing: 0.16em; color: var(--muted); }
.case-bar { width: clamp(80px, 18vw, 160px); height: 2px; background: var(--line); border-radius: 2px; overflow: hidden; }
.case-bar-fill { display: block; height: 100%; width: 33%; background: var(--gold); border-radius: 2px; transition: width .62s var(--ease-soft); }
@media (max-width: 760px) { .case-track .work-card { width: 82%; } }

/* ---------- quote ---------- */
.quote { text-align: center; max-width: 900px; margin-inline: auto; }
.quote .q-mark { font-family: var(--font-serif); font-size: 4rem; color: var(--gold); line-height: .5; }
.quote p { font-family: var(--font-serif); font-size: clamp(1.8rem,4vw,3.4rem); line-height: 1.15; color: var(--ink); max-width: none; margin: 1.5rem auto; }
.quote .author { font-style: italic; font-family: var(--font-serif); color: var(--muted); font-size: 1.2rem; }
.logos { display: flex; gap: 2.5rem; justify-content: center; align-items: center; margin-top: 2rem; flex-wrap: wrap; }
.logos span { font-weight: 600; color: var(--ink); opacity: .55; font-size: 1.3rem; }

/* ---------- pricing ---------- */
.pricing { display: flex; justify-content: center; }
.price-card { border-radius: var(--radius-xl); padding: clamp(2rem,3.5vw,3rem); display: flex; flex-direction: column; gap: 1rem; }
.price-card.dark { position: relative; overflow: hidden; background: var(--ink); color: #f6fcff; box-shadow: var(--shadow-lift); isolation: isolate; }
.price-card.dark::before { content: ''; position: absolute; inset: 0; z-index: -1; background: url('../img/pricing-bg.webp') center center / cover no-repeat; opacity: .92; }
.price-card.dark::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(9,20,27,0.82) 0%, rgba(11,24,32,0.60) 48%, rgba(11,24,32,0.42) 100%), radial-gradient(120% 120% at 100% 0%, rgba(180,136,74,0.12), rgba(11,24,32,0) 60%); }
.price-card.light { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-card); border: 1px solid var(--line); }
.price-card h3 { font-size: 1.4rem; font-family: var(--font-body); font-weight: 500; color: inherit; }
.price-card .desc { font-size: var(--t-small); opacity: .8; }
.price-card .price { font-family: var(--font-serif); font-size: clamp(2.4rem,4vw,3.4rem); margin-top: auto; }
.price-card .price small { display: block; font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.18em; opacity: .7; margin-top: .3rem; }
.price-card .prow { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 1.4rem; }
.price-card.dark .btn-secondary { background: rgba(255,255,255,0.08); color: #f6fcff; box-shadow: none; border: 1px solid rgba(255,255,255,0.2); }
/* engagement · single centered card */
#pricing .section-head .lead { max-width: 62ch; margin-inline: auto; }
#pricing .title .w { display: inline-block; }
.pricing .price-card { max-width: 1000px; width: 100%; display: grid; grid-template-columns: 1fr 1.15fr; gap: clamp(1.6rem, 4vw, 3.5rem); align-items: center; text-align: left; padding: clamp(2rem, 3.5vw, 3rem); }
.price-main { display: flex; flex-direction: column; align-items: flex-start; gap: .5rem; }
.price-card .price-kicker { font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.18em; opacity: .7; }
.pricing .price-card .price { margin-top: .2rem; }
.pricing .price-card .prow { justify-content: flex-start; margin-top: 1.5rem; }
.price-incl { border-left: 1px solid rgba(255,255,255,0.14); padding-left: clamp(1.6rem, 4vw, 3.5rem); }
.price-card .incl-label { font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.16em; opacity: .55; margin: 0 0 1.1rem; }
.price-card .incl { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem 1.4rem; margin: 0; }
.price-card .incl li { display: flex; align-items: flex-start; gap: .6rem; font-size: var(--t-small); opacity: .9; }
.price-card .incl li::before { content: '✓'; color: var(--gold-soft); font-weight: 600; line-height: 1.45; flex: none; }
@media (max-width: 780px) {
  .pricing .price-card { grid-template-columns: 1fr; gap: 1.8rem; text-align: center; }
  .price-main { align-items: center; }
  .pricing .price-card .prow { justify-content: center; }
  .price-incl { border-left: none; border-top: 1px solid rgba(255,255,255,0.14); padding-left: 0; padding-top: 1.7rem; }
  .price-card .incl { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; text-align: left; }
  .price-card .incl-label { text-align: center; }
}
.btn-glass-gold { background: rgba(255,255,255,0.08); -webkit-backdrop-filter: blur(14px) saturate(130%); backdrop-filter: blur(14px) saturate(130%); color: #fff; border: 1px solid rgba(205,167,102,0.5); box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 10px 26px -14px rgba(0,0,0,0.5); transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.btn-glass-gold:hover { background: rgba(205,167,102,0.16); border-color: rgba(205,167,102,0.85); transform: translateY(-2px); }
.btn-glass-gold svg { color: var(--gold-soft); }
.btn-glass-gold:hover svg { transform: translate(3px,-3px); }

/* ---------- testimonial carousel ---------- */
.tcar-head { display: flex; justify-content: space-between; align-items: end; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.tcar-rating { display: flex; align-items: center; gap: .6rem; font-size: var(--t-small); }
.tcar-rating .stars { color: var(--gold); letter-spacing: 2px; }
.tcar-viewport { overflow: hidden; }
.tcar-track { display: flex; gap: 1.5rem; transition: transform .8s var(--ease-soft); will-change: transform; }
.tcar-card { flex: 0 0 auto; width: min(420px, 85vw); background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); padding: clamp(1.6rem,3vw,2.4rem); display: flex; flex-direction: column; gap: 1.4rem; }
.tcar-card .q-mark { font-family: var(--font-serif); font-size: 3rem; color: var(--gold); line-height: .4; }
.tcar-card p { font-size: var(--t-body); color: var(--ink); }
.tcar-author { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.tcar-author .av { width: 46px; height: 46px; border-radius: 50%; background: var(--paper-3); display: grid; place-items: center; font-family: var(--font-serif); color: var(--ink); font-size: 1.2rem; overflow: hidden; flex: none; }
.tcar-author .av img { width: 100%; height: 100%; object-fit: cover; }
.tcar-author .nm { font-weight: 600; font-size: var(--t-small); }
.tcar-author .ro { font-size: var(--t-eyebrow); color: var(--muted); text-transform: uppercase; letter-spacing: 0.12em; }
.tcar-nav { display: flex; gap: .6rem; margin-top: 2rem; }
.tcar-btn { width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); display: grid; place-items: center; color: var(--ink); transition: background .3s, color .3s; }
.tcar-btn:hover { background: var(--ink); color: #fff; }
.tcar-btn svg { width: 18px; height: 18px; }

/* ---------- final CTA (centered premium card) ---------- */
/* Persistent booking CTA + back-to-top */
.floatcta { position: fixed; right: clamp(1rem, 2.5vw, 1.8rem); bottom: clamp(1rem, 2.5vw, 1.8rem); z-index: 95; display: flex; align-items: center; gap: .6rem; opacity: 0; transform: translateY(16px); pointer-events: none; transition: opacity .5s var(--ease), transform .5s var(--ease); }
.floatcta.show { opacity: 1; transform: none; pointer-events: auto; }
.floatcta-book { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold); color: #08121a; font-family: var(--font-hero); font-weight: 600; font-size: .9rem; padding: .8rem 1.2rem; border-radius: 100px; box-shadow: 0 14px 34px -12px rgba(180,136,74,0.65); transition: background .25s var(--ease), transform .25s var(--ease); }
.floatcta-book:hover { background: var(--gold-soft); transform: translateY(-2px); }
.floatcta-top { width: 44px; height: 44px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.22); background: rgba(13,31,41,0.72); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); color: #fff; cursor: pointer; display: grid; place-items: center; flex: none; transition: background .25s var(--ease), border-color .25s var(--ease), color .25s var(--ease), transform .25s var(--ease); }
.floatcta-top:hover { background: var(--gold); border-color: var(--gold); color: #08121a; transform: translateY(-2px); }
@media (max-width: 560px) { .floatcta-book { font-size: .82rem; padding: .7rem 1rem; } .floatcta-top { width: 40px; height: 40px; } }

/* Headline word reveal */
.wr { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .08em; margin-bottom: -.08em; }
.wri { display: inline-block; transform: translateY(115%); transition: transform .65s var(--ease); }
[data-words].is-in .wri { transform: none; }

/* How we work — static, robust */
.journey { background: linear-gradient(180deg, #0b1a22 0%, #0d1f29 100%); color: #fff; }
.journey .section-head.center { text-align: center; max-width: 46rem; margin-inline: auto; margin-bottom: clamp(2rem, 4vw, 3rem); }
.journey .section-head .title { color: #fff; }
.journey .section-head .title .serif { color: var(--gold-soft); }
.journey .section-head .lead { color: rgba(255,255,255,0.75); }
.jgrid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.6vw, 1.5rem); }
.jcard { display: flex; flex-direction: column; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.08); background: #0d1f29; box-shadow: 0 16px 40px -24px rgba(5,26,36,0.6); }
.jcard-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; }
.jcard-b { padding: 1.2rem 1.3rem 1.5rem; }
.jcard-b h3 { font-family: var(--font-hero); font-weight: 600; font-size: 1.18rem; letter-spacing: -0.01em; color: #fff; margin: 0 0 .5rem; }
.jcard-b p { color: rgba(255,255,255,0.7); font-size: .92rem; line-height: 1.55; margin: 0; }
@media (max-width: 900px) { .jgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .jgrid { grid-template-columns: 1fr; } }

/* FAQ (luxury accordion) */
.faq-wrap { max-width: 58rem; }
.faq .section-head { text-align: center; margin-bottom: clamp(1.6rem, 3vw, 2.6rem); }
.faq .section-head .title .serif { color: var(--gold); font-style: italic; }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; padding: clamp(1.1rem, 2.2vw, 1.5rem) .2rem; font-family: var(--font-serif); font-size: clamp(1.15rem, 2vw, 1.5rem); line-height: 1.25; color: var(--ink); transition: color .3s var(--ease); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold); }
.faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }
.faq-ic { position: relative; width: 20px; height: 20px; flex: none; margin-top: .2em; }
.faq-ic::before, .faq-ic::after { content: ''; position: absolute; background: var(--gold); border-radius: 2px; transition: transform .35s var(--ease), opacity .35s var(--ease); }
.faq-ic::before { left: 0; top: 9px; width: 20px; height: 2px; }
.faq-ic::after { top: 0; left: 9px; width: 2px; height: 20px; }
.faq-item[open] .faq-ic::after { transform: rotate(90deg); opacity: 0; }
.faq-a { overflow: hidden; }
.faq-a p { color: var(--muted); font-size: clamp(.98rem, 1.3vw, 1.08rem); line-height: 1.65; max-width: 62ch; margin: 0 0 clamp(1.1rem, 2.2vw, 1.5rem); }
.faq-item[open] .faq-a { animation: faqIn .38s var(--ease); }
@keyframes faqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }

/* Book a consultation band (homepage → contact page) */
.book-band { position: relative; overflow: hidden; isolation: isolate; display: flex; align-items: center; justify-content: space-between; gap: clamp(1.5rem, 4vw, 3rem); flex-wrap: wrap; max-width: 1000px; margin: 0 auto; border-radius: var(--radius-xl); background: linear-gradient(150deg, #0d1f29 0%, #0b1a22 55%, #0d1f29 100%); border: 1px solid rgba(255,255,255,0.06); box-shadow: 0 40px 80px -40px rgba(5,26,36,0.55), inset 0 1px 0 rgba(255,255,255,0.06); padding: clamp(2.4rem, 5vw, 3.4rem) clamp(1.8rem, 5vw, 3.2rem); }
.book-band::before { content: ''; position: absolute; inset: 0; z-index: -1; background: url('../img/build-band.webp') center center / cover no-repeat; opacity: .85; }
.book-band::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(150deg, rgba(11,24,32,0.88) 0%, rgba(13,31,41,0.7) 48%, rgba(11,24,32,0.86) 100%); }
.book-band-c { flex: 1 1 26rem; }
.book-band-c h2 { font-family: var(--font-serif); font-weight: 400; font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.08; color: #fff; margin: 0 0 .7rem; }
.book-band-c h2 .serif { color: var(--gold-soft); }
.book-band-c p { color: rgba(255,255,255,0.78); font-size: var(--t-body); line-height: 1.6; max-width: 46ch; margin: 0; }
.book-band-btn { flex: none; }
@media (max-width: 640px) { .book-band { flex-direction: column; align-items: flex-start; } }
.cta-stage { position: relative; display: flex; justify-content: center; padding-block: 0; }
.cta-stage::before { content: ''; position: absolute; inset: 6% 12%; z-index: 0; background: radial-gradient(56% 60% at 50% 48%, rgba(180,136,74,0.12), transparent 70%); filter: blur(54px); pointer-events: none; }
.partner-wrap { position: relative; z-index: 1; width: 100%; max-width: 780px; background: var(--ink); color: #fff; border: 1px solid rgba(255,255,255,0.08); border-radius: var(--radius-xl); box-shadow: 0 40px 80px -40px rgba(5,26,36,0.55), 0 8px 24px -12px rgba(5,26,36,0.4), inset 0 1px 0 rgba(255,255,255,0.08); padding: clamp(2.4rem, 5vw, 3.6rem) clamp(1.6rem, 5vw, 3rem); overflow: hidden; text-align: center; }
.partner-wrap .pw-bg { position: absolute; inset: 0; z-index: 0; background-size: cover; background-position: center; background-repeat: no-repeat; }
.partner-wrap .pw-bg-a { background-image: url('../img/cta-team.webp'); opacity: 1; transition: opacity 1.2s var(--ease); }
.partner-wrap .pw-bg-b { background-image: url('../img/cta-sunrise.webp'); opacity: 0; transition: opacity 1.2s var(--ease); }
.partner-wrap .pw-scrim { position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, rgba(9,20,27,0.74) 0%, rgba(9,20,27,0.82) 55%, rgba(9,20,27,0.9) 100%); transition: background 1.2s var(--ease); }
.partner-wrap.is-sent .pw-bg-a { opacity: 0; }
.partner-wrap.is-sent .pw-bg-b { opacity: 1; }
.partner-wrap.is-sent .pw-scrim { background: linear-gradient(180deg, rgba(9,20,27,0.46) 0%, rgba(9,20,27,0.62) 58%, rgba(9,20,27,0.8) 100%); }
.partner-wrap > * { position: relative; z-index: 2; }
.partner-wrap h2 { font-family: var(--font-serif); font-size: clamp(2.4rem, 6vw, 4.4rem); color: #fff; margin-bottom: 1rem; }
.partner-wrap h2 .serif { color: var(--gold-soft); background: linear-gradient(100deg, var(--gold-soft) 0%, var(--gold-soft) 42%, #fff4d6 50%, var(--gold-soft) 58%, var(--gold-soft) 100%); background-size: 250% 100%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: foilShine 5s linear infinite; }
.btn-glass { background: rgba(255,255,255,0.10); -webkit-backdrop-filter: blur(14px) saturate(130%); backdrop-filter: blur(14px) saturate(130%); color: #fff; border: 1px solid rgba(255,255,255,0.22); box-shadow: inset 0 1px 0 rgba(255,255,255,0.18), 0 10px 26px -12px rgba(0,0,0,0.55); transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease); }
.btn-glass:hover { background: rgba(255,255,255,0.18); border-color: rgba(255,255,255,0.40); transform: translateY(-2px); }
.btn-glass svg { color: var(--gold-soft); }
.btn-glass:hover svg { transform: translate(3px,-3px); }
@keyframes foilShine { from { background-position: 130% 0; } to { background-position: -130% 0; } }
.partner-wrap .cta-sub { color: rgba(255,255,255,0.72); font-size: var(--t-body); line-height: 1.6; max-width: 52ch; margin: 0 auto; }
.cta-actions { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.cta-link { font-size: var(--t-small); color: rgba(255,255,255,0.6); transition: color .3s var(--ease); }
.cta-link:hover { color: var(--gold-soft); }
/* CTA contact form */
.cta-form { max-width: 560px; margin: 1.7rem auto 0; text-align: left; }
.cta-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.1rem; }
.cta-form .field-full { grid-column: 1 / -1; }
.cta-form label { display: block; font-size: .78rem; color: rgba(255,255,255,0.62); margin-bottom: .45rem; font-weight: 500; }
.cta-form .req { color: var(--gold-soft); }
.cta-form input, .cta-form textarea { width: 100%; font-family: var(--font-body); font-size: var(--t-small); color: #fff; background: rgba(255,255,255,0.06); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.14); border-radius: var(--radius); padding: .8rem 1rem; transition: border-color .28s var(--ease), background .28s var(--ease), box-shadow .28s var(--ease); }
.cta-form textarea { resize: vertical; min-height: 100px; }
.cta-form input::placeholder, .cta-form textarea::placeholder { color: rgba(255,255,255,0.36); }
.cta-form input:focus, .cta-form textarea:focus { outline: none; border-color: rgba(205,167,102,0.65); background: rgba(255,255,255,0.10); box-shadow: 0 0 0 3px rgba(205,167,102,0.16); }
.cta-submit { position: relative; width: 100%; justify-content: center; margin-top: 1.5rem; }
.cta-submit .cta-spinner { position: absolute; left: 50%; top: 50%; width: 18px; height: 18px; margin: -9px 0 0 -9px; border: 2px solid rgba(255,255,255,0.3); border-top-color: #fff; border-radius: 50%; opacity: 0; }
.cta-submit.is-loading { pointer-events: none; }
.cta-submit.is-loading .cta-submit-label, .cta-submit.is-loading svg { opacity: 0; }
.cta-submit.is-loading .cta-spinner { opacity: 1; animation: ctaSpin .7s linear infinite; }
@keyframes ctaSpin { to { transform: rotate(360deg); } }
.cta-alt { margin-top: 1.1rem; text-align: center; font-size: var(--t-small); color: rgba(255,255,255,0.55); }
.cta-alt a { color: #fff; text-decoration: underline; text-underline-offset: 2px; }
.cta-alt a:hover { color: var(--gold-soft); }
@media (max-width: 620px) { .cta-fields { grid-template-columns: 1fr; } }
/* CTA two-state: default form (team bg) crossfades to success (sunrise bg) */
.partner-wrap .cta-sent { display: none; text-align: center; padding: .4rem 0 .2rem; }
.partner-wrap.is-sent .cta-form { display: none; }
.partner-wrap.is-sent .cta-sub { display: none; }
.partner-wrap.is-sent .cta-sent { display: block; animation: ctaSentIn .6s var(--ease) both; }
@keyframes ctaSentIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }
.cta-sent .cta-sent-ic { width: 62px; height: 62px; border-radius: 50%; margin: 0 auto 1.2rem; display: grid; place-items: center; background: rgba(180,136,74,0.18); border: 1px solid var(--gold); color: var(--gold-soft); box-shadow: 0 8px 26px -10px rgba(180,136,74,0.7); }
.cta-sent .cta-sent-ic path { stroke-dasharray: 26; stroke-dashoffset: 26; animation: ctaCheck .55s .2s var(--ease) forwards; }
@keyframes ctaCheck { to { stroke-dashoffset: 0; } }
.cta-sent h3 { font-family: var(--font-serif); font-size: clamp(1.8rem, 3.4vw, 2.4rem); color: #fff; margin-bottom: .5rem; }
.cta-sent h3 .serif { color: var(--gold-soft); font-style: italic; }
.cta-sent p { color: rgba(255,255,255,0.85); font-size: var(--t-body); line-height: 1.6; max-width: 44ch; margin: 0 auto; text-shadow: 0 1px 10px rgba(0,0,0,0.45); }
.trail-shape { position: absolute; width: 16px; height: 16px; border-radius: 50%; background: var(--gold-soft); pointer-events: none; z-index: 1; transform: translate(-50%,-50%); animation: trailout 900ms var(--ease) forwards; }
@keyframes trailout { from { opacity: .9; } to { opacity: 0; transform: translate(-50%,-50%) scale(0); } }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding-block: clamp(3.5rem,6vw,5rem) 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1.3fr 1.2fr; gap: clamp(2rem, 4vw, 3.5rem); }
.footer-grid .fcol { display: flex; flex-direction: column; }
.footer-grid .flabel { font-family: var(--font-mono); font-size: var(--t-eyebrow); text-transform: uppercase; letter-spacing: 0.18em; color: var(--muted-2); margin-bottom: 1.1rem; }
.footer-grid .fcol > a { color: var(--muted); font-size: var(--t-small); padding-block: .38rem; width: fit-content; transition: color .3s var(--ease); }
.footer-grid .fcol > a:hover { color: var(--gold); }
.fcol-brand .brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-hero); font-size: 1.15rem; color: var(--ink); font-weight: 500; letter-spacing: -0.01em; }
.fcol-brand .fmark { width: 20px; height: 20px; flex: none; --seam: #ffffff; }
.fcol-brand .fai { color: var(--muted); }
.fcol-brand .fdesc { color: var(--muted); font-size: var(--t-small); line-height: 1.6; margin: 1rem 0 1.7rem; max-width: 34ch; }
.fdelivery .flabel { display: block; margin-bottom: .7rem; }
.fdelivery ul { display: flex; flex-direction: column; gap: .5rem; }
.fdelivery li { display: flex; align-items: center; gap: 5px; font-size: var(--t-small); color: var(--ink); }
.fdelivery .flag { height: 0.85em; width: auto; border-radius: 1.5px; overflow: hidden; box-shadow: 0 0 0 0.5px rgba(5,26,36,0.10); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 1rem 2rem; flex-wrap: wrap; margin-top: clamp(2.5rem, 5vw, 4rem); padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: var(--t-small); color: var(--muted); }
.flegal { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.flegal a { color: var(--muted); transition: color .3s var(--ease); }
.flegal a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.6rem; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { flex-direction: column; align-items: flex-start; gap: .8rem; } }

/* ---------- reveal ---------- */
[data-fade], [data-fade-item] { opacity: 0; transform: translateY(30px); }
.no-js [data-fade], .no-js [data-fade-item] { opacity: 1; transform: none; }
.manifesto .w { display: inline-block; opacity: 0; will-change: transform, opacity; }
.no-js .manifesto .w { opacity: 1; }

/* ---------- responsive ---------- */
@media (max-width: 860px) { .svc { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-flow: row; } }
@media (max-width: 600px) { .footer-links { gap: 2rem; } }

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  [data-fade], [data-fade-item] { opacity: 1 !important; transform: none !important; }
  .marquee-track { animation: none; }
}

/* ---------- cookie consent (bottom bar) ---------- */
.cookie-banner { position: fixed; left: 0; right: 0; bottom: 0; z-index: 120; visibility: hidden; transform: translateY(120%); transition: transform .55s var(--ease), visibility .55s; }
.cookie-banner.is-visible { visibility: visible; transform: translateY(0); }
.cookie-banner .container { padding-bottom: clamp(1rem, 2vw, 1.5rem); }
.cookie-card { background: rgba(255,255,255,0.92); -webkit-backdrop-filter: blur(16px) saturate(120%); backdrop-filter: blur(16px) saturate(120%); border: 1px solid var(--line-2); border-radius: var(--radius); box-shadow: var(--shadow-soft), 0 24px 54px -30px rgba(5,26,36,0.32); padding: clamp(1.1rem,2vw,1.5rem) clamp(1.2rem,2.5vw,1.8rem); }
.cookie-main { display: flex; align-items: center; justify-content: space-between; gap: 1rem 2rem; flex-wrap: wrap; }
.cookie-text { font-size: var(--t-small); color: var(--muted); max-width: 62ch; margin: 0; }
.cookie-text a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.cookie-text a:hover { color: var(--gold); }
.cookie-actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie-btn { font-family: var(--font-body); font-weight: 500; font-size: var(--t-small); padding: .62rem 1.15rem; border-radius: 100px; transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease), transform .3s var(--ease); }
.cookie-btn.ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.cookie-btn.ghost:hover { border-color: var(--ink); }
.cookie-btn.primary { background: var(--ink); color: #f6fcff; border: 1px solid var(--ink); }
.cookie-btn.primary:hover { transform: translateY(-1px); }
.cookie-cats { display: flex; flex-direction: column; margin-bottom: 1.1rem; }
.cookie-cat { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: .75rem 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.cookie-cat:last-child { border-bottom: none; }
.cookie-cat span { display: flex; flex-direction: column; gap: .15rem; }
.cookie-cat strong { font-weight: 600; font-size: var(--t-small); color: var(--ink); }
.cookie-cat small { font-size: var(--t-eyebrow); color: var(--muted); }
.cookie-cat input { width: 42px; height: 22px; flex: none; accent-color: var(--gold); cursor: pointer; }
.cookie-cat input:disabled { cursor: default; opacity: .6; }
.cookie-panel .cookie-actions { justify-content: flex-end; }
@media (max-width: 640px) { .cookie-main { flex-direction: column; align-items: stretch; } .cookie-actions { justify-content: stretch; } .cookie-main .cookie-btn { flex: 1; text-align: center; } }

/* ---------- legal pages (privacy / cookies / terms) ---------- */
.legal-nav { display: flex; justify-content: space-between; align-items: center; padding: 1.3rem clamp(1.3rem,4vw,3.2rem); border-bottom: 1px solid var(--line); }
.legal-brand { font-family: var(--font-hero); font-weight: 500; font-size: 1.05rem; color: var(--ink); letter-spacing: -0.01em; }
.legal-back { font-size: var(--t-small); color: var(--muted); transition: color .3s var(--ease); }
.legal-back:hover { color: var(--gold); }
.legal { max-width: 760px; margin: 0 auto; padding: clamp(2.5rem,6vw,5rem) clamp(1.3rem,4vw,3.2rem); }
.legal h1 { font-family: var(--font-body); font-weight: 500; font-size: var(--t-h2); letter-spacing: -0.03em; margin: 1rem 0 .5rem; }
.legal-updated { color: var(--muted-2); font-size: var(--t-small); margin-bottom: 2.5rem; }
.legal h2 { font-family: var(--font-body); font-weight: 600; font-size: 1.3rem; margin: 2.2rem 0 .7rem; }
.legal p, .legal li { color: var(--ink); font-size: var(--t-body); line-height: 1.7; }
.legal p { margin-bottom: 1rem; max-width: none; }
.legal ul { padding-left: 1.2rem; list-style: disc; margin-bottom: 1rem; }
.legal a { color: var(--ink); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--gold); }
.legal-note { margin-top: 2.5rem; padding: 1rem 1.2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); color: var(--muted); font-size: var(--t-small); }
.legal-foot { max-width: 760px; margin: 0 auto; padding: 2rem clamp(1.3rem,4vw,3.2rem) 3rem; border-top: 1px solid var(--line); font-size: var(--t-small); color: var(--muted); display: flex; gap: .8rem 1.4rem; flex-wrap: wrap; }
.legal-foot a { color: var(--muted); transition: color .3s var(--ease); }
.legal-foot a:hover { color: var(--gold); }

/* ---------- service detail pages ---------- */
.svc-page { background: var(--paper); }
.svc-wrap { max-width: 860px; margin-inline: auto; padding-inline: clamp(1.3rem,4vw,3.2rem); }
.svc-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1rem clamp(1.3rem,4vw,3.2rem); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; background: rgba(245,242,234,0.82); -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); }
.svc-nav-brand { display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-hero); font-weight: 500; font-size: 1.02rem; color: var(--ink); letter-spacing: -0.01em; }
.svc-nav-brand svg { width: 22px; height: 22px; flex: none; --seam: #f5f2ea; }
.svc-mark { width: 24px; height: 24px; flex: none; display: block; }

/* ===== about split (studio image) ===== */
.about-split { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about-split .section-head { text-align: left; margin-bottom: 1.4rem; }
.about-split .lead { text-align: left; max-width: 60ch; margin: 0; }
.about-visual { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); background: #0b1a22 url('../img/studio-team.webp') center/cover no-repeat; box-shadow: 0 24px 60px -28px rgba(5,26,36,0.4); }
@media (max-width: 820px) { .about-split { grid-template-columns: 1fr; gap: 2rem; } .about-visual { aspect-ratio: 4 / 3; } }

/* ===== services image cards (immersive hover-reveal) ===== */
.svc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 1.6vw, 1.3rem); }
.svc-card { position: relative; aspect-ratio: 3 / 3.7; border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; box-shadow: 0 16px 40px -22px rgba(5,26,36,0.5); }
.svc-card-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .6s var(--ease), filter .5s var(--ease); }
.svc-card-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,18,0.04) 40%, rgba(6,12,18,0.86) 100%); transition: background .5s var(--ease); }
.svc-card-c { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: clamp(1.2rem, 1.8vw, 1.5rem); }
.svc-card-c h3 { font-family: var(--font-hero); font-weight: 600; font-size: clamp(1.05rem, 1.4vw, 1.25rem); letter-spacing: -0.01em; color: #fff; line-height: 1.2; text-shadow: 0 1px 12px rgba(0,0,0,0.5); }
.svc-card-rev { overflow: hidden; max-height: 0; opacity: 0; transform: translateY(8px); transition: max-height .5s var(--ease), opacity .4s var(--ease), transform .5s var(--ease); }
.svc-card-rev p { margin: .6rem 0 .7rem; color: rgba(255,255,255,0.9); font-size: .9rem; line-height: 1.5; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
.svc-card-rev .m { color: var(--gold-soft); font-weight: 500; font-size: .85rem; display: inline-flex; align-items: center; gap: .35rem; }
@media (hover: hover) {
  .svc-card:hover .svc-card-bg { transform: scale(1.06); filter: brightness(0.7); }
  .svc-card:hover .svc-card-scrim { background: linear-gradient(180deg, rgba(6,12,18,0.3) 10%, rgba(6,12,18,0.9) 100%); }
  .svc-card:hover .svc-card-rev { max-height: 180px; opacity: 1; transform: none; }
}
@media (hover: none) {
  .svc-card-rev { max-height: 180px; opacity: 1; transform: none; }
  .svc-card-scrim { background: linear-gradient(180deg, rgba(6,12,18,0.2) 8%, rgba(6,12,18,0.9) 100%); }
}
@media (max-width: 820px) { .svc-cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .svc-cards { grid-template-columns: 1fr; } .svc-card { aspect-ratio: 3 / 2.4; } }
.svc-card { cursor: pointer; }
.svc-card:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.svc-card-actions { display: flex; align-items: center; gap: .75rem; margin-top: .55rem; flex-wrap: wrap; }
.svc-card-learn { color: var(--gold-soft); font-weight: 500; font-size: .85rem; display: inline-flex; align-items: center; gap: .35rem; }
.svc-card-book { position: relative; z-index: 3; background: var(--gold); color: #08121a; font-weight: 600; font-size: .8rem; border: none; border-radius: 100px; padding: .5rem 1rem; cursor: pointer; transition: background .25s, transform .25s var(--ease); }
.svc-card-book:hover { background: var(--gold-soft); transform: translateY(-1px); }

/* ===== contact popup ===== */
#contactModal { position: fixed; inset: 0; z-index: 200; background: rgba(6,12,18,0.66); -webkit-backdrop-filter: blur(7px); backdrop-filter: blur(7px); display: flex; align-items: center; justify-content: center; padding: 1.2rem; opacity: 0; visibility: hidden; transition: opacity .4s var(--ease), visibility .4s; }
#contactModal.open { opacity: 1; visibility: visible; }
#contactModal .cm { position: relative; width: 100%; max-width: 820px; background: rgba(16,20,26,0.9); -webkit-backdrop-filter: blur(26px) saturate(130%); backdrop-filter: blur(26px) saturate(130%); border: 1px solid rgba(255,255,255,0.13); border-radius: 26px; box-shadow: 0 50px 120px -30px rgba(0,0,0,0.75); overflow: hidden; display: grid; grid-template-columns: 0.92fr 1.08fr; transform: translateY(20px) scale(.975); opacity: 0; transition: transform .5s var(--ease), opacity .5s var(--ease); }
#contactModal.open .cm { transform: none; opacity: 1; }
#contactModal .cm::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 5; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
#contactModal .cm-close { position: absolute; top: 1rem; right: 1rem; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); background: rgba(10,16,22,0.4); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); color: #fff; cursor: pointer; display: grid; place-items: center; transition: background .25s, border-color .25s, transform .25s var(--ease); z-index: 6; }
#contactModal .cm-close:hover { background: var(--gold); border-color: var(--gold); color: #08121a; transform: rotate(90deg); }
#contactModal .cm-visual { position: relative; padding: clamp(1.9rem,3vw,2.6rem); display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden; }
#contactModal .cm-bg { position: absolute; inset: 0; background: #08121a url('../img/contact-visual.webp') center/cover no-repeat; }
#contactModal .cm-scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(6,12,18,0.35) 0%, rgba(6,12,18,0.72) 70%, rgba(6,12,18,0.9) 100%), linear-gradient(150deg, rgba(180,136,74,0.22), transparent 55%); }
#contactModal .cm-mark { position: absolute; top: clamp(1.4rem,2.5vw,1.9rem); left: clamp(1.9rem,3vw,2.6rem); z-index: 2; width: 26px; height: 26px; opacity: .95; }
#contactModal .cm-vtext { position: relative; z-index: 2; }
#contactModal .cm-big { font-family: var(--font-hero); font-weight: 600; font-size: clamp(1.5rem,2.4vw,1.95rem); letter-spacing: -0.02em; line-height: 1.16; margin-bottom: 1.1rem; color: #fff; text-shadow: 0 1px 14px rgba(0,0,0,0.5); }
#contactModal .cm-big .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-soft); }
#contactModal .cm-list { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin: 0; padding: 0; }
#contactModal .cm-list li { color: rgba(255,255,255,0.85); font-size: .87rem; display: flex; align-items: center; gap: .6rem; text-shadow: 0 1px 8px rgba(0,0,0,0.5); }
#contactModal .cm-list li svg { color: var(--gold-soft); flex: none; }
#contactModal .cm-form { padding: clamp(1.9rem,3vw,2.6rem); }
#contactModal .cm-eyebrow { font-family: var(--font-mono); font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); }
#contactModal .cm-title { font-family: var(--font-hero); font-weight: 600; font-size: clamp(1.4rem, 2.2vw, 1.85rem); letter-spacing: -0.02em; margin: .5rem 0 .3rem; color: #fff; }
#contactModal .cm-title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-soft); }
#contactModal form { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.3rem; }
#contactModal .cm-row { display: flex; gap: .9rem; }
#contactModal .cm-row .fl { flex: 1; }
#contactModal .fl { position: relative; }
#contactModal .fl input, #contactModal .fl textarea { width: 100%; font-family: var(--font-hero); font-size: .92rem; color: #fff; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.14); border-radius: 12px; padding: 1.25rem .85rem .5rem; transition: border-color .25s, background .25s; outline: none; }
#contactModal .fl textarea { min-height: 92px; resize: vertical; }
#contactModal .fl input:focus, #contactModal .fl textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.09); }
#contactModal .fl label { position: absolute; left: .9rem; top: .85rem; font-size: .9rem; color: rgba(255,255,255,0.5); pointer-events: none; transition: top .2s var(--ease), font-size .2s var(--ease), color .2s var(--ease); }
#contactModal .fl input:focus + label, #contactModal .fl input:not(:placeholder-shown) + label, #contactModal .fl textarea:focus + label, #contactModal .fl textarea:not(:placeholder-shown) + label { top: .42rem; font-size: .66rem; color: var(--gold-soft); letter-spacing: .06em; }
#contactModal .cm-send { position: relative; overflow: hidden; margin-top: .4rem; background: var(--gold); color: #08121a; font-weight: 600; font-size: .95rem; border: none; border-radius: 100px; padding: .9rem 1.4rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: .5rem; transition: transform .25s var(--ease), background .25s; }
#contactModal .cm-send:hover { background: var(--gold-soft); transform: translateY(-1px); }
#contactModal .cm-send .arw { transition: transform .3s var(--ease); }
#contactModal .cm-send:hover .arw { transform: translateX(4px); }
#contactModal .cm-done { text-align: center; padding: 1.5rem 0; }
#contactModal .cm-done .ok { width: 60px; height: 60px; border-radius: 50%; background: rgba(180,136,74,0.16); border: 1px solid var(--gold); display: grid; place-items: center; margin: 0 auto 1.1rem; color: var(--gold-soft); }
#contactModal .cm-done h3 { font-family: var(--font-hero); font-weight: 600; font-size: 1.35rem; margin-bottom: .4rem; color: #fff; }
#contactModal .cm-done p { color: rgba(255,255,255,0.66); font-size: .92rem; }
@media (max-width: 680px) { #contactModal .cm { grid-template-columns: 1fr; max-width: 440px; } #contactModal .cm-visual { display: none; } #contactModal .cm-row { flex-direction: column; } }

/* ===== service detail pages — content ===== */
.svc-nav-cta { display: inline-flex; align-items: center; gap: .5rem; background: var(--gold); color: #08121a; font-family: var(--font-hero); font-weight: 600; font-size: .9rem; padding: .6rem 1.2rem; border-radius: 100px; transition: background .25s var(--ease), transform .25s var(--ease); }
.svc-nav-cta:hover { background: var(--gold-soft); transform: translateY(-1px); }
.svc-body { padding-block: clamp(3rem, 7vw, 5.5rem); }
.svc-body > section { margin-bottom: clamp(2rem, 4vw, 3.2rem); }
.svc-body > section:last-child { margin-bottom: 0; }
.svc-body h2 { font-family: var(--font-hero); font-weight: 600; font-size: clamp(1.5rem, 3vw, 2.1rem); letter-spacing: -0.02em; color: var(--ink); margin: 0 0 1rem; }
.svc-body p { color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.15rem); line-height: 1.75; margin: 0 0 1rem; max-width: 62ch; }
.svc-body ul, .svc-body ol { padding-left: 1.3rem; max-width: 62ch; margin: 0; }
.svc-body li { color: var(--muted); font-size: clamp(1rem, 1.35vw, 1.1rem); line-height: 1.7; margin: 0 0 .7rem; }
.svc-body li::marker { color: var(--gold); }
.svc-cta-band { background: linear-gradient(150deg, #0d1f29 0%, #0b1a22 55%, #0d1f29 100%); color: #fff; padding-block: clamp(3rem, 6vw, 5rem); text-align: center; }
.svc-cta-band .svc-wrap { display: flex; flex-direction: column; align-items: center; gap: 1rem; }
.svc-cta-band h2 { font-family: var(--font-hero); font-weight: 500; font-size: clamp(1.8rem, 4vw, 2.8rem); letter-spacing: -0.03em; color: #fff; margin: 0 0 .6rem; }
.svc-back { color: rgba(255,255,255,0.7); font-size: .9rem; transition: color .25s var(--ease); }
.svc-back:hover { color: var(--gold-soft); }

/* ===== CORE TEAM (about page) ===== */
.about-team { background: var(--ink); color: #fff; overflow: hidden; }
.about-team::before { content: ""; position: absolute; inset: 0; background: radial-gradient(120% 80% at 50% -10%, rgba(205,167,102,0.14), transparent 60%); pointer-events: none; }
.about-team .container { position: relative; z-index: 1; }
.team-head { text-align: center; max-width: 44rem; margin: 0 auto clamp(2.4rem, 5vw, 3.6rem); }
.team-eyebrow { display: inline-block; font-family: var(--font-mono); font-size: .72rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 1rem; }
.team-title { font-family: var(--font-hero); font-weight: 500; font-size: clamp(2rem, 4.6vw, 3.2rem); letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin: 0 0 1rem; }
.team-title .serif { font-family: var(--font-serif); font-style: italic; font-weight: 400; color: var(--gold-soft); }
.team-sub { color: rgba(255,255,255,0.66); font-size: 1.05rem; line-height: 1.7; margin: 0; }

.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.4rem, 3vw, 2.4rem); max-width: 42rem; margin-inline: auto; }
.team-card { display: flex; flex-direction: column; }
.tc-photo { position: relative; aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: #0b1a22; border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 30px 60px -34px rgba(0,0,0,0.7); transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease); }
.tc-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; display: block; filter: saturate(1.02) contrast(1.02); transition: transform .7s var(--ease); }
.tc-photo::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,31,41,0) 55%, rgba(11,26,34,0.55) 100%); pointer-events: none; }
.tc-sheen { position: absolute; top: 0; left: -60%; width: 45%; height: 100%; background: linear-gradient(100deg, transparent, rgba(205,167,102,0.22), transparent); transform: skewX(-16deg); pointer-events: none; opacity: 0; }
.team-card:hover .tc-photo { transform: translateY(-6px); border-color: rgba(205,167,102,0.45); box-shadow: 0 40px 80px -34px rgba(0,0,0,0.8); }
.team-card:hover .tc-photo img { transform: scale(1.04); }
.team-card:hover .tc-sheen { animation: tcSheen 0.9s var(--ease) forwards; }
@keyframes tcSheen { from { left: -60%; opacity: 1; } to { left: 130%; opacity: 0; } }
.tc-body { padding: 1.3rem .2rem 0; }
.tc-name { font-family: var(--font-hero); font-weight: 600; font-size: 1.3rem; letter-spacing: -0.01em; color: #fff; margin: 0 0 .35rem; }
.tc-role { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: .7rem; }
.tc-bio { color: rgba(255,255,255,0.6); font-size: .95rem; line-height: 1.6; margin: 0; }
@media (prefers-reduced-motion: reduce) { .team-card:hover .tc-sheen { animation: none; } }
@media (max-width: 860px) { .team-grid { grid-template-columns: 1fr; max-width: 26rem; margin-inline: auto; gap: 2rem; } }

/* ===== How we work — pulse tracing the cards ===== */
.jgrid { position: relative; }
.jline-svg { position: absolute; inset: 0; width: 100%; height: 100%; overflow: visible; pointer-events: none; z-index: 3; }
.jline-comet { filter: drop-shadow(0 0 5px #cda766) drop-shadow(0 0 12px rgba(205,167,102,0.9)); }
.jline-glow { filter: blur(3px); }
.jcard { transition: border-color .5s var(--ease), box-shadow .5s var(--ease), transform .5s var(--ease); }
.jcard.on { border-color: rgba(205,167,102,0.6); box-shadow: 0 0 0 1px rgba(205,167,102,0.4), 0 26px 60px -26px rgba(205,167,102,0.55); transform: translateY(-4px); }
@media (max-width: 900px) { .jline-svg { display: none; } }

/* ===== How we work — ambient network background ===== */
.journey { overflow: hidden; background: radial-gradient(75% 60% at 50% 8%, rgba(205,167,102,0.13), transparent 60%), linear-gradient(180deg, #0b1a22 0%, #0d1f29 100%); }
.journey .container { position: relative; z-index: 2; }
.jnet { position: absolute; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }
.jvig { position: absolute; inset: 0; z-index: 1; pointer-events: none; background: radial-gradient(72% 68% at 50% 46%, transparent 40%, rgba(11,26,34,0.55) 92%); }

/* nav dropdown caret on Services */
.pillnav .nav-caret { display: inline-block; margin-left: 4px; vertical-align: -1px; opacity: .7; transition: transform .25s var(--ease), opacity .25s var(--ease); }
.pillnav .nav-item:hover .nav-caret, .pillnav .nav-item:focus-within .nav-caret { transform: rotate(180deg); opacity: 1; }

/* ---------- mobile nav (hamburger + slide-in menu) ---------- */
.nav-burger { display: none; }
@media (max-width: 879px) {
  .pillnav .cta { display: none; }
  .nav-burger { display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; width: 46px; height: 46px; border-radius: 100px; background: rgba(18,20,24,0.6); -webkit-backdrop-filter: blur(14px) saturate(120%); backdrop-filter: blur(14px) saturate(120%); border: 1px solid rgba(255,255,255,0.14); box-shadow: 0 8px 24px -12px rgba(5,26,36,0.4); cursor: pointer; -webkit-tap-highlight-color: transparent; }
  .nav-burger span { display: block; height: 2px; width: 20px; background: #fff; border-radius: 2px; transition: transform .32s var(--ease), opacity .2s var(--ease); }
  .nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-burger.is-open span:nth-child(2) { opacity: 0; }
  .nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
body.menu-open { overflow: hidden; }
.mobilemenu { position: fixed; inset: 0; z-index: 200; visibility: hidden; opacity: 0; transition: opacity .35s var(--ease), visibility .35s; }
.mobilemenu.open { visibility: visible; opacity: 1; }
.mm-backdrop { position: absolute; inset: 0; background: rgba(5,12,16,0.72); -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); }
.mm-panel { position: absolute; top: 0; right: 0; height: 100%; width: min(86vw, 350px); background: rgba(14,24,30,0.97); -webkit-backdrop-filter: blur(22px); backdrop-filter: blur(22px); border-left: 1px solid rgba(255,255,255,0.1); box-shadow: -24px 0 64px -24px rgba(0,0,0,0.7); padding: 5.5rem 1.5rem 2rem; display: flex; flex-direction: column; gap: .2rem; overflow-y: auto; -webkit-overflow-scrolling: touch; transform: translateX(100%); transition: transform .4s var(--ease); }
.mobilemenu.open .mm-panel { transform: translateX(0); }
.mm-link { display: block; padding: .95rem .3rem; font-family: var(--font-hero); font-size: 1.14rem; font-weight: 400; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.07); transition: color .25s var(--ease); }
.mm-link:hover, .mm-sublink:hover { color: var(--gold-soft); }
.mm-parent { border-bottom: none; padding-bottom: .35rem; }
.mm-sub { display: flex; flex-direction: column; padding: 0 0 .55rem .85rem; border-bottom: 1px solid rgba(255,255,255,0.07); }
.mm-sublink { display: block; padding: .5rem .3rem; font-family: var(--font-hero); font-size: .96rem; color: rgba(255,255,255,0.64); transition: color .25s var(--ease); }
.mm-cta { margin-top: 1.3rem; text-align: center; background: var(--gold); color: #08121a; font-family: var(--font-hero); font-weight: 600; font-size: 1.02rem; padding: .95rem 1.4rem; border-radius: 100px; transition: background .25s var(--ease); }
.mm-cta:hover { background: var(--gold-soft); }
@media (prefers-reduced-motion: reduce) { .mm-panel, .nav-burger span { transition: none; } }

/* ---------- video testimonial card (YouTube facade) ---------- */
.vcard { position: relative; display: block; width: 100%; aspect-ratio: 16 / 9; border-radius: 20px; overflow: hidden; border: 1px solid var(--line); box-shadow: 0 40px 90px -40px rgba(5,26,36,0.55); transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.vcard:hover { transform: translateY(-6px); box-shadow: 0 54px 110px -40px rgba(5,26,36,0.7); }
.vthumb { display: block; width: 100%; height: auto; }
.vplay { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 84px; height: 84px; border-radius: 50%; background: var(--gold); display: grid; place-items: center; box-shadow: 0 12px 44px rgba(0,0,0,0.45); transition: transform .4s var(--ease), background .4s var(--ease); }
.vcard:hover .vplay { transform: translate(-50%,-50%) scale(1.08); background: var(--gold-soft); }
.vplay svg { width: 32px; height: 32px; color: #08121a; margin-left: 4px; }
.vmeta { position: absolute; left: 0; right: 0; bottom: 0; padding: 2.4rem 1rem .9rem; background: linear-gradient(180deg, transparent, rgba(5,18,26,0.85)); display: flex; justify-content: center; }
.vyt { font-family: var(--font-mono); font-size: var(--t-eyebrow); letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,0.92); }
@media (max-width: 620px) { .vplay { width: 62px; height: 62px; } .vplay svg { width: 24px; height: 24px; } }

.vthumb { width: 100%; height: 100%; object-fit: cover; }
.vcard iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.vcard.is-playing { transform: none; cursor: default; }
.vcard.is-playing:hover { transform: none; }

.vgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.1rem, 2.4vw, 1.9rem); max-width: 1040px; margin: 0 auto; }
.vgrid .vplay { width: 68px; height: 68px; }
.vgrid .vplay svg { width: 26px; height: 26px; }
@media (max-width: 760px) { .vgrid { grid-template-columns: 1fr; max-width: 540px; } }
.vtest { padding-top: clamp(1.5rem, 3vw, 3rem); }

/* wordmark: keep the gap after the logo mark only, not between "skelon" and ".agency" */
.fcol-brand .brand { gap: 0; }
.fcol-brand .brand .logo-wrap { margin-right: 9px; }
.svc-nav-brand { gap: 0; }
.svc-nav-brand .logo-wrap { margin-right: 9px; }


/* ===== discovery section (scoped to #pricing — replaces old pricing card) ===== */
#pricing .price-main { gap: 0; }
#pricing .disc-title { font-family: var(--font-body); font-weight: 500; letter-spacing: -0.02em; font-size: clamp(1.5rem, 2.6vw, 2rem); line-height: 1.18; margin: 0 0 1.25rem; color: inherit; }
#pricing .price-main .disc-p { font-size: 1rem; line-height: 1.75; opacity: .94; margin: 0 0 1rem; max-width: 50ch; }
#pricing .price-main .disc-p:last-of-type { margin-bottom: 1.55rem; }
#pricing .disc-trust { font-size: .84rem; font-weight: 500; line-height: 1.6; opacity: .82; margin: 0 0 1.6rem; max-width: 50ch; }
#pricing .disc-reassure { font-size: .82rem; line-height: 1.5; opacity: .6; margin: 0 0 1.15rem; }
#pricing .price-main .prow { margin-top: 0; }
#pricing .price-card .incl { gap: .85rem 1.3rem; align-content: start; }
#pricing .price-card .incl li { line-height: 1.5; }
