/*
Theme Name:  GCM - Great Creative Media
Theme URI:   https://greatcreative.co.za
Author:      Great Creative Media
Version:     4.2.5
Text Domain: gcm
*/

/* ═══════════════════════════════════════════════════════
   DESIGN TOKENS
═══════════════════════════════════════════════════════ */
:root {
  --ink:          #070B17;
  --ink-2:        #0F1828;
  --ink-3:        #141F32;
  --white:        #F4F0EC;
  --white-60:     rgba(244,240,236,0.72);
  --white-35:     rgba(244,240,236,0.48);
  --white-15:     rgba(244,240,236,0.15);
  --white-06:     rgba(244,240,236,0.06);
  --white-03:     rgba(244,240,236,0.03);
  --gold:         #C9A96E;
  --gold-light:   #DFC090;
  --cyan:         #00D4FF;
  --cyan-dim:     rgba(0,212,255,0.15);
  --border:       rgba(244,240,236,0.09);
  --border-mid:   rgba(244,240,236,0.18);

  --serif:        'Cormorant Garamond', Georgia, serif;
  --sans:         'Inter', system-ui, sans-serif;

  --max:          1200px;
  --max-wide:     1400px;
  --ease:         cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:     cubic-bezier(0.0, 0.0, 0.2, 1);
  --t:            0.3s;

  --r-sm:         4px;
  --r-md:         8px;
  --r-lg:         16px;
}

/* ═══════════════════════════════════════════════════════
   RESET
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ═══════════════════════════════════════════════════════
   GRAIN
═══════════════════════════════════════════════════════ */
#gcm-grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; opacity: 0.028;
  mix-blend-mode: screen;
}

/* ═══════════════════════════════════════════════════════
   CURSOR — standard system cursor
═══════════════════════════════════════════════════════ */
/* Standard cursor throughout - no custom cursor */
.gcm-cursor-glow-global { display: none; }
.gcm-cursor-ring { display: none; }

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY
═══════════════════════════════════════════════════════ */
.display-xl {
  font-family: var(--serif);
  font-size: clamp(52px, 6.5vw, 96px);
  font-weight: 400;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--white);
}
.display-lg {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--white);
}
.display-md {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.display-sm {
  font-family: var(--serif);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
}
em, .italic { font-style: italic; }
.gold { color: var(--gold); }
.cyan-text { color: var(--cyan); }
.dim { color: var(--white-60); }

.label {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.label::before {
  content: '';
  display: block;
  width: 32px; height: 1px;
  background: var(--gold);
  opacity: 0.5;
  flex-shrink: 0;
}

p { color: var(--white-60); margin-bottom: 1em; line-height: 1.75; }
p:last-child { margin-bottom: 0; }

/* ═══════════════════════════════════════════════════════
   LAYOUT
═══════════════════════════════════════════════════════ */
.wrap     { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.wrap-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 48px; }
.wrap-sm  { max-width: 740px; margin: 0 auto; padding: 0 48px; }
section   { padding: 120px 0; }
section.tight { padding: 80px 0; }

.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-center  { display: flex; align-items: center; justify-content: center; }
.text-center  { text-align: center; }

/* Angled divider */
.angled { clip-path: polygon(0 4%, 100% 0, 100% 96%, 0 100%); padding: 140px 0; margin: -2px 0; }

/* ═══════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 14px 32px; border-radius: var(--r-sm);
  transition: all var(--t) var(--ease);
  border: none; line-height: 1; white-space: nowrap;
  position: relative; overflow: hidden;
}
.btn-primary {
  background: var(--gold); color: var(--ink);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  background: transparent;
  border: 1px solid var(--border-mid);
  color: var(--white-60);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white-35);
  font-size: 12px; padding: 10px 24px;
}
.btn-ghost:hover { border-color: var(--border-mid); color: var(--white); }

/* Ripple */
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
}
@keyframes ripple { to { transform: scale(3); opacity: 0; } }

/* ═══════════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════════ */
#gcm-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 28px 0;
  transition: padding var(--t) var(--ease), background var(--t) ease;
}
#gcm-header.scrolled {
  padding: 16px 0;
  background: rgba(8,13,26,0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
#gcm-header .wrap-wide {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}

/* Logo */
.gcm-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.gcm-logo-mark {
  width: 36px; height: 36px;
  border: 1.5px solid var(--gold);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--sans); font-size: 11px; font-weight: 600;
  color: var(--gold); letter-spacing: 1px;
}
.gcm-logo-text {
  font-family: var(--serif); font-size: 13px;
  color: var(--white-60); letter-spacing: 1px;
  line-height: 1.3;
}

/* Nav links */
.gcm-nav { display: flex; align-items: center; }
.gcm-nav ul {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0; flex-wrap: nowrap;
}
.gcm-nav ul li { margin: 0; padding: 0; }
.gcm-nav a {
  font-size: 13px; color: var(--white-35);
  letter-spacing: 0.3px;
  transition: color var(--t);
  position: relative; white-space: nowrap;
}
.gcm-nav a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--gold);
  transition: width 0.35s var(--ease);
}
.gcm-nav a:hover { color: var(--white); }
.gcm-nav a:hover::after { width: 100%; }
.gcm-nav a.current-menu-item { color: var(--white-60); }
.gcm-nav a.current-menu-item::after { width: 100%; }

/* Dropdown */
.gcm-nav .menu-item-has-children { position: relative; }
.gcm-nav .sub-menu {
  position: absolute; top: calc(100% + 8px); left: -20px;
  background: rgba(12,18,32,0.97); backdrop-filter: blur(16px);
  border: 1px solid var(--border); border-radius: var(--r-md);
  padding: 8px 0; min-width: 210px;
  opacity: 0; pointer-events: none;
  transform: translateY(6px); transition: all var(--t) var(--ease);
}
.gcm-nav .menu-item-has-children::after {
  content: ''; position: absolute; top: 100%;
  left: -20px; right: -20px; height: 16px; background: transparent;
}
.gcm-nav .menu-item-has-children:hover .sub-menu {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.gcm-nav .sub-menu li a {
  display: block; padding: 11px 20px;
  font-size: 13px; color: var(--white-35);
}
.gcm-nav .sub-menu li a::after { display: none; }
.gcm-nav .sub-menu li a:hover { color: var(--white); background: var(--white-03); }

/* Work with us CTA */
.gcm-nav-cta {
  font-family: var(--sans); font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 10px 24px;
  background: var(--gold);
  color: #070B17 !important;
  font-weight: 600;
  border: 1px solid var(--gold);
  border-radius: var(--r-sm);
  transition: all var(--t) var(--ease); white-space: nowrap;
}
.gcm-nav-cta:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: #070B17 !important;
}
.gcm-nav-cta::after { display: none !important; }

/* Hamburger */
.gcm-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 4px;
}
.gcm-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white-60); transition: all var(--t);
}
.gcm-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.gcm-hamburger.open span:nth-child(2) { opacity: 0; }
.gcm-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.gcm-mobile-nav {
  display: none; position: fixed; inset: 0;
  background: var(--ink); z-index: 999;
  /* inset:0 alone resolves against the LAYOUT viewport on mobile, which is
     taller than the visible area while the browser chrome is showing — that
     is what pushed the CTA off-screen. dvh tracks the visible area. */
  height: 100vh;
  height: 100dvh;
  padding: 0;
  flex-direction: column;
  overflow: hidden; /* scrolling happens in the inner track */
}
.gcm-mobile-nav.open { display: flex; }
.gcm-mobile-nav ul { display: flex; flex-direction: column; list-style: none; margin: 0; padding: 0; width: 100%; }
/* mobile sub-menus handled in the dropdown block below */
.gcm-mobile-nav a {
  font-family: var(--serif); font-size: 32px; font-weight: 400;
  color: var(--white-35); padding: 16px 0;
  border-bottom: 1px solid var(--border); display: block;
  transition: color var(--t);
}
.gcm-mobile-nav a:hover { color: var(--white); }

/* ═══════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════ */
#gcm-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
#gcm-hero-canvas { position: absolute; inset: 0; width: 100%; height: 100%; }

.hero-inner {
  position: relative; z-index: 2; width: 100%;
  padding: 160px 0 180px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 80px; align-items: center;
}

.hero-available {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--white-35);
  letter-spacing: 0.5px; margin-bottom: 40px;
}
.hero-available-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34,197,94,0.7);
  animation: pulse-dot 2.5s ease-in-out infinite;
}
@keyframes pulse-dot { 0%,100%{opacity:1;transform:scale(1);} 50%{opacity:0.5;transform:scale(1.4);} }

