/* ============================================================
   DESIGN TOKENS — Hyphen Brands
   Yellow: #F5C518  |  Warm Grey: #8C8580
   Black:  #0D0C0B  |  White: #F9F7F4
   ============================================================ */
:root {
  --yellow:       #F5C518;
  --yellow-dark:  #D4A800;
  --black:        #0D0C0B;
  --white:        #F9F7F4;
  --warm-grey:    #8C8580;
  --warm-grey-lt: #E8E4DF;
  --warm-grey-md: #C4BDB6;

  /* Typography */
  --font-display: 'Libre Baskerville', Georgia, serif;
  --font-body:    'Montserrat', system-ui, sans-serif;

  /* Layout */
  --margin:   22px;          /* outer margin — left, right, bottom */
  --gap:      10px;          /* grid gap between all panels */
  --nav-h:    64px;
  --nav-gap:  10px;          /* white breathing space between masthead and content */
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);

  /* Page palette — white body so project colours pop */
  --page-bg:       #FFFFFF;
  --text-primary:  #0D0C0B;
  --text-secondary:#5A5550;
  --text-muted:    #9A9490;
  --border-lt:     rgba(13,12,11,0.09);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  background: var(--page-bg);   /* WHITE page — project work pops */
  color: var(--text-primary);
  overflow-x: hidden;
  cursor: none;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
button { cursor: none; background: none; border: none; font: inherit; color: inherit; }

/* ============================================================
   CUSTOM CURSOR — square dot + rectangular frame (echoes Hyphen logo bar)
   ============================================================ */
#cursor { position: fixed; top: 0; left: 0; z-index: 9999; pointer-events: none; }
#cursor .dot {
  width: 6px; height: 6px; border-radius: 0; /* square dot */
  background: var(--yellow);
  transform: translate(-50%, -50%);
}
#cursor .ring {
  position: absolute; top: 0; left: 0;
  width: 32px; height: 22px; border-radius: 0; /* rectangular frame — wider than tall, like the logo bar */
  border: 1.5px solid var(--black);
  transform: translate(-50%, -50%);
  opacity: 0.3;
  transition: width 0.35s var(--ease), height 0.35s var(--ease), opacity 0.35s, border-color 0.2s;
}
body.hov #cursor .ring { width: 52px; height: 34px; opacity: 0.55; }
/* On dark sections: switch to white frame */
body.cursor-dark #cursor .ring { border-color: rgba(249,247,244,0.7); opacity: 0.5; }
body.cursor-dark.hov #cursor .ring { width: 52px; height: 34px; opacity: 0.8; }

/* ============================================================
   NAVIGATION
   ============================================================ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 var(--margin);
  background: #0D0C0B;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(249,247,244,0.07);
  transition: border-color 0.3s;
}
nav.scrolled { border-bottom-color: rgba(249,247,244,0.14); }

/* Logo slot — swap <img> in once file arrives */
.nav-logo {
  display: flex; align-items: center; height: 36px;
  flex-shrink: 0;
}
.nav-logo img { width: auto; height: 100%; object-fit: contain; object-position: left center; }
/* Fallback text logo shown until image is provided */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 17px; font-weight: 700; font-style: italic;
  letter-spacing: -0.01em; color: var(--white);
  display: flex; align-items: center; gap: 2px;
}
.nav-logo-text .dash { color: var(--yellow); margin: 0 1px; }

.nav-links {
  display: flex; gap: 28px; list-style: none;
  margin-left: auto; margin-right: 36px;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 500; letter-spacing: 0.09em;
  text-transform: uppercase; color: var(--warm-grey);
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 1px; background: var(--yellow);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 9px 22px; border: 1px solid var(--yellow); color: var(--yellow);
  transition: background 0.22s, color 0.22s; white-space: nowrap;
}
.nav-cta:hover { background: var(--yellow); color: var(--black); }

/* Hamburger */
.nav-hamburger { display: none; flex-direction: column; gap: 5px; margin-left: auto; padding: 4px; }
.nav-hamburger span { width: 24px; height: 1.5px; background: var(--white); display: block; transition: transform 0.3s, opacity 0.3s; }

