/* ============================================================
   EVEREST MEDIA BRANDS — Theme CSS
   Full design system consolidated from all pages.
   Font loading is handled by wp_enqueue_style in functions.php.
============================================================ */

/* ── CSS CUSTOM PROPERTIES (Design Tokens) ── */
:root {
  --bg-primary: #0a0a0a;
  --bg-secondary: #111111;
  --bg-card: #141414;
  --bg-elevated: #1a1a1a;
  --gold: #c9a96e;
  --gold-light: #e2c99a;
  --gold-dark: #a07d45;
  --white: #ffffff;
  --off-white: #f0ece4;
  --grey-light: #b0a898;
  --grey-mid: #6b6560;
  --grey-dark: #2e2c2a;
  --border: rgba(201, 169, 110, 0.15);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1440px;
  --section-pad: 120px;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  background: var(--bg-primary);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 2px;
}

/* ── SELECTION ── */
::selection {
  background: var(--gold-dark);
  color: var(--white);
}

/* ── PRELOADER ── */
#preloader {
  display: none; /* TODO: re-enable */
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  /* display: flex; */
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
}
#preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.preloader-inner {
  text-align: center;
}
.preloader-logo {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold);
  opacity: 0;
  animation: fadeInUp 0.8s 0.3s forwards;
}
.preloader-tagline {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--grey-light);
  margin-top: 10px;
  opacity: 0;
  animation: fadeInUp 0.8s 0.6s forwards;
}
.preloader-bar {
  width: 120px;
  height: 1px;
  background: var(--grey-dark);
  margin: 20px auto 0;
  overflow: hidden;
}
.preloader-bar-fill {
  height: 100%;
  width: 0;
  background: var(--gold);
  animation: barFill 1.5s 0.3s ease forwards;
}
@keyframes barFill {
  to {
    width: 100%;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── CUSTOM CURSOR (desktop only — JS applies this) ── */
.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background 0.2s;
}
.cursor-ring {
  position: fixed;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9997;
  transform: translate(-50%, -50%);
  transition:
    width 0.3s,
    height 0.3s,
    border-color 0.3s;
}
.cursor-dot.expanded {
  width: 10px;
  height: 10px;
  background: var(--gold-light);
}
.cursor-ring.expanded {
  width: 50px;
  height: 50px;
  border-color: var(--gold);
}

/* ── NAVBAR ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 60px;
  z-index: 1000;
  transition: var(--transition);
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(20px);
  padding: 18px 60px;
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.04em;
}
.nav-logo span {
  color: var(--off-white);
  font-weight: 300;
}

/* wp_nav_menu wraps in <ul> with class nav-links */
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
}
.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links a.active,
.nav-links .current-menu-item > a,
.nav-links .current-page-ancestor > a {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after,
.nav-links .current-menu-item > a::after {
  width: 100%;
}

.nav-cta {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dark);
  padding: 10px 24px;
  text-decoration: none;
  transition: var(--transition-fast);
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  transition: var(--transition-fast);
}

/* ── MOBILE MENU ── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-menu a {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--off-white);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}
.mobile-menu a:hover {
  color: var(--gold);
}
.mobile-close {
  position: absolute;
  top: 30px;
  right: 40px;
  font-size: 1.5rem;
  color: var(--grey-light);
  cursor: pointer;
  background: none;
  border: none;
}

/* ── MARQUEE ── */
.marquee-strip {
  background: var(--gold-dark);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}
.marquee-track:hover {
  animation-play-state: paused;
}
.marquee-item {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--bg-primary);
  padding: 0 40px;
}
.marquee-item::after {
  content: "·";
  margin-left: 40px;
  color: rgba(0, 0, 0, 0.4);
}
@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 60px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%), radial-gradient(ellipse at 10% 80%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  grid-column: 1;
  grid-row: 1;
}
.hero-scroll {
  grid-column: 1 / -1;
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  padding: 8px 18px;
  margin-bottom: 40px;
}
.hero-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}
.hero-badge-text {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-light);
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
}
.hero-subtitle {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 520px;
  line-height: 1.8;
  margin-bottom: 52px;
}
.hero-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 48px;
  right: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.hero-scroll span {
  font-size: 0.58rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--grey-mid);
  writing-mode: vertical-lr;
}
.hero-scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: top;
  }
  51% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}