.hero-headline {
  margin-bottom: 0;
  overflow: visible;
}
.hero-line {
  display: block; overflow: visible; opacity: 0;
  transform: translateY(48px);
  padding-bottom: 0.15em; /* prevent descender clipping on g, y, p etc */
}
.hero-line-1 { font-family: var(--serif); font-size: clamp(56px,7vw,104px); font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; color: var(--white); }
.hero-line-2 { font-family: var(--serif); font-size: clamp(56px,7vw,104px); font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; font-style: italic; color: var(--gold); }
.hero-line-3 { font-family: var(--serif); font-size: clamp(56px,7vw,104px); font-weight: 400; line-height: 0.95; letter-spacing: -0.02em; color: var(--white); }

.hero-manifesto {
  font-size: 16px; line-height: 1.7; color: var(--white-35);
  max-width: 400px; margin: 36px 0 40px;
  opacity: 0; transform: translateY(20px);
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; transform: translateY(20px);
}

/* Ticker */
.hero-ticker { display: flex; flex-direction: column; gap: 8px; opacity: 0; transform: translateX(20px); }
.ticker-card {
  background: var(--white-03);
  border: 1px solid var(--border);
  border-left: 1px solid transparent;
  border-radius: var(--r-md); padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: background var(--t), border-color var(--t);
  position: relative; overflow: hidden;
}
.ticker-card::before {
  content: ''; position: absolute; left: 0; top: 0;
  width: 2px; height: 0;
  transition: height 0.4s var(--ease);
  background: var(--gold); /* default, overridden by data-color */
}
.ticker-card:hover::before { height: 100%; }
.ticker-card:hover { background: rgba(201,169,110,0.04); border-color: rgba(201,169,110,0.15); }
/* Colour-coded by data-color attribute */
.ticker-card[data-color="gold"]::before  { background: var(--gold); }
.ticker-card[data-color="gold"]:hover    { background: rgba(201,169,110,0.04); border-color: rgba(201,169,110,0.15); }
.ticker-card[data-color="cyan"]::before  { background: var(--cyan); }
.ticker-card[data-color="cyan"]:hover    { background: rgba(0,212,255,0.04); border-color: rgba(0,212,255,0.15); }
.ticker-card[data-color="white"]::before { background: rgba(244,240,236,0.4); }
.ticker-card[data-color="white"]:hover   { background: rgba(244,240,236,0.03); border-color: rgba(244,240,236,0.12); }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; animation: dot-pulse 3s ease-in-out infinite; }
.ticker-dot.gold   { background: var(--gold); box-shadow: 0 0 6px rgba(201,169,110,0.5); }
.ticker-dot.cyan   { background: var(--cyan); box-shadow: 0 0 6px rgba(0,212,255,0.5); animation-delay: 1s; }
.ticker-dot.dim    { background: var(--white-35); animation-delay: 2s; }
@keyframes dot-pulse { 0%,100%{opacity:1;} 50%{opacity:0.3;} }
.ticker-card-text strong { display: block; font-size: 13px; font-weight: 500; color: var(--white); margin-bottom: 1px; }
.ticker-card-text span   { font-size: 12px; color: var(--white-35); }

/* Hero bottom bar */
.hero-bottom {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 32px 0 28px;
  background: linear-gradient(to top, rgba(7,11,23,0.7) 0%, transparent 100%);
}
.hero-bottom::before {
  content: '';
  position: absolute; top: 0; left: 5%; right: 5%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(201,169,110,0.4) 30%, rgba(201,169,110,0.4) 70%, transparent);
}
/* Warm gold glow behind stats */
.hero-bottom::after {
  content: '';
  position: absolute; top: -40px; left: 50%; 
  transform: translateX(-50%);
  width: 600px; height: 80px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-stats { display: flex; gap: 56px; }
.hero-stat-num {
  font-family: var(--serif); font-size: 36px; font-weight: 400;
  color: var(--white); line-height: 1; margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-num sup { font-size: 18px; color: var(--gold); letter-spacing: 0; vertical-align: super; }
.hero-stat-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(244,240,236,0.45); }

/* Scroll indicator */
.hero-scroll {
  position: absolute; bottom: 28px; right: 48px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.hero-scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.5; animation: scroll-pulse 2s ease-in-out infinite;
}
.hero-scroll-label { font-size: 9px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-35); writing-mode: vertical-rl; }
@keyframes scroll-pulse { 0%,100%{opacity:0.3;} 50%{opacity:0.7;} }

/* ═══════════════════════════════════════════════════════
   MARQUEE
═══════════════════════════════════════════════════════ */
.gcm-marquee-wrap {
  padding: 20px 0; overflow: hidden;
  background: var(--white);
  border-top: 1px solid rgba(7,11,23,0.12);
  border-bottom: 1px solid rgba(7,11,23,0.12);
}
.gcm-marquee { display: flex; animation: marquee 32s linear infinite; white-space: nowrap; }
.gcm-marquee:hover { animation-play-state: paused; }
.gcm-marquee-inner { display: flex; flex-shrink: 0; }
.gcm-marquee-item {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(7,11,23,0.45); padding: 0 36px;
  display: inline-flex; align-items: center; gap: 36px; transition: color var(--t);
}
.gcm-marquee-item:hover { color: rgba(7,11,23,0.75); }
.gcm-marquee-item::after { content: '·'; color: var(--gold); opacity: 0.8; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ═══════════════════════════════════════════════════════
   BRANDS
═══════════════════════════════════════════════════════ */
#gcm-brands {
  padding: 60px 0;
  background: var(--white);
  border-bottom: 1px solid rgba(7,11,23,0.1);
}
.brands-label {
  font-size: 11px; letter-spacing: 3px; text-transform: uppercase;
  color: rgba(7,11,23,0.4); display: block; margin-bottom: 48px;
}
.brands-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(7,11,23,0.1); border-radius: var(--r-lg); overflow: hidden;
}
.brand-item {
  flex: 1; padding: 24px 20px; text-align: center;
  font-family: var(--sans); font-size: 12px; font-weight: 600;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(7,11,23,0.5);
  border-right: 1px solid rgba(7,11,23,0.08);
  transition: all 0.4s var(--ease);
}
.brand-item:last-child { border-right: none; }
.brand-item:hover { color: rgba(7,11,23,0.85); background: rgba(7,11,23,0.03); }

/* ═══════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════ */
#gcm-services { background: var(--ink-2); border-top: 1px solid var(--border); }
.services-header { margin-bottom: 72px; }
.services-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 24px;
}
.services-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden;
}
.service-card {
  padding: 48px 36px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
}
.service-card:nth-child(3n) { border-right: none; }
.service-card:nth-last-child(-n+3) { border-bottom: none; }
.service-card:hover { background: var(--white-03); }
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover::before { transform: scaleX(1); }
/* Colour assignment by position */
.service-card:nth-child(1)::before { background: linear-gradient(to right, var(--gold), transparent); }
.service-card:nth-child(2)::before { background: linear-gradient(to right, var(--cyan), transparent); }
.service-card:nth-child(3)::before { background: linear-gradient(to right, var(--gold), transparent); }
.service-card:nth-child(4)::before { background: linear-gradient(to right, var(--cyan), transparent); }
.service-card:nth-child(5)::before { background: linear-gradient(to right, rgba(244,240,236,0.4), transparent); }
.service-card:nth-child(6)::before { background: linear-gradient(to right, var(--cyan), transparent); }
/* Arrow colour matches card accent */
.service-card:nth-child(2) .service-arrow,
.service-card:nth-child(4) .service-arrow,
.service-card:nth-child(6) .service-arrow { color: var(--cyan); }
.service-num {
  font-family: var(--serif); font-size: 13px;
  color: var(--gold); opacity: 0.6; margin-bottom: 24px;
  display: block; letter-spacing: 1px;
}
.service-card h3 {
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--white); margin-bottom: 14px; line-height: 1.2;
}
.service-card p { font-size: 14px; line-height: 1.7; color: var(--white-35); margin: 0; }
.service-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  color: var(--gold); opacity: 0; margin-top: 24px;
  transition: opacity var(--t), gap var(--t);
}
.service-card:hover .service-arrow { opacity: 1; }
.service-card:hover .service-arrow { gap: 12px; }

