/*
Theme Name: Caldera Films 2026
Theme URI: https://calderafilms.com
Author: Caldera Films
Author URI: https://calderafilms.com
Description: Official 2026 redesign for Caldera Films — video production company based in Miami, FL. Clean, cinematic, dark-first aesthetic.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: Proprietary
License URI: https://calderafilms.com
Text Domain: caldera-films
*/

/* ═══════════════════════════════════════════════════════
   RESET + ROOT VARIABLES
═══════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --brand: #B8272C;
  --red:   #B8272C;
  --red2:  #8C1B1F;
  --black: #080808;
  --dark:  #0c0c0c;
  --panel: #111111;
  --white: #ffffff;
  --cream: #E8E3D5;
  --warm:  #B8B09A;
  --muted: rgba(255,255,255,0.55);
  --gray:  #555;
  --font:           'Inter', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --font-serif:     'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

/* ═══════════════════════════════════════════════════════
   UTILITY — REVEAL ON SCROLL
═══════════════════════════════════════════════════════ */
.r { opacity:0; transform:translateY(34px); transition:opacity .85s ease, transform .85s ease; }
.r.on { opacity:1; transform:translateY(0); }
.r-left { opacity:0; transform:translateX(-28px); transition:opacity .7s ease, transform .7s cubic-bezier(.4,0,.2,1); }
.r-left.on { opacity:1; transform:translateX(0); }
.r-scale { opacity:0; transform:scale(.96); transition:opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1); }
.r-scale.on { opacity:1; transform:scale(1); }

/* ═══════════════════════════════════════════════════════
   UTILITY — SECTION EYEBROW (.lbl)
═══════════════════════════════════════════════════════ */
.lbl {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* ═══════════════════════════════════════════════════════
   UTILITY — GRAIN TEXTURE
═══════════════════════════════════════════════════════ */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ═══════════════════════════════════════════════════════
   UTILITY — CUSTOM CURSOR
═══════════════════════════════════════════════════════ */
#cur {
  position: fixed;
  width: 6px; height: 6px;
  background: rgba(232,227,213,0.9);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: opacity .2s;
}
#cur2 {
  position: fixed;
  width: 44px; height: 44px;
  border: 1px solid rgba(232,227,213,0.2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: width .35s, height .35s, border-color .3s;
}
body.h #cur { opacity: 0; }
body.h #cur2 { width: 72px; height: 72px; border-color: rgba(184,39,44,.55); }
@media (hover:none), (pointer:coarse) {
  #cur, #cur2 { display: none !important; }
  body { cursor: auto !important; }
}

/* ═══════════════════════════════════════════════════════
   UTILITY — SCROLL CUE
═══════════════════════════════════════════════════════ */
.scroll-cue {
  position: fixed;
  bottom: 32px; left: 32px;
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(232,227,213,0.38);
  pointer-events: none;
  z-index: 90;
  transition: opacity .6s;
}
.scroll-cue.hide { opacity: 0; }

/* ═══════════════════════════════════════════════════════
   UTILITY — STICKY SECTION LABEL + COUNTER
═══════════════════════════════════════════════════════ */
.sec-label-sticky {
  position: sticky;
  top: 40px;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(232,227,213,0.3);
  align-self: flex-start;
}
.sec-count {
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: .2em;
  color: rgba(232,227,213,0.22);
  margin-left: 6px;
}

/* ═══════════════════════════════════════════════════════
   UTILITY — SCROLL-HIGHLIGHT TEXT
═══════════════════════════════════════════════════════ */
.hl-block { line-height: 1.85; }
.hl-word { opacity: 0.15; transition: opacity .5s ease; display: inline; }
.hl-word.lit { opacity: 1; }