/* ── HERO VISUAL (right side) ── */
.hero-visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.45;
}
.hero-visual-overlay {
  position: relative;
  z-index: 2;
  width: 460px;
  height: 460px;
}

/* Rings */
.hv-ring {
  position: absolute;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hv-ring-1 {
  width: 460px;
  height: 460px;
  border: 1px solid rgba(201, 169, 110, 0.1);
  animation: ringBreath 7s ease-in-out infinite;
}
.hv-ring-2 {
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  animation: ringBreath 7s 1.2s ease-in-out infinite;
}
.hv-ring-3 {
  width: 180px;
  height: 180px;
  border: 1px solid rgba(201, 169, 110, 0.32);
  animation: ringBreath 7s 2.4s ease-in-out infinite;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.045) 0%, transparent 70%);
}
@keyframes ringBreath {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 0.65;
  }
}
.hv-ring-1::before {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow:
    0 0 14px var(--gold),
    0 0 30px rgba(201, 169, 110, 0.5);
  top: 50%;
  left: 50%;
  margin: -3.5px;
  animation: orbitDot1 11s linear infinite;
}
.hv-ring-2::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background: rgba(201, 169, 110, 0.7);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.6);
  top: 50%;
  left: 50%;
  margin: -2.5px;
  animation: orbitDot2 7s linear infinite;
}
.hv-ring-2::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -2px;
  animation: orbitDot2 7s 3.5s linear infinite reverse;
}
@keyframes orbitDot1 {
  from {
    transform: rotate(0deg) translateX(230px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(230px) rotate(-360deg);
  }
}
@keyframes orbitDot2 {
  from {
    transform: rotate(0deg) translateX(160px) rotate(0deg);
  }
  to {
    transform: rotate(360deg) translateX(160px) rotate(-360deg);
  }
}
.hv-cross {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
}
.hv-cross span {
  position: absolute;
}
.hv-cross span:first-child {
  width: 1px;
  height: 100%;
  left: 50%;
  top: 0;
  background: linear-gradient(to bottom, transparent, rgba(201, 169, 110, 0.25), transparent);
}
.hv-cross span:last-child {
  height: 1px;
  width: 100%;
  top: 50%;
  left: 0;
  background: linear-gradient(to right, transparent, rgba(201, 169, 110, 0.25), transparent);
}
.hv-label-top,
.hv-label-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-sans);
  font-size: 0.52rem;
  font-weight: 400;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: rgba(201, 169, 110, 0.45);
  white-space: nowrap;
}
.hv-label-top {
  top: calc(50% - 106px);
}
.hv-label-bottom {
  top: calc(50% + 96px);
}

.hv-stat {
  position: absolute;
  background: rgba(10, 10, 10, 0.82);
  border: 1px solid rgba(201, 169, 110, 0.18);
  backdrop-filter: blur(16px);
  padding: 14px 22px;
  white-space: nowrap;
  opacity: 0;
  animation:
    statReveal 0.8s forwards,
    floatStat 5s ease-in-out infinite;
}
.hv-stat-1 {
  top: 8%;
  right: 0%;
  animation-delay: 1.8s, 1.8s;
}
.hv-stat-2 {
  bottom: 20%;
  right: -4%;
  animation-delay: 2.2s, 2.2s;
}
.hv-stat-3 {
  bottom: 6%;
  left: 2%;
  animation-delay: 2.6s, 2.6s;
}
@keyframes statReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes floatStat {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-9px);
  }
}
.hv-stat-val {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.hv-stat-key {
  font-size: 0.5rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 5px;
}
.hv-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.22) 0%, rgba(201, 169, 110, 0.04) 55%, transparent 80%);
  box-shadow:
    0 0 30px rgba(201, 169, 110, 0.14),
    0 0 80px rgba(201, 169, 110, 0.07),
    inset 0 0 18px rgba(201, 169, 110, 0.08);
  animation: orbGlow 4.5s ease-in-out infinite;
}
@keyframes orbGlow {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    box-shadow:
      0 0 30px rgba(201, 169, 110, 0.14),
      0 0 80px rgba(201, 169, 110, 0.07);
  }
  50% {
    transform: translate(-50%, -50%) scale(1.18);
    box-shadow:
      0 0 55px rgba(201, 169, 110, 0.3),
      0 0 130px rgba(201, 169, 110, 0.12);
  }
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: var(--gold);
  padding: 16px 36px;
  text-decoration: none;
  transition: var(--transition-fast);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--off-white);
  border: 1px solid var(--border);
  padding: 16px 36px;
  text-decoration: none;
  transition: var(--transition-fast);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── STATS BAR ── */