/* ═══════════════════════════════════════════════════════
   MOTOR FEATURE
═══════════════════════════════════════════════════════ */
#gcm-motor { background: var(--ink); border-top: 1px solid var(--border); position: relative; overflow: hidden; }
#gcm-motor::before {
  content: ''; position: absolute; top: -300px; right: -300px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(0,212,255,0.025) 0%, transparent 65%);
  pointer-events: none;
}
.motor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.motor-content .label { margin-bottom: 32px; }
.motor-features { margin-top: 40px; display: flex; flex-direction: column; gap: 0; }
.motor-feature {
  background: transparent; padding: 18px 0;
  display: flex; gap: 20px; align-items: flex-start;
  border-bottom: 1px solid var(--border);
  transition: padding-left var(--t);
  position: relative;
}
.motor-feature::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; background: var(--cyan);
  transform: scaleY(0); transform-origin: top;
  transition: transform 0.35s var(--ease);
}
.motor-feature:hover::before { transform: scaleY(1); }
.motor-feature:hover { padding-left: 12px; }
.motor-feature-num {
  font-family: var(--serif); font-size: 12px; color: var(--cyan);
  opacity: 0.5; flex-shrink: 0; padding-top: 2px; letter-spacing: 1px;
}
.motor-feature h4 { font-size: 14px; font-weight: 500; margin-bottom: 3px; color: var(--white); }
.motor-feature p  { font-size: 13px; margin: 0; color: var(--white-35); }

.motor-screen {
  background: var(--ink-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.motor-screen-bar {
  padding: 12px 16px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 7px;
}
.screen-dot { width: 10px; height: 10px; border-radius: 50%; }
.screen-dot:nth-child(1){background:#FF5F57;} .screen-dot:nth-child(2){background:#FFBD2E;} .screen-dot:nth-child(3){background:#28CA41;}
.screen-url { font-size: 11px; color: var(--white-35); margin-left: 8px; }
.motor-screen-body { padding: 24px; }
.mock-card { background: var(--ink-3); border: 1px solid var(--border); border-radius: var(--r-md); overflow: hidden; margin-bottom: 12px; }
.mock-card-img { height: 100px; background: linear-gradient(135deg, var(--ink-3), #1a2540); display: flex; align-items: center; justify-content: center; }
.mock-card-body { padding: 12px; }
.mock-car-name  { font-size: 13px; font-weight: 500; margin-bottom: 3px; color: var(--white); }
.mock-car-price { font-family: var(--serif); font-size: 20px; color: var(--cyan); margin-bottom: 8px; line-height: 1; }
.mock-tags { display: flex; gap: 5px; flex-wrap: wrap; }
.mock-tag { font-size: 10px; padding: 2px 8px; border: 1px solid var(--border); border-radius: 3px; color: var(--white-35); }
.motor-screen-footer {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px;
}
.screen-stat {
  background: var(--ink-3); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 10px; text-align: center;
}
.screen-stat-val { font-family: var(--serif); font-size: 18px; margin-bottom: 2px; }
.screen-stat-val.cyan { color: var(--cyan); }
.screen-stat-val.gold { color: var(--gold); }
.screen-stat-lbl { font-size: 10px; letter-spacing: 1px; text-transform: uppercase; color: var(--white-35); }

/* ═══════════════════════════════════════════════════════
   STATS — EDITORIAL
═══════════════════════════════════════════════════════ */
#gcm-stats { background: var(--ink-2); border-top: 1px solid var(--border); padding: 0; }
.stats-row {
  display: grid; grid-template-columns: repeat(4,1fr);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-block {
  padding: 80px 48px; border-right: 1px solid var(--border);
}
.stat-block:last-child { border-right: none; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 400; line-height: 1; letter-spacing: -0.03em;
  color: var(--white); margin-bottom: 12px;
}
.stat-num sup { font-size: 32px; color: var(--gold); letter-spacing: 0; vertical-align: super; }
.stat-label { font-size: 11px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--white-35); }

/* ═══════════════════════════════════════════════════════
   PORTFOLIO
═══════════════════════════════════════════════════════ */
#gcm-portfolio { background: var(--ink); border-top: 1px solid var(--border); }
.portfolio-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 64px; flex-wrap: wrap; gap: 24px; }

/* Editorial list layout */
.portfolio-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
.portfolio-row {
  display: grid; grid-template-columns: 80px 1fr 320px 120px;
  align-items: center; gap: 40px;
  padding: 32px 0; border-bottom: 1px solid var(--border);
  transition: background var(--t);
  cursor: pointer;
}
.portfolio-row:hover { background: var(--white-03); margin: 0 -48px; padding: 32px 48px; }
.portfolio-row-num { font-family: var(--serif); font-size: 14px; color: var(--gold); opacity: 0.5; letter-spacing: 1px; }
.portfolio-row-title { font-family: var(--serif); font-size: 24px; font-weight: 400; color: var(--white); transition: color var(--t); }
.portfolio-row:hover .portfolio-row-title { color: var(--gold); }
.portfolio-row-thumb {
  aspect-ratio: 16/9; border-radius: var(--r-md); overflow: hidden;
  background: var(--ink-3);
}
.portfolio-row-thumb img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.portfolio-row-thumb video { width: 100%; height: 100%; object-fit: cover; }
.portfolio-row:hover .portfolio-row-thumb img { transform: scale(1.06); }
.portfolio-row-cat {
  font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--white-35); text-align: right;
}

/* Grid fallback for portfolio page */
.portfolio-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 2px; background: var(--border); }
.portfolio-item { background: var(--ink-2); overflow: hidden; position: relative; }
.portfolio-item:first-child { grid-column: 1/-1; }
.portfolio-thumb { aspect-ratio: 16/9; overflow: hidden; position: relative; }
.portfolio-item:first-child .portfolio-thumb { aspect-ratio: 21/9; }
.portfolio-thumb img  { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.portfolio-thumb video { width: 100%; height: 100%; object-fit: cover; }
.portfolio-item:hover .portfolio-thumb img { transform: scale(1.04); }
.portfolio-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(8,13,26,0.92) 0%, rgba(8,13,26,0.15) 50%, transparent 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 36px; opacity: 0; transition: opacity 0.35s var(--ease);
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-item-num { font-family: var(--serif); font-size: 12px; color: var(--gold); letter-spacing: 2px; margin-bottom: 8px; }
.portfolio-cat-tag {
  position: absolute; top: 20px; left: 20px;
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 12px; background: rgba(8,13,26,0.7); backdrop-filter: blur(4px);
  border: 1px solid var(--border); border-radius: 3px; color: var(--gold);
}
.portfolio-info { padding: 24px 28px; }
.portfolio-info h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.portfolio-info p  { font-size: 13px; color: var(--white-35); margin: 0; }
.portfolio-filters { display: flex; gap: 8px; margin-bottom: 48px; flex-wrap: wrap; }
.filter-btn {
  font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 20px; border: 1px solid var(--border);
  border-radius: 100px; color: var(--white-35); background: none;
  transition: all var(--t);
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--gold); color: var(--gold);
  background: rgba(201,169,110,0.06);
}

/* ═══════════════════════════════════════════════════════
   PROCESS
═══════════════════════════════════════════════════════ */
#gcm-process { background: var(--ink-2); border-top: 1px solid var(--border); }
.process-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden; margin-top: 64px;
}
.process-step {
  padding: 56px 44px; border-right: 1px solid var(--border);
  transition: background var(--t), padding-left var(--t);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--white-03); padding-left: 52px; }