/* Mobile full-screen menu */
.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 190;
  background: var(--black);
  flex-direction: column; justify-content: center;
  padding: var(--nav-h) var(--margin) var(--margin);
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s var(--ease);
}
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu ul { list-style: none; display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: clamp(30px, 7vw, 52px);
  font-style: italic; font-weight: 400; color: var(--white);
  display: block; padding: 10px 0;
  border-bottom: 1px solid rgba(249,247,244,0.07);
  transition: color 0.2s, padding-left 0.3s var(--ease);
}
.mobile-menu a:hover { color: var(--yellow); padding-left: 16px; }
.mobile-menu .mobile-cta {
  margin-top: 28px; display: inline-block;
  font-family: var(--font-body); font-size: 11px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--yellow); border: 1px solid var(--yellow);
  padding: 14px 28px; transition: background 0.2s, color 0.2s;
}
.mobile-menu .mobile-cta:hover { background: var(--yellow); color: var(--black); }

/* ============================================================
   OUTER WRAPPER — applies the 20px margin on all 4 sides
   and wraps every section after the hero
   ============================================================ */
.page-shell {
  /* The hero sits inside its own padded wrapper below.
     Everything else is wrapped in .page-shell for consistent margin. */
}

/* ============================================================
   HERO — the signature layout
   Left: YouTube player  |  Right: 3 stacked blocks
   The dividing line is ALWAYS at the horizontal center of
   the available content width (window - 2×margin).
   1fr | 10px gap | 1fr  →  divider dead center always.
   ============================================================ */
.hero-shell {
  /* nav height + 10px white breathing gap above hero grid,
     then 22px margins left / right / bottom */
  padding-top: calc(var(--nav-h) + var(--nav-gap));
  padding-left: var(--margin);
  padding-right: var(--margin);
  padding-bottom: var(--margin);
  height: 100vh;
  min-height: 580px;
  background: var(--page-bg); /* white — the 10px gap shows clean white */
}

.hero {
  width: 100%;
  height: 100%;
  display: grid;
  /* Two equal halves separated by the gap.
     1fr | gap | 1fr  →  divider is always dead center */
  grid-template-columns: 1fr var(--gap) 1fr;
  grid-template-rows: 1fr;
  background: #FFFFFF; /* white gap — clean separation */
}

/* Left: showreel */
.hero-video {
  grid-column: 1;
  position: relative; overflow: hidden;
  background: #080707;
}
.hero-video iframe {
  /* Oversized to eliminate YouTube letterboxing */
  position: absolute;
  top: 50%; left: 50%;
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  transform: translate(-50%, -50%);
  border: none; pointer-events: none;
}
/* Ensures 16:9 video fills frame without black bars on wide screens */
@supports (aspect-ratio: 16/9) {
  .hero-video iframe {
    width: max(100%, calc(100vh * 16/9));
    height: max(100%, calc(100vw * 9/16));
  }
}
.hero-video-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(13,12,11,0.2) 0%, transparent 55%);
  pointer-events: none;
}
.showreel-badge {
  position: absolute; bottom: 20px; left: 20px; z-index: 2;
  display: flex; align-items: center; gap: 10px;
}
.play-btn {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid rgba(245,197,24,0.5);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}
.play-btn svg { width: 12px; height: 12px; fill: var(--yellow); margin-left: 2px; }
.showreel-badge:hover .play-btn { background: var(--yellow); border-color: var(--yellow); }
.showreel-badge:hover .play-btn svg { fill: var(--black); }
.showreel-text {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--warm-grey);
}

/* Right: three stacked blocks */
.hero-right {
  grid-column: 3;
  display: grid;
  grid-template-rows: 1fr var(--gap) 1fr var(--gap) 1fr;
  background: rgba(249,247,244,0.06); /* gap rows show gap colour */
}

.hero-block {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 20px;
}