.stats-bar {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 48px 60px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: var(--max-width);
  margin: 0 auto;
}
.stat-item {
  text-align: center;
  padding: 0 40px;
  border-right: 1px solid var(--border);
}
.stat-item:last-child {
  border-right: none;
}
.stat-number {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-light);
}

/* ── SECTION UTILITY ── */
.section {
  padding: var(--section-pad) 60px;
  max-width: var(--max-width);
  margin: 0 auto;
}
.section-label {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-label::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4vw, 4rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-subtitle {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-light);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 64px;
}
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 0 60px;
  max-width: calc(var(--max-width) - 120px);
}
.section-full {
  padding: var(--section-pad) 0;
}
.section-full .inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 60px;
}

/* ── DIVISIONS GRID ── */
.divisions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.division-card {
  background: var(--bg-card);
  padding: 52px 44px;
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
  color: inherit;
}
.division-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.05) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.division-card:hover::before {
  opacity: 1;
}
.division-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.division-number {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gold-dark);
  letter-spacing: 0.2em;
  margin-bottom: 28px;
}
.division-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.division-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--gold);
  fill: none;
}
.division-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}
.division-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
  margin-bottom: 36px;
}
.division-link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap 0.3s;
}
.division-link svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
}

/* ── PHILOSOPHY ── */
.philosophy-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}
.philosophy-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.philosophy-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  border-left: 2px solid var(--gold);
  padding-left: 36px;
}
.philosophy-body {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.9;
}
.philosophy-body p + p {
  margin-top: 20px;
}
.philosophy-values {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.philosophy-value {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--off-white);
}
.philosophy-value::before {
  content: "";
  width: 20px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── BRAND CARDS (home preview) ── */
.brands-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.brand-card {
  background: var(--bg-card);
  padding: 40px 32px;
  border: 1px solid var(--border-subtle);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card:hover {
  border-color: var(--border);
  transform: translateY(-3px);
}
.brand-tag {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201, 169, 110, 0.1);
  padding: 4px 10px;
  display: inline-block;
  margin-bottom: 20px;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.brand-desc {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
}
.brand-arrow {
  position: absolute;
  bottom: 32px;
  right: 32px;
  width: 32px;
  height: 32px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-8px);
  transition: var(--transition-fast);
}
.brand-card:hover .brand-arrow {
  opacity: 1;
  transform: translateX(0);
}
.brand-arrow svg {
  width: 14px;
  height: 14px;
}

/* ── BRAND CARDS LARGE (brands/newsletters page) ── */
.brands-full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 52px;
}
.brand-card-large {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 48px 44px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.brand-card-large:hover {
  border-color: var(--border);
  transform: translateY(-4px);
}
.brand-card-large::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gold-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.brand-card-large:hover::before {
  transform: scaleX(1);
}
.brand-metrics {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--border-subtle);
}
.brand-metric {
  flex: 1;
}
.brand-metric-val {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
}
.brand-metric-label {
  font-size: 0.58rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-top: 4px;
}
.featured-brand {
  grid-column: span 2;
  background: var(--bg-elevated);
}

/* ── CAPABILITIES LIST (home preview) ── */
.capabilities-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border-subtle);
}
.capability-item {
  padding: 44px 40px;
  border-right: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  transition: background 0.3s;
}
.capability-item:hover {
  background: var(--bg-card);
}
.capability-item:nth-child(3n) {
  border-right: none;
}
.capability-num {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  color: var(--gold-dark);
  letter-spacing: 0.15em;
  margin-bottom: 18px;
}
.capability-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.capability-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── CAPABILITIES PAGE — 2-column blocks ── */
.cap-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 60px;
}
.cap-block {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 60px 52px;
  transition: var(--transition);
}
.cap-block:hover {
  border-color: var(--border);
}
.cap-block.dark {
  background: var(--bg-elevated);
}
.cap-number {
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 200;
  color: rgba(201, 169, 110, 0.12);
  line-height: 1;
  margin-bottom: 20px;
}
.cap-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 20px;
}
.cap-text {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.9;
  margin-bottom: 28px;
}
.cap-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cap-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--off-white);
}
.cap-feature::before {
  content: "";
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

/* ── DIFFERENTIATORS (capabilities page) ── */
.differentiator-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.diff-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 44px 40px;
}
.diff-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.diff-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold);
  fill: none;
}
.diff-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.diff-text {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ── COMPARISON TABLE ── */
.vs-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 48px;
  font-size: 0.82rem;
}
.vs-table th {
  padding: 16px 24px;
  text-align: left;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
  border-bottom: 1px solid var(--border-subtle);
}
.vs-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--grey-light);
}
.vs-table tr:last-child td {
  border-bottom: none;
}
.vs-table .emb-col {
  color: var(--gold);
  font-weight: 500;
}
.vs-table .check {
  color: var(--gold);
  font-size: 1rem;
}
.vs-table .cross {
  color: var(--grey-dark);
}
.vs-table tr:hover td {
  background: rgba(201, 169, 110, 0.03);
}