.process-step::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 2px; transform: scaleY(0); transform-origin: top;
  transition: transform 0.4s var(--ease);
}
.process-step:nth-child(1)::before { background: var(--gold); }
.process-step:nth-child(2)::before { background: var(--cyan); }
.process-step:nth-child(3)::before { background: var(--gold); }
.process-step:hover::before { transform: scaleY(1); }
.process-step-num {
  font-family: var(--serif); font-size: 80px; font-weight: 400;
  color: var(--white-06); line-height: 1; margin-bottom: 28px;
  letter-spacing: -3px;
}
.process-step h3 { font-family: var(--serif); font-size: 24px; font-weight: 400; margin-bottom: 16px; }
.process-step p  { font-size: 14px; color: var(--white-35); line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════ */
#gcm-testimonials { background: var(--ink); border-top: 1px solid var(--border); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--border); border-radius: var(--r-lg);
  overflow: hidden;
}
.testimonial-card {
  padding: 48px 36px; border-right: 1px solid var(--border);
  transition: background var(--t);
  position: relative;
}
.testimonial-card:last-child { border-right: none; }
.testimonial-card:hover { background: var(--white-03); }
.testimonial-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.testimonial-card:nth-child(1)::before { background: linear-gradient(to right, var(--gold), transparent); }
.testimonial-card:nth-child(2)::before { background: linear-gradient(to right, var(--cyan), transparent); }
.testimonial-card:nth-child(3)::before { background: linear-gradient(to right, var(--gold), transparent); }
.testimonial-card:hover::before { transform: scaleX(1); }
.testimonial-stars { color: var(--gold); font-size: 12px; letter-spacing: 2px; margin-bottom: 20px; }
.testimonial-quote {
  font-family: var(--serif); font-size: 17px; font-style: italic;
  line-height: 1.7; color: var(--white-60); margin-bottom: 28px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(201,169,110,0.08); border: 1px solid rgba(201,169,110,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 500; color: var(--gold); flex-shrink: 0; overflow: hidden;
}
.testimonial-name    { font-size: 14px; font-weight: 500; color: var(--white); margin-bottom: 2px; }
.testimonial-company { font-size: 12px; color: var(--white-35); }

/* ═══════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════ */
#gcm-pricing { background: var(--ink-2); border-top: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; align-items: start; }
.pricing-card {
  background: var(--ink); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 44px 36px;
  transition: border-color var(--t); position: relative;
}
.pricing-card.featured { border-color: rgba(201,169,110,0.3); }
.pricing-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; border-radius: var(--r-lg) var(--r-lg) 0 0;
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
  background: linear-gradient(to right, var(--gold), transparent);
}
.pricing-card:hover::before { transform: scaleX(1); }
.pricing-card.featured::before { transform: scaleX(1); background: var(--gold); }
.pricing-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  font-size: 10px; letter-spacing: 2px; text-transform: uppercase;
  padding: 5px 18px; background: var(--gold); color: var(--ink);
  border-radius: 100px; font-weight: 600; white-space: nowrap;
}
.pricing-name   { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-35); margin-bottom: 24px; }
.pricing-price  { font-family: var(--serif); font-size: 48px; font-weight: 400; color: var(--white); line-height: 1; margin-bottom: 4px; letter-spacing: -0.02em; }
.pricing-price sup { font-size: 20px; color: var(--gold); vertical-align: super; margin-right: 2px; letter-spacing: 0; }
.pricing-period { font-size: 13px; color: var(--white-35); margin-bottom: 32px; }
.pricing-divider { height: 1px; background: var(--border); margin-bottom: 28px; }
.pricing-features { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 12px; font-size: 14px; color: var(--white-60); }
.pricing-feature .check { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pricing-feature .cross { color: var(--white-15); flex-shrink: 0; margin-top: 2px; }
.pricing-note { font-size: 12px; color: var(--white-35); text-align: center; margin-top: 16px; }

/* ═══════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════ */
#gcm-faq { background: var(--ink); border-top: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; background: none; border: none;
  padding: 28px 0; display: flex; align-items: center;
  justify-content: space-between; gap: 20px; text-align: left; cursor: pointer;
}
.faq-question-text { font-family: var(--serif); font-size: 20px; font-weight: 400; color: var(--white); }
.faq-icon {
  width: 28px; height: 28px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white-35); font-size: 18px; flex-shrink: 0;
  transition: all var(--t);
}
.faq-item.open .faq-icon { border-color: var(--gold); color: var(--gold); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-answer-inner { padding-bottom: 28px; font-size: 15px; color: var(--white-35); line-height: 1.8; }
.faq-item.open .faq-answer { max-height: 500px; }

/* ═══════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════ */
.gcm-cta-section {
  padding: 160px 0; text-align: center;
  background: var(--ink-2); position: relative; overflow: hidden;
}
.gcm-cta-section::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.gcm-cta-headline {
  font-family: var(--serif);
  font-size: clamp(40px, 5.5vw, 76px);
  font-weight: 400; line-height: 1.05;
  color: var(--white); margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.gcm-cta-headline em { color: var(--gold); }
.gcm-cta-section p { max-width: 480px; margin: 0 auto 48px; font-size: 16px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-contact { margin-top: 40px; font-size: 13px; color: var(--white-35); }
.cta-contact a { color: var(--white-60); border-bottom: 1px solid var(--border); padding-bottom: 1px; transition: color var(--t), border-color var(--t); }
.cta-contact a:hover { color: var(--gold); border-color: var(--gold); }

/* ═══════════════════════════════════════════════════════
   NEWS
═══════════════════════════════════════════════════════ */
#gcm-news { background: var(--ink); border-top: 1px solid var(--border); }
.news-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.news-card { background: var(--ink-2); transition: background var(--t); }
.news-card:hover { background: var(--white-03); }
.news-thumb { aspect-ratio: 16/9; overflow: hidden; background: var(--ink-3); }
.news-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.news-card:hover .news-thumb img { transform: scale(1.04); }
.news-body { padding: 28px; }
.news-meta { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }
.news-cat  { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.news-date { font-size: 11px; color: var(--white-35); }
.news-body h3 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 10px; line-height: 1.2; }
.news-body p  { font-size: 14px; margin-bottom: 16px; color: var(--white-35); }
.news-link { font-size: 12px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); display: inline-flex; align-items: center; gap: 8px; transition: gap var(--t); }
.news-link:hover { gap: 12px; }

/* ═══════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════ */
.contact-grid { display: grid; grid-template-columns: 1fr 480px; gap: 100px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-icon { width: 40px; height: 40px; background: var(--white-03); border: 1px solid var(--border); border-radius: var(--r-md); display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-info-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--white-35); margin-bottom: 4px; }
.contact-info-value { font-size: 15px; font-weight: 500; color: var(--white); }
.contact-staff { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.staff-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-md); padding: 22px; transition: border-color var(--t); }
.staff-card:hover { border-color: var(--border-mid); }
.staff-name { font-family: var(--serif); font-size: 18px; font-weight: 400; margin-bottom: 12px; color: var(--white); }
.staff-detail { font-size: 13px; color: var(--white-35); display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.staff-detail a { color: var(--white-35); transition: color var(--t); }
.staff-detail a:hover { color: var(--gold); }
.contact-map { margin-top: 32px; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.contact-map iframe { display: block; width: 100%; }
.contact-form-wrap { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 48px; }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
#gcm-footer { background: var(--ink-2); border-top: 1px solid var(--border); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 280px 1fr 1fr 1fr; gap: 64px; margin-bottom: 64px; }
.footer-brand p { font-size: 14px; color: var(--white-35); line-height: 1.7; margin: 16px 0 24px; }
.footer-social { display: flex; gap: 8px; }
.social-link { width: 34px; height: 34px; border: 1px solid var(--border); border-radius: var(--r-sm); display: flex; align-items: center; justify-content: center; color: var(--white-35); transition: all var(--t); }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.footer-col h5 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--white-35); margin-bottom: 24px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a { font-size: 14px; color: var(--white-35); transition: color var(--t); }
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom { border-top: 1px solid var(--border); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; }
.footer-bottom p { font-size: 12px; color: var(--white-35); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 12px; color: var(--white-35); transition: color var(--t); }
.footer-bottom-links a:hover { color: var(--white-60); }

/* WhatsApp */
.gcm-whatsapp-float { position: fixed; bottom: 32px; right: 32px; z-index: 998; width: 50px; height: 50px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); transition: transform var(--t); color: #fff; }
.gcm-whatsapp-float:hover { transform: scale(1.08); }

/* ═══════════════════════════════════════════════════════
   GRAVITY FORMS
═══════════════════════════════════════════════════════ */
.gform_wrapper.gravity-theme .gfield_label { font-size: 11px !important; font-weight: 500 !important; color: var(--white-35) !important; margin-bottom: 8px !important; letter-spacing: 1.5px; text-transform: uppercase; }
.gform_wrapper.gravity-theme input,
.gform_wrapper.gravity-theme textarea,
.gform_wrapper.gravity-theme select { background: var(--white-03) !important; border: 1px solid var(--border) !important; border-radius: var(--r-sm) !important; color: var(--white) !important; padding: 14px 16px !important; font-size: 14px !important; font-family: var(--sans) !important; transition: border-color var(--t) !important; width: 100% !important; }
.gform_wrapper.gravity-theme input:focus,
.gform_wrapper.gravity-theme textarea:focus { border-color: var(--gold) !important; outline: none !important; box-shadow: none !important; }
.gform_wrapper.gravity-theme textarea { min-height: 120px !important; resize: vertical !important; }
.gform_wrapper.gravity-theme .gform-button,
.gform_wrapper.gravity-theme input[type="submit"] { background: var(--gold) !important; color: var(--ink) !important; border: none !important; padding: 14px 36px !important; font-size: 13px !important; font-weight: 500 !important; letter-spacing: 1px !important; text-transform: uppercase !important; border-radius: var(--r-sm) !important; transition: background var(--t) !important; cursor: pointer !important; }
.gform_wrapper.gravity-theme .gform-button:hover { background: var(--gold-light) !important; }

/* ═══════════════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════════════ */
.gsap-reveal { opacity: 0; transform: translateY(32px); }
.gsap-fade   { opacity: 0; }
.gsap-left   { opacity: 0; transform: translateX(-24px); }

/* ═══════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════ */
.about-hero { padding: 180px 0 100px; }
.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.team-card { background: var(--ink-2); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; transition: border-color var(--t), transform var(--t); }
.team-card:hover { border-color: var(--border-mid); transform: translateY(-4px); }
.team-photo { aspect-ratio: 1; background: var(--ink-3); overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 24px; }
.team-name { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 4px; }
.team-role { font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.team-bio  { font-size: 13px; color: var(--white-35); }
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.value-card { background: var(--ink-2); padding: 36px 28px; transition: background var(--t); }
.value-card:hover { background: var(--white-03); }
.value-icon { font-size: 24px; color: var(--gold); margin-bottom: 16px; }
.value-card h4 { font-family: var(--serif); font-size: 20px; font-weight: 400; margin-bottom: 10px; }
.value-card p { font-size: 13px; color: var(--white-35); margin: 0; }

/* ═══════════════════════════════════════════════════════
   ARTICLE BODY
═══════════════════════════════════════════════════════ */
.gcm-article-body { font-size: 17px; line-height: 1.85; color: var(--white-60); }
.gcm-article-body h2 { font-family: var(--serif); font-size: clamp(24px,3vw,34px); color: var(--white); margin: 56px 0 16px; }
.gcm-article-body h3 { font-family: var(--serif); font-size: 22px; color: var(--white); margin: 40px 0 12px; }
.gcm-article-body p  { margin-bottom: 24px; }
.gcm-article-body a  { color: var(--gold); border-bottom: 1px solid rgba(201,169,110,0.3); transition: border-color var(--t); }
.gcm-article-body a:hover { border-color: var(--gold); }
.gcm-article-body ul { margin: 0 0 24px 24px; list-style: disc; }
.gcm-article-body li { margin-bottom: 8px; }
.gcm-article-body blockquote { border-left: 3px solid var(--gold); padding: 16px 24px; margin: 32px 0; font-family: var(--serif); font-style: italic; font-size: 20px; color: var(--white-60); }
.gcm-article-body strong { color: var(--white); font-weight: 500; }
.gcm-article-body code { font-family: monospace; font-size: 14px; background: var(--white-06); padding: 2px 6px; border-radius: 3px; color: var(--cyan); }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .stats-row { grid-template-columns: repeat(2,1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-ticker { display: none; }
  .motor-grid { grid-template-columns: 1fr; gap: 60px; }
  .contact-grid { grid-template-columns: 1fr; }
  .portfolio-row { grid-template-columns: 60px 1fr 200px; }
  .portfolio-row-cat { display: none; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .wrap, .wrap-wide, .wrap-sm { padding: 0 24px; }
  .gcm-nav { display: none; }
  .gcm-hamburger { display: flex; }
  .services-grid, .testimonials-grid, .pricing-grid,
  .news-grid, .process-grid, .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .brands-row { flex-wrap: wrap; }
  .brand-item { flex: 0 0 calc(50% - 1px); }
  .contact-staff { grid-template-columns: 1fr; }
  .portfolio-list { display: none; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item:first-child { grid-column: auto; }
  .hero-scroll { display: none; }
  .gcm-cursor-ring, .gcm-cursor-glow-global { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
}

/* ═══════════════════════════════════════════════════════
   INNER PAGE ATMOSPHERE
═══════════════════════════════════════════════════════ */
.page-hero {
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -200px; left: 50%;
  transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(201,169,110,0.04) 0%, rgba(0,212,255,0.02) 40%, transparent 70%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   MOTOR FEATURE FIX
═══════════════════════════════════════════════════════ */
.motor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.motor-content { padding-top: 8px; }
/* Make browser mock fill its column better */
.motor-screen { width: 100%; }
.motor-screen-body { padding: 20px; }

/* ═══════════════════════════════════════════════════════
   HERO STAT SIZE FIX
═══════════════════════════════════════════════════════ */
.hero-stat-num {
  font-family: var(--serif);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stat-num sup { font-size: 18px; color: var(--gold); letter-spacing: 0; }
.hero-stat-label {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(244,240,236,0.45);
}

/* Service card text */
.service-card p { color: rgba(244,240,236,0.55); }

/* Portfolio row text */
.portfolio-row-title { color: var(--white); }

/* Stat label text */
.stat-label { color: rgba(244,240,236,0.5); }

/* Testimonial quote */
.testimonial-quote { color: rgba(244,240,236,0.72); }

/* Process step text */
.process-step p { color: rgba(244,240,236,0.55); }

/* FAQ answer */
.faq-answer-inner { color: rgba(244,240,236,0.6); }

/* Motor feature text */
.motor-feature p { color: rgba(244,240,236,0.55); }
.motor-feature-num { color: var(--cyan); opacity: 0.7; }

/* ═══════════════════════════════════════════════════════
   PORTFOLIO TWO-COLUMN LAYOUT
═══════════════════════════════════════════════════════ */
.portfolio-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.portfolio-col-item {
  background: var(--ink-2);
  display: block;
  text-decoration: none;
  transition: background var(--t);
}
.portfolio-col-item:hover { background: var(--ink-3); }
.portfolio-col-thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
  background: var(--ink-3);
}
.portfolio-col-thumb img  { width:100%;height:100%;object-fit:cover;transition:transform 0.5s var(--ease); }
.portfolio-col-thumb video { width:100%;height:100%;object-fit:cover; }
.portfolio-col-item:hover .portfolio-col-thumb img { transform: scale(1.04); }
.portfolio-thumb-placeholder {
  width:100%;height:100%;
  display:flex;align-items:center;justify-content:center;
  background: var(--ink-3);
}
.portfolio-col-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(7,11,23,0.85) 0%, transparent 60%);
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 20px;
  opacity: 0; transition: opacity 0.3s ease;
}
.portfolio-col-item:hover .portfolio-col-overlay { opacity: 1; }
.portfolio-col-info {
  padding: 20px 24px 28px;
}

/* ═══════════════════════════════════════════════════════
   SERVICES HEADER FIX
═══════════════════════════════════════════════════════ */
.services-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-top: 24px;
}
.services-header-grid p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--white-60);
  margin: 0;
  padding-bottom: 6px;
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE ADDITIONS
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .portfolio-two-col { grid-template-columns: 1fr; }
  .services-header-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ═══════════════════════════════════════════════════════
   BACK TO TOP BUTTON
═══════════════════════════════════════════════════════ */
.gcm-back-top {
  position: fixed;
  /* WhatsApp sits at bottom:32px with a higher z-index, so these stack
     vertically. Fixed in the theme this time so a theme update cannot
     revert it the way a manual style.css edit would. */
  bottom: 94px; right: 32px;
  z-index: 997;
  width: 44px; height: 44px;
  background: rgba(7,11,23,0.85);
  border: 1px solid var(--border-mid);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  opacity: 0; pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--t), transform var(--t), border-color var(--t);
  backdrop-filter: blur(8px);
}
.gcm-back-top.visible {
  opacity: 1; pointer-events: all; transform: translateY(0);
}
.gcm-back-top:hover {
  border-color: var(--gold);
  background: rgba(201,169,110,0.1);
}
.gcm-back-top svg { width: 16px; height: 16px; }

/* ═══════════════════════════════════════════════════════
   LIGHT-SWEEP SECTION DIVIDERS
═══════════════════════════════════════════════════════ */
.section-sweep {
  position: relative;
  overflow: visible;
}
.section-sweep::after {
  content: '';
  position: absolute;
  bottom: 0; left: 10%; right: 10%;
  height: 1px;
  background: linear-gradient(to right,
    transparent 0%,
    rgba(201,169,110,0.12) 20%,
    rgba(201,169,110,0.35) 50%,
    rgba(201,169,110,0.12) 80%,
    transparent 100%
  );
}

/* ═══════════════════════════════════════════════════════
   SECTION COLOUR FOG
═══════════════════════════════════════════════════════ */
/* Motor section — cool cyan tint */
#gcm-motor::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(0,212,255,0.025) 0%, transparent 65%);
  pointer-events: none; z-index: 0;
}
#gcm-motor > * { position: relative; z-index: 1; }

/* Testimonials — warm violet */
#gcm-testimonials {
  position: relative;
}
#gcm-testimonials::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(120,80,180,0.06) 0%, transparent 60%);
  pointer-events: none;
}

