/* ============================================================
   POSITIVE PR — PREMIUM DESIGN SYSTEM
   Archetype: Luxury Authority · Editorial · Political Strategist
   ============================================================ */

:root {
  --navy: #111111;
  --navy-2: #1A1A1A;
  --royal: #C5A059;
  --gold: #C5A059;
  --gold-2: #D4AF37;
  --gold-3: #8A6B2E;
  --terracotta: #C5A059;
  --terracotta-2: #8A6B2E;
  --ink: #0A0A0A;
  --ink-2: #1F1F1F;
  --cream: #F4EFE6;
  --gray-soft: #F4EFE6;
  --gray-2: #E5DFD3;
  --gray-3: #9CA3AF;
  --white: #FFFFFF;
  --line: rgba(255,255,255,0.10);
  --line-dark: rgba(17,17,17,0.10);
  --radius: 4px;
  --ease: cubic-bezier(0.65,0.05,0.36,1);
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --serif-forbidden: 'Inter Tight', sans-serif;
  --font-h: 'Inter Tight', 'Helvetica Now Display', 'Neue Haas Grotesk', sans-serif;
  --font-b: 'Manrope', 'Inter', sans-serif;
  --font-mono: 'Archivo Narrow', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  font-family: var(--font-b);
  background: #FFFFFF;
  color: var(--ink);
  margin: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  cursor: none;
}
@media (max-width: 992px) { body { cursor: auto; } }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold); color: var(--navy); }

/* --- Typography --- */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-h); font-weight: 600; letter-spacing: -0.04em; line-height: 1.02; margin: 0; }
.overline {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.overline::before { content: ""; width: 32px; height: 1px; background: currentColor; opacity: .6; }
.text-gold { color: var(--gold) !important; }
.text-gold-outline {
  color: var(--ink);
  font-style: normal;
  font-weight: 700;
  border-bottom: 3px solid var(--gold);
}
.text-accent { color: var(--ink); font-weight: 700; border-bottom: 3px solid var(--gold); }
.text-accent-clean { color: var(--ink); font-weight: 700; }
.section-title { font-size: clamp(2.5rem, 5vw, 4.5rem); }
.hero-title { font-size: clamp(3rem, 8vw, 7.5rem); letter-spacing: -0.05em; font-weight: 700; }
.lead-2 { font-size: 1.125rem; line-height: 1.6; color: rgba(255,255,255,0.72); font-weight: 400; }
.text-muted-2 { color: rgba(255,255,255,0.55); }

.container-fluid { max-width: 1440px; }

/* --- Grain overlay --- */
.grain-overlay {
  position: fixed; inset: 0; pointer-events: none; z-index: 9999;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.6'/%3E%3C/svg%3E");
}

/* --- Custom cursor --- */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%); transition: transform .18s var(--ease-out), width .3s, height .3s, opacity .3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.cursor-ring { width: 40px; height: 40px; border: 1px solid rgba(197,160,89,0.5); border-radius: 50%; }
.cursor-hover .cursor-ring { width: 70px; height: 70px; border-color: var(--gold); }
@media (max-width: 992px) { .cursor-dot, .cursor-ring { display: none; } }

/* --- Header --- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.72); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(17,17,17,0.06);
  transition: background .4s, padding .4s;
}
.site-header.is-scrolled { background: rgba(255,255,255,0.92); box-shadow: 0 4px 24px rgba(0,0,0,0.05); }
.site-header .brand-mark__word { color: var(--ink); }
.site-header .brand-mark__word em { color: var(--gold); }
.site-header .brand-mark__symbol { border-color: var(--gold); color: var(--gold); background: rgba(255,255,255,0.6); }
.site-header .brand-mark__symbol .dot { color: var(--ink); }
.site-header .main-nav .nav-link { color: rgba(17,17,17,0.7); }
.site-header .main-nav .nav-link:hover,
.site-header .main-nav .nav-link.is-active { color: var(--ink); }
.site-header .menu-toggle { border-color: rgba(17,17,17,0.15); }
.site-header .menu-toggle span { background: var(--ink); }
/* Hide desktop "Start a Conversation" CTA; keep on tablet only (md ≤ w < lg) */
.site-header .btn-premium { display: none !important; }
@media (min-width: 768px) and (max-width: 991.98px) {
  .site-header .btn-premium { display: inline-flex !important; }
}
.brand-mark { display: inline-flex; align-items: center; gap: .75rem; font-family: var(--font-h); font-weight: 700; letter-spacing: -0.03em; }
.brand-mark__symbol {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border: 1px solid var(--gold); color: var(--gold);
  font-size: .85rem; letter-spacing: 0; border-radius: 3px; font-weight: 700;
}
.brand-mark__symbol .dot { color: var(--white); margin: 0 1px; }
.brand-mark__word { font-size: 1.55rem; color: var(--white); letter-spacing: -0.03em; }
.brand-mark__word em { font-style: normal; color: var(--gold); }
.brand-mark--light .brand-mark__word { color: var(--white); }