/* ── FILTER TABS ── */
.filter-tabs {
  display: flex;
  gap: 2px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.filter-tab {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-light);
  border: 1px solid var(--border-subtle);
  padding: 10px 20px;
  cursor: pointer;
  background: transparent;
  transition: var(--transition-fast);
}
.filter-tab:hover {
  color: var(--gold);
  border-color: var(--border);
}
.filter-tab.active {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
  font-weight: 500;
}

/* ── AUDIENCE REACH ── */
.global-section {
  background: var(--bg-secondary);
}
.presence-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  margin-top: 60px;
}
.presence-item {
  background: var(--bg-card);
  padding: 28px 24px;
  border: 1px solid var(--border-subtle);
  text-align: center;
  transition: var(--transition);
}
.presence-item:hover {
  border-color: var(--border);
  background: var(--bg-elevated);
}
.presence-flag {
  font-size: 1.6rem;
  margin-bottom: 10px;
}
.presence-city {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.presence-region {
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--grey-mid);
}

/* ── CONTACT ── */
.contact-section {
  position: relative;
  overflow: hidden;
  background: #0a0a0c;
}
/* Thin engineering-grid lines (~202px columns, ~205px rows) */
.contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(225, 225, 225, 0.07) 0.75px, transparent 0.75px), linear-gradient(90deg, rgba(225, 225, 225, 0.07) 0.75px, transparent 0.75px);
  background-size: 202px 205px;
  background-position: 100px 8px;
  pointer-events: none;
  z-index: 0;
}
/* Bolder cross marks at every grid intersection */
.contact-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='202' height='205'%3E%3Cline x1='10' y1='0' x2='10' y2='20' stroke='rgba(225,225,225,0.10)' stroke-width='1.5'/%3E%3Cline x1='0' y1='10' x2='20' y2='10' stroke='rgba(225,225,225,0.10)' stroke-width='1.5'/%3E%3C/svg%3E");
  background-size: 202px 205px;
  background-position: 90px -2px;
  pointer-events: none;
  z-index: 0;
}
/* Edge vignette fades grid lines at perimeter */
.contact-bg-fade {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 55% 55% at 50% 50%, transparent 82%, #0a0a0c 97%);
  pointer-events: none;
  z-index: 1;
}
/* Gold blobs (Figma Ellipse 1527 + 1528) */
.contact-bg-blob {
  position: absolute;
  width: 306px;
  height: 306px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: rgba(200, 169, 126, 0.2);
  box-shadow: 158.6px 158.6px 158.6px rgba(0, 0, 0, 0.45);
  filter: blur(79px);
}
.contact-bg-blob--1 {
  left: -80px;
  bottom: -80px;
}
.contact-bg-blob--2 {
  left: calc(49% - 153px);
  top: 27%;
}
.contact-section .inner {
  position: relative;
  z-index: 2;
}
.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 80px;
  align-items: start;
}
.contact-form-wrap {
  position: relative;
}