body {
  font-family: var(--font);
  background: #0e0e0e;
  color: #111;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════════════════════
   NAV — no preview banner offset (top: 0 in WordPress)
═══════════════════════════════════════════════════════ */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s;
}
nav.site-nav.scrolled {
  background: var(--cream);
  border-bottom-color: rgba(0,0,0,0.08);
}
nav.site-nav .nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
}
.nav-logo-light { display: block; height: 26px; width: auto; transition: opacity 0.3s; }
.nav-logo-dark  { display: none;  height: 26px; width: auto; transition: opacity 0.3s; }
nav.site-nav.scrolled .nav-logo-light { display: none; }
nav.site-nav.scrolled .nav-logo-dark  { display: block; }
nav.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
nav.site-nav .nav-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}
nav.site-nav .nav-links a:hover { color: #fff; }
nav.site-nav .nav-links a.active { color: #fff; }
nav.site-nav.scrolled .nav-links a { color: #555; }
nav.site-nav.scrolled .nav-links a:hover { color: #111; }
nav.site-nav.scrolled .nav-links a.active { color: var(--brand); }

/* ═══════════════════════════════════════════════════════
   HAMBURGER BUTTON
═══════════════════════════════════════════════════════ */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 1px;
  transition: background 0.3s;
}
nav.site-nav.scrolled .nav-hamburger span { background: #111; }

/* ═══════════════════════════════════════════════════════
   MOBILE MENU OVERLAY
═══════════════════════════════════════════════════════ */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #080808;
  z-index: 500;
  flex-direction: column;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 6%;
  flex-shrink: 0;
}
.nav-mobile-brand {
  display: flex;
  align-items: center;
}
.nav-mobile-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-size: 32px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  padding: 4px 0;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: #fff; }
.nav-mobile-links-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-mobile-links { list-style: none; text-align: center; padding: 0; margin: 0; }
.nav-mobile-links li { margin: 14px 0; }
.nav-mobile-links a {
  font-size: 36px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.nav-mobile-links a:hover,
.nav-mobile-links a:active { color: var(--brand); }

@media (max-width: 768px) {
  nav.site-nav .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ═══════════════════════════════════════════════════════
   UTILITY CLASSES
═══════════════════════════════════════════════════════ */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--brand); border-color: var(--brand); }

.btn-primary {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 15px 32px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-primary:hover { background: var(--brand); color: #fff; }

.btn-red {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
}
.btn-red:hover { background: #c93218; }

.btn-white {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 36px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s;
  position: relative;
  z-index: 2;
}
.btn-white:hover { background: rgba(255,255,255,0.9); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.3);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.btn-ghost:hover { color: #111; border-color: #111; }

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}

/* ═══════════════════════════════════════════════════════
   WORK CARDS (shared — homepage + projects grid + related)
═══════════════════════════════════════════════════════ */
.work-card {
  border-radius: 18px;
  padding: 5px;
  background: #1c1c1c;
  cursor: pointer;
  text-decoration: none;
  display: block;
  transition: background 0.45s ease, opacity 0.3s ease, transform 0.3s ease;
}
.work-card:hover { background: var(--cream); }
.work-card.hidden { display: none; }
.work-card-img-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.work-card-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s ease;
}
.work-card:hover .work-card-img-wrap img { transform: scale(1.03); }
.work-card-info {
  padding: 13px 12px 10px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
}
.work-card-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.01em;
  transition: color 0.45s ease;
}
.work-card:hover .work-card-title { color: #111; }
.work-card-cat {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  white-space: nowrap;
  transition: color 0.45s ease;
}
.work-card:hover .work-card-cat { color: rgba(0,0,0,0.42); }

/* Work card video loop overlay */
.work-card-video-overlay {
  position: absolute;
  inset: 0;
  opacity: 1;
  pointer-events: none;
  z-index: 2;
  background: #000;
  border-radius: 14px;
  overflow: hidden;
}
.work-card-video-overlay video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════
   NEWSLETTER
═══════════════════════════════════════════════════════ */
.newsletter {
  background: var(--brand);
  padding: 60px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.newsletter h3 { font-size: clamp(18px, 2.5vw, 28px); font-weight: 700; color: #fff; }
.newsletter-form { display: flex; gap: 0; flex: 1; max-width: 420px; }
.newsletter-form input {
  flex: 1;
  border: 1px solid rgba(255,255,255,0.4);
  background: rgba(255,255,255,0.12);
  color: #fff;
  padding: 13px 18px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.55); }
.newsletter-form button {
  background: #fff;
  color: var(--brand);
  border: none;
  padding: 13px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.2s;
}
.newsletter-form button:hover { background: #f0f0f0; }

/* ═══════════════════════════════════════════════════════
   CTA SECTIONS
═══════════════════════════════════════════════════════ */
.cta-start {
  background: #111;
  padding: 100px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-start h2 {
  font-size: clamp(30px, 5vw, 60px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.cta-start p {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  max-width: 480px;
  margin: 0 auto 36px;
}
/* Project pages use brand-red CTA */
.cta-start.cta-brand {
  background: var(--brand);
  position: relative;
  overflow: hidden;
}
.cta-start-ghost {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  font-size: clamp(100px,20vw,280px);
  font-weight: 900;
  color: rgba(0,0,0,0.07);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.cta-start.cta-brand p { color: rgba(255,255,255,0.75); }

/* ═══════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════ */
footer {
  background: #0a0a0a;
  padding: 70px 5% 30px;
  color: rgba(255,255,255,0.5);
}
/* ═══════════════════════════════════════════════════════
   HOMEPAGE — MARKET GATEWAY (Amazon + International)
═══════════════════════════════════════════════════════ */
.market-gateway {
  background: #0a0a0a;
  padding: 100px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.market-gateway .section-label { margin-bottom: 40px; }
.market-gateway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
}
.market-card {
  display: block;
  background: #111;
  padding: 56px 52px;
  text-decoration: none;
  color: #fff;
  transition: background 0.25s;
  border: 1px solid rgba(255,255,255,0.06);
}
.market-card:hover { background: #181818; }
.market-card-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 20px;
}
.market-card-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}
.market-card-desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
}
.market-card-cta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  border-bottom: 1px solid rgba(255,255,255,0.2);
  display: inline-block;
  padding-bottom: 4px;
  transition: color 0.2s, border-color 0.2s;
}
.market-card:hover .market-card-cta { color: #fff; border-color: #fff; }
@media (max-width: 768px) {
  .market-gateway-grid { grid-template-columns: 1fr; }
  .market-card { padding: 40px 28px; }
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}
.footer-logo { margin-bottom: 20px; }
.footer-logo-img { height: 28px; width: auto; display: block; }
.footer-address { font-size: 13px; font-weight: 300; line-height: 1.7; margin-bottom: 14px; }
.footer-col h4 {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  text-align: center;
  font-size: 11px;
}
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — HERO
═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
  background: #060606;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Full-screen background videos */
.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-video-mobile { display: none; }

/* Dark gradient overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    160deg,
    rgba(6,6,6,0.62) 0%,
    rgba(6,6,6,0.28) 45%,
    rgba(6,6,6,0.65) 100%
  );
}

/* Centered content: logo + eyebrow + CTA button */
.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 5%;
}
.hero-logo-img {
  width: clamp(200px, 30vw, 440px);
  height: auto;
  display: block;
  margin-bottom: 28px;
  user-select: none;
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.50);
  margin-bottom: 32px;
}
.hero-reel-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 15px 36px;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 60px;
  color: #fff;
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: border-color 0.25s, background 0.25s;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.hero-reel-btn:hover {
  border-color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
}
.hero-reel-btn svg {
  width: 13px;
  height: 13px;
  fill: #fff;
  flex-shrink: 0;
}

/* Bottom bar: location + scroll hint */
.hero-bottom-bar {
  position: absolute;
  bottom: 32px;
  left: 0; right: 0;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}
.hero-location {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
}
.hero-scroll {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  text-decoration: none;
  transition: color 0.2s;
}
.hero-scroll:hover { color: rgba(255,255,255,0.70); }

@media (max-width: 640px) {
  .hero { min-height: 100svh; }
  .hero-video-desktop { display: none; }
  .hero-video-mobile { display: block; }
  .hero-logo-img { width: clamp(180px, 58vw, 300px); margin-bottom: 20px; }
  .hero-eyebrow { margin-bottom: 24px; }
  .hero-bottom-bar { bottom: 24px; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — CTA BAND
═══════════════════════════════════════════════════════ */
.home-cta-band {
  background: #0a0a0a;
  padding: 88px 5%;
  border-top: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.home-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.home-cta-label { font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--brand); margin-bottom: 18px; }
.home-cta-headline { font-size: clamp(32px, 4.5vw, 60px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: #fff; margin: 0; }
.home-cta-action { display: flex; flex-direction: column; align-items: flex-end; gap: 22px; flex-shrink: 0; }
.home-cta-email { font-size: clamp(18px, 2.2vw, 28px); font-weight: 700; color: rgba(255,255,255,0.9); text-decoration: none; letter-spacing: -0.01em; transition: color 0.2s; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 4px; }
.home-cta-email:hover { color: var(--brand); border-bottom-color: var(--brand); }
.home-cta-btn { display: inline-block; padding: 15px 32px; background: var(--brand); color: #fff; font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; text-decoration: none; border-radius: 3px; transition: background 0.2s, transform 0.15s; }
.home-cta-btn:hover { background: #c8301e; transform: translateY(-1px); }
@media (max-width: 768px) { .home-cta-band { padding: 64px 6%; } .home-cta-inner { flex-direction: column; align-items: flex-start; gap: 36px; } .home-cta-action { align-items: flex-start; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — SELECTED WORK
═══════════════════════════════════════════════════════ */
.work { padding: 80px 5% 90px; background: #0e0e0e; }
.work .section-label { color: rgba(255,255,255,0.35); }
.work .section-title { color: #fff; }
.work .link-arrow { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.25); }
.work .link-arrow:hover { color: #fff; border-color: #fff; }
.work-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 32px; }
.work-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 900px) { .work-grid { grid-template-columns: 1fr; gap: 10px; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — ABOUT STRIP
═══════════════════════════════════════════════════════ */
.about-strip { background: var(--cream); padding: 80px 5%; text-align: center; }
.about-strip p { font-size: clamp(17px, 2vw, 22px); font-weight: 300; color: #333; max-width: 640px; margin: 0 auto 28px; line-height: 1.7; }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — STUDIO FEATURE IMAGE
═══════════════════════════════════════════════════════ */
.cf-studio-feature { position: relative; width: 100%; overflow: hidden; line-height: 0; }
.cf-studio-feature img { width: 100%; height: clamp(340px, 55vw, 780px); object-fit: cover; object-position: center; display: block; }
.cf-studio-caption { position: absolute; bottom: 18px; right: 24px; font-size: 10px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.5); line-height: 1; }
@media (max-width: 600px) { .cf-studio-feature img { height: clamp(220px, 60vw, 340px); } .cf-studio-caption { font-size: 9px; right: 16px; bottom: 12px; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — 12 HOUSE STUDIOS BAND
═══════════════════════════════════════════════════════ */
.cf-studio-network { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.07); }
.cf-studio-network-inner { max-width: 1200px; margin: 0 auto; padding: 56px 6%; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.cf-studio-network-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--brand); margin-bottom: 20px; }
.cf-studio-network-logo-link { display: inline-block; }
.cf-studio-network-logo { height: 36px; width: auto; display: block; filter: brightness(0) invert(1); opacity: 0.85; transition: opacity 0.2s; }
.cf-studio-network-logo-link:hover .cf-studio-network-logo { opacity: 1; }
.cf-studio-network-body { font-size: clamp(14px, 1.4vw, 17px); font-weight: 300; line-height: 1.75; color: rgba(255,255,255,0.55); margin: 0 0 28px; max-width: 480px; }
.cf-studio-network-cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 500; letter-spacing: 0.06em; color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); padding-bottom: 2px; transition: color 0.2s, border-color 0.2s; }
.cf-studio-network-cta:hover { color: var(--brand); border-color: var(--brand); }
@media (max-width: 768px) {
  .cf-studio-network-inner { grid-template-columns: 1fr; gap: 32px; padding: 48px 6%; }
  .cf-studio-network-logo { height: 28px; }
}

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — MANIFESTO
═══════════════════════════════════════════════════════ */
.manifesto { background: var(--black); padding: 110px 6%; position: relative; overflow: hidden; }
.manifesto::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.manifesto-inner { max-width: 820px; }
.manifesto-label { font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 44px; }
.manifesto h2 { font-size: clamp(38px, 6vw, 74px); font-weight: 800; line-height: 1.08; color: #fff; letter-spacing: -0.03em; margin-bottom: 52px; }
.manifesto-body { max-width: 620px; }
.manifesto-body p { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); margin-bottom: 22px; }
.manifesto-body p:last-child { margin-bottom: 0; }
.manifesto-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 52px; }
.manifesto-tags span { font-size: 10px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); border: 1px solid rgba(255,255,255,0.12); padding: 8px 16px; border-radius: 100px; }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — DIRECTOR
═══════════════════════════════════════════════════════ */
.director-feature { display: grid; grid-template-columns: 1fr 1fr; min-height: 600px; background: #0d0d0d; position: relative; overflow: hidden; }
.director-feature::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); z-index: 3; }
.director-portrait-wrap { position: relative; overflow: hidden; }
.director-portrait-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; opacity: 0.82; filter: grayscale(0.15); transition: opacity 0.6s ease, transform 0.6s ease; }
.director-feature:hover .director-portrait-wrap img { opacity: 0.92; transform: scale(1.025); }
.director-portrait-overlay { position: absolute; inset: 0; background: linear-gradient(to right, transparent 65%, #0d0d0d 100%); }
.director-content { padding: 80px 7% 80px 6%; display: flex; flex-direction: column; justify-content: center; }
.director-eyebrow { font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 22px; }
.director-name { font-size: clamp(44px, 5.5vw, 76px); font-weight: 800; line-height: 1.0; color: #fff; letter-spacing: -0.03em; margin-bottom: 14px; }
.director-role { font-size: 11px; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 36px; }
.director-bio { font-size: clamp(14px, 1.5vw, 16px); font-weight: 300; line-height: 1.85; color: rgba(255,255,255,0.6); max-width: 460px; margin-bottom: 32px; }
.director-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.director-creds span { font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.14); padding: 6px 14px; border-radius: 100px; }
.director-feature .link-arrow { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.3); }
.director-feature .link-arrow:hover { color: #fff; border-color: #fff; }
@media (max-width: 900px) { .director-feature { grid-template-columns: 1fr; } .director-portrait-wrap { aspect-ratio: 4/3; } .director-portrait-overlay { background: linear-gradient(to bottom, transparent 60%, #0d0d0d 100%); } .director-content { padding: 48px 6%; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — SERVICES
═══════════════════════════════════════════════════════ */
.services { padding: 90px 5%; background: var(--cream); border-bottom: 1px solid rgba(0,0,0,0.07); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid #e8e8e8; }
.services-col { padding: 44px 40px 44px 0; border-right: 1px solid #e8e8e8; }
.services-col:last-child { border-right: none; padding-right: 0; }
.services-col:not(:first-child) { padding-left: 40px; }
.service-cat { font-size: 13px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #111; margin-bottom: 20px; }
.services-col ul { list-style: none; margin-bottom: 0; }
.services-col ul li { font-size: 14px; font-weight: 300; color: #555; padding: 6px 0; border-bottom: 1px solid #f5f5f5; line-height: 1.4; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr; } .services-col { padding: 32px 0; border-right: none; border-bottom: 1px solid #e8e8e8; } }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — CLIENTS
═══════════════════════════════════════════════════════ */
.clients { padding: 70px 5%; background: var(--cream); }
.clients-logos { display: flex; flex-wrap: wrap; align-items: center; gap: 40px 56px; margin-top: 36px; opacity: 0.55; filter: grayscale(1); }
.clients-logos .logo-name { font-size: 15px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #111; }

/* ═══════════════════════════════════════════════════════
   HOMEPAGE — TESTIMONIALS
═══════════════════════════════════════════════════════ */
.testimonials { padding: 90px 5%; background: var(--cream); }
.testimonials-header { text-align: center; margin-bottom: 56px; }
.stars { color: #f5a623; font-size: 18px; margin-bottom: 10px; }
.review-tag { font-size: 11px; font-weight: 500; color: #aaa; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 20px; }
.review-platforms { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 0; }
.review-platform-link { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: #888; text-decoration: none; border: 1px solid rgba(0,0,0,0.15); padding: 6px 14px; border-radius: 100px; transition: color 0.2s, border-color 0.2s, background 0.2s; }
.review-platform-link:hover { color: #111; border-color: #111; background: rgba(0,0,0,0.04); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: rgba(0,0,0,0.08); border: 1px solid rgba(0,0,0,0.08); margin-bottom: 40px; }
.testimonial-card { background: var(--cream); padding: 40px 32px; transition: background 0.2s; }
.testimonial-card:hover { background: #ddd8cc; }
.testimonial-card-stars { color: #f5a623; font-size: 13px; margin-bottom: 18px; }
.testimonial-quote { font-size: clamp(14px, 1.4vw, 16px); font-weight: 300; font-style: italic; color: #333; line-height: 1.75; margin-bottom: 20px; }
.testimonial-author { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: #111; margin-bottom: 2px; }
.testimonial-company { font-size: 10px; font-weight: 400; color: #888; letter-spacing: 0.06em; }
.testimonial-platform { display: inline-block; margin-top: 14px; font-size: 9px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand); }
.testimonials-footer { text-align: center; }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════
   PROJECTS GRID PAGE
═══════════════════════════════════════════════════════ */
.page-header {
  background: #090909;
  padding: 140px 5% 72px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.page-header::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.page-header-ghost { position: absolute; right: -1%; top: 50%; transform: translateY(-50%); font-size: clamp(100px, 17vw, 260px); font-weight: 900; color: rgba(255,255,255,0.022); letter-spacing: -0.04em; line-height: 1; pointer-events: none; user-select: none; white-space: nowrap; }
.page-breadcrumb { font-size: 10px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 20px; position: relative; z-index: 2; }
.page-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--brand); }
.page-breadcrumb span { color: var(--brand); }
.page-headline { font-size: clamp(44px, 7vw, 96px); font-weight: 900; color: #fff; letter-spacing: -0.04em; line-height: 0.95; margin-bottom: 32px; position: relative; z-index: 2; }
.cs-meta-strip { display: flex; flex-wrap: wrap; gap: 8px; position: relative; z-index: 2; }
.cs-meta-pill { font-size: 9px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.12); padding: 6px 14px; border-radius: 100px; white-space: nowrap; }
.cs-meta-pill.accent { color: var(--brand); border-color: rgba(234,60,37,0.4); }

.page-stats { display: flex; gap: 48px; flex-wrap: wrap; position: relative; z-index: 2; }
.page-stat-item { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.3); }
.page-stat-item strong { display: block; font-size: clamp(28px, 3.5vw, 42px); font-weight: 800; color: #fff; letter-spacing: -0.02em; margin-bottom: 3px; line-height: 1; }

.filter-bar {
  position: sticky;
  top: 56px; /* below fixed nav */
  z-index: 50;
  background: #090909;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 16px 5%;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-count { margin-left: auto; font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.25); white-space: nowrap; }
.filter-btn { font-family: var(--font); font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; padding: 8px 18px; border-radius: 100px; border: 1px solid rgba(255,255,255,0.15); background: transparent; color: rgba(255,255,255,0.45); cursor: pointer; transition: background 0.2s, border-color 0.2s, color 0.2s; line-height: 1; }
.filter-btn:hover { border-color: rgba(255,255,255,0.35); color: rgba(255,255,255,0.8); }
.filter-btn.active { background: var(--brand); border-color: var(--brand); color: #fff; }

.projects-section { background: #0e0e0e; padding: 32px 5% 100px; min-height: 400px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.filter-empty { text-align: center; padding: 80px 0; font-size: 14px; font-weight: 400; letter-spacing: 0.06em; color: rgba(255,255,255,0.2); text-transform: uppercase; }
@media (max-width: 1024px) { .projects-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .projects-grid { grid-template-columns: 1fr; gap: 10px; } .filter-count { display: none; } }

/* ═══════════════════════════════════════════════════════
   PROJECT DETAIL PAGES (cs-*)
═══════════════════════════════════════════════════════ */
.cs-hero { background: #080808; padding: 72px 5%; }
.cs-hero-inner { max-width: 1200px; margin: 0 auto; }
.cs-hero-label { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.cs-video-frame { position: relative; width: 100%; padding-bottom: 56.25%; background: #000; border-radius: 12px; overflow: hidden; box-shadow: 0 32px 80px rgba(0,0,0,0.25); }
.cs-video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.cs-video-vertical { padding-bottom: 177.78%; }

.cs-details { background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); border-bottom: 1px solid rgba(255,255,255,0.05); padding: 52px 5%; position: relative; }
.cs-details::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.cs-details-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; max-width: 1200px; margin: 0 auto; }
.cs-detail-item { padding: 24px 28px; border-left: 1px solid rgba(255,255,255,0.06); }
.cs-detail-item:first-child { border-left: none; }
.cs-detail-label { font-size: 9px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 10px; }
.cs-detail-value { font-size: 14px; font-weight: 600; color: #fff; letter-spacing: 0.01em; line-height: 1.4; }

.cs-overview { background: #0a0a0a; padding: 88px 5%; }
.cs-overview-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.cs-overview-left { position: sticky; top: 80px; }
.cs-overview-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 20px; }
.cs-overview-pull { font-size: clamp(22px, 2.8vw, 36px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1.2; }
.cs-overview-body { font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 28px; }
.cs-overview-body strong { font-weight: 700; color: #fff; }
.cs-overview-body:last-child { margin-bottom: 0; }
.cs-overview-divider { width: 36px; height: 2px; background: var(--brand); margin: 36px 0; }

.cs-bts { background: #0a0a0a; padding: 88px 5%; position: relative; }
.cs-bts::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.cs-section-header { max-width: 1200px; margin: 0 auto 44px; }
.cs-section-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.cs-section-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.cs-bts-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.cs-bts-item { border-radius: 8px; overflow: hidden; aspect-ratio: 3/2; background: #1a1a1a; }
.cs-bts-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; filter: grayscale(15%); }
.cs-bts-item:hover img { transform: scale(1.04); }

.cs-related { background: #0e0e0e; padding: 88px 5%; }
.cs-related-inner { max-width: 1200px; margin: 0 auto; }
.cs-related-header { margin-bottom: 44px; display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.cs-related-link { font-size: 10px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding-bottom: 2px; white-space: nowrap; transition: color 0.2s, border-color 0.2s; }
.cs-related-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.cs-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

/* Campaign Films section */
.cs-films { background: #080808; padding: 88px 5%; position: relative; }
.cs-films::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.cs-films-inner { max-width: 1200px; margin: 0 auto; }
.cs-films-header { margin-bottom: 44px; }
.cs-film-grid,
.cs-films-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.cs-film-item { position: relative; padding-bottom: 56.25%; background: #111; border-radius: 10px; overflow: hidden; }
.cs-film-item iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }

/* Production Stills section */
.cs-stills { background: #0a0a0a; padding: 88px 5%; }
.cs-stills-inner { max-width: 1200px; margin: 0 auto; }
.cs-stills-header { margin-bottom: 44px; }
.cs-stills-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: var(--brand); margin-bottom: 10px; }
.cs-stills-title { font-size: clamp(26px, 3.5vw, 44px); font-weight: 800; color: #fff; letter-spacing: -0.03em; line-height: 1; }
.cs-stills-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; }
.cs-stills-item { border-radius: 8px; overflow: hidden; aspect-ratio: 3/2; background: #1a1a1a; }
.cs-stills-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.55s ease; filter: grayscale(10%); }
.cs-stills-item:hover img { transform: scale(1.04); filter: grayscale(0%); }

/* Campaign video suite (Baji multi-cut) */
/* ── Centinela tab navigation ──────────────────────────────────────────── */
.cs-tab-nav { background: #0d0d0d; border-bottom: 1px solid rgba(255,255,255,0.08); position: sticky; top: 64px; z-index: 50; }
.cs-tab-nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 5%; display: flex; overflow-x: auto; scrollbar-width: none; -ms-overflow-style: none; }
.cs-tab-nav-inner::-webkit-scrollbar { display: none; }
.cs-tab-btn { flex-shrink: 0; background: none; border: none; border-bottom: 2px solid transparent; padding: 18px 22px; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(255,255,255,0.38); cursor: pointer; white-space: nowrap; transition: color 0.18s, border-color 0.18s; }
.cs-tab-btn:hover { color: rgba(255,255,255,0.7); }
.cs-tab-btn.active { color: #fff; border-bottom-color: var(--brand); }

/* ── Tab panels ──────────────────────────────────────────────────────── */
.cs-tab-panels { background: #080808; }
.cs-tab-panel { display: none; padding: 72px 5% 88px; position: relative; }
.cs-tab-panel::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.cs-tab-panel.active { display: block; }
@media (max-width: 768px) {
  .cs-tab-nav { top: 56px; }
  .cs-tab-btn { padding: 15px 16px; font-size: 9px; }
  .cs-tab-panel { padding: 48px 5% 64px; }
}

.cs-video-suite { background: #080808; padding: 88px 5%; position: relative; }
.cs-video-suite::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.cs-suite-inner { max-width: 1200px; margin: 0 auto; }
.cs-suite-header { margin-bottom: 44px; }
.cs-suite-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.cs-suite-item { }
.cs-suite-item-label { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.cs-suite-item-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.6); margin-bottom: 12px; letter-spacing: -0.01em; }
.cs-suite-video { position: relative; width: 100%; padding-bottom: 56.25%; height: 0; background: #111; border-radius: 10px; overflow: hidden; }
.cs-suite-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.cs-suite-video--vertical { padding-bottom: 177.78%; }

/* Multi-series layout (Clesign) */
.cs-series { margin-bottom: 64px; }
.cs-series:last-child { margin-bottom: 0; }
.cs-series-header { margin-bottom: 28px; }
.cs-series-eyebrow { font-size: 9px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 8px; }
.cs-series-title { font-size: clamp(18px, 2.2vw, 26px); font-weight: 800; color: #fff; letter-spacing: -0.02em; }
.cs-series-divider { border: none; border-top: 1px solid rgba(255,255,255,0.07); margin: 64px 0; }

/* Project page responsive */
@media (max-width: 1024px) { .cs-details-grid { grid-template-columns: repeat(3, 1fr); } .cs-related-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .cs-overview-inner { grid-template-columns: 1fr; gap: 40px; } .cs-overview-left { position: static; } .cs-bts-grid { grid-template-columns: repeat(2, 1fr); } .cs-suite-grid { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .cs-details-grid { grid-template-columns: repeat(2, 1fr); } .cs-related-grid { grid-template-columns: 1fr; } .cs-bts-grid { grid-template-columns: 1fr; } .cs-film-grid, .cs-films-grid { grid-template-columns: 1fr; } .cs-stills-grid { grid-template-columns: 1fr; } .cs-suite-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   EXTENDED CSS VARIABLES (blog & article pages)
═══════════════════════════════════════════════════════════════ */
:root {
  --dark: #080808;
  --mid: #1a1a1a;
  --text-body: #444;
  --text-dark: #111;
  --text-muted: #666;
  --border: rgba(0,0,0,0.1);
}

/* ═══════════════════════════════════════════════════════════════
   BLOG INDEX — home.php / archive.php
═══════════════════════════════════════════════════════════════ */

/* Blog page header */
.blog-header {
  background: #080808;
  padding: 160px 5% 80px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  overflow: hidden;
}
.blog-header::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    repeating-linear-gradient(90deg, rgba(234,60,37,0.04) 0px, rgba(234,60,37,0.04) 1px, transparent 1px, transparent 80px),
    repeating-linear-gradient(0deg, rgba(234,60,37,0.04) 0px, rgba(234,60,37,0.04) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}
.blog-header-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
/* Single post overrides the flex layout */
.blog-header.single-post .blog-header-inner {
  display: block;
  max-width: 880px;
}
.blog-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.blog-headline {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: #fff;
}
.blog-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  max-width: 380px;
  line-height: 1.65;
  padding-bottom: 4px;
}

/* Single post header elements */
.blog-breadcrumb {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 28px;
}
.blog-breadcrumb a { color: rgba(255,255,255,0.35); text-decoration: none; }
.blog-breadcrumb a:hover { color: var(--brand); }
.blog-breadcrumb span { margin: 0 10px; }
.blog-category-pill {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.blog-header h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 24px;
}
.blog-header-sub {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  max-width: 700px;
  margin-bottom: 36px;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.blog-meta-item {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.blog-meta-sep { color: rgba(255,255,255,0.15); }
.blog-meta .read-time { color: var(--brand); }

/* Press room */
.press-room {
  background: #0a0a0a;
  padding: 72px 5%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
}
.press-room::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--brand);
}
.press-inner { max-width: 1200px; margin: 0 auto; }
.press-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}
.press-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.press-title {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
}
.press-meta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
}
.press-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: rgba(234,60,37,0.1);
  border: 1px solid rgba(234,60,37,0.25);
  border-radius: 4px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
  align-self: flex-start;
  margin-top: 8px;
}
.press-link:hover { background: rgba(234,60,37,0.18); border-color: var(--brand); }
.press-outlets-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 20px;
}
.press-outlets { display: flex; flex-wrap: wrap; gap: 10px; }
.outlet-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.outlet-chip:hover { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.outlet-chip.primary { border-color: rgba(234,60,37,0.3); color: rgba(234,60,37,0.8); }
.outlet-more {
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.04em;
}

/* Category filter bar */
.blog-filter-bar {
  background: #0e0e0e;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: sticky;
  top: 56px;
  z-index: 50;
}
.blog-filter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-filter-inner::-webkit-scrollbar { display: none; }
.filter-btn {
  padding: 14px 18px;
  border: none;
  background: none;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  cursor: pointer;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  text-decoration: none;
  display: inline-block;
  transition: color 0.2s, border-color 0.2s;
}
.filter-btn:hover { color: rgba(255,255,255,0.7); }
.filter-btn.active { color: #fff; border-bottom-color: var(--brand); }

/* Featured post */
.blog-featured {
  background: #111;
  padding: 64px 5% 0;
}
.featured-inner { max-width: 1200px; margin: 0 auto; }
.featured-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.featured-card {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 0;
  background: #0a0a0a;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.4s ease;
  border: 1px solid rgba(255,255,255,0.05);
}
.featured-card:hover { transform: translateY(-4px); }
.featured-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.featured-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.featured-card:hover .featured-img-wrap img { transform: scale(1.04); }
.featured-content {
  padding: 48px 52px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.featured-cat {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 20px;
}
.featured-title {
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 18px;
}
.featured-excerpt {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin-bottom: 28px;
}
.featured-date {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
}
.featured-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 24px;
  transition: color 0.2s, gap 0.2s;
}
.featured-card:hover .featured-arrow { color: #fff; gap: 14px; }

/* Blog grid */
.blog-grid-section {
  background: #111;
  padding: 56px 5% 88px;
}
.blog-grid-inner { max-width: 1200px; margin: 0 auto; }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: #0a0a0a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.05);
  transition: transform 0.3s ease, border-color 0.3s;
}
.blog-card:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.1); }
.blog-card-img {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #1a1a1a;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body {
  padding: 24px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 10px;
}
.blog-card-title {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 12px;
  flex: 1;
}
.blog-card-date {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Pagination */
.blog-pagination {
  max-width: 1200px;
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
}
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.blog-pagination .page-numbers:hover { border-color: rgba(255,255,255,0.4); color: #fff; }
.blog-pagination .page-numbers.current { background: var(--brand); border-color: var(--brand); color: #fff; }

/* Blog index responsive */
@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 768px) {
  .featured-card { grid-template-columns: 1fr; }
  .featured-img-wrap { aspect-ratio: 16/9; }
  .featured-content { padding: 32px 28px; }
  .press-top { flex-direction: column; }
  .blog-header-inner { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════════════════════
   SINGLE BLOG POST — single.php
═══════════════════════════════════════════════════════════════ */

/* Featured image */
.blog-featured-image {
  width: 100%;
  background: #1a1a1a;
  aspect-ratio: 16/7;
  position: relative;
  overflow: hidden;
}
.blog-featured-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.4) 0%, rgba(234,60,37,0.12) 50%, rgba(14,14,14,0.6) 100%);
}

/* Article wrapper */
.article-wrapper {
  background: var(--cream);
  padding: 80px 5% 100px;
}
.article-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
  align-items: start;
}

/* Article body */
.article-body { color: var(--text-body); }
.article-body h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text-dark);
  margin: 48px 0 18px;
  line-height: 1.2;
}
.article-body h2:first-child { margin-top: 0; }
.article-body h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin: 36px 0 14px;
}
.article-body p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: #333;
  margin-bottom: 24px;
}
.article-body strong { font-weight: 700; color: var(--text-dark); }
.article-body ul, .article-body ol { margin: 0 0 28px 24px; }
.article-body li {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.75;
  color: #333;
  margin-bottom: 10px;
}

/* Pull quote */
.pull-quote {
  background: #080808;
  border-left: 4px solid var(--brand);
  padding: 32px 40px;
  margin: 48px 0;
  border-radius: 0 4px 4px 0;
}
.pull-quote p {
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.5 !important;
  color: #fff !important;
  margin: 0 0 12px !important;
  font-style: italic;
}
.pull-quote cite {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Stat grid */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin: 40px 0;
  background: var(--border);
}
.stat-box {
  background: #fff;
  padding: 32px;
  text-align: center;
}
.stat-num {
  font-size: 44px;
  font-weight: 900;
  color: var(--brand);
  letter-spacing: -0.03em;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Highlight box */
.highlight-box {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 3px solid var(--brand);
  padding: 32px;
  margin: 40px 0;
  border-radius: 0 0 4px 4px;
}
.highlight-box .hb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.highlight-box h4 {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
}
.highlight-box p {
  font-size: 15px !important;
  line-height: 1.7 !important;
  color: #555 !important;
  margin-bottom: 0 !important;
}

/* Timeline */
.timeline { margin: 40px 0; position: relative; padding-left: 32px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 8px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border);
}
.timeline-item { position: relative; margin-bottom: 32px; }
.timeline-item::before {
  content: '';
  position: absolute;
  left: -28px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--brand);
  border: 2px solid var(--cream);
}
.timeline-item.now::before {
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(234,60,37,0.2);
  width: 14px; height: 14px;
  left: -30px; top: 4px;
}
.timeline-month {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.timeline-title { font-size: 16px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.timeline-desc { font-size: 14px; font-weight: 300; color: #666; line-height: 1.6; }

/* Article divider */
.article-divider { border: none; border-top: 1px solid var(--border); margin: 48px 0; }

/* Article sidebar */
.article-sidebar { position: sticky; top: 80px; }
.sidebar-block {
  background: #fff;
  border: 1px solid var(--border);
  padding: 28px;
  margin-bottom: 24px;
}
.sidebar-block.dark { background: #080808; border: none; }
.sb-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: block;
}
.sb-title {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.sidebar-block.dark .sb-title { color: #fff; }
.sb-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: #666;
  margin-bottom: 20px;
}
.sidebar-block.dark .sb-body { color: rgba(255,255,255,0.5); }
.sb-cta {
  display: block;
  background: var(--brand);
  color: #fff;
  text-align: center;
  padding: 14px 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  transition: opacity 0.2s;
}
.sb-cta:hover { opacity: 0.88; }
.sb-cta-outline {
  display: block;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  text-align: center;
  padding: 12px 20px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  margin-top: 12px;
  transition: border-color 0.2s, color 0.2s;
}
.sb-cta-outline:hover { border-color: rgba(255,255,255,0.5); color: #fff; }
.toc-list { list-style: none; padding: 0; margin: 0; }
.toc-list li { margin-bottom: 0; }
.toc-list a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: none;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}
.toc-list li:last-child a { border-bottom: none; }
.toc-list a:hover { color: var(--brand); padding-left: 6px; }
.toc-list a .toc-num { color: var(--brand); font-weight: 700; margin-right: 8px; font-size: 12px; }
.related-list { list-style: none; padding: 0; margin: 0; }
.related-list li { padding: 12px 0; border-bottom: 1px solid var(--border); }
.related-list li:last-child { border-bottom: none; }
.related-list a { text-decoration: none; }
.related-tag { font-size: 9px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand); display: block; margin-bottom: 4px; }
.related-title { font-size: 13px; font-weight: 600; color: var(--text-dark); line-height: 1.4; transition: color 0.2s; }
.related-list a:hover .related-title { color: var(--brand); }

/* Article post-tags */
.article-tags {
  max-width: 1100px;
  margin: 0 auto;
  padding: 32px 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.article-tag {
  display: inline-block;
  padding: 5px 14px;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.article-tag:hover { border-color: var(--brand); color: var(--brand); }

/* Article CTA strip */
.article-cta-strip {
  background: #080808;
  padding: 80px 5%;
}
.article-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.acta-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.acta-h2 {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 12px;
}
.acta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.acta-btns { display: flex; flex-direction: column; gap: 12px; min-width: 240px; }
.btn-primary { display: inline-block; background: var(--brand); color: #fff; padding: 16px 32px; font-size: 11px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; text-decoration: none; transition: opacity 0.2s; text-align: center; }
.btn-primary:hover { opacity: 0.88; }
.btn-outline-dark { display: inline-block; border: 1px solid rgba(255,255,255,0.25); color: rgba(255,255,255,0.7); padding: 14px 32px; font-size: 11px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; text-decoration: none; transition: border-color 0.2s, color 0.2s; text-align: center; }
.btn-outline-dark:hover { border-color: rgba(255,255,255,0.55); color: #fff; }

/* Post navigation */
.post-nav {
  background: #0e0e0e;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.post-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 5%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.post-nav-item { text-decoration: none; }
.post-nav-item.next { text-align: right; }
.post-nav-dir {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  margin-bottom: 8px;
}
.post-nav-title {
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,0.6);
  line-height: 1.35;
  transition: color 0.2s;
}
.post-nav-item:hover .post-nav-title { color: #fff; }

/* Single post responsive */
@media (max-width: 960px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}
@media (max-width: 768px) {
  .article-cta-inner { grid-template-columns: 1fr; gap: 32px; }
  .acta-btns { min-width: auto; flex-direction: row; flex-wrap: wrap; }
  .post-nav-inner { grid-template-columns: 1fr; gap: 20px; }
  .blog-featured-image { aspect-ratio: 16/9; }
}

/* ═══════════════════════════════════════════════════════════════
   LOCATION PAGES — city-specific sections
═══════════════════════════════════════════════════════════════ */

/* Hero video */
.city-hero-video {
  position: relative;
  height: 65vh;
  min-height: 420px;
  max-height: 700px;
  background: #000;
  overflow: hidden;
}
.city-hero-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.city-hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
  display: flex;
  align-items: flex-end;
  padding: 40px 5%;
}
.city-hero-caption {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}

/* Trust bar */
.trust-bar { background: var(--brand); padding: 0; }
.trust-bar-inner { display: flex; align-items: stretch; overflow: hidden; }
.trust-bar-item {
  flex: 1;
  text-align: center;
  padding: 28px 16px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.trust-bar-item:last-child { border-right: none; }
.trust-bar-num {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 4px;
}
.trust-bar-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* Section commons */
.section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 18px;
}
.section-headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.section-body { font-size: clamp(15px, 1.6vw, 18px); font-weight: 300; line-height: 1.85; }
.section-body p { margin-bottom: 18px; }
.section-body p:last-child { margin-bottom: 0; }

/* City intro (cream) */
.city-intro { background: var(--cream); padding: 100px 5%; }
.city-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
}
.city-intro-pull {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.2;
}
.city-intro-pull span { color: var(--brand); }
.city-intro-body { color: #444; }

/* City services (dark) */
.city-services { background: #0a0a0a; padding: 100px 5%; position: relative; }
.city-services::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.city-services-header { max-width: 640px; margin-bottom: 60px; }
.city-services-header .section-headline { color: #fff; }
.city-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.service-card { background: #111; padding: 36px 28px; transition: background 0.2s; }
.service-card:hover { background: #181818; }
.service-card-num { font-size: 11px; font-weight: 700; letter-spacing: 0.2em; color: var(--brand); margin-bottom: 20px; }
.service-card-title { font-size: 16px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 12px; line-height: 1.2; }
.service-card-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* City featured video (cream) */
.city-featured-video { background: var(--cream); padding: 100px 5%; }
.city-featured-video-inner { max-width: 1200px; margin: 0 auto; }
.city-featured-video-header { margin-bottom: 40px; }
.city-featured-video-header .section-headline { color: #111; }
.city-featured-video-header .section-body { color: #555; }
.city-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: #000;
  border-radius: 2px;
}
.city-video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: none; }
.city-video-caption { margin-top: 16px; font-size: 11px; font-weight: 500; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(17,17,17,0.4); }

/* City why choose (dark) */
.city-why { background: #090909; padding: 100px 5%; position: relative; }
.city-why::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.city-why-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1280px;
}
.city-why-left .section-headline { color: #fff; }
.city-why-left .section-body { color: rgba(255,255,255,0.5); }
.city-why-right { display: flex; flex-direction: column; gap: 0; }
.why-item { padding: 28px 0; border-bottom: 1px solid rgba(255,255,255,0.07); }
.why-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.why-item-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 8px; }
.why-item-desc { font-size: 13px; font-weight: 300; color: rgba(255,255,255,0.45); line-height: 1.7; }

/* City process (cream) */
.city-process { background: var(--cream); padding: 100px 5%; }
.city-process-header { margin-bottom: 60px; max-width: 640px; }
.city-process-header .section-headline { color: #111; }
.city-process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.process-step { background: rgba(255,255,255,0.6); padding: 40px 32px; }
.process-step-phase { font-size: 10px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--brand); margin-bottom: 16px; }
.process-step-title { font-size: 20px; font-weight: 800; color: #111; letter-spacing: -0.02em; margin-bottom: 14px; }
.process-step-list { list-style: none; }
.process-step-list li { font-size: 13px; font-weight: 400; color: #555; padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,0.06); }
.process-step-list li:last-child { border-bottom: none; }
.process-step-list li::before { content: '→ '; color: var(--brand); font-weight: 700; }

/* City portfolio / related projects (dark) */
.city-portfolio { background: #0a0a0a; padding: 100px 5%; position: relative; }
.city-portfolio::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.city-portfolio-header { margin-bottom: 56px; }
.city-portfolio-header .section-headline { color: #fff; }
.city-portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.project-card { background: #111; overflow: hidden; text-decoration: none; display: block; transition: transform 0.3s; }
.project-card:hover { transform: translateY(-4px); }
.project-card-image { aspect-ratio: 16/9; overflow: hidden; }
.project-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.project-card:hover .project-card-image img { transform: scale(1.04); }
.project-card-body { padding: 24px; }
.project-card-cat { font-size: 9px; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.project-card-title { font-size: 17px; font-weight: 700; color: #fff; letter-spacing: -0.01em; line-height: 1.25; margin-bottom: 10px; }
.project-card-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.6; }
.project-card-link { display: inline-block; margin-top: 16px; font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); text-decoration: none; }

/* City FAQ (cream) */
.city-faq { background: var(--cream); padding: 100px 5%; }
.city-faq-inner { max-width: 880px; }
.city-faq-header { margin-bottom: 52px; }
.city-faq-header .section-headline { color: #111; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.12); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-question-text {
  font-size: clamp(14px, 1.4vw, 17px);
  font-weight: 600;
  color: #111;
  line-height: 1.4;
}
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(0,0,0,0.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: #555;
  transition: background 0.2s, color 0.2s, transform 0.3s;
}
.faq-item.active .faq-icon {
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  font-size: clamp(14px, 1.3vw, 16px);
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  padding-bottom: 24px;
  max-width: 720px;
}
.faq-item.active .faq-answer { display: block; }

/* City hotels (dark) */
.city-hotels { background: #090909; padding: 100px 5%; position: relative; }
.city-hotels::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.city-hotels-header { margin-bottom: 52px; max-width: 640px; }
.city-hotels-header .section-headline { color: #fff; }
.city-hotels-header .section-body { color: rgba(255,255,255,0.45); }
.hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.hotel-card { background: #111; overflow: hidden; }
.hotel-card-image { aspect-ratio: 16/10; overflow: hidden; }
.hotel-card-image img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.hotel-card:hover .hotel-card-image img { transform: scale(1.04); }
.hotel-card-body { padding: 22px 24px; }
.hotel-card-stars { font-size: 11px; color: #c8a84b; letter-spacing: 0.08em; margin-bottom: 6px; }
.hotel-card-name { font-size: 15px; font-weight: 700; color: #fff; letter-spacing: -0.01em; margin-bottom: 6px; }
.hotel-card-location { font-size: 11px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 8px; }
.hotel-card-desc { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4); line-height: 1.65; }

/* City attractions (cream) */
.city-attractions { background: var(--cream); padding: 100px 5%; }
.city-attractions-header { margin-bottom: 52px; max-width: 640px; }
.city-attractions-header .section-headline { color: #111; }
.city-attractions-header .section-body { color: #555; }
.attractions-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.attraction-card { background: rgba(255,255,255,0.6); padding: 30px 24px; position: relative; overflow: hidden; }
.attraction-card-icon { font-size: 32px; margin-bottom: 14px; }
.attraction-card-name { font-size: 15px; font-weight: 700; color: #111; letter-spacing: -0.01em; margin-bottom: 8px; }
.attraction-card-dist { font-size: 10px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--brand); margin-bottom: 8px; }
.attraction-card-desc { font-size: 12px; font-weight: 300; color: #666; line-height: 1.65; }

/* City area chips (dark) */
.city-area { background: #0a0a0a; padding: 80px 5%; position: relative; }
.city-area::before { content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 100%; background: var(--brand); }
.city-area-header { margin-bottom: 36px; }
.city-area-header .section-headline { color: #fff; }
.city-area-body { font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.45); max-width: 720px; line-height: 1.7; margin-bottom: 36px; }
.area-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.area-chip {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.area-chip:hover { background: rgba(234,60,37,0.12); border-color: rgba(234,60,37,0.4); color: #fff; }

/* City CTA band */
.city-cta { background: var(--brand); padding: 90px 5%; text-align: center; }
.city-cta-headline {
  font-size: clamp(32px, 5vw, 64px);
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 20px;
}
.city-cta-sub {
  font-size: clamp(15px, 1.6vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 40px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 18px 44px;
  transition: background 0.2s, color 0.2s;
}
.cta-btn:hover { background: #111; color: #fff; }
.cta-btn-outline {
  display: inline-block;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.85);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 17px 44px;
  margin-left: 16px;
  transition: border-color 0.2s, color 0.2s;
}
.cta-btn-outline:hover { border-color: #fff; color: #fff; }

/* Header meta strip (location pages) */
.header-meta-strip {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.header-meta-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.header-meta-item strong {
  display: block;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 2px;
  line-height: 1;
}

/* Location responsive */
@media (max-width: 1100px) {
  .city-intro-inner { grid-template-columns: 1fr; gap: 32px; }
  .city-why-inner { grid-template-columns: 1fr; gap: 48px; }
  .city-services-grid { grid-template-columns: repeat(2, 1fr); }
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
  .city-portfolio-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 700px) {
  .trust-bar-inner { flex-wrap: wrap; }
  .trust-bar-item { flex: 1 1 50%; }
  .city-services-grid { grid-template-columns: 1fr; }
  .city-process-steps { grid-template-columns: 1fr; }
  .hotels-grid { grid-template-columns: 1fr; }
  .attractions-grid { grid-template-columns: 1fr 1fr; }
  .city-portfolio-grid { grid-template-columns: 1fr; }
  .cta-btn-outline { margin-left: 0; margin-top: 12px; display: block; }
}

/* ═══════════════════════════════════════════════════════════════
   GENERIC PAGE (page.php fallback)
═══════════════════════════════════════════════════════════════ */
.generic-page-content {
  background: var(--cream);
  padding: 80px 5% 100px;
}
.generic-page-inner {
  max-width: 900px;
  margin: 0 auto;
  color: #333;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.85;
}
.generic-page-inner h2 {
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin: 48px 0 18px;
}
.generic-page-inner h2:first-child { margin-top: 0; }
.generic-page-inner h3 { font-size: 20px; font-weight: 700; color: #111; margin: 36px 0 14px; }
.generic-page-inner p { margin-bottom: 24px; }
.generic-page-inner ul, .generic-page-inner ol { margin: 0 0 28px 24px; }
.generic-page-inner li { margin-bottom: 10px; }
.generic-page-inner a { color: var(--brand); text-decoration: underline; }
.generic-page-inner strong { font-weight: 700; color: #111; }


/* ============================================================
   CONTACT PAGE
   ============================================================ */

/* ── MAIN CONTACT SPLIT ── */
.contact-main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 700px;
  background: var(--cream);
}
.contact-info {
  padding: 72px 7% 72px 5%;
  background: #111;
  color: #fff;
  position: relative;
}
.contact-info::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--brand);
}
.contact-info-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 18px;
}
.contact-info h2 {
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 32px;
}
.contact-info p {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.85; margin-bottom: 44px; max-width: 360px;
}
.contact-details {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-detail-group {}
.contact-detail-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 8px;
}
.contact-detail-value {
  font-size: 15px; font-weight: 400; color: rgba(255,255,255,0.8);
  line-height: 1.65;
}
.contact-detail-value a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.contact-detail-value a:hover { color: #fff; border-color: #fff; }
.contact-offices {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact-offices-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.28em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px;
}
.office-list {
  display: flex; flex-direction: column; gap: 14px;
}
.office-item {
  display: flex; align-items: center; gap: 12px;
}
.office-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand); flex-shrink: 0;
}
.office-name {
  font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.7);
}

/* ── CONTACT FORM ── */
.contact-form-wrap {
  padding: 72px 7% 72px 6%;
  background: var(--cream);
}
.form-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.form-title {
  font-size: clamp(22px, 2.5vw, 34px);
  font-weight: 800; color: #111; letter-spacing: -0.02em;
  margin-bottom: 36px;
}
.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
}
.form-field {
  position: relative;
  margin-bottom: 1px;
}
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  display: block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #888; margin-bottom: 0;
  position: absolute; top: 14px; left: 18px;
  pointer-events: none; transition: all 0.2s;
  z-index: 1;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  background: #fff;
  border: none;
  border-bottom: 2px solid #e0dbd0;
  padding: 30px 18px 10px;
  font-size: 15px; font-weight: 400;
  font-family: var(--font);
  color: #111;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 18px center;
  cursor: pointer;
}
.form-field textarea {
  resize: vertical; min-height: 130px; padding-top: 28px;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand);
  background: #fafaf8;
}
.form-field input:focus + label,
.form-field input:not(:placeholder-shown) + label,
.form-field select:focus + label,
.form-field select:not([value=""]) + label,
.form-field textarea:focus + label,
.form-field textarea:not(:placeholder-shown) + label {
  top: 10px; font-size: 8px; color: var(--brand);
}
.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding: 28px 0 0;
}
.form-note {
  font-size: 11px; font-weight: 300; color: #888; line-height: 1.6; flex: 1;
}
.btn-red-form {
  display: inline-block; background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 17px 40px;
  border: none; cursor: pointer; font-family: var(--font);
  border-radius: 2px; transition: background 0.2s;
  white-space: nowrap;
}
.btn-red-form:hover { background: #c93218; }

/* Form intro text */
.form-intro {
  font-size: 14px;
  line-height: 1.65;
  color: #666;
  margin: -16px 0 28px;
  max-width: 420px;
}

/* Trust pills below submit */
.form-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #ddd8cc;
}
.form-trust-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #888;
  text-transform: uppercase;
}

/* ── CF7 FORM OVERRIDES — contact-form-wrap context ── */
/* CF7 outputs its own HTML (<p>, wpcf7-form-control-wrap, etc.)
   These rules make it match the Caldera design system.        */

.contact-form-wrap .wpcf7 { width: 100%; }

/* Grid layout: Name | Email in row 1, Message + Submit full-width below */
.contact-form-wrap .wpcf7 { width: 100%; }
.contact-form-wrap .wpcf7-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #b8b3a6;   /* gap colour = visible grid lines */
  margin-top: 8px;
  border: 3px solid #b8b3a6;
}

/* Every CF7 <p> is a white tile */
.contact-form-wrap .wpcf7-form > p {
  margin: 0;
  padding: 20px 22px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
}

/* p:nth-child(1) = Name  → col 1  (default, no override needed)  */
/* p:nth-child(2) = Email → col 2  (default, no override needed)  */
/* p:nth-child(3) = Message textarea → full width                  */
/* p:nth-child(4) = Submit           → full width, no background   */
.contact-form-wrap .wpcf7-form > p:nth-child(n+3) {
  grid-column: 1 / -1;
}
.contact-form-wrap .wpcf7-form > p:last-child {
  background: transparent;
  border: none;
  padding: 24px 0 0;
}

/* Labels — tiny, uppercase, tracked */
.contact-form-wrap .wpcf7-form label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: #888;
  line-height: 1;
  margin: 0;
}

/* Unwrap control span */
.contact-form-wrap .wpcf7-form .wpcf7-form-control-wrap { display: block; }

/* Text inputs + textarea */
.contact-form-wrap .wpcf7-form input[type="text"],
.contact-form-wrap .wpcf7-form input[type="email"],
.contact-form-wrap .wpcf7-form input[type="tel"],
.contact-form-wrap .wpcf7-form textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid #ddd8cc;
  padding: 8px 0 10px;
  font-size: 15px;
  font-weight: 400;
  font-family: var(--font);
  color: #111;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s;
  box-shadow: none;
}
.contact-form-wrap .wpcf7-form textarea {
  min-height: 130px;
  resize: vertical;
}
.contact-form-wrap .wpcf7-form input[type="text"]:focus,
.contact-form-wrap .wpcf7-form input[type="email"]:focus,
.contact-form-wrap .wpcf7-form input[type="tel"]:focus,
.contact-form-wrap .wpcf7-form textarea:focus { border-color: var(--brand); }

.contact-form-wrap .wpcf7-form input::placeholder,
.contact-form-wrap .wpcf7-form textarea::placeholder {
  color: #bbb;
  font-size: 14px;
}

/* Submit button — full Caldera red */
.contact-form-wrap .wpcf7-form input[type="submit"],
.contact-form-wrap .wpcf7-submit {
  display: inline-block;
  background: var(--brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 52px;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
  white-space: nowrap;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form-wrap .wpcf7-form input[type="submit"]:hover { background: #c93218; }
.contact-form-wrap .wpcf7-form input[type="submit"]:disabled { opacity: 0.45; cursor: not-allowed; }

/* Spinner */
.contact-form-wrap .wpcf7-spinner { margin-left: 14px; vertical-align: middle; }

/* Inline validation tips */
.contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.06em; color: var(--brand); margin-top: 4px;
}

/* Response banner (success / error) */
.contact-form-wrap .wpcf7-response-output {
  margin: 16px 0 0; padding: 14px 20px;
  font-size: 13px; font-weight: 500;
  border: none; border-radius: 2px;
}
.contact-form-wrap .wpcf7-mail-sent-ok { background: #e8f5e9; color: #2e7d32; }
.contact-form-wrap .wpcf7-validation-errors,
.contact-form-wrap .wpcf7-mail-sent-ng,
.contact-form-wrap .wpcf7-spam-blocked { background: #fde8e8; color: #c62828; }

/* ── RESPONSE PROMISE ── */
.response-promise {
  background: #0a0a0a;
  padding: 64px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.promise-item {
  display: flex; align-items: flex-start; gap: 18px; flex: 1; min-width: 220px;
}
.promise-icon {
  font-size: 28px; line-height: 1; flex-shrink: 0;
}
.promise-text-label {
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 4px;
}
.promise-text-val {
  font-size: 14px; font-weight: 600; color: #fff; margin-bottom: 4px;
}
.promise-text-desc {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4);
}

/* ── CONTACT TESTIMONIALS ── */
.contact-testimonials {
  background: #0a0a0a;
  padding: 80px 5%;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.contact-testimonials-header {
  text-align: center;
  margin-bottom: 52px;
}
.ct-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 12px;
}
.ct-title {
  font-size: clamp(24px, 3vw, 40px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em; margin-bottom: 16px;
}
.ct-stars {
  font-size: 22px; color: #f5a623; margin-bottom: 8px; letter-spacing: 2px;
}
.ct-tag {
  font-size: 11px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 24px;
}
.ct-platforms {
  display: flex; justify-content: center; gap: 10px; flex-wrap: wrap;
}
.ct-platform-link {
  font-size: 9px; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  text-decoration: none; border: 1px solid rgba(255,255,255,0.12);
  padding: 6px 14px; border-radius: 100px;
  transition: color 0.2s, border-color 0.2s;
}
.ct-platform-link:hover { color: #fff; border-color: rgba(255,255,255,0.4); }
.ct-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.ct-card {
  background: #111; padding: 40px 32px;
  transition: background 0.2s;
}
.ct-card:hover { background: #151515; }
.ct-card-stars { font-size: 14px; color: #f5a623; letter-spacing: 1px; margin-bottom: 20px; }
.ct-card-quote {
  font-size: 15px; font-weight: 300; color: rgba(255,255,255,0.75);
  line-height: 1.75; margin-bottom: 28px; font-style: italic;
}
.ct-card-author { font-size: 13px; font-weight: 700; color: #fff; letter-spacing: 0.02em; }
.ct-card-company { font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.4); margin-top: 3px; }
.ct-card-platform {
  font-size: 9px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--brand); margin-top: 16px;
  padding-top: 16px; border-top: 1px solid rgba(255,255,255,0.08);
}
.ct-footer { text-align: center; }
.ct-footer a {
  font-size: 11px; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.5);
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.2);
  padding-bottom: 2px; transition: color 0.2s, border-color 0.2s;
}
.ct-footer a:hover { color: #fff; border-color: rgba(255,255,255,0.5); }

/* ── CONTACT FAQ ── */
.contact-faq {
  background: var(--cream);
  padding: 80px 5%;
}
.contact-faq-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: #aaa; margin-bottom: 12px;
}
.contact-faq h2 {
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800; color: #111; letter-spacing: -0.02em; margin-bottom: 44px;
}
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid rgba(0,0,0,0.1); }
.faq-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }
.faq-question {
  width: 100%; text-align: left; background: none; border: none;
  padding: 20px 0; font-family: var(--font); font-size: 15px;
  font-weight: 600; color: #111; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; letter-spacing: -0.01em; transition: color 0.2s;
}
.faq-question:hover { color: var(--brand); }
.faq-icon { font-size: 20px; font-weight: 300; color: #aaa; line-height: 1; flex-shrink: 0; transition: transform 0.25s ease, color 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--brand); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 220px; }
.faq-answer p {
  font-size: 14px; font-weight: 300; color: #555;
  line-height: 1.8; padding-bottom: 20px; max-width: 620px;
}

/* ── CONTACT RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-main { grid-template-columns: 1fr; }
  .contact-info { padding: 60px 5%; }
  .contact-form-wrap { padding: 60px 5%; }
  .form-row { grid-template-columns: 1fr; }
  .response-promise { flex-direction: column; gap: 24px; }
  .ct-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .form-submit-row { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* ── PAGE STATS (shared by about + services headers) ── */
.page-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}
.page-stat-item {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.page-stat-item strong {
  display: block;
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 3px;
  line-height: 1;
}

/* ── MISSION / IDENTITY ── */
.about-mission {
  background: var(--cream);
  padding: 100px 5%;
}
.about-mission-inner {
  max-width: 880px;
}
.about-mission-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 28px;
}
.about-mission-headline {
  font-size: clamp(32px, 4.5vw, 58px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 36px;
}
.about-mission-body p {
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 300;
  color: #444;
  line-height: 1.85;
  max-width: 680px;
  margin-bottom: 20px;
}
.about-mission-body p:last-child { margin-bottom: 0; }

/* ── APPROACH ── */
.about-approach {
  background: var(--black);
  padding: 100px 5%;
  position: relative;
}
.about-approach::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
}
.approach-header {
  margin-bottom: 64px;
}
.approach-header .section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
}
.approach-header h2 {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.approach-item {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  transition: background 0.3s;
}
.approach-item:hover { background: #111; }
.approach-num {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-bottom: 24px;
}
.approach-item h3 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
  line-height: 1.2;
}
.approach-item p {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
}

/* ── DIRECTOR FEATURE ── */
.director-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #0d0d0d;
  position: relative;
  overflow: hidden;
}
.director-feature::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
  z-index: 3;
}
.director-portrait-wrap { position: relative; overflow: hidden; }
.director-portrait-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.82; filter: grayscale(0.15);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.director-feature:hover .director-portrait-wrap img { opacity: 0.92; transform: scale(1.025); }
.director-portrait-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, transparent 65%, #0d0d0d 100%);
}
.director-content {
  padding: 80px 7% 80px 6%;
  display: flex; flex-direction: column; justify-content: center;
}
.director-eyebrow {
  font-size: 10px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 22px;
}
.director-name {
  font-size: clamp(44px, 5.5vw, 76px); font-weight: 800;
  line-height: 1.0; color: #fff; letter-spacing: -0.03em; margin-bottom: 14px;
}
.director-role {
  font-size: 11px; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 36px;
}
.director-bio {
  font-size: clamp(14px, 1.5vw, 16px); font-weight: 300;
  line-height: 1.85; color: rgba(255,255,255,0.6); max-width: 460px; margin-bottom: 32px;
}
.director-creds { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 40px; }
.director-creds span {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); border: 1px solid rgba(255,255,255,0.14);
  padding: 6px 14px; border-radius: 100px;
}
.director-feature .link-arrow { color: rgba(255,255,255,0.65); border-bottom-color: rgba(255,255,255,0.3); }
.director-feature .link-arrow:hover { color: #fff; border-color: #fff; }

/* ── MILESTONES ── */
.about-milestones {
  background: var(--cream);
  padding: 90px 5%;
  overflow: hidden;
}
.milestones-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 56px;
}
.milestones-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 2px solid #ddd;
  position: relative;
}
.milestone-item {
  padding: 28px 0 0;
  position: relative;
}
.milestone-item::before {
  content: '';
  position: absolute;
  top: -2px; left: 0;
  width: 2px; height: 18px;
  background: var(--brand);
}
.milestone-year {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--brand);
  margin-bottom: 10px;
}
.milestone-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.milestone-desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.6;
  max-width: 200px;
}

/* ── INDUSTRIES (about page version) ── */
.about-industries {
  background: #0e0e0e;
  padding: 90px 5%;
}
.industries-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.industries-headline {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.industry-item {
  background: #0e0e0e;
  padding: 36px 32px;
  transition: background 0.3s;
}
.industry-item:hover { background: #151515; }
.industry-num {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand);
  margin-bottom: 14px;
}
.industry-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.industry-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

/* ── PRESS ── */
.about-press {
  background: var(--cream);
  padding: 80px 5%;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.press-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 40px;
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.press-item {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 32px;
  background: #fff;
}
.press-outlet {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  margin-bottom: 12px;
}
.press-headline {
  font-size: 15px;
  font-weight: 400;
  color: #333;
  line-height: 1.5;
  margin-bottom: 16px;
}
.press-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 1px solid rgba(234,60,37,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.press-link:hover { border-color: var(--brand); }

/* ── ABOUT FAQ ── */
.about-faq {
  background: var(--cream);
  padding: 0 5% 100px;
}
.faq-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.faq-headline {
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.02em;
  margin-bottom: 48px;
}

/* ── SHARED LINK ARROW ── */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #111;
  text-decoration: none;
  border-bottom: 1px solid #111;
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.link-arrow:hover { color: var(--brand); border-color: var(--brand); }

/* ── ABOUT RESPONSIVE ── */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .press-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .milestones-track { grid-template-columns: repeat(2, 1fr); gap: 40px 24px; border-top: none; }
  .milestone-item::before { display: none; }
  .milestone-item { border-top: 2px solid #ddd; padding-top: 20px; }
  .director-feature { grid-template-columns: 1fr; }
  .director-portrait-wrap { aspect-ratio: 4/3; }
  .director-portrait-overlay { background: linear-gradient(to bottom, transparent 60%, #0d0d0d 100%); }
  .director-content { padding: 48px 6%; }
}
@media (max-width: 640px) {
  .approach-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .press-grid { grid-template-columns: 1fr; }
  .milestones-track { grid-template-columns: 1fr; }
  .page-stats { gap: 28px; }
}


/* ============================================================
   SERVICES PAGE
   ============================================================ */

/* ── SERVICES INTRO ── */
.services-intro {
  background: var(--cream);
  padding: 90px 5%;
}
.services-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
}
.services-intro-left h2 {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.services-intro-right p {
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 300;
  color: #555;
  line-height: 1.85;
  margin-bottom: 20px;
}
.services-intro-right p:last-child { margin-bottom: 0; }

/* ── CORE SERVICES ── */
.core-services {
  background: #0a0a0a;
  position: relative;
}
.core-services::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
}
.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  overflow: hidden;
}
.service-row:last-child { border-bottom: none; }
.service-row.flip .service-image { order: 2; }
.service-row.flip .service-content { order: 1; }
.service-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.service-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.75;
  filter: grayscale(0.2);
  transition: opacity 0.5s, transform 0.5s;
}
.service-row:hover .service-image img { opacity: 0.88; transform: scale(1.03); }
.service-image-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 40%);
}
.service-row.flip .service-image-overlay {
  background: linear-gradient(to left, #0a0a0a 0%, transparent 40%);
}
.service-content {
  padding: 64px 7%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-num {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--brand);
  margin-bottom: 20px;
}
.service-name {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 18px;
}
.service-desc {
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 32px;
}
.service-includes {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.service-includes li {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.13);
  padding: 6px 13px;
  border-radius: 100px;
}

/* ── PRODUCTION PROCESS ── */
.production-process {
  background: var(--cream);
  padding: 100px 5%;
  overflow: hidden;
  position: relative;
}
.process-header {
  margin-bottom: 64px;
}
.process-header h2 {
  font-size: clamp(28px, 4vw, 50px);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.03em;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 0; right: 0;
  height: 1px;
  background: #ccc;
}
.process-step {
  position: relative;
  padding: 0 20px 0 0;
}
.process-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--brand);
  border: 3px solid var(--cream);
  box-shadow: 0 0 0 1px var(--brand);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
  transition: transform 0.3s;
}
.process-step:hover .process-dot { transform: scale(1.35); }
.process-step-num {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--brand);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.process-step-title {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  line-height: 1.2;
}
.process-step-desc {
  font-size: 13px;
  font-weight: 300;
  color: #666;
  line-height: 1.65;
}

/* ── CAPABILITIES / ADD-ONS ── */
.capabilities {
  background: var(--black);
  padding: 90px 5%;
  position: relative;
}
.capabilities::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
}
.capabilities-header {
  margin-bottom: 52px;
}
.capabilities-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
}
.capabilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.cap-item {
  background: var(--black);
  padding: 36px 28px;
  transition: background 0.3s;
}
.cap-item:hover { background: #111; }
.cap-icon {
  font-size: 22px;
  margin-bottom: 16px;
  display: block;
  line-height: 1;
}
.cap-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.cap-desc {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.65;
}

/* ── INDUSTRIES CHIPS (services page) ── */
.services-industries {
  background: var(--cream);
  padding: 70px 5%;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.industries-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: #aaa;
  margin-bottom: 14px;
}
.industries-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-chip {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #555;
  border: 1px solid rgba(0,0,0,0.18);
  padding: 9px 18px;
  border-radius: 100px;
  background: transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: default;
}
.industry-chip:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* ── SERVICES PULL QUOTE ── */
.services-quote {
  background: #111;
  padding: 90px 5%;
  position: relative;
  overflow: hidden;
}
.services-quote::before {
  content: '"';
  position: absolute;
  top: -30px; left: 4%;
  font-size: 260px;
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  font-family: Georgia, serif;
}
.quote-text {
  font-size: clamp(22px, 3vw, 40px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.35;
  max-width: 780px;
  margin-bottom: 32px;
  position: relative;
  z-index: 2;
}
.quote-attr {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: relative;
  z-index: 2;
}
.quote-attr span {
  color: var(--brand);
}

/* ── BTN LIGHT (services + areas CTA) ── */
.btn-light {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 17px 40px;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
  position: relative;
  z-index: 2;
}
.btn-light:hover { background: #f0f0f0; }

/* ── SERVICES RESPONSIVE ── */
@media (max-width: 1024px) {
  .capabilities-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(3, 1fr); gap: 36px 20px; }
  .process-steps::before { display: none; }
}
@media (max-width: 900px) {
  .services-intro-inner { grid-template-columns: 1fr; gap: 36px; }
  .service-row { grid-template-columns: 1fr; min-height: auto; }
  .service-row.flip .service-image { order: 0; }
  .service-row.flip .service-content { order: 1; }
  .service-image { min-height: 260px; aspect-ratio: 16/9; }
  .service-image-overlay { display: none; }
}
@media (max-width: 640px) {
  .capabilities-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 30px; }
  .page-stats { gap: 24px; }
}


/* ============================================================
   WHAT WE DO PAGE
   ============================================================ */

/* ── MANIFESTO STRIP ── */
.manifesto-strip {
  background: var(--brand);
  padding: 60px 5%;
  overflow: hidden;
  position: relative;
}
.manifesto-strip::before {
  content: 'CORE';
  position: absolute;
  right: 2%; top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 200px);
  font-weight: 900;
  color: rgba(255,255,255,0.08);
  letter-spacing: -0.04em;
  line-height: 1;
  pointer-events: none;
}
.manifesto-inner {
  max-width: 900px;
  position: relative;
  z-index: 2;
}
.manifesto-text {
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  line-height: 1.3;
}
.manifesto-text em {
  font-style: normal;
  color: rgba(255,255,255,0.55);
}

/* ── DISCIPLINES ── */
.disciplines {
  background: #090909;
  padding: 100px 5%;
  position: relative;
}
.disciplines::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
}
.disciplines-header {
  margin-bottom: 64px;
}
.disciplines-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
}
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.discipline-item {
  background: #090909;
  padding: 48px 36px;
  position: relative;
  transition: background 0.3s;
}
.discipline-item:hover { background: #101010; }
.discipline-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 36px;
  width: 0; height: 2px;
  background: var(--brand);
  transition: width 0.35s ease;
}
.discipline-item:hover::after { width: calc(100% - 72px); }
.discipline-num {
  font-size: 10px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--brand); margin-bottom: 18px;
}
.discipline-icon {
  font-size: 28px; margin-bottom: 18px; display: block; line-height: 1;
}
.discipline-title {
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 12px; line-height: 1.2;
}
.discipline-desc {
  font-size: 13px; font-weight: 300;
  color: rgba(255,255,255,0.48); line-height: 1.75;
}

/* ── WHO WE'RE BUILT FOR ── */
.built-for {
  background: var(--cream);
  padding: 100px 5%;
}
.built-for-header {
  margin-bottom: 56px;
}
.built-for-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: #111; letter-spacing: -0.03em;
}
.built-for-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(0,0,0,0.08);
}
.client-type {
  background: var(--cream);
  padding: 44px 40px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 28px;
  align-items: start;
  transition: background 0.2s;
}
.client-type:hover { background: #e0dbd0; }
.client-type-marker {
  font-size: 32px;
  font-weight: 900;
  color: var(--brand);
  line-height: 1;
  letter-spacing: -0.03em;
  padding-top: 2px;
}
.client-type-body {}
.client-type-title {
  font-size: 18px; font-weight: 700; color: #111;
  letter-spacing: -0.01em; margin-bottom: 8px;
}
.client-type-desc {
  font-size: 13px; font-weight: 300; color: #666; line-height: 1.7;
}

/* ── DIFFERENTIATORS ── */
.differentiators {
  background: #0e0e0e;
  padding: 100px 5%;
  position: relative;
  overflow: hidden;
}
.diff-header {
  margin-bottom: 64px;
}
.diff-header h2 {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
}
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 900px;
}
.diff-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 32px;
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
  align-items: start;
  transition: background 0.2s;
}
.diff-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.06); }
.diff-item:hover { background: rgba(255,255,255,0.02); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.diff-index {
  font-size: 42px;
  font-weight: 900;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 4px;
}
.diff-content {}
.diff-title {
  font-size: 20px; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 10px;
}
.diff-desc {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8; max-width: 640px;
}

/* ── CROSSLINKS ── */
.crosslinks {
  background: var(--cream);
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.crosslink-panel {
  padding: 80px 7%;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
  border-right: 1px solid rgba(0,0,0,0.07);
  transition: background 0.3s;
}
.crosslink-panel:last-child { border-right: none; }
.crosslink-panel:hover { background: #e0dbd0; }
.crosslink-panel::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--brand);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.35s ease;
}
.crosslink-panel:hover::before { transform: scaleY(1); }
.crosslink-eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.32em;
  text-transform: uppercase; color: #aaa; margin-bottom: 14px;
}
.crosslink-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 800; color: #111; letter-spacing: -0.03em;
  line-height: 1.05; margin-bottom: 14px;
}
.crosslink-desc {
  font-size: 14px; font-weight: 300; color: #666;
  line-height: 1.7; max-width: 360px; margin-bottom: 28px;
}
.crosslink-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand);
  border-bottom: 1px solid rgba(234,60,37,0.35);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.crosslink-panel:hover .crosslink-cta { border-color: var(--brand); }

/* ── WHAT WE DO RESPONSIVE ── */
@media (max-width: 1024px) {
  .disciplines-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .built-for-grid { grid-template-columns: 1fr; }
  .crosslinks { grid-template-columns: 1fr; }
  .crosslink-panel { border-right: none; border-bottom: 1px solid rgba(0,0,0,0.07); }
  .diff-item { grid-template-columns: 60px 1fr; }
}
@media (max-width: 640px) {
  .disciplines-grid { grid-template-columns: 1fr; }
  .diff-item { grid-template-columns: 1fr; gap: 4px; }
  .diff-index { font-size: 28px; }
}


/* ============================================================
   AREAS PAGE
   ============================================================ */

/* ── PRIMARY MARKETS (large cards) ── */
.primary-markets {
  background: #090909;
  position: relative;
}
.primary-markets::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--brand);
}
.market-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 440px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.market-card:last-child { border-bottom: none; }
.market-card.flip .market-img { order: 2; }
.market-card.flip .market-content { order: 1; }
.market-img {
  position: relative; overflow: hidden;
}
.market-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  opacity: 0.72; filter: grayscale(0.15);
  transition: opacity 0.5s, transform 0.5s;
}
.market-card:hover .market-img img { opacity: 0.88; transform: scale(1.03); }
.market-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #090909 0%, transparent 45%);
}
.market-card.flip .market-img-overlay {
  background: linear-gradient(to left, #090909 0%, transparent 45%);
}
.market-content {
  padding: 64px 7%;
  display: flex; flex-direction: column; justify-content: center;
}
.market-tag {
  display: inline-block;
  font-size: 9px; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: #fff;
  background: var(--brand); padding: 5px 12px;
  margin-bottom: 22px; align-self: flex-start;
}
.market-city {
  font-size: clamp(34px, 4.5vw, 60px);
  font-weight: 900; color: #fff; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 6px;
}
.market-state {
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}
.market-desc {
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 300; color: rgba(255,255,255,0.55);
  line-height: 1.8; max-width: 420px; margin-bottom: 28px;
}
.market-services {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.market-services span {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
  border: 1px solid rgba(255,255,255,0.12); padding: 5px 12px; border-radius: 100px;
}

/* ── SECONDARY MARKETS ── */
.secondary-markets {
  background: var(--cream);
  padding: 90px 5%;
}
.secondary-markets-header {
  margin-bottom: 52px;
}
.secondary-markets-header h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; color: #111; letter-spacing: -0.03em;
}
.secondary-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.secondary-item {
  background: var(--cream);
  padding: 32px 28px;
  transition: background 0.2s;
}
.secondary-item:hover { background: #ddd8cc; }
.secondary-city-name {
  font-size: 20px; font-weight: 800; color: #111;
  letter-spacing: -0.02em; margin-bottom: 4px;
}
.secondary-city-state {
  font-size: 9px; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--brand); margin-bottom: 14px;
}
.secondary-city-desc {
  font-size: 12px; font-weight: 300; color: #666; line-height: 1.65;
}

/* ── INTERNATIONAL ── */
.international {
  background: var(--black);
  padding: 90px 5%;
  position: relative;
}
.international::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--brand);
}
.international-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 56px;
}
.international-header .left h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
}
.international-header .right p {
  font-size: 14px; font-weight: 300; color: rgba(255,255,255,0.5);
  line-height: 1.8;
}
.intl-regions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.07);
}
.intl-region {
  background: var(--black);
  padding: 36px 32px;
  transition: background 0.3s;
}
.intl-region:hover { background: #0f0f0f; }
.intl-region-name {
  font-size: 17px; font-weight: 700; color: #fff;
  letter-spacing: -0.01em; margin-bottom: 12px;
}
.intl-region-markets {
  font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.4);
  line-height: 1.7; margin-bottom: 16px;
}
.intl-region-tag {
  font-size: 9px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--brand);
}

/* ── HOW REMOTE PRODUCTION WORKS ── */
.remote-section {
  background: var(--cream);
  padding: 90px 5%;
}
.remote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.remote-left h2 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 800; color: #111; letter-spacing: -0.03em; margin-bottom: 18px;
}
.remote-left p {
  font-size: clamp(14px, 1.5vw, 16px);
  font-weight: 300; color: #555; line-height: 1.85; margin-bottom: 16px;
}
.remote-left p:last-of-type { margin-bottom: 0; }
.remote-steps {
  display: flex; flex-direction: column; gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
}
.remote-step {
  background: var(--cream);
  padding: 24px 28px;
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 0 16px;
  align-items: start;
  transition: background 0.2s;
}
.remote-step:hover { background: #ddd8cc; }
.remote-step-num {
  font-size: 11px; font-weight: 700; color: var(--brand);
  padding-top: 2px;
}
.remote-step-title {
  font-size: 14px; font-weight: 700; color: #111; margin-bottom: 4px;
}
.remote-step-desc {
  font-size: 12px; font-weight: 300; color: #666; line-height: 1.6;
}

/* ── COVERAGE CALLOUT ── */
.coverage-callout {
  background: #111;
  padding: 72px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coverage-callout::before {
  content: '50+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(140px, 28vw, 380px);
  font-weight: 900;
  color: rgba(255,255,255,0.03);
  letter-spacing: -0.05em;
  pointer-events: none;
  line-height: 1;
}
.coverage-callout h2 {
  font-size: clamp(28px, 4.5vw, 60px);
  font-weight: 800; color: #fff; letter-spacing: -0.03em;
  line-height: 1.1; margin-bottom: 18px; position: relative; z-index: 2;
}
.coverage-callout p {
  font-size: 16px; font-weight: 300;
  color: rgba(255,255,255,0.45); max-width: 520px;
  margin: 0 auto; line-height: 1.7; position: relative; z-index: 2;
}
.coverage-stats {
  display: flex;
  justify-content: center;
  gap: 64px;
  margin-top: 52px;
  flex-wrap: wrap;
  position: relative; z-index: 2;
}
.cov-stat strong {
  display: block;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1;
  margin-bottom: 6px;
}
.cov-stat span {
  font-size: 10px; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}

/* ── AREAS RESPONSIVE ── */
@media (max-width: 1024px) {
  .secondary-grid { grid-template-columns: repeat(2, 1fr); }
  .intl-regions { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .market-card { grid-template-columns: 1fr; min-height: auto; }
  .market-card.flip .market-img { order: 0; }
  .market-card.flip .market-content { order: 1; }
  .market-img { min-height: 240px; aspect-ratio: 16/9; }
  .market-img-overlay { display: none; }
  .international-header { grid-template-columns: 1fr; gap: 20px; }
  .remote-inner { grid-template-columns: 1fr; gap: 40px; }
  .coverage-stats { gap: 36px; }
}
@media (max-width: 640px) {
  .secondary-grid { grid-template-columns: 1fr 1fr; }
  .intl-regions { grid-template-columns: 1fr; }
  .coverage-stats { gap: 24px; }
}

/* ============================================================
   REVIEWS PAGE
   ============================================================ */

/* ── Overall rating bar ─────────────────────────────────── */
.reviews-rating-bar {
  background: #111;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  padding: 40px 5%;
}
.rrb-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 48px;
}
.rrb-score-block {
  text-align: center;
  flex-shrink: 0;
}
.rrb-score {
  font-size: 64px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -0.03em;
}
.rrb-stars {
  color: var(--brand);
  font-size: 20px;
  letter-spacing: 2px;
  margin: 4px 0;
}
.rrb-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.rrb-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}
.rrb-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  flex: 1;
}
.rrb-platform {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border-right: 1px solid rgba(255,255,255,0.07);
  text-decoration: none;
  transition: background 0.2s;
  flex: 1;
  min-width: 140px;
}
.rrb-platform:last-child { border-right: none; }
.rrb-platform:hover { background: rgba(255,255,255,0.04); }
.rrb-platform-name {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  min-width: 80px;
}
.rrb-platform-stars {
  color: var(--brand);
  font-size: 11px;
  letter-spacing: 1px;
}
.rrb-platform-count {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}

/* ── Reviews sections ───────────────────────────────────── */
.reviews-section {
  padding: 80px 5%;
}
.reviews-section--dark {
  background: #0a0a0a;
}
.reviews-section--cream {
  background: var(--cream);
}
.reviews-section-header {
  max-width: 1200px;
  margin: 0 auto 48px;
  display: flex;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.reviews-section-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 6px;
}
.reviews-section-title {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}
.reviews-section--dark .reviews-section-title { color: #fff; }
.reviews-section--cream .reviews-section-title { color: var(--black); }
.reviews-section-sub {
  font-size: 14px;
  line-height: 1.6;
  max-width: 520px;
  margin: 8px 0 0;
}
.reviews-section--dark .reviews-section-sub { color: rgba(255,255,255,0.45); }
.reviews-section--cream .reviews-section-sub { color: rgba(0,0,0,0.5); }
.reviews-section-header > div:first-child { flex: 1; min-width: 240px; }
.reviews-platform-cta {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  padding: 10px 20px;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
  align-self: flex-start;
  margin-top: 24px;
}
.reviews-platform-cta:hover { border-color: var(--brand); color: var(--brand); }
.reviews-platform-cta--dark {
  color: var(--black);
  border-color: rgba(0,0,0,0.2);
}
.reviews-platform-cta--dark:hover { border-color: var(--brand); color: var(--brand); }

/* ── Review card grid ───────────────────────────────────── */
.reviews-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}
.reviews-section--cream .reviews-grid {
  background: rgba(0,0,0,0.08);
}

/* Dark cards (on dark sections) */
.review-card {
  background: #111;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
/* Light cards (on cream sections) */
.review-card--light {
  background: #fff;
}
.review-card-stars {
  color: var(--brand);
  font-size: 14px;
  letter-spacing: 2px;
}
.review-card-quote {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 300;
  flex: 1;
}
.review-card .review-card-quote { color: rgba(255,255,255,0.72); }
.review-card--light .review-card-quote { color: rgba(0,0,0,0.7); }
.review-card-meta {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 16px;
}
.review-card--light .review-card-meta { border-top-color: rgba(0,0,0,0.08); }
.review-card-author {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.review-card .review-card-author { color: #fff; }
.review-card--light .review-card-author { color: var(--black); }
.review-card-company {
  font-size: 12px;
  margin-top: 2px;
}
.review-card .review-card-company { color: rgba(255,255,255,0.35); }
.review-card--light .review-card-company { color: rgba(0,0,0,0.4); }
.review-card-platform {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 6px;
}

/* ── Reviews CTA ────────────────────────────────────────── */
.reviews-cta {
  background: var(--brand);
  padding: 80px 5%;
  text-align: center;
}
.reviews-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}
.reviews-cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.reviews-cta-title {
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 16px;
}
.reviews-cta-sub {
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 36px;
}
.reviews-cta-btn {
  display: inline-block;
  background: #fff;
  color: var(--brand);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 18px 48px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.reviews-cta-btn:hover { background: var(--black); color: #fff; }

/* ── Reviews responsive ─────────────────────────────────── */
@media (max-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .rrb-inner { gap: 32px; }
  .rrb-platform { padding: 8px 14px; }
}
@media (max-width: 768px) {
  .rrb-inner { flex-direction: column; gap: 24px; align-items: flex-start; }
  .rrb-divider { display: none; }
  .rrb-platforms { gap: 0; border: 1px solid rgba(255,255,255,0.08); }
  .rrb-platform { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); min-width: 100%; }
  .rrb-platform:last-child { border-bottom: none; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-section-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .reviews-platform-cta { margin-top: 0; }
}


/* ═══════════════════════════════════════════════════════
   HOMEPAGE — TICKER / MARQUEE
═══════════════════════════════════════════════════════ */
.cf-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(216,211,196,.06);
  border-bottom: 1px solid rgba(216,211,196,.06);
  padding: 14px 0;
  background: var(--black);
  -webkit-mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
  mask: linear-gradient(to right, transparent 0%, black 6%, black 94%, transparent 100%);
}
.cf-ticker-track {
  display: flex;
  width: max-content;
  animation: cfTick 45s linear infinite;
}
.cf-ticker-track:hover { animation-play-state: paused; }
@keyframes cfTick { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.cf-ti {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(216,211,196,.4);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  transition: color .3s;
}
.cf-ti:hover { color: rgba(216,211,196,.8); }
.cf-td { width: 3px; height: 3px; background: var(--red); border-radius: 50%; flex-shrink: 0; }
@media (max-width: 768px) { .cf-ticker-track { animation-duration: 28s; } }
@media (prefers-reduced-motion: reduce) { .cf-ticker-track { animation-play-state: paused; } }


/* ═══════════════════════════════════════════════════════
   HOMEPAGE — STREAMS OF SERVICES
═══════════════════════════════════════════════════════ */
.cf-streams {
  background: var(--dark);
  padding: 100px 0;
  border-top: 1px solid rgba(216,211,196,.06);
}
.cf-streams-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 60px;
}
.cf-streams-left { }
.cf-streams-right { display: flex; flex-direction: column; }

.cf-stream {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(216,211,196,.06);
  border-left: 2px solid transparent;
  transition: border-color .3s, background .3s;
  cursor: default;
}
.cf-stream:first-child { border-top: 1px solid rgba(216,211,196,.06); }
.cf-stream:hover { border-left-color: var(--red); background: rgba(216,211,196,.02); }

.cf-sn {
  font-family: var(--font-serif);
  font-size: 13px;
  color: rgba(184,39,44,.3);
  min-width: 28px;
  padding-top: 4px;
  transition: color .3s;
  flex-shrink: 0;
}
.cf-stream:hover .cf-sn { color: var(--red); }

.cf-sb { flex: 1; }
.cf-st {
  font-family: var(--font-condensed);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(216,211,196,.9);
  margin-bottom: 6px;
}
.cf-sd {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(216,211,196,.45);
  line-height: 1.72;
  font-weight: 300;
}

@media (max-width: 900px) {
  .cf-streams-inner { grid-template-columns: 1fr; gap: 32px; }
  .cf-streams-left { display: none; }
  .cf-streams-inner { padding: 0 24px; }
}


/* ═══════════════════════════════════════════════════════
   HOMEPAGE — BUILT FOR (audience cards)
═══════════════════════════════════════════════════════ */
.cf-built {
  background: var(--black);
  padding: 100px 0;
  border-top: 1px solid rgba(216,211,196,.06);
}
.cf-built-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.cf-built-hd {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 60px;
}
.cf-built-grid { display: flex; flex-direction: column; gap: 2px; }

.cf-bc {
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 300px;
  overflow: hidden;
  position: relative;
}
.cf-bc:nth-child(even) { grid-template-columns: 58% 42%; }
.cf-bc:nth-child(even) .cf-bc-vis { order: 2; }
.cf-bc:nth-child(even) .cf-bc-info { order: 1; }

/* Red sweep bar on hover */
.cf-bc-vis {
  position: relative;
  overflow: hidden;
  background: var(--panel);
}
.cf-bc-vis video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity .8s ease;
}
.cf-bc-vis video.playing { opacity: 1; }
.cf-bc-vis::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s ease;
}
.cf-bc:hover .cf-bc-vis::after { transform: scaleX(1); }

.cf-bc-tag {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(216,211,196,.35);
  z-index: 2;
}

.cf-bc-info {
  padding: 48px 52px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: background .3s;
}
.cf-bc:hover .cf-bc-info { background: #141414; }

.cf-bc-name {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 400;
  color: rgba(216,211,196,.95);
  margin-bottom: 14px;
  line-height: 1.2;
}
.cf-bc-desc {
  font-family: 'Barlow', sans-serif;
  font-size: 14px;
  color: rgba(216,211,196,.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 24px;
  max-width: 420px;
}
.cf-bc-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cf-bc-pills span {
  font-family: var(--font-condensed);
  font-size: 9px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(216,211,196,.38);
  border: 1px solid rgba(216,211,196,.1);
  padding: 5px 12px;
  transition: border-color .3s, color .3s;
}
.cf-bc:hover .cf-bc-pills span {
  border-color: rgba(184,39,44,.35);
  color: rgba(216,211,196,.72);
}

@media (max-width: 900px) {
  .cf-built-inner { padding: 0 24px; }
  .cf-bc,
  .cf-bc:nth-child(even) { grid-template-columns: 1fr; }
  .cf-bc:nth-child(even) .cf-bc-vis,
  .cf-bc:nth-child(even) .cf-bc-info { order: unset; }
  .cf-bc-vis { height: 220px; }
  .cf-bc-info { padding: 32px 24px; }
  .cf-built-hd { margin-bottom: 40px; }
}


/* ═══════════════════════════════════════════════════════
   PHASE 7 — DARK THEME OVERRIDES
   (cascade-safe: these append after earlier rules)
═══════════════════════════════════════════════════════ */

/* About strip */
.about-strip {
  background: var(--black) !important;
  border-top: 1px solid rgba(216,211,196,.06);
  border-bottom: 1px solid rgba(216,211,196,.06);
}
.about-strip p { color: rgba(216,211,196,.65) !important; }
.about-strip .link-arrow { color: rgba(216,211,196,.65); border-bottom-color: rgba(216,211,196,.3); }
.about-strip .link-arrow:hover { color: rgba(216,211,196,1); border-color: rgba(216,211,196,1); }

/* Services (old 3-col — now hidden by cf-streams, but kept safe) */
.services { background: var(--dark) !important; border-bottom: 1px solid rgba(216,211,196,.06) !important; }
.services .section-label { color: var(--red) !important; }
.services .section-title { color: rgba(216,211,196,.9) !important; }
.services-grid { border-top-color: rgba(216,211,196,.06) !important; }
.services-col { border-right-color: rgba(216,211,196,.06) !important; border-bottom-color: rgba(216,211,196,.06) !important; }
.service-cat { color: rgba(216,211,196,.9) !important; }
.services-col ul li { color: rgba(216,211,196,.5) !important; border-bottom-color: rgba(216,211,196,.04) !important; }

/* Clients */
.clients { background: var(--black) !important; }
.clients .section-label { color: var(--red) !important; }
.clients .section-title { color: rgba(216,211,196,.9) !important; }
.clients-logos .logo-name { color: rgba(216,211,196,.7) !important; }
.clients-logos { filter: none !important; opacity: 0.5 !important; }

/* Testimonials */
.testimonials { background: var(--dark) !important; }
.testimonials-header .section-label { color: var(--red) !important; }
.testimonials-header .section-title { color: rgba(216,211,196,.9) !important; }
.stars { color: #c8a84b !important; }
.review-tag { color: rgba(216,211,196,.45) !important; }
.review-platform-link { color: rgba(216,211,196,.5) !important; border-color: rgba(216,211,196,.12) !important; }
.review-platform-link:hover { color: rgba(216,211,196,.9) !important; border-color: rgba(216,211,196,.4) !important; }
.testimonial-card { background: var(--panel) !important; border: 1px solid rgba(216,211,196,.06) !important; color: rgba(216,211,196,.75) !important; }
.testimonial-card-stars { color: #c8a84b !important; }
.testimonial-quote { color: rgba(216,211,196,.72) !important; }
.testimonial-author { color: rgba(216,211,196,.9) !important; }
.testimonial-company { color: rgba(216,211,196,.38) !important; }
.testimonial-platform { color: rgba(216,211,196,.28) !important; }
.testimonials-footer .link-arrow { color: rgba(216,211,196,.55); border-bottom-color: rgba(216,211,196,.25); }
.testimonials-footer .link-arrow:hover { color: rgba(216,211,196,.9); border-color: rgba(216,211,196,.6); }
.testimonials-grid { background: rgba(216,211,196,.04) !important; border-color: rgba(216,211,196,.06) !important; }


/* ═══════════════════════════════════════════════════════
   ROUND-2 ADDITIONS — 2026-04-30
   • Change 7 — reCAPTCHA badge hidden (disclosed inline)
   • Change 3 — Built-For contrast lift
   • Change 1 — Hero tagline + scroll highlight
   • Change 2 — Manifesto bidirectional scroll highlight
   • Change 4 — Streams symbol slot + hover lift
   • Change 5 — Cinematic contact CTA
   • Change 6 — Clients logo strip with images
═══════════════════════════════════════════════════════ */

/* ── CHANGE 7 ── reCAPTCHA badge ─────────────────────── */
.grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.cf-recaptcha-note {
  font-family: 'Barlow', sans-serif;
  font-size: 10px;
  letter-spacing: .04em;
  color: rgba(232,227,213,.22);
  text-align: center;
  padding: 18px 16px;
  margin: 0;
  background: var(--black);
  border-top: 1px solid rgba(232,227,213,.04);
}
.cf-recaptcha-note a {
  color: rgba(232,227,213,.4);
  text-decoration: none;
  transition: color .2s;
}
.cf-recaptcha-note a:hover { color: rgba(232,227,213,.7); }

/* ── CHANGE 3 ── Built-For readability lift ──────────── */
.cf-bc-info {
  background: #1a1a1a;
}
.cf-bc:hover .cf-bc-info { background: #1f1f1f; }
.cf-bc-name {
  color: var(--cream);
  opacity: 1;
}
.cf-bc-desc {
  color: rgba(232,227,213,.78);
}
.cf-bc-pills span {
  color: rgba(232,227,213,.62);
  border-color: rgba(232,227,213,.22);
}
.cf-bc-tag {
  color: rgba(232,227,213,.55);
}
/* Dark gradient fallback before video loads / on slow connections */
.cf-bc-vis {
  background: linear-gradient(135deg, #1c1c1c 0%, #111 100%);
}

/* ── CHANGE 1 ── Tagline section (below hero) ────────── */
/* Lives in its own dark band beneath the hero — large statement */
/* with word-by-word fade driven by scroll position. */
.cf-tagline-section {
  background: var(--black);
  padding: clamp(110px, 18vh, 200px) 6%;
  border-top: 1px solid rgba(232,227,213,.04);
  border-bottom: 1px solid rgba(232,227,213,.04);
  position: relative;
}
.cf-tagline-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.cf-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(36px, 6.4vw, 96px);
  line-height: 1.15;
  letter-spacing: -.01em;
  color: var(--cream);
  margin: 0;
  max-width: 1100px;
}
.cf-tagline .ht-word {
  display: inline;
  opacity: 0.18;
  transition: opacity .45s ease, color .45s ease;
}
.cf-tagline .ht-word.lit {
  opacity: 1;
  color: #fff;
}
@media (max-width: 640px) {
  .cf-tagline-section { padding: 80px 7%; }
  .cf-tagline { font-size: clamp(28px, 8vw, 48px); }
}

/* ── CHANGE 2 ── Manifesto bidirectional highlight ───── */
/* Reuse existing .manifesto layout; add per-word fade */
.manifesto .mw {
  display: inline;
  opacity: 0.18;
  transition: opacity .45s ease;
}
.manifesto .mw.lit { opacity: 1; }
/* Lift body color so 'lit' state actually pops vs the existing rgba .6 cap */
.manifesto-body p .mw.lit { color: rgba(255,255,255,.92); }
.manifesto h2 .mw.lit { color: #fff; }

/* ── CHANGE 4 ── Streams symbol slot + hover lift ────── */
.cf-stream {
  transition: padding-left .3s ease, background .3s ease, border-left-color .3s ease;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.cf-sym {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: rgba(184,39,44,.32);
  transition: color .3s ease, transform .3s ease;
  margin-top: 4px;
}
.cf-sym svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cf-stream:hover .cf-sym {
  color: var(--red);
  transform: translateX(2px);
}
.cf-stream:hover {
  padding-left: 24px;
}

/* ── PRESS STRIP ── */
.cf-press-strip { background: #0d0d0d; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); padding: 28px 5%; }
.cf-press-strip-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 40px; }
.cf-press-label { font-size: 9px; font-weight: 700; letter-spacing: 0.28em; text-transform: uppercase; color: rgba(255,255,255,0.3); white-space: nowrap; }
.cf-press-items { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; }
.cf-press-item { font-size: 13px; font-weight: 500; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); text-decoration: none; border-bottom: 1px solid transparent; padding-bottom: 1px; transition: color 0.2s, border-color 0.2s; white-space: nowrap; }
.cf-press-item:hover { color: #fff; border-bottom-color: rgba(255,255,255,0.4); }
@media (max-width: 600px) { .cf-press-strip-inner { flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ── CHANGE 5 ── Cinematic contact CTA (replaces .cta-start) */
.cf-contact-cta {
  background: var(--dark);
  padding: 140px 40px;
  text-align: center;
  border-top: 1px solid rgba(232,227,213,.06);
  position: relative;
}
.cf-contact-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 80px;
  background: linear-gradient(to bottom, transparent, rgba(184,39,44,.4));
}
.cf-contact-inner {
  max-width: 760px;
  margin: 0 auto;
}
.cf-cta-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-condensed);
  font-size: 10px;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 32px;
}
.cf-cta-headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.8vw, 64px);
  font-weight: 400;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.cf-cta-sub {
  font-family: 'Barlow', sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(232,227,213,.55);
  line-height: 1.8;
  margin-bottom: 56px;
}
.cf-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  margin-bottom: 32px;
}
.cf-cta-email {
  font-family: var(--font-condensed);
  font-size: clamp(20px, 3vw, 32px);
  letter-spacing: .08em;
  color: var(--cream);
  text-decoration: none;
  border-bottom: 1px solid rgba(232,227,213,.22);
  padding-bottom: 4px;
  transition: border-color .3s, color .3s;
}
.cf-cta-email:hover {
  color: #fff;
  border-color: var(--red);
}
.cf-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  border: 1px solid rgba(232,227,213,.22);
  padding: 16px 36px;
  transition: background .3s, border-color .3s, color .3s;
}
.cf-cta-btn:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}
.cf-cta-btn svg { display: block; }
.cf-cta-phone {
  font-family: var(--font-condensed);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(232,227,213,.32);
}
@media (max-width: 640px) {
  .cf-contact-cta { padding: 100px 24px; }
}

/* ── CHANGE 6 ── Clients strip with logo images ──────── */
.clients-logos.cf-clients-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 0;
  width: max-content;
  align-items: center;
  margin-top: 36px;
  opacity: 1 !important;
  filter: none !important;
  animation: cfClientsScroll 38s linear infinite;
}
.clients-logos.cf-clients-track:hover { animation-play-state: paused; }
@keyframes cfClientsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.clients-logos.cf-clients-track .cf-cl {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  height: 64px;
  padding: 0 28px;
  flex-shrink: 0;
  opacity: .42;
  transition: opacity .3s;
}
.clients-logos.cf-clients-track .cf-cl:hover { opacity: .9; }
.clients-logos.cf-clients-track .cf-cl img {
  max-width: 100%;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
/* Clip the marquee so it doesn't push horizontal scroll */
.clients { overflow: hidden; }