/* Project blocks */
.hero-block.project { background: #111010; }
.hero-block.project > img {
  position: absolute; inset: 0;
  transition: transform 0.9s var(--ease), opacity 0.4s;
  opacity: 0.65;
}
.hero-block.project:hover > img { transform: scale(1.05); opacity: 0.85; }
.block-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,0.78) 0%, transparent 55%);
  pointer-events: none;
}
.block-arrow {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 28px; height: 28px; border-radius: 50%;
  border: 1px solid rgba(249,247,244,0.2);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.35s var(--ease);
}
.block-arrow svg { width: 10px; height: 10px; stroke: var(--white); fill: none; }
.hero-block.project:hover .block-arrow { background: var(--yellow); border-color: var(--yellow); transform: rotate(45deg); }
.hero-block.project:hover .block-arrow svg { stroke: var(--black); }
.block-meta { position: relative; z-index: 1; }
.block-cat {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow); margin-bottom: 5px;
}
.block-title {
  font-family: var(--font-display);
  font-size: clamp(12px, 1.4vw, 16px); font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.3;
}

/* Yellow brand block */
.hero-block.brand { background: var(--yellow); flex-direction: column; justify-content: space-between; }
.brand-eyebrow {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(13,12,11,0.55);
}
.brand-name {
  font-family: var(--font-display);
  font-size: clamp(17px, 2vw, 24px); font-weight: 700; font-style: italic;
  color: var(--black); letter-spacing: -0.01em; line-height: 1.15; margin-top: 6px;
}
.brand-tagline {
  font-family: var(--font-body);
  font-size: clamp(11px, 1.1vw, 13px); font-weight: 400;
  color: rgba(13,12,11,0.65); line-height: 1.55; margin-top: 8px;
}
.brand-stats {
  display: flex; flex-wrap: wrap; gap: 10px 16px; padding-top: 12px;
  border-top: 1px solid rgba(13,12,11,0.12);
}
.brand-stat .n {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.2vw, 30px); font-weight: 700;
  color: var(--black); line-height: 1;
}
.brand-stat .l {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 400; letter-spacing: 0.04em;
  color: rgba(13,12,11,0.55); margin-top: 4px; line-height: 1.4;
}

/* Gap rows in hero-right — white */
.hero-gap { background: #FFFFFF; }

/* ============================================================
   CREDENTIAL TICKER — sits on white page, dark text
   ============================================================ */
.ticker-shell {
  padding: 0 var(--margin);
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  background: var(--page-bg);
}
.ticker-wrap { overflow: hidden; height: 40px; display: flex; align-items: center; }
.ticker-inner { display: flex; animation: ticker-scroll 32s linear infinite; white-space: nowrap; }
.ticker-item {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding: 0 36px;
  display: inline-flex; align-items: center; gap: 14px;
}
.ticker-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--yellow); flex-shrink: 0; }
@keyframes ticker-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.ticker-inner:hover { animation-play-state: paused; }

/* ============================================================
   SHARED SECTION SHELL — white page, dark text
   ============================================================ */
.section-shell { padding: 80px var(--margin); background: var(--page-bg); }
.section-header { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 44px; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px); font-weight: 400; font-style: italic;
  letter-spacing: -0.02em; color: var(--text-primary);
}
.section-link {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.section-link svg { width: 14px; stroke: currentColor; fill: none; transition: transform 0.3s; }
.section-link:hover { color: var(--yellow-dark); }
.section-link:hover svg { transform: translateX(4px); }

/* ============================================================
   WORK GRID — 12-col asymmetric editorial
   Items are dark panels with images; they float on white page
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gap);
}
.work-item {
  position: relative; overflow: hidden; background: #111010;
  cursor: none;
  box-shadow: 0 2px 16px rgba(13,12,11,0.08); /* subtle lift on white bg */
}
/* Asymmetric sizing */
.work-item:nth-child(1) { grid-column: span 7; min-height: 420px; }
.work-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4/3; }
.work-item:nth-child(3) { grid-column: span 5; aspect-ratio: 4/3; }
.work-item:nth-child(4) { grid-column: span 7; min-height: 340px; }