/* Form card — Figma: rgba(0,0,0,0.40), 1px rgba(200,169,126,0.30) border, blur(3.1px) */
.contact-form-card {
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(200, 169, 126, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  padding: 40px 68px 48px;
  overflow: visible;
}
.contact-form-heading {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  font-size: 1.5rem;
  color: #c8a97e;
  margin-bottom: 28px;
}
.contact-form-card form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Email input — placeholder-only, no box */
.contact-email-wrap {
  margin-bottom: 0;
}
.contact-email-input {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.35);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  padding: 0 0 18px;
  outline: none;
  width: 100%;
}
.contact-email-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.contact-email-input:focus {
  color: rgba(255, 255, 255, 0.7);
}
.contact-email-input:focus::placeholder {
  color: rgba(255, 255, 255, 0.2);
}
/* Gold separator line (Figma Line 219) */
.contact-divider {
  border: none;
  border-top: 1px solid rgba(200, 169, 126, 0.5);
  margin: 0 0 24px;
}
/* Textarea section */
.contact-textarea-wrap {
  margin-bottom: 20px;
}
.contact-textarea-label {
  display: block;
  color: #ffffff;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  margin-bottom: 14px;
}
.contact-textarea-label .req {
  color: #c8a97e;
}
/* Textarea — Figma: bg #121212, outline 1.22px rgba(200,169,126,0.12) */
.contact-textarea {
  width: 100%;
  min-height: 138px;
  background: #121212;
  border: 1.22px solid rgba(200, 169, 126, 0.12);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 16px;
  outline: none;
  resize: none;
  line-height: 1.6;
  transition: border-color 0.3s;
}
.contact-textarea::placeholder {
  color: #71717a;
  font-size: 0.875rem;
}
.contact-textarea:focus {
  border-color: rgba(200, 169, 126, 0.3);
}

/* Button — inline SVG path (Figma) handles notch shape + gold stroke */
.contact-submit {
  position: relative;
  display: inline-block;
  width: 191px;
  height: 59px;
  background: none;
  border: none;
  cursor: pointer;
  margin-top: 12px;
  outline: none;
  padding: 0;
  vertical-align: top;
}
.contact-submit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.contact-submit-bg path {
  transition: fill 0.25s;
}
.contact-submit-label {
  position: absolute;
  left: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: #f0ede6;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  pointer-events: none;
  transition: color 0.2s;
  white-space: nowrap;
}
.contact-submit-corner {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-submit:hover .contact-submit-bg path {
  fill: #3d3a34;
}
.contact-submit:hover .contact-submit-label {
  color: #fff;
}

/* Contact info column — Figma: gold headings, #9A968E values */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-info-block {
  padding: 22px 0;
}
.contact-info-block:first-child {
  padding-top: 0;
}
.contact-info-block:last-child {
}
.contact-info-heading {
  font-family: var(--font-serif);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 500;
  color: #c8a97e;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}
.contact-info-value {
  font-size: 0.9rem;
  font-weight: 400;
  color: #9a968e;
  line-height: 1.7;
}
.contact-info-value a {
  color: #9a968e;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-value a:hover {
  color: #c8a97e;
}

/* ── TEAM ── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 44px 40px;
  transition: var(--transition);
}
.team-card:hover {
  border-color: var(--border);
}
.team-avatar {
  width: 72px;
  height: 72px;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--gold);
}
.team-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 6px;
}
.team-title {
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.7;
}

/* ── ARCHITECTURE ── */
.arch-diagram {
  border: 1px solid var(--border-subtle);
  padding: 52px;
  position: relative;
}
.arch-level {
  text-align: center;
  margin-bottom: 40px;
}
.arch-node {
  display: inline-block;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  padding: 20px 36px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
}
.arch-node.apex {
  border-color: var(--gold);
  color: var(--gold);
}
.arch-connector {
  width: 1px;
  height: 30px;
  background: var(--border);
  margin: 0 auto;
}
.arch-nodes-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
.arch-nodes-row .arch-node {
  font-size: 0.95rem;
  padding: 14px 24px;
}

/* ── VALUES GRID ── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 48px 44px;
  transition: var(--transition);
}
.value-card:hover {
  border-color: var(--border);
}
.value-number {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.2);
  line-height: 1;
  margin-bottom: 16px;
}
.value-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 14px;
}
.value-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ── ENGAGEMENT / STEPS ── */
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-subtle);
}
.step-item:last-child {
  border-bottom: none;
}
.step-num {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.3);
  line-height: 1;
}
.step-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.step-text {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.8;
}

/* ── INVESTOR / GOVERNANCE METRICS ── */
.investor-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.inv-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  padding: 44px 40px;
}
.inv-label {
  font-size: 0.58rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--grey-mid);
  margin-bottom: 12px;
}
.inv-value {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 8px;
}
.inv-note {
  font-size: 0.78rem;
  color: var(--grey-light);
}