/* CTA — warm amber */
.gcm-cta-section {
  position: relative;
}
.gcm-cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,169,110,0.07) 0%, transparent 60%);
  pointer-events: none;
}

/* Stats — deep blue */
#gcm-stats {
  position: relative;
}
#gcm-stats::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,60,120,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Portfolio — subtle gold */
#gcm-portfolio::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,169,110,0.04) 0%, transparent 60%);
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   TEXT READABILITY — COMPREHENSIVE FIX
═══════════════════════════════════════════════════════ */
/* Base paragraph text */
p { color: rgba(244,240,236,0.68); }

/* Hero manifesto */
.hero-manifesto { color: rgba(244,240,236,0.65); }

/* Service card text */
.service-card p { color: rgba(244,240,236,0.62); }
.service-num { opacity: 0.8; }

/* Motor feature text */
.motor-feature h4 { color: var(--white); }
.motor-feature p  { color: rgba(244,240,236,0.65); }

/* Stat labels */
.stat-label { color: rgba(244,240,236,0.55); }

/* Process */
.process-step h3 { color: var(--white); }
.process-step p  { color: rgba(244,240,236,0.62); }
.process-step-num { color: rgba(244,240,236,0.06); }

/* Testimonials */
.testimonial-quote { color: rgba(244,240,236,0.78); }
.testimonial-company { color: rgba(244,240,236,0.5); }