.work-item > img {
  transition: transform 0.9s var(--ease), opacity 0.4s;
  opacity: 0.6;
}
.work-item:hover > img { transform: scale(1.05); opacity: 0.82; }
.work-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,12,11,0.82) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 28px; transform: translateY(6px); transition: transform 0.5s var(--ease);
}
.work-item:hover .work-overlay { transform: translateY(0); }
.work-award {
  position: absolute; top: 18px; left: 18px; z-index: 3;
  font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  background: var(--yellow); color: var(--black);
  padding: 5px 11px; display: flex; align-items: center; gap: 5px;
}
.work-award::before { content: '\2605'; font-size: 9px; }
.work-num {
  font-family: var(--font-display);
  font-size: 10px; font-style: italic; color: var(--yellow); margin-bottom: 8px; opacity: 0.7;
}
.work-title {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.6vw, 22px); font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.25; margin-bottom: 10px;
}
.work-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.work-tag {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 500; letter-spacing: 0.09em; text-transform: uppercase;
  border: 1px solid rgba(249,247,244,0.22); padding: 3px 8px; color: rgba(249,247,244,0.65);
}

/* ============================================================
   SERVICES — 3 equal columns, light cards on white page
   ============================================================ */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}
.service-card {
  background: #FAFAF9; padding: 40px 32px;
  border: 1px solid var(--border-lt);
  transition: background 0.3s, border-color 0.3s;
}
.service-card:hover { background: #F5F4F1; border-color: rgba(13,12,11,0.15); }
.service-num {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--yellow-dark); margin-bottom: 20px;
}
.service-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px); font-weight: 400; font-style: italic;
  color: var(--text-primary); line-height: 1.2; margin-bottom: 16px;
}
.service-desc {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; line-height: 1.75; color: var(--text-secondary);
}
.service-items { margin-top: 28px; display: flex; flex-direction: column; gap: 0; }
.service-item {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400; color: var(--text-muted);
  padding: 10px 0; border-bottom: 1px solid var(--border-lt);
  display: flex; justify-content: space-between; align-items: center;
  transition: color 0.2s;
}
.service-item:hover { color: var(--text-primary); }
.service-item::after { content: '→'; color: var(--yellow-dark); opacity: 0.5; }

/* ============================================================
   AWARDS BAND — intentionally dark on white page (contrast moment)
   ============================================================ */
.awards-band {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--black);
  margin: 0; /* full bleed — no side margins, intentional */
}
.award-block {
  padding: 52px var(--margin);
  border-right: 1px solid rgba(249,247,244,0.07);
  transition: background 0.3s;
}
.award-block:last-child { border-right: none; }
.award-block:hover { background: rgba(245,197,24,0.04); }
.award-n {
  font-family: var(--font-display);
  font-size: clamp(40px, 5.5vw, 72px); font-weight: 400; font-style: italic;
  color: var(--yellow); line-height: 0.9;
}
.award-label {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 400; line-height: 1.65; color: var(--warm-grey); margin-top: 14px;
}

/* ============================================================
   CLIENT MARQUEE — white page, subtle dark text
   ============================================================ */
.clients-shell {
  padding: 52px 0; overflow: hidden;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  background: var(--page-bg);
}
.clients-label {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--text-muted); text-align: center; margin-bottom: 28px;
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-inner { display: flex; animation: marquee-scroll 22s linear infinite; }
.marquee-inner:hover { animation-play-state: paused; }
.client-name {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 400; font-style: italic;
  color: var(--text-muted); padding: 0 40px;
  border-left: 1px solid var(--border-lt);
  white-space: nowrap; transition: color 0.3s;
}
.client-name:hover { color: var(--yellow-dark); }
@keyframes marquee-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   FOUNDERS — white page, 2-col grid, equal cards
   FIX: use gap property (not a gap column) to avoid card stretching
   ============================================================ */