.main-nav { display: flex; gap: 2.25rem; margin-left: auto; }
@media (min-width: 992px) {
  .site-header .container-fluid > div { justify-content: flex-start !important; }
  .site-header .brand-mark { margin-right: auto; }
}
.main-nav .nav-link {
  color: rgba(255,255,255,0.75); font-family: var(--font-b);
  font-size: .875rem; font-weight: 500; letter-spacing: 0.02em;
  padding: .4rem 0; position: relative;
}
.main-nav .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--gold); transition: width .4s var(--ease-out);
}
.main-nav .nav-link:hover, .main-nav .nav-link.is-active { color: var(--white); }
.main-nav .nav-link:hover::after, .main-nav .nav-link.is-active::after { width: 100%; }

/* Buttons */
.btn-premium {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .85rem 1.5rem; background: var(--gold); color: var(--navy);
  font-family: var(--font-b); font-weight: 600; font-size: .875rem; letter-spacing: 0.02em;
  border: 1px solid var(--gold); border-radius: 999px;
  transition: all .4s var(--ease-out); position: relative; overflow: hidden;
  text-transform: uppercase;
}
.btn-premium:hover { background: transparent; color: var(--white); border-color: var(--white); }
.btn-premium__arrow { display: inline-block; transition: transform .3s var(--ease-out); }
.btn-premium:hover .btn-premium__arrow { transform: translateX(6px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 1.5rem; background: transparent; color: var(--white);
  border: 1px solid rgba(255,255,255,0.25); border-radius: 999px;
  font-size: .875rem; letter-spacing: .02em; font-weight: 500; text-transform: uppercase;
  transition: all .4s var(--ease-out);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Menu toggle */
.menu-toggle {
  width: 44px; height: 44px; background: transparent; border: 1px solid var(--line);
  display: inline-flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer; border-radius: 2px;
}
.menu-toggle span { display: block; width: 18px; height: 1px; background: var(--white); transition: transform .3s; }
.mobile-menu {
  position: fixed; inset: 0; background: var(--navy); z-index: 1100;
  transform: translateY(-100%); transition: transform .7s var(--ease-out);
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__inner { padding: 2rem 1.5rem 3rem; min-height: 100vh; display: flex; flex-direction: column; }
.mobile-nav__item {
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1rem;
  padding: 1.25rem 0; border-bottom: 1px solid var(--line); font-family: var(--font-h); font-size: 2rem;
  font-weight: 500; letter-spacing: -0.03em; color: var(--white);
}
.mobile-nav__num { color: var(--gold); font-size: .875rem; font-family: var(--font-mono); }
.mobile-nav__arrow { color: var(--gold); }
.menu-close { background: none; border: 1px solid var(--line); width: 44px; height: 44px; color: var(--white); border-radius: 2px; }

/* Layout */
main#main { padding-top: 78px; }
section { position: relative; padding: 120px 0; }
@media (max-width: 768px) { section { padding: 80px 0; } }

/* Hero */
.hero {
  min-height: 100vh; display: flex; align-items: center; padding: 140px 0 60px;
  background:
    radial-gradient(circle at 15% 30%, rgba(197,160,89,0.10), transparent 55%),
    radial-gradient(circle at 85% 70%, rgba(197,160,89,0.12), transparent 55%),
    var(--navy);
  overflow: hidden;
}
.hero-eyebrow { color: var(--gold); font-family: var(--font-mono); letter-spacing: 0.3em; font-size: .75rem; }
.hero-title .reveal-line { display: block; overflow: hidden; }
.hero-title .reveal-line > span { display: inline-block; transform: translateY(100%); }
.hero-portrait {
  position: relative; aspect-ratio: 3/4; border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(197,160,89,0.15) 0%, rgba(10,17,40,1) 100%),
    url('https://images.unsplash.com/photo-1506880018603-83d5b814b5a6?w=800&auto=format') center/cover no-repeat;
  filter: grayscale(1) contrast(1.1) brightness(0.7);
  mix-blend-mode: luminosity;
}
.hero-portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, var(--navy) 100%);
}
.hero-portrait__frame {
  position: absolute; inset: -20px; border: 1px solid var(--gold); pointer-events: none;
}
.hero-stats { display: flex; gap: 3rem; margin-top: 3rem; }
.hero-stat__num { font-family: var(--font-h); font-size: 2.5rem; color: var(--gold); letter-spacing: -0.04em; font-weight: 600; }
.hero-stat__lbl { color: rgba(255,255,255,0.6); font-size: .75rem; text-transform: uppercase; letter-spacing: 0.2em; }