/* ── PAGE HEADER ── */
.page-header {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  padding: 0 60px 80px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-subtle);
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(201, 169, 110, 0.06) 0%, transparent 60%);
}
.page-header-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 60px 60px;
}
.page-header-content {
  position: relative;
  z-index: 2;
}

/* ── FOOTER ── */
footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 60px 60px 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}
.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--grey-mid);
  line-height: 1.8;
  max-width: 280px;
}
.footer-col-title {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-links a {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--grey-light);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col-links a:hover {
  color: var(--gold);
}
.footer-bottom {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-legal {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--grey-mid);
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

/* ── DEFAULT PAGE CONTENT (page.php, single.php) ── */
.emb-prose {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--grey-light);
  line-height: 1.85;
}
.emb-prose h1,
.emb-prose h2,
.emb-prose h3,
.emb-prose h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--white);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.emb-prose h1 {
  font-size: 2rem;
}
.emb-prose h2 {
  font-size: 1.7rem;
}
.emb-prose h3 {
  font-size: 1.4rem;
}
.emb-prose h4 {
  font-size: 1.15rem;
}
.emb-prose p {
  margin-bottom: 20px;
}
.emb-prose a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.5);
}
.emb-prose a:hover {
  text-decoration-color: var(--gold);
}
.emb-prose ul,
.emb-prose ol {
  margin: 0 0 20px 1.4em;
}
.emb-prose li {
  margin-bottom: 8px;
}
.emb-prose blockquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--white);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 32px 0;
  line-height: 1.5;
}
.emb-prose strong {
  color: var(--off-white);
  font-weight: 500;
}
.emb-prose hr {
  border: none;
  border-top: 1px solid var(--border-subtle);
  margin: 40px 0;
}
.emb-prose table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 0.85rem;
}
.emb-prose th {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
  color: var(--grey-light);
  text-align: left;
}
.emb-prose td {
  padding: 12px 18px;
  border-bottom: 1px solid var(--border-subtle);
}

/* ── WORDPRESS ADMIN BAR OFFSET ── */
.admin-bar nav {
  top: 32px;
}
@media screen and (max-width: 782px) {
  .admin-bar nav {
    top: 46px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 1200px) {
  nav {
    padding: 24px 40px;
  }
  nav.scrolled {
    padding: 16px 40px;
  }
  .hero {
    padding: 0 40px;
  }
  .section {
    padding: 80px 40px;
  }
  .stats-bar {
    padding: 40px;
  }
  .brands-list {
    grid-template-columns: repeat(2, 1fr);
  }
  .presence-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  footer {
    padding: 60px 40px 40px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 1100px) {
  .hero {
    grid-template-columns: 1fr !important;
  }
  .hero-visual {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .hero {
    padding: 120px 30px 80px;
    min-height: 100svh;
  }
  .hero-scroll {
    display: none;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid var(--border);
    padding-right: 20px;
  }
  .divisions-grid,
  .capabilities-list {
    grid-template-columns: 1fr;
  }
  .capability-item:nth-child(3n) {
    border-right: 1px solid var(--border-subtle);
  }
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .brands-list {
    grid-template-columns: 1fr;
  }
  .brands-full-grid {
    grid-template-columns: 1fr;
  }
  .featured-brand {
    grid-column: span 1;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .contact-form-card {
    padding: 32px 28px 36px;
  }
  .page-header {
    padding: 0 30px 60px;
  }
  .team-grid {
    grid-template-columns: 1fr;
  }
  .values-grid {
    grid-template-columns: 1fr;
  }
  .investor-metrics {
    grid-template-columns: 1fr;
  }
  .section {
    padding: 60px 30px;
  }
  .presence-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  footer {
    padding: 40px 30px 30px;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cap-hero-grid {
    grid-template-columns: 1fr;
  }
  .differentiator-grid {
    grid-template-columns: 1fr;
  }
  .vs-table {
    font-size: 0.72rem;
  }
  .vs-table th,
  .vs-table td {
    padding: 12px 14px;
  }
  .divider {
    margin: 0 30px;
    max-width: calc(100% - 60px);
  }
  /* page.php / single.php content */
  .emb-page-content {
    padding: 60px 30px 80px !important;
  }
}