.founders-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;  /* simple equal halves */
  gap: var(--gap);                  /* gap as property, not a column */
  background: #FFFFFF;             /* white gap between founder cards */
}
.founder-card {
  background: #FAFAF9;
  padding: 56px 48px;
  /* align-self defaults to stretch — both cards match the taller one */
}
.founder-img {
  width: 120px; height: 120px; border-radius: 50%; overflow: hidden;
  background: var(--warm-grey-md); margin-bottom: 28px;
  flex-shrink: 0;
}
.founder-img img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}
.founder-role {
  font-family: var(--font-body);
  font-size: 9px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--yellow-dark); margin-bottom: 8px;
}
.founder-name {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 28px); font-weight: 400; font-style: italic;
  color: var(--text-primary); margin-bottom: 18px;
}
.founder-bio {
  font-family: var(--font-body);
  font-size: 13px; font-weight: 400; line-height: 1.8; color: var(--text-secondary);
}
.founder-quote {
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border-lt);
  font-family: var(--font-display);
  font-size: clamp(13px, 1.2vw, 15px); font-style: italic; font-weight: 400;
  color: var(--text-muted); line-height: 1.65;
}

/* ============================================================
   TESTIMONIAL — light warm background, dark text
   ============================================================ */
.testimonial-shell {
  padding: 100px var(--margin);
  background: #F5F3EF;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  text-align: center;
}
.test-mark {
  font-family: var(--font-display);
  font-size: 88px; color: var(--yellow); line-height: 0.7; margin-bottom: 24px; opacity: 0.5;
}
.test-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.8vw, 32px); font-weight: 400; font-style: italic;
  color: var(--text-primary); line-height: 1.55; max-width: 780px; margin: 0 auto 28px;
}
.test-author {
  font-family: var(--font-body);
  font-size: 10px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted);
}
.test-author em { color: var(--yellow-dark); font-style: normal; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  background: var(--yellow);
  padding: 64px var(--margin);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
}
.cta-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 52px); font-weight: 400; font-style: italic;
  color: var(--black); letter-spacing: -0.02em; line-height: 1.05;
}
.cta-break { display: none; }
.cta-btn {
  font-family: var(--font-body);
  font-size: 11px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 15px 36px; border: 2px solid var(--black); color: var(--black);
  flex-shrink: 0; transition: background 0.22s, color 0.22s;
}
.cta-btn:hover { background: var(--black); color: var(--yellow); }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--black); padding: 56px var(--margin) 32px;
  border-top: 1px solid rgba(249,247,244,0.07);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px; }
.footer-brand { font-family: var(--font-display); font-size: 18px; font-weight: 700; font-style: italic; color: var(--white); margin-bottom: 14px; }
.footer-brand span { color: var(--yellow); }
.footer-desc { font-family: var(--font-body); font-size: 12px; font-weight: 400; line-height: 1.75; color: var(--warm-grey); }
.footer-col-h { font-family: var(--font-body); font-size: 9px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(249,247,244,0.28); margin-bottom: 18px; }
.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-family: var(--font-body); font-size: 12px; font-weight: 400; color: var(--warm-grey); transition: color 0.2s; }
.footer-links a:hover { color: var(--yellow); }
.footer-address { font-family: var(--font-body); font-size: 12px; font-weight: 400; line-height: 1.8; color: var(--warm-grey); }
.footer-bottom { padding-top: 24px; border-top: 1px solid rgba(249,247,244,0.06); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-legal { font-family: var(--font-body); font-size: 10px; color: rgba(249,247,244,0.2); }
.footer-legal a { color: rgba(249,247,244,0.2); transition: color 0.2s; }
.footer-legal a:hover { color: var(--yellow); }

/* ============================================================
   TESTIMONIALS PAGE
   ============================================================ */

/* Page Header */
.page-header {
  padding: calc(var(--nav-h) + 64px) var(--margin) 56px;
  max-width: 860px;
}
.page-eyebrow {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 20px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 24px;
}
.page-title em {
  font-style: italic;
  color: var(--warm-grey);
}
.page-sub {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--text-secondary);
  max-width: 560px;
}