/* Pricing */
.pricing-feature { color: rgba(244,240,236,0.7); }
.pricing-period  { color: rgba(244,240,236,0.5); }
.pricing-name    { color: rgba(244,240,236,0.55); }

/* FAQ */
.faq-question-text { color: var(--white); }
.faq-answer-inner  { color: rgba(244,240,236,0.68); }

/* Footer */
.footer-brand p    { color: rgba(244,240,236,0.5); }
.footer-col ul li a { color: rgba(244,240,236,0.55); }
.footer-col h5      { color: rgba(244,240,236,0.4); }
.footer-bottom p    { color: rgba(244,240,236,0.4); }

/* Marquee */
.gcm-marquee-item { color: rgba(244,240,236,0.5); }

/* Brand names — now light background so dark text handled above */

/* Ticker subtitles */
.ticker-card-text span { color: rgba(244,240,236,0.55); }

/* Hero stat labels */
.hero-stat-label { color: rgba(244,240,236,0.5); }

/* Nav links */
.gcm-nav a { color: rgba(244,240,236,0.6); }
.gcm-nav-cta { color: rgba(244,240,236,0.6); }

/* Contact info */
.contact-info-label { color: rgba(244,240,236,0.45); }
.staff-detail { color: rgba(244,240,236,0.55); }
.staff-detail a { color: rgba(244,240,236,0.55); }

/* News */
.news-date { color: rgba(244,240,236,0.45); }
.news-body p { color: rgba(244,240,236,0.62); }

/* Portfolio row subtitle */
.portfolio-row-title span { color: rgba(244,240,236,0.5); }
.portfolio-row-cat { color: rgba(244,240,236,0.45); }

/* ═══════════════════════════════════════════════════════
   BRAND CONSTELLATION MARK
═══════════════════════════════════════════════════════ */
.gcm-mark { display:inline-flex; align-items:center; gap:12px; line-height:1; }
.gcm-mark-svg { flex-shrink:0; display:block; }
.gcm-mark-word { display:flex; flex-direction:column; gap:2px; }
.gcm-mark-gcm {
    font-family: var(--serif);
    font-style: italic;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.5px;
    line-height: 1;
}
.gcm-mark-full {
    font-family: var(--sans);
    font-size: 8.5px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    opacity: 0.55;
    line-height: 1;
}
/* header sizing */
#gcm-header .gcm-mark-svg { width:38px; height:38px; }
/* footer + mobile use same by default */
#gcm-footer .gcm-mark-gcm { font-size:20px; }
.gcm-mobile-nav .gcm-mark { margin-bottom: 8px; }

/* ═══════════════════════════════════════════════════════
   DEALER NETWORK PLATFORM PAGE
═══════════════════════════════════════════════════════ */
.dnp-diagram {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 40px;
    overflow: hidden;
}
.dnp-diagram svg { max-width: 900px; margin: 0 auto; display: block; }

.dnp-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    overflow: hidden;
}
.dnp-step {
    background: var(--ink);
    padding: 40px 32px;
    transition: background var(--t);
}
.dnp-step:hover { background: var(--white-03); }
.dnp-step-num {
    font-family: var(--serif);
    font-size: 40px;
    color: var(--gold);
    opacity: 0.4;
    line-height: 1;
    margin-bottom: 20px;
}
.dnp-step p { font-size: 14px; color: rgba(244,240,236,0.62); margin: 0; line-height: 1.6; }

.dnp-outcomes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.dnp-outcome {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: var(--ink);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: border-color var(--t), transform var(--t);
}
.dnp-outcome:hover { border-color: rgba(201,169,110,0.3); transform: translateX(4px); }
.dnp-outcome svg { flex-shrink: 0; }
.dnp-outcome span { font-family: var(--serif); font-size: 19px; color: var(--white); line-height: 1.3; }