.hero-bg-word {
  position: absolute; bottom: -3rem; right: -3rem;
  font-family: var(--font-h); font-size: clamp(8rem, 22vw, 22rem);
  color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05);
  font-weight: 800; letter-spacing: -0.05em; pointer-events: none; line-height: 1;
}
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.6); font-size: .7rem; letter-spacing: 0.3em;
  text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .5rem;
}
.scroll-indicator::after { content: ""; width: 1px; height: 40px; background: linear-gradient(180deg, var(--gold), transparent); animation: scrollLine 2s infinite; }
@keyframes scrollLine { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* ============ HERO v3 — LIGHT / EDITORIAL ============ */
.hero-v2 {
  min-height: auto; padding: 100px 0 40px; position: relative; overflow: hidden;
  background:
    radial-gradient(60% 60% at 88% 20%, rgba(197,160,89,0.10), transparent 55%),
    radial-gradient(50% 60% at 10% 90%, rgba(0,0,0,0.04), transparent 60%),
    #FFFFFF;
  color: var(--ink);
}
.hero-v2__badge {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .5rem .9rem; border: 1px solid rgba(17,17,17,0.10);
  border-radius: 999px; font-family: var(--font-mono); font-size: .72rem;
  letter-spacing: .22em; text-transform: uppercase; color: rgba(17,17,17,0.65);
  background: rgba(255,255,255,0.6);
}
.hero-v2__badge .pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 0 rgba(197,160,89,0.7); animation: badgePulse 2s infinite; }
@keyframes badgePulse { 0%{box-shadow:0 0 0 0 rgba(197,160,89,0.7)} 100%{box-shadow:0 0 0 14px rgba(197,160,89,0)} }
.hero-v2__title {
  font-family: var(--font-h); font-weight: 700; letter-spacing: -0.045em;
  font-size: clamp(2.6rem, 5.2vw, 5rem); line-height: 1.02;
  margin-top: 1.75rem; color: var(--ink);
}
.hero-v2__title .accent { color: var(--ink); position: relative; }
.hero-v2__title .accent::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.14em; background: var(--gold); z-index: -1; opacity: .55; }
.hero-v2__title .thin { font-weight: 400; color: rgba(17,17,17,0.55); }
.hero-v2__sub { margin-top: 1.5rem; color: rgba(17,17,17,0.72); font-size: 1.1rem; max-width: 560px; line-height: 1.55; }
.hero-v2__sub strong { color: var(--ink); }
.hero-v2__meta { margin-top: 1rem; color: rgba(17,17,17,0.55); font-size: .9rem; }
.hero-v2__meta strong { color: var(--gold-3); font-weight: 700; }
.hero-v2__ctas { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.hero-v2 .hero-stat__num { color: var(--ink); }
.hero-v2 .hero-stat__lbl { color: rgba(17,17,17,0.5); }

/* Portrait + gallery mosaic (6-tile) */
.hero-mosaic { position: relative; display: grid; grid-template-columns: repeat(6, 1fr); grid-template-rows: repeat(6, 1fr); gap: 10px; aspect-ratio: 5/6; }
.hero-mosaic__tile { position: relative; overflow: hidden; border-radius: 4px; background: #f0ece5; }
.hero-mosaic__tile img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.15) contrast(1.05); transition: transform 1s var(--ease-out), filter .6s; }
.hero-mosaic__tile:hover img { transform: scale(1.08); filter: grayscale(0) contrast(1.1); }
.hero-mosaic__tile--portrait { grid-column: 1 / span 4; grid-row: 1 / span 6; background: linear-gradient(180deg, #F4EFE6 0%, #E8E2D3 100%); }
.hero-mosaic__tile--portrait img { object-fit: contain; object-position: bottom center; filter: none; }
.hero-mosaic__tile--a { grid-column: 5 / span 2; grid-row: 1 / span 2; }
.hero-mosaic__tile--b { grid-column: 5 / span 2; grid-row: 3 / span 2; }
.hero-mosaic__tile--c { grid-column: 5 / span 1; grid-row: 5 / span 2; }
.hero-mosaic__tile--d { grid-column: 6 / span 1; grid-row: 5 / span 2; background: var(--ink); color: var(--gold); display: flex; align-items: center; justify-content: center; text-align: center; padding: .5rem; }
.hero-mosaic__tile--d span { font-family: var(--font-mono); font-size: .6rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); line-height: 1.4; }
.hero-mosaic__tile--d strong { display: block; font-family: var(--font-h); font-size: 1rem; color: #fff; letter-spacing: -0.02em; margin-top: .35rem; }
@media (max-width: 991px) { .hero-mosaic { max-width: 540px; margin: 3rem auto 0; } }

/* Light hero ticker overrides */
.hero-v2 .hero-ticker { border-top-color: rgba(17,17,17,0.08); border-bottom-color: rgba(17,17,17,0.08); }
.hero-v2 .hero-ticker__item { color: rgba(17,17,17,0.55); }
.hero-v2 .hero-ticker__item .dot { color: var(--gold); }

/* Terracotta btn — repurpose as INK (dark) button */
.btn-terra {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .95rem 1.6rem; background: var(--ink); color: #fff;
  font-family: var(--font-b); font-weight: 600; font-size: .875rem; letter-spacing: 0.03em;
  border: 1px solid var(--ink); border-radius: 999px;
  transition: all .4s var(--ease-out); text-transform: uppercase;
}
.btn-terra:hover { background: var(--gold); border-color: var(--gold); color: var(--ink); }
.btn-terra .arr { display: inline-block; transition: transform .3s; }
.btn-terra:hover .arr { transform: translateX(6px); }

/* Light hero ghost btn */
.hero-v2 .btn-ghost { color: var(--ink); border-color: rgba(17,17,17,0.25); }
.hero-v2 .btn-ghost:hover { border-color: var(--ink); background: var(--ink); color: #fff; }

/* Hero slider (replaces mosaic) */
.hero-slider { position: relative; aspect-ratio: 4/5; overflow: hidden; border-radius: 6px; background: #F4EFE6; box-shadow: 0 30px 80px -30px rgba(0,0,0,0.25); }
.hero-slider .swiper, .hero-slider .swiper-wrapper, .hero-slider .swiper-slide { height: 100%; width: 100%; }
.hero-slider .swiper-slide { position: relative; }
.hero-slider .swiper-slide img { width: 100%; height: 100%; object-fit: cover; }
.hero-slider .swiper-slide.is-portrait { background: linear-gradient(180deg, #F4EFE6 0%, #E8E2D3 100%); }
.hero-slider .swiper-slide.is-portrait img { object-fit: contain; object-position: bottom center; }
.hero-slider__overlay {
  position: absolute; left: 24px; bottom: 24px; z-index: 3;
  background: rgba(17,17,17,0.85); color: #fff; padding: 1rem 1.25rem;
  border-left: 3px solid var(--gold); backdrop-filter: blur(8px);
  max-width: 78%;
}
.hero-slider__overlay .role { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.hero-slider__overlay .name { font-family: var(--font-h); font-size: 1.35rem; letter-spacing: -0.02em; font-weight: 600; margin-top: .35rem; color: #fff; }
.hero-slider__pagination { position: absolute; right: 20px; bottom: 24px; z-index: 3; display: flex; gap: 6px; }
.hero-slider__pagination .swiper-pagination-bullet { width: 24px; height: 3px; background: rgba(255,255,255,0.6); border-radius: 2px; opacity: 1; transition: background .3s; }
.hero-slider__pagination .swiper-pagination-bullet-active { background: var(--gold); }
@media (max-width: 991px) { .hero-slider { max-width: 540px; margin: 3rem auto 0; } }

/* Page-hero readability fix (dark hero with light text) */
.page-hero { background: var(--ink); color: #fff; }
.page-hero .overline { color: var(--gold) !important; }
.page-hero h1 { color: #fff !important; }
.page-hero h1 .text-gold-outline,
.page-hero h1 .text-accent { color: var(--gold); border-bottom-color: var(--gold); }
.page-hero p { color: rgba(255,255,255,0.75) !important; }
.page-hero .page-hero__bg-word { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.08); }

/* Also fix section-navy overline + text-accent for dark bg */
.section-navy .text-accent, .section-navy .text-gold-outline { color: var(--gold); border-bottom-color: var(--gold); }
.hero, .framework, .why, .connect-section { color: #fff; }
.hero .text-accent, .framework .text-accent, .why .text-accent, .connect-section .text-accent,
.hero .text-gold-outline, .framework .text-gold-outline, .why .text-gold-outline, .connect-section .text-gold-outline { color: var(--gold); border-bottom-color: var(--gold); }



/* Ticker */
.hero-ticker {
  margin-top: 3rem; padding: 1.25rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  display: flex; gap: 4rem; overflow: hidden; position: relative;
}
.hero-ticker__track { display: flex; gap: 4rem; animation: tickerRoll 30s linear infinite; white-space: nowrap; }
.hero-ticker__item { font-family: var(--font-h); color: rgba(255,255,255,0.55); font-size: 1rem; letter-spacing: .02em; }
.hero-ticker__item .dot { color: var(--terracotta); margin: 0 1rem; }
@keyframes tickerRoll { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* Terracotta btn variant */
.btn-terra {
  display: inline-flex; align-items: center; gap: .75rem;
  padding: .95rem 1.6rem; background: var(--terracotta); color: #fff;
  font-family: var(--font-b); font-weight: 600; font-size: .875rem; letter-spacing: 0.03em;
  border: 1px solid var(--terracotta); border-radius: 999px;
  transition: all .4s var(--ease-out); text-transform: uppercase;
}
.btn-terra:hover { background: transparent; color: var(--terracotta); }
.btn-terra .arr { display: inline-block; transition: transform .3s; }
.btn-terra:hover .arr { transform: translateX(6px); }

/* Section image */
.section-image { position: relative; overflow: hidden; border: 1px solid var(--line-dark); aspect-ratio: 4/3; }
.section-image img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(.2); transition: transform 1.2s var(--ease-out), filter .6s; }
.section-image:hover img { transform: scale(1.04); filter: grayscale(0); }
.section-image__tag { position: absolute; top: 1rem; left: 1rem; background: var(--terracotta); color: #fff; padding: .35rem .8rem; font-family: var(--font-mono); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }

.section-light { background: var(--white); color: var(--ink); }
.section-light .lead-2 { color: rgba(0,0,0,0.65); }
.section-light .overline::before { background: currentColor; opacity: .5; }
.section-gray { background: var(--gray-soft); color: var(--ink); }
.section-gray .lead-2 { color: rgba(0,0,0,0.65); }
.section-navy { background: var(--navy); color: var(--white); }

/* Trusted by strip */
.trusted-strip { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trusted-strip .swiper-slide {
  display: flex; align-items: center; justify-content: center; height: 60px;
  color: rgba(255,255,255,0.5); font-family: var(--font-h); font-weight: 600; font-size: 1.1rem;
  letter-spacing: 0.02em; opacity: .7; transition: opacity .3s;
}
.trusted-strip .swiper-slide:hover { opacity: 1; color: var(--gold); }
.trusted-strip .trusted-logo {
  border: 1px solid var(--line); padding: .8rem 1.6rem; border-radius: 4px;
  font-family: var(--font-h); font-weight: 700; letter-spacing: -0.02em;
  font-size: 1rem; color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.02);
  display: inline-flex; align-items: center; gap: .5rem;
}
.trusted-strip .trusted-logo::before {
  content: ""; width: 18px; height: 18px; border: 1.5px solid var(--gold);
  border-radius: 50%; display: inline-block;
}
.trusted-strip .trusted-logo.sq::before { border-radius: 2px; transform: rotate(45deg); }
.trusted-strip .trusted-logo.tri::before { border-radius: 0; clip-path: polygon(50% 0, 100% 100%, 0 100%); background: var(--gold); border: none; }

/* Counters */
.counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid var(--line-dark); }
@media (max-width: 768px) { .counter-grid { grid-template-columns: repeat(2,1fr); } }
.counter-item { padding: 3rem 2rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.counter-item:nth-child(4n) { border-right: none; }
.counter-num { font-family: var(--font-h); font-size: 4rem; letter-spacing: -0.04em; color: var(--navy); font-weight: 700; }
.counter-num .plus { color: var(--gold); }
.counter-lbl { font-family: var(--font-mono); font-size: .75rem; text-transform: uppercase; letter-spacing: 0.2em; color: rgba(0,0,0,0.5); margin-top: .5rem; }

/* Framework timeline */
.framework { background: var(--navy); position: relative; }
.framework__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); margin-top: 4rem; border: 1px solid var(--line); }
@media (max-width: 992px) { .framework__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .framework__grid { grid-template-columns: 1fr; } }
.framework__step { background: var(--navy); padding: 2.5rem 2rem; position: relative; transition: background .4s; cursor: pointer; }
.framework__step:hover { background: var(--navy-2); }
.framework__num { font-family: var(--font-mono); color: var(--gold); font-size: .75rem; letter-spacing: 0.2em; }
.framework__title { font-family: var(--font-h); font-size: 1.35rem; margin: 1rem 0 .75rem; font-weight: 500; }
.framework__desc { color: rgba(255,255,255,0.6); font-size: .875rem; line-height: 1.55; }
.framework__step::after { content: ""; position: absolute; top: 2.5rem; right: 2rem; width: 24px; height: 24px; border: 1px solid var(--gold); border-radius: 50%; transition: all .4s; }
.framework__step:hover::after { background: var(--gold); transform: scale(1.2); }

/* How We Work — research sheet */
.hww { background: var(--white); color: var(--ink); }
.hww__sheet { border: 1px solid var(--line-dark); margin-top: 4rem; }
.hww__row {
  display: grid; grid-template-columns: 140px 1fr 1fr;
  border-bottom: 1px solid var(--line-dark);
  min-height: 220px;
}
.hww__row:last-child { border-bottom: none; }
@media (max-width: 768px) { .hww__row { grid-template-columns: 90px 1fr; } .hww__viz { display: none; } }
.hww__num { padding: 2rem 1.5rem; border-right: 1px solid var(--line-dark); font-family: var(--font-h); font-size: 3rem; font-weight: 700; letter-spacing: -0.04em; color: var(--navy); background: var(--gray-soft); }
.hww__body { padding: 2rem 2rem; border-right: 1px solid var(--line-dark); }
.hww__label { font-family: var(--font-mono); font-size: .7rem; text-transform: uppercase; letter-spacing: 0.25em; color: var(--gold-3); }
.hww__title { font-family: var(--font-h); font-size: 1.75rem; margin: .5rem 0 1rem; font-weight: 600; }
.hww__desc { color: rgba(0,0,0,0.65); font-size: .95rem; line-height: 1.6; }
.hww__viz { padding: 2rem; display: flex; align-items: center; justify-content: center; background: linear-gradient(180deg, var(--white), var(--gray-soft)); }
.hww__bars { display: flex; align-items: flex-end; gap: .5rem; width: 100%; height: 140px; }
.hww__bars span { flex: 1; background: linear-gradient(180deg, var(--gold), var(--gold-3)); border-radius: 2px 2px 0 0; opacity: .9; }
.hww__pie { width: 140px; height: 140px; border-radius: 50%; background: conic-gradient(var(--navy) 0 60%, var(--gold) 60% 85%, var(--gray-2) 85% 100%); position: relative; }
.hww__pie::after { content: ""; position: absolute; inset: 24%; background: var(--white); border-radius: 50%; }
.hww__linechart { width: 100%; height: 140px; position: relative; overflow: visible; }
.hww__linechart svg { width: 100%; height: 100%; }
.hww__dots { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; width: 100%; max-width: 180px; }
.hww__dots span { aspect-ratio: 1; background: var(--gray-2); border-radius: 2px; }
.hww__dots span.active { background: var(--gold); }
.hww__dots span.strong { background: var(--navy); }
.hww__grid5 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 4px; }
.hww__grid5 span { padding: .35rem; text-align: center; font-size: .65rem; background: var(--gray-soft); border: 1px solid var(--line-dark); color: var(--navy); font-family: var(--font-mono); letter-spacing: .1em; text-transform: uppercase; }
.hww__grid5 span.hot { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.hww__gauge { position: relative; width: 160px; height: 80px; overflow: hidden; }
.hww__gauge::before { content: ""; position: absolute; inset: 0 0 -100% 0; border: 12px solid var(--gray-2); border-bottom-color: transparent; border-right-color: transparent; border-left-color: transparent; border-radius: 50%; transform: rotate(-90deg); }
.hww__gauge::after { content: ""; position: absolute; inset: 0 0 -100% 0; border: 12px solid transparent; border-top-color: var(--gold); border-radius: 50%; transform: rotate(45deg); }

/* Expertise cards */
.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 4rem; }
@media (max-width: 992px) { .expertise-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .expertise-grid { grid-template-columns: 1fr; } }
.exp-card {
  padding: 2.5rem 2rem; background: rgba(255,255,255,0.02); border: 1px solid var(--line);
  transition: all .5s var(--ease-out); position: relative; overflow: hidden;
  min-height: 260px; display: flex; flex-direction: column; justify-content: space-between;
}
.exp-card::before { content: ""; position: absolute; inset: auto 0 0 0; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out); }
.exp-card:hover { background: rgba(197,160,89,0.05); transform: translateY(-4px); }
.exp-card:hover::before { transform: scaleX(1); }
.exp-card__icon { width: 48px; height: 48px; border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; font-size: 1.2rem; }
.exp-card__title { font-family: var(--font-h); font-size: 1.4rem; margin-bottom: .75rem; font-weight: 500; }
.exp-card__desc { color: rgba(255,255,255,0.6); font-size: .875rem; line-height: 1.55; }
.exp-card__arrow { color: var(--gold); margin-top: 1.5rem; font-size: .875rem; text-transform: uppercase; letter-spacing: .15em; }

/* Industries */
.industries { background: var(--gray-soft); color: var(--ink); }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; margin-top: 4rem; border: 1px solid var(--line-dark); }
@media (max-width: 992px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .industry-grid { grid-template-columns: 1fr; } }
.industry-item { padding: 2.5rem 2rem; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); position: relative; transition: all .4s; cursor: pointer; }
.industry-item:nth-child(4n) { border-right: none; }
.industry-item:hover { background: var(--navy); color: var(--white); }
.industry-item__num { font-family: var(--font-mono); font-size: .7rem; letter-spacing: .25em; color: var(--gold-3); }
.industry-item:hover .industry-item__num { color: var(--gold); }
.industry-item__title { font-family: var(--font-h); font-size: 1.6rem; font-weight: 500; margin-top: 1rem; }
.industry-item__meta { font-size: .8rem; color: rgba(0,0,0,0.55); margin-top: .5rem; }
.industry-item:hover .industry-item__meta { color: rgba(255,255,255,0.6); }

/* Why choose */
.why { background: var(--navy); position: relative; }
.why-contrast { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; margin-top: 4rem; }
@media (max-width: 992px) { .why-contrast { grid-template-columns: 1fr; } }
.why-panel { padding: 2.5rem; border: 1px solid var(--line); background: rgba(255,255,255,0.02); }
.why-panel--dark { background: rgba(255,255,255,0.02); }
.why-panel--gold { background: linear-gradient(180deg, rgba(197,160,89,0.08), transparent); border-color: var(--gold); }
.why-panel h4 { font-size: 1.4rem; margin-bottom: 1.5rem; }
.why-question { padding: 1rem 0; border-top: 1px solid var(--line); font-size: 1.05rem; color: rgba(255,255,255,0.85); font-family: var(--font-h); font-weight: 400; letter-spacing: -0.02em; }
.why-question::before { content: "→ "; color: var(--gold); }

/* Testimonial cards */
.testimonial-card { padding: 2.5rem; background: var(--white); color: var(--ink); border-radius: 4px; position: relative; height: 100%; }
.testimonial-card::before { content: "“"; font-family: var(--font-h); font-size: 6rem; color: var(--gold); line-height: 1; position: absolute; top: 1rem; right: 1.5rem; opacity: .4; }
.testimonial-card__text { font-family: var(--font-h); font-size: 1.15rem; letter-spacing: -0.02em; line-height: 1.5; font-weight: 400; }
.testimonial-card__who { margin-top: 2rem; }
.testimonial-card__name { font-weight: 600; font-family: var(--font-h); }
.testimonial-card__role { font-size: .8rem; color: rgba(0,0,0,0.55); }

/* Books */
.books-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 4rem; }
@media (max-width: 992px) { .books-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 576px) { .books-grid { grid-template-columns: 1fr; } }
.book-card { perspective: 1200px; height: 460px; }
.book-card__inner { position: relative; width: 100%; height: 100%; transform-style: preserve-3d; transition: transform .8s var(--ease-out); }
.book-card:hover .book-card__inner { transform: rotateY(180deg); }
.book-card__face { position: absolute; inset: 0; backface-visibility: hidden; border: 1px solid var(--line); overflow: hidden; }
.book-card__front { display: flex; flex-direction: column; justify-content: flex-end; padding: 2rem; color: var(--white); }
.book-card__back { transform: rotateY(180deg); background: var(--navy-2); padding: 2rem; display: flex; flex-direction: column; }
.book-card__title { font-family: var(--font-h); font-size: 1.6rem; letter-spacing: -0.03em; font-weight: 600; }
.book-card__author { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-family: var(--font-mono); }
.book-card__spine { position: absolute; left: 0; top: 0; bottom: 0; width: 12px; background: var(--gold); }
.book-cover-1 { background: linear-gradient(160deg, #111111 0%, #8A6B2E 130%); }
.book-cover-2 { background: linear-gradient(160deg, #8A6B2E 0%, #C5A059 130%); }
.book-cover-3 { background: linear-gradient(160deg, #0A0A0A 0%, #1A1A1A 100%); }
.book-cover-4 { background: linear-gradient(160deg, #8A3524 0%, #111111 100%); }
.book-cover-5 { background: linear-gradient(160deg, #111111 0%, #6b4c2a 130%); }
.book-cover-6 { background: repeating-linear-gradient(45deg, #111111 0 20px, #1A1A1A 20px 40px); }
.book-badge { position: absolute; top: 1rem; right: 1rem; background: var(--gold); color: var(--navy); font-size: .7rem; padding: .3rem .6rem; letter-spacing: .1em; text-transform: uppercase; font-family: var(--font-mono); }

/* Instagram preview grid */
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; margin-top: 3rem; }
@media (max-width: 576px) { .ig-grid { grid-template-columns: repeat(2, 1fr); } }
.ig-tile { aspect-ratio: 1; position: relative; overflow: hidden; background: var(--navy-2); cursor: pointer; }
.ig-tile__gfx { position: absolute; inset: 0; background-size: cover; background-position: center; filter: grayscale(.3); transition: transform .8s var(--ease-out), filter .5s; }
.ig-tile:hover .ig-tile__gfx { transform: scale(1.08); filter: grayscale(0); }
.ig-tile__overlay { position: absolute; inset: 0; background: rgba(10,17,40,0.85); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s; color: var(--white); font-size: 1.5rem; }
.ig-tile:hover .ig-tile__overlay { opacity: 1; }

/* Connect section */
.connect-section { background: var(--navy); position: relative; overflow: hidden; padding: 120px 0; }
.connect-marquee { position: absolute; top: 50%; left: -10%; right: -10%; transform: translateY(-50%); display: flex; gap: 3rem; opacity: 0.04; pointer-events: none; }
.connect-marquee span { white-space: nowrap; font-family: var(--font-h); font-size: 10rem; letter-spacing: -0.05em; font-weight: 800; color: var(--white); animation: marquee 40s linear infinite; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

.connect-card {
  display: flex; flex-direction: column; padding: 2rem; background: rgba(255,255,255,0.03);
  border: 1px solid var(--line); min-height: 240px; height: 100%;
  transition: all .5s var(--ease-out); position: relative; overflow: hidden;
}
.connect-card:hover { transform: translateY(-6px); border-color: var(--gold); background: rgba(197,160,89,0.05); color: var(--white); }
.connect-card__icon { width: 56px; height: 56px; border: 1px solid var(--gold); color: var(--gold); display: inline-flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 1.75rem; }
.connect-card__label { font-family: var(--font-mono); font-size: .75rem; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.connect-card__value { font-family: var(--font-h); font-size: 1.4rem; margin-top: .5rem; letter-spacing: -0.02em; }
.connect-card__cta { margin-top: auto; padding-top: 1.5rem; color: var(--gold); font-size: .875rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; }
.connect-card__cta span { margin-left: .5rem; display: inline-block; transition: transform .3s; }
.connect-card:hover .connect-card__cta span { transform: translateX(6px); }

/* WA float */
.wa-float {
  position: fixed; right: 1.5rem; bottom: 1.5rem; z-index: 1050;
  width: 60px; height: 60px; background: #25D366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  transition: all .4s var(--ease-out); font-size: 1.6rem;
}
.wa-float:hover { color: #fff; width: auto; padding: 0 1.5rem 0 1.2rem; gap: .75rem; border-radius: 999px; }
.wa-float__pulse { position: absolute; inset: -6px; border: 2px solid #25D366; border-radius: 50%; animation: waPulse 2s infinite; }
.wa-float:hover .wa-float__pulse { display: none; }
.wa-float__label { display: none; font-size: .85rem; font-weight: 600; letter-spacing: .02em; white-space: nowrap; }
.wa-float:hover .wa-float__label { display: inline; }
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.6);opacity:0} }

/* Footer */
.site-footer { background: var(--navy-2); border-top: 1px solid var(--line); padding-top: 4rem; }
.footer-h { font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .25em; font-size: .75rem; color: var(--gold); margin-bottom: 1.25rem; }
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: .75rem; }
.footer-list a { color: rgba(255,255,255,0.65); font-size: .9rem; transition: color .3s; }
.footer-list a:hover { color: var(--gold); }
.footer-list--contact a { display: inline-flex; align-items: center; gap: .6rem; }
.footer-list--contact i { color: var(--gold); width: 18px; }
.footer-lead { color: rgba(255,255,255,0.6); max-width: 380px; font-size: .95rem; }
.newsletter__form { display: flex; gap: 0; border: 1px solid var(--line); }
.newsletter__form input { flex: 1; background: transparent; border: none; padding: .9rem 1rem; color: var(--white); outline: none; font-family: var(--font-b); }
.newsletter__form button { background: var(--gold); color: var(--navy); border: none; padding: .9rem 1.25rem; font-weight: 600; font-family: var(--font-b); letter-spacing: .02em; text-transform: uppercase; font-size: .8rem; cursor: pointer; }
.newsletter__note { color: rgba(255,255,255,0.4); font-size: .75rem; display: block; margin-top: .5rem; }
.socials { display: flex; gap: .75rem; }
.socials a { width: 36px; height: 36px; border: 1px solid var(--line); display: inline-flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); border-radius: 2px; transition: all .3s; }
.socials a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bar { border-top: 1px solid var(--line); color: rgba(255,255,255,0.4); }
.footer-bar a { color: rgba(255,255,255,0.55); }
.footer-bar a:hover { color: var(--gold); }

/* Reveal utilities */
.reveal-word { display: inline-block; overflow: hidden; vertical-align: baseline; }
.reveal-word > span { display: inline-block; transform: translateY(110%); transition: transform .9s var(--ease-out); }
.is-inview .reveal-word > span { transform: translateY(0); }

/* Page hero (interior) */
.page-hero { min-height: 60vh; padding: 200px 0 100px; background: var(--navy); position: relative; overflow: hidden; }
.page-hero .overline { color: var(--gold); }
.page-hero h1 { font-size: clamp(3rem, 7vw, 6rem); font-weight: 700; letter-spacing: -0.05em; margin-top: 1rem; }
.page-hero p { max-width: 640px; margin-top: 1.5rem; color: rgba(255,255,255,0.7); font-size: 1.1rem; line-height: 1.55; }
.page-hero__bg-word { position: absolute; bottom: -4rem; left: -2rem; font-family: var(--font-h); font-weight: 800; font-size: 20rem; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,0.05); pointer-events: none; letter-spacing: -0.05em; line-height: 1; }

/* Journey timeline */
.timeline { position: relative; padding-left: 3rem; margin-top: 3rem; }
.timeline::before { content: ""; position: absolute; left: 12px; top: 0; bottom: 0; width: 1px; background: var(--line); }
.timeline__item { position: relative; padding-bottom: 3rem; }
.timeline__dot { position: absolute; left: -3rem; top: .25rem; width: 24px; height: 24px; border: 1px solid var(--gold); border-radius: 50%; background: var(--navy); }
.timeline__dot::after { content: ""; position: absolute; inset: 6px; background: var(--gold); border-radius: 50%; }
.timeline__year { font-family: var(--font-mono); color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-size: .8rem; }
.timeline__title { font-family: var(--font-h); font-size: 1.4rem; margin: .5rem 0; letter-spacing: -0.02em; }
.timeline__desc { color: rgba(255,255,255,0.65); font-size: .95rem; line-height: 1.55; }

/* Service block */
.service-block { padding: 100px 0; border-bottom: 1px solid var(--line-dark); }
.service-block:last-child { border-bottom: none; }
.service-block__num { font-family: var(--font-mono); color: var(--gold); font-size: .8rem; letter-spacing: .25em; text-transform: uppercase; }
.service-block__title { font-family: var(--font-h); font-size: clamp(2.25rem, 4vw, 3.5rem); letter-spacing: -0.04em; margin: 1rem 0 1.5rem; }
.service-block__desc { color: rgba(0,0,0,0.65); font-size: 1.05rem; line-height: 1.7; }
.service-list { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: .5rem 2rem; }
@media (max-width: 576px) { .service-list { grid-template-columns: 1fr; } }
.service-list li { padding: .75rem 0; border-top: 1px solid var(--line-dark); font-family: var(--font-h); font-weight: 500; color: var(--ink); }
.service-list li::before { content: "→ "; color: var(--gold); font-weight: 600; }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; background: transparent; border: none; text-align: left; padding: 1.75rem 0; font-family: var(--font-h); font-size: 1.35rem; color: var(--white); letter-spacing: -0.02em; display: flex; justify-content: space-between; gap: 2rem; cursor: pointer; }
.faq-question .icon { flex-shrink: 0; color: var(--gold); transition: transform .3s; font-size: 1.1rem; }
.faq-item.is-open .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease-out); color: rgba(255,255,255,0.65); font-size: .95rem; line-height: 1.6; }
.faq-item.is-open .faq-answer { max-height: 320px; padding-bottom: 1.75rem; }

/* Map */
.map-wrap { border: 1px solid var(--line); overflow: hidden; margin-top: 3rem; aspect-ratio: 16/8; background: var(--navy-2); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: invert(0.9) hue-rotate(180deg) saturate(0.8); }

/* Legal typography */
.legal-body { max-width: 780px; margin: 0 auto; padding: 40px 0; color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.85; }
.legal-body h2 { color: var(--gold); font-size: 1.3rem; text-transform: uppercase; letter-spacing: .1em; margin: 3rem 0 1rem; }
.legal-body h3 { color: var(--white); font-size: 1.1rem; margin: 2rem 0 .75rem; }

/* Utility */
.divider-gold { width: 60px; height: 2px; background: var(--gold); display: block; margin: 1.5rem 0; }
.badge-outline { display: inline-flex; align-items: center; gap: .5rem; padding: .3rem .8rem; border: 1px solid var(--gold); color: var(--gold); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-family: var(--font-mono); border-radius: 999px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero-title .reveal-line > span { transform: none; }
}