/* Stat Band */
.t-stat-band {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border-lt);
  border-bottom: 1px solid var(--border-lt);
  margin: 0 var(--margin) 64px;
}
.t-stat {
  flex: 1;
  padding: 28px 32px;
  border-right: 1px solid var(--border-lt);
}
.t-stat:last-child { border-right: none; }
.t-stat-n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 6px;
}
.t-stat-l {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--warm-grey);
  line-height: 1.5;
}

/* Hero Testimonial */
.t-hero {
  margin: 0 var(--margin) 64px;
  padding: 56px 64px;
  background: var(--black);
  color: var(--white);
}
.t-hero-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 32px;
}
.t-hero-quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2.4vw, 26px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--white);
  border: none;
  padding: 0;
  margin: 0 0 40px 0;
}
.t-hero-attr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(249,247,244,0.12);
}
.t-hero-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}
.t-hero-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--warm-grey);
}
.t-hero-project {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(249,247,244,0.35);
  text-align: right;
}

/* Denise Spotlight */
.t-denise {
  margin: 0 var(--margin) 64px;
  padding: 48px 56px;
  background: #F5F3F0;
  border-left: 4px solid var(--yellow);
}
.t-denise-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 24px;
}
.t-denise-quote {
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.65;
  color: var(--black);
  border: none;
  padding: 0;
  margin: 0 0 28px 0;
}
.t-denise-attr { padding-top: 20px; border-top: 1px solid var(--border-lt); }
.t-denise-name {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.t-denise-role {
  font-family: var(--font-body);
  font-size: 11px;
  color: var(--warm-grey);
}

/* Testimonial Grid Section */
.t-section {
  margin: 0 var(--margin) 64px;
}
.t-section-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 24px;
}
.t-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

/* Testimonial Cards */
.t-card {
  padding: 32px 28px;
  background: var(--white);
  border: 1px solid var(--border-lt);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.t-card.founder-voice { background: #0D0C0B; }
.t-card.industry-voice { background: #F5F3F0; }

.t-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  align-self: flex-start;
}
.client-tag { background: var(--yellow); color: var(--black); }
.founder-tag { background: var(--yellow); color: var(--black); }
.industry-tag { background: var(--warm-grey-lt); color: var(--black); }

.t-project {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-grey);
}
.t-card.founder-voice .t-project { color: rgba(249,247,244,0.4); }

.t-quote {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.75;
  color: var(--black);
  flex: 1;
  border: none;
  padding: 0;
  margin: 0;
}
.t-card.founder-voice .t-quote { color: var(--white); }

.t-attribution {
  padding-top: 16px;
  border-top: 1px solid var(--border-lt);
}
.t-card.founder-voice .t-attribution { border-top-color: rgba(249,247,244,0.1); }
.t-name {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 3px;
}
.t-card.founder-voice .t-name { color: var(--white); }
.t-role {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--warm-grey);
  margin-bottom: 3px;
}
.t-source {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: var(--text-muted);
  font-style: italic;
}

/* Add Band */
.t-add-band {
  margin: 0 var(--margin) 64px;
  padding: 48px 56px;
  background: var(--yellow);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.t-add-label {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(13,12,11,0.5);
  margin-bottom: 10px;
}
.t-add-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  font-style: italic;
  color: var(--black);
}
.t-add-btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--black);
  border: 2px solid var(--black);
  padding: 14px 28px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}
.t-add-btn:hover { background: var(--black); color: var(--yellow); }