@media (max-width: 900px) {
    .dnp-steps { grid-template-columns: repeat(2, 1fr); }
    .dnp-outcomes { grid-template-columns: 1fr; }
    .dnp-diagram { padding: 20px; }
}
@media (max-width: 560px) {
    .dnp-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════
   RULE 8 — GRIDS ADAPT TO REPEATER COUNT
   Grids reflow for any number of items rather than
   forcing a fixed column count.
═══════════════════════════════════════════════════════ */

/* Services */
.services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}
.services-grid[data-count="1"] { grid-template-columns: 1fr; }
.services-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.services-grid[data-count="4"] { grid-template-columns: repeat(2, 1fr); }
/* reset the fixed nth-child border rules — borders come from the grid gap instead */
.service-card { border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.services-grid[data-count="1"] .service-card,
.services-grid[data-count="2"] .service-card:last-child,
.services-grid[data-count="3"] .service-card:nth-child(3n) { border-right: none; }

/* Stats band */
.stats-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.stats-row[data-count="1"] { grid-template-columns: 1fr; }
.stats-row[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.stats-row[data-count="3"] { grid-template-columns: repeat(3, 1fr); }

/* Process */
.process-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.process-grid[data-count="1"] { grid-template-columns: 1fr; }
.process-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

/* Testimonials */
.testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.testimonials-grid[data-count="1"] { grid-template-columns: minmax(0, 620px); justify-content: center; }
.testimonials-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

/* Pricing */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.pricing-grid[data-count="1"] { grid-template-columns: minmax(0, 420px); justify-content: center; }
.pricing-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

/* News */
.news-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.news-grid[data-count="1"] { grid-template-columns: minmax(0, 520px); }
.news-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

/* Brands — already flex-wrap, just let items breathe at low counts */
.brands-row { flex-wrap: wrap; }
.brand-item { min-width: 140px; }

/* ═══════════════════════════════════════════════════════
   HERO VARIANTS (page-level ACF)
═══════════════════════════════════════════════════════ */

/* No capability cards — headline takes the full width */
.hero-grid-solo { grid-template-columns: 1fr; }
.hero-grid-solo .hero-content { max-width: 900px; }

/* Rule 6 — custom pixel height on desktop, sane scaling on mobile */
@media (max-width: 768px) {
    #gcm-hero.hero-fixed {
        min-height: 0 !important;
        height: auto;
        padding-bottom: 40px;
    }
}

/* ═══════════════════════════════════════════════════════
   MOBILE DROPDOWNS — reachable child items
   Previously .sub-menu was display:none on mobile, which
   made every dropdown child unreachable on a phone.
═══════════════════════════════════════════════════════ */
.gcm-mobile-nav .sub-menu {
    display: none;
    padding: 4px 0 12px 16px;
    border-left: 1px solid var(--border);
    margin: 0 0 8px;
}
.gcm-mobile-nav .menu-item-has-children.open > .sub-menu { display: block; }
.gcm-mobile-nav .sub-menu a {
    font-size: 20px;
    padding: 10px 0;
    border-bottom: none;
    color: var(--white-35);
}
.gcm-mobile-nav .sub-menu a:hover { color: var(--gold); }

/* Chevron on dropdown parents */
.gcm-mobile-nav .menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.gcm-mobile-nav .menu-item-has-children > a::after {
    content: '';
    width: 9px; height: 9px;
    border-right: 1.5px solid var(--gold);
    border-bottom: 1.5px solid var(--gold);
    transform: rotate(45deg);
    transition: transform 0.25s var(--ease);
    flex-shrink: 0;
    margin-left: 12px;
    opacity: 0.7;
}
.gcm-mobile-nav .menu-item-has-children.open > a::after { transform: rotate(-135deg); }

/* Desktop: a bare "#" parent is a label, not a destination */
.gcm-nav a[href$="#"] { cursor: default; }

/* ═══════════════════════════════════════════════════════
   PAGE HERO WITH IMAGE / FIXED HEIGHT (rule 6)
═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .page-hero.page-hero-fixed {
        min-height: 0 !important;
        display: block !important;
        padding-top: 130px;
        padding-bottom: 50px;
    }
}

/* ═══════════════════════════════════════════════════════
   ABOUT — quick facts panel
═══════════════════════════════════════════════════════ */
.about-facts-wrap { margin-top: -40px; position: relative; z-index: 2; padding-bottom: 20px; }
.about-facts {
    background: var(--ink-2);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 32px 36px;
    max-width: 460px;
    margin-left: auto;
}
.about-facts-label {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(244,240,236,0.45); margin-bottom: 20px;
}
.about-fact {
    display: flex; justify-content: space-between; gap: 20px;
    padding: 13px 0; border-bottom: 1px solid var(--border);
}
.about-fact:last-child { border-bottom: none; }
.about-fact span:first-child { font-size: 13px; color: rgba(244,240,236,0.5); }
.about-fact span:last-child  { font-size: 13px; color: var(--white); text-align: right; }
@media (max-width: 900px) {
    .about-facts-wrap { margin-top: 24px; }
    .about-facts { max-width: none; margin-left: 0; }
}

/* ═══════════════════════════════════════════════════════
   RULE 8 — remaining grids adapt to item count
═══════════════════════════════════════════════════════ */
.team-grid { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.team-grid[data-count="1"] { grid-template-columns: minmax(0, 340px); }
.team-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }

.values-grid { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.values-grid[data-count="1"] { grid-template-columns: 1fr; }
.values-grid[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.values-grid[data-count="3"] { grid-template-columns: repeat(3, 1fr); }

.dnp-steps { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.dnp-steps[data-count="1"] { grid-template-columns: 1fr; }
.dnp-steps[data-count="2"] { grid-template-columns: repeat(2, 1fr); }
.dnp-steps[data-count="3"] { grid-template-columns: repeat(3, 1fr); }

/* Contact without a form — details span the full width */
.contact-grid-solo { grid-template-columns: 1fr; }
.contact-grid-solo .contact-info { max-width: 720px; }

/* ═══════════════════════════════════════════════════════
   GRAVITY FORMS — ORBITAL THEME
   Orbital drives its appearance from --gf-* custom
   properties, which is why selector-only rules never
   took effect. Variables first, direct selectors as a
   backstop because GF renames these between releases.
═══════════════════════════════════════════════════════ */
.gform_wrapper,
.gform-theme--foundation,
.gform-theme--framework,
.gform-theme--orbital,
.gform_wrapper.gform-theme--orbital {
    /* controls */
    --gf-ctrl-bg-color:                 rgba(244,240,236,0.04);
    --gf-ctrl-bg-color-hover:           rgba(244,240,236,0.06);
    --gf-ctrl-bg-color-focus:           rgba(244,240,236,0.07);
    --gf-ctrl-border-color:             var(--border-mid);
    --gf-ctrl-border-color-hover:       rgba(201,169,110,0.45);
    --gf-ctrl-border-color-focus:       var(--gold);
    --gf-ctrl-color:                    var(--white);
    --gf-ctrl-radius:                   var(--r-sm);
    --gf-ctrl-shadow-focus:             0 0 0 2px rgba(201,169,110,0.18);

    /* labels & helper text */
    --gf-ctrl-label-color-primary:      rgba(244,240,236,0.75);
    --gf-ctrl-label-color-secondary:    rgba(244,240,236,0.5);
    --gf-ctrl-desc-color:               rgba(244,240,236,0.45);
    --gf-ctrl-placeholder-color:        rgba(244,240,236,0.3);

    /* brand colour — this is what kills the stock blue */
    --gf-color-primary:                 var(--gold);
    --gf-color-primary-rgb:             201,169,110;
    --gf-color-primary-contrast:        var(--ink);
    --gf-color-primary-darker:          var(--gold-light);
    --gf-local-color-primary:           var(--gold);

    /* buttons */
    --gf-ctrl-btn-bg-color-primary:        var(--gold);
    --gf-ctrl-btn-bg-color-hover-primary:  var(--gold-light);
    --gf-ctrl-btn-color-primary:           var(--ink);
    --gf-ctrl-btn-border-color-primary:    var(--gold);
    --gf-ctrl-btn-bg-color-secondary:      transparent;
    --gf-ctrl-btn-color-secondary:         rgba(244,240,236,0.75);
    --gf-ctrl-btn-border-color-secondary:  var(--border-mid);
    --gf-ctrl-btn-radius:                  var(--r-sm);

    /* feedback */
    --gf-color-danger:            #E2725B;
    --gf-color-danger-contrast:   var(--ink);
    --gf-color-success:           var(--gold);
    --gf-local-color-danger:      #E2725B;
}

/* ── inputs ─────────────────────────────────────────── */
.gform_wrapper input[type="text"],
.gform_wrapper input[type="email"],
.gform_wrapper input[type="tel"],
.gform_wrapper input[type="url"],
.gform_wrapper input[type="number"],
.gform_wrapper input[type="password"],
.gform_wrapper textarea,
.gform_wrapper select {
    background: rgba(244,240,236,0.04) !important;
    border: 1px solid var(--border-mid) !important;
    border-radius: var(--r-sm) !important;
    color: var(--white) !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    padding: 13px 15px !important;
    width: 100% !important;
    box-shadow: none !important;
    transition: border-color var(--t), background var(--t) !important;
}
.gform_wrapper input:focus,
.gform_wrapper textarea:focus,
.gform_wrapper select:focus {
    border-color: var(--gold) !important;
    background: rgba(244,240,236,0.07) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(201,169,110,0.18) !important;
}
.gform_wrapper input::placeholder,
.gform_wrapper textarea::placeholder { color: rgba(244,240,236,0.3) !important; }
.gform_wrapper textarea { min-height: 130px !important; resize: vertical !important; }
.gform_wrapper select option { background: var(--ink-2); color: var(--white); }

/* ── labels ─────────────────────────────────────────── */
.gform_wrapper .gfield_label,
.gform_wrapper legend.gfield_label {
    font-family: var(--sans) !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    color: rgba(244,240,236,0.6) !important;
    margin-bottom: 8px !important;
}
.gform_wrapper .gform-field-label--type-sub,
.gform_wrapper .ginput_complex label {
    font-size: 11px !important;
    letter-spacing: 0.5px !important;
    text-transform: none !important;
    color: rgba(244,240,236,0.45) !important;
}
/* the stock red (Required) becomes a quiet gold mark */
.gform_wrapper .gfield_required,
.gform_wrapper .gfield_required .gfield_required_text {
    color: var(--gold) !important;
    font-size: 10px !important;
    font-weight: 400 !important;
    letter-spacing: 0.5px !important;
    text-transform: lowercase !important;
}
.gform_wrapper .gfield_description,
.gform_wrapper .gform_fileupload_rules {
    color: rgba(244,240,236,0.45) !important;
    font-size: 12px !important;
}

/* ── section headers inside a form ──────────────────── */
.gform_wrapper .gsection {
    border-bottom: 1px solid var(--border) !important;
    padding-bottom: 10px !important;
}
.gform_wrapper .gsection_title {
    font-family: var(--serif) !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    color: var(--white) !important;
}
.gform_wrapper .gsection_description { color: rgba(244,240,236,0.55) !important; font-size: 13px !important; }

/* ── buttons ────────────────────────────────────────── */
.gform_wrapper .gform_button,
.gform_wrapper .gform_next_button,
.gform_wrapper input[type="submit"],
.gform_wrapper button[type="submit"] {
    background: var(--gold) !important;
    color: var(--ink) !important;
    border: 1px solid var(--gold) !important;
    border-radius: var(--r-sm) !important;
    font-family: var(--sans) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 13px 34px !important;
    cursor: pointer !important;
    transition: background var(--t) !important;
    width: auto !important;
}
.gform_wrapper .gform_button:hover,
.gform_wrapper .gform_next_button:hover,
.gform_wrapper input[type="submit"]:hover { background: var(--gold-light) !important; border-color: var(--gold-light) !important; }

.gform_wrapper .gform_previous_button {
    background: transparent !important;
    color: rgba(244,240,236,0.7) !important;
    border: 1px solid var(--border-mid) !important;
    border-radius: var(--r-sm) !important;
    font-size: 13px !important;
    letter-spacing: 1px !important;
    text-transform: uppercase !important;
    padding: 13px 28px !important;
    cursor: pointer !important;
}
.gform_wrapper .gform_previous_button:hover { border-color: var(--gold) !important; color: var(--gold) !important; }
.gform_wrapper .gform_page_footer { border-top: 1px solid var(--border) !important; padding-top: 22px !important; margin-top: 8px !important; display: flex; gap: 12px; flex-wrap: wrap; }

/* ── multi-step progress ────────────────────────────── */
.gform_wrapper .gf_progressbar_wrapper { margin-bottom: 28px !important; }
.gform_wrapper .gf_progressbar_title {
    font-family: var(--sans) !important;
    font-size: 11px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    color: rgba(244,240,236,0.5) !important;
    margin-bottom: 10px !important;
}
.gform_wrapper .gf_progressbar {
    background: rgba(244,240,236,0.07) !important;
    border-radius: 100px !important;
    height: 4px !important;
    box-shadow: none !important;
    overflow: hidden !important;
}
.gform_wrapper .gf_progressbar_percentage,
.gform_wrapper .gf_progressbar_percentage.percentbar_blue {
    background: linear-gradient(to right, var(--gold), var(--gold-light)) !important;
    height: 4px !important;
    border-radius: 100px !important;
    box-shadow: none !important;
}
.gform_wrapper .gf_progressbar_percentage span { display: none !important; }
/* stepped (non-bar) progress indicator */
.gform_wrapper .gf_page_steps { border-bottom: 1px solid var(--border) !important; margin-bottom: 24px !important; }
.gform_wrapper .gf_step { color: rgba(244,240,236,0.4) !important; font-size: 12px !important; }
.gform_wrapper .gf_step.gf_step_active { color: var(--gold) !important; }

/* ── validation ─────────────────────────────────────── */
.gform_wrapper .gform_validation_errors {
    background: rgba(226,114,91,0.08) !important;
    border: 1px solid rgba(226,114,91,0.35) !important;
    border-radius: var(--r-md) !important;
    box-shadow: none !important;
    color: #E2725B !important;
    padding: 14px 18px !important;
}
.gform_wrapper .gform_validation_errors h2,
.gform_wrapper .gform_validation_errors .gform_submission_error {
    color: #E2725B !important;
    font-family: var(--sans) !important;
    font-size: 14px !important;
    font-weight: 500 !important;
}
.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea,
.gform_wrapper .gfield_error select { border-color: rgba(226,114,91,0.7) !important; }
.gform_wrapper .validation_message,
.gform_wrapper .gfield_validation_message {
    background: transparent !important;
    border: none !important;
    color: #E2725B !important;
    font-size: 12px !important;
    padding: 6px 0 0 !important;
}
.gform_wrapper .gfield_error .gfield_label { color: #E2725B !important; }

/* ── choices ────────────────────────────────────────── */
.gform_wrapper .gchoice label { color: rgba(244,240,236,0.75) !important; font-size: 14px !important; }
.gform_wrapper input[type="checkbox"],
.gform_wrapper input[type="radio"] { accent-color: var(--gold); width: auto !important; }

/* ── confirmation ───────────────────────────────────── */
.gform_confirmation_wrapper,
.gform_confirmation_message {
    background: rgba(201,169,110,0.07) !important;
    border: 1px solid rgba(201,169,110,0.3) !important;
    border-radius: var(--r-md) !important;
    color: var(--white) !important;
    font-size: 15px !important;
    padding: 22px 24px !important;
}

/* ── spacing ────────────────────────────────────────── */
.gform_wrapper .gform_fields { row-gap: 20px !important; }
.gform_wrapper .gform_footer { margin-top: 24px !important; padding-top: 0 !important; }
.gform_wrapper .gform_required_legend { color: rgba(244,240,236,0.4) !important; font-size: 12px !important; }

/* ═══════════════════════════════════════════════════════
   PORTFOLIO FILTERING
═══════════════════════════════════════════════════════ */
.portfolio-col-item.is-filtered-out,
.portfolio-item.is-filtered-out,
.portfolio-row.is-filtered-out { display: none !important; }
.filter-btn { cursor: pointer; }

/* ═══════════════════════════════════════════════════════
   TEAM CARDS WITHOUT PHOTOS
   No photo means no empty placeholder block — the card
   becomes a clean text card instead.
═══════════════════════════════════════════════════════ */
.team-card-textonly { display: flex; align-items: flex-start; }
.team-card-textonly .team-info { padding: 32px 30px; }
.team-card-textonly .team-name { font-size: 22px; margin-bottom: 6px; }
.team-card-textonly .team-role { margin-bottom: 14px; }
.team-card-textonly .team-bio  { font-size: 14px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   CUSTOM LOGO SIZING
   the_custom_logo() outputs a plain <img>, which the global
   img{max-width:100%} rule then sizes from its container.
   In a flex header that means the logo collapses to whatever
   space is left over. Sizing by HEIGHT instead makes it
   predictable regardless of what sits beside it.
═══════════════════════════════════════════════════════ */
#gcm-header .gcm-logo img,
#gcm-header .custom-logo {
    height: 46px;
    width: auto;
    max-width: none;
    display: block;
}
#gcm-header.scrolled .gcm-logo img,
#gcm-header.scrolled .custom-logo { height: 40px; }

#gcm-footer .gcm-logo img,
#gcm-footer .custom-logo {
    height: 40px;
    width: auto;
    max-width: none;
    display: block;
}

@media (max-width: 768px) {
    /* The mobile menu already carries its own full-width "Work with us"
       button, so this duplicate only served to squeeze the logo out. */
    .gcm-nav-cta { display: none; }

    #gcm-header .gcm-logo img,
    #gcm-header .custom-logo,
    #gcm-header.scrolled .gcm-logo img,
    #gcm-header.scrolled .custom-logo { height: 38px; }

    #gcm-footer .gcm-logo img,
    #gcm-footer .custom-logo { height: 34px; }
}

/* Very narrow phones — keep the logo clear of the hamburger */
@media (max-width: 380px) {
    #gcm-header .gcm-logo img,
    #gcm-header .custom-logo { height: 32px; }
}

/* ═══════════════════════════════════════════════════════
   MOBILE MENU — SCROLL TRACK + PINNED CTA
═══════════════════════════════════════════════════════ */
.gcm-mobile-nav-scroll {
    flex: 1 1 auto;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    /* clears the fixed header, which sits above this at z-index 1000 */
    padding: 116px 32px 24px;
}
.gcm-mobile-nav-cta {
    flex: 0 0 auto;
    padding: 16px 32px;
    /* clears the home indicator on notched phones */
    padding-bottom: calc( 20px + env( safe-area-inset-bottom, 0px ) );
    border-top: 1px solid var(--border);
    background: var(--ink);
}
.gcm-mobile-nav-cta .btn {
    width: 100%;
    justify-content: center;
}
@media (max-width: 380px) {
    .gcm-mobile-nav-scroll { padding: 104px 24px 20px; }
    .gcm-mobile-nav-cta    { padding-left: 24px; padding-right: 24px; }
}