/* ============================================================
   TESTIMONIALS — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .t-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .page-header { padding: calc(var(--nav-h) + 40px) var(--margin) 36px; }
  .t-stat-band { flex-wrap: wrap; margin: 0 var(--margin) 40px; }
  .t-stat { flex: 1 1 40%; border-bottom: 1px solid var(--border-lt); }
  .t-hero { padding: 36px var(--margin); margin: 0 var(--margin) 40px; }
  .t-hero-attr { flex-direction: column; align-items: flex-start; }
  .t-hero-project { text-align: left; }
  .t-denise { padding: 32px var(--margin); margin: 0 var(--margin) 40px; }
  .t-grid { grid-template-columns: 1fr; }
  .t-add-band { padding: 36px var(--margin); flex-direction: column; align-items: flex-start; }
  .t-section { margin: 0 var(--margin) 40px; }
}

@media (max-width: 420px) {
  .t-stat { flex: 1 1 100%; border-right: none; }
  .t-hero-quote { font-size: 16px; }
  .t-denise-quote { font-size: 14px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.75s var(--ease), transform 0.75s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }
.delay-4 { transition-delay: 0.40s; }

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ============================================================
   RESPONSIVE — TABLET ≤1100px
   ============================================================ */
@media (max-width: 1100px) {
  .awards-band { grid-template-columns: repeat(2, 1fr); }
  .award-block:nth-child(2) { border-right: none; }
  .award-block:nth-child(3) { border-top: 1px solid rgba(249,247,244,0.07); }
  .award-block:nth-child(4) { border-top: 1px solid rgba(249,247,244,0.07); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .founders-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — LANDSCAPE PHONE ≤900px (orientation: landscape)
   Hero stays two-column; right panel narrower
   ============================================================ */
@media (max-width: 900px) and (orientation: landscape) {
  :root { --nav-h: 52px; }
  .hero { grid-template-columns: 1fr var(--gap) 1fr; }
  .block-title { font-size: 12px; }
  .brand-name { font-size: 13px; }
  .brand-tagline { font-size: 9px; }
  .brand-stat .n { font-size: 18px; }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
}

/* ============================================================
   RESPONSIVE — TABLET PORTRAIT / MOBILE ≤768px
   Hero stacks vertically
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 56px; --margin: 14px; --gap: 10px; }

  /* Nav */
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero: stack vertically */
  .hero-shell { height: auto; padding-bottom: var(--margin); }
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 56.25vw auto;
    row-gap: var(--gap);
    height: auto;
  }
  .hero-video { grid-column: 1; grid-row: 1; height: 56.25vw; min-height: 200px; }
  .hero-right {
    grid-column: 1; grid-row: 2;
    grid-template-rows: auto var(--gap) auto var(--gap) auto;
  }
  .hero-block { min-height: 140px; padding: 14px; }
  .hero-block.project { min-height: 180px; }
  .brand-stats { gap: 10px; }

  /* Sections */
  .section-shell { padding: 56px var(--margin); }
  .section-header { flex-direction: column; gap: 14px; align-items: flex-start; }

  /* Work grid: single column */
  .work-grid { grid-template-columns: 1fr; }
  .work-item:nth-child(1), .work-item:nth-child(2),
  .work-item:nth-child(3), .work-item:nth-child(4) {
    grid-column: span 1; min-height: unset; aspect-ratio: 16/9;
  }

  /* Services — tighter on mobile */
  .service-card { padding: 24px 20px; }
  .service-num { margin-bottom: 12px; }
  .service-title { font-size: 20px; margin-bottom: 10px; }
  .service-desc { font-size: 12px; line-height: 1.65; }
  .service-items { margin-top: 16px; }
  .service-item { padding: 8px 0; font-size: 11px; }

  /* Founders */
  .founders-grid { grid-template-columns: 1fr; }
  .founder-card { padding: 36px var(--margin); }

  /* Awards */
  .awards-band { grid-template-columns: 1fr 1fr; padding: 0 var(--margin); }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-band { padding: 48px var(--margin); flex-direction: column; text-align: center; }
  .cta-break { display: inline; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE ≤420px
   ============================================================ */
@media (max-width: 420px) {
  .hero-video { height: 56.25vw; }
  .awards-band { grid-template-columns: 1fr; }
  .award-block { border-right: none; border-bottom: 1px solid rgba(249,247,244,0.07); }
  .brand-stats { flex-wrap: wrap; }
}

/* ============================================================
   UTILITY
   ============================================================ */
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }