﻿/* ============================================================
   LINCIA ROSARIO â€” Official Site CSS
   Gen Z Editorial / Brutalist-Modern Aesthetic
   Faithful implementation of the approved mockup design system.
   ============================================================ */

/* --- Fonts ---------------------------------------------------------- */
/* Loaded via <link> in layout/site.blade.php */

/* --- Custom Properties --------------------------------------------- */
:root {
  --black:     #050505;
  --ink:       #111;
  --dark:      #181818;
  --card:      #141414;
  --border:    #222;
  --muted:     #666;
  --light:     #aaa;
  --off-white: #e0e0e0;
  --white:     #f0f0f0;
  --cream:     #ede8e1;

  --accent:     #D4AF37;   /* Electric lime  */
  --accent-alt: #ff4d00;   /* Hot orange     */
  --wa-green:   #25D366;   /* WhatsApp       */

  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-serif:   'Instrument Serif', Georgia, serif;
  --font-body:    'Space Grotesk', sans-serif;
  --font-mono:    'Inter', monospace;

  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --radius:      6px;
  --radius-lg:   14px;
}

/* --- Reset ---------------------------------------------------------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 75px; }

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--off-white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent); color: var(--black); }

/* --- Utilities ------------------------------------------------------ */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* Shared eyebrow label */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Shared section heading */
.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;
}

/* Shared serif accent word */
.serif-accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--accent);
}

/* Shared section sub-copy */
.section-sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--light);
  max-width: 52ch;
  line-height: 1.75;
  margin-bottom: 3rem;
}

/* Shared pill tag */
.pill {
  display: inline-block;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
}
.pill:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 12px rgba(212,175,55,0.1);
}

/* --- Grain overlay (analog texture) --------------------------------- */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}


/* =====================================================================
   NAVIGATION â€” Floating pill, sticky, blur on scroll
   ===================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(5, 5, 5, 0.88);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
}

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

.nav__logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.nav__logo span { color: var(--accent); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  transition: color 0.25s ease;
  position: relative;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }

/* Book CTA pill */
.nav__book {
  padding: 0.55rem 1.4rem;
  background: var(--accent);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
}
.nav__book:hover { background: #E8C84A; transform: scale(1.05); }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  z-index: 200;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav__toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 150;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.mobile-menu .nav__link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.2s ease;
}
.mobile-menu .nav__link:hover { color: var(--accent); }
.mobile-menu__socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}


/* =====================================================================
   HERO â€” Editorial split, oversized text, 5-slice reveal
   ===================================================================== */
.hero {
  position: relative;
  width: 100%;
  min-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr auto;
  padding-top: 60px;
}

/* Slice container */
.hero__bg {
  position: absolute;
  inset: 0;
  display: flex;
}
.hero__slice {
  flex: 1;
  position: relative;
  overflow: hidden;
  clip-path: inset(100% 0 0 0);      /* start hidden from bottom */
  transition: clip-path 1.2s var(--ease-out);
}
.hero__slice:nth-child(even) {
  clip-path: inset(0 0 100% 0);      /* even slices from top */
}
.hero__slice.revealed { clip-path: inset(0 0 0 0); }
.hero__slice:nth-child(1).revealed { transition-delay: 0s; }
.hero__slice:nth-child(2).revealed { transition-delay: 0.12s; }
.hero__slice:nth-child(3).revealed { transition-delay: 0.24s; }
.hero__slice:nth-child(4).revealed { transition-delay: 0.36s; }
.hero__slice:nth-child(5).revealed { transition-delay: 0.48s; }

.hero__slice-img {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100%;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.55) contrast(1.1) saturate(0.9);
}
.hero__slice:nth-child(1) .hero__slice-img { left: 0; }
.hero__slice:nth-child(2) .hero__slice-img { left: -100%; }
.hero__slice:nth-child(3) .hero__slice-img { left: -200%; }
.hero__slice:nth-child(4) .hero__slice-img { left: -300%; }
.hero__slice:nth-child(5) .hero__slice-img { left: -400%; }

/* Slice glow seams */
.hero__slice::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(180deg, transparent, rgba(212,175,55,0.15), transparent);
  opacity: 0;
  transition: opacity 1s ease 1.2s;
}
.hero__slice.revealed::after { opacity: 1; }
.hero__slice:last-child::after { display: none; }

/* Overlay */
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.15) 28%, rgba(5,5,5,0.52) 52%, rgba(5,5,5,0.68) 75%, var(--black) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.6) 0%, rgba(5,5,5,0.3) 50%, transparent 72%);
}

/* Content â€” left-aligned editorial */
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 clamp(1.5rem, 5vw, 4rem) clamp(3rem, 5vh, 5rem);
  max-width: 1320px;
  margin: 0 auto;
  width: 100%;
}

/* Desktop split: label+title left, sub+actions right */
@media (min-width: 1025px) {
  .hero__content {
    display: grid;
    grid-template-columns: 3fr 2fr;
    align-items: stretch;
    column-gap: clamp(2rem, 5vw, 5rem);
    padding-bottom: 0;
  }
  .hero__col {
    display: flex;
    flex-direction: column;
  }
  .hero__col--left {
    justify-content: center;
  }
  .hero__col--right {
    justify-content: flex-end;
    padding-bottom: 50px;
  }
}

.hero__label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--ease-out) 1.3s forwards;
}
.hero__label::before {
  content: '';
  display: inline-block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  margin-right: 12px;
  vertical-align: middle;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--white);
  max-width: 14ch;
  overflow-wrap: break-word;
  word-break: break-word;
  opacity: 0;
  transform: translateY(40px);
  animation: revealUp 0.8s var(--ease-out) 1.5s forwards;
}
.hero__title-line1 {
  font-size: 0.8em;
}

.hero__title .italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--accent);
}

.hero__sub {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--light);
  font-weight: 400;
  max-width: 44ch;
  margin-top: 1.5rem;
  line-height: 1.75;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--ease-out) 1.7s forwards;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: revealUp 0.7s var(--ease-out) 1.9s forwards;
}

/* Rotating badge */
.hero__badge {
  position: absolute;
  z-index: 4;
  right: clamp(1.5rem, 6vw, 5rem);
  bottom: clamp(4rem, 10vh, 8rem);
  width: clamp(100px, 12vw, 148px);
  height: clamp(100px, 12vw, 148px);
  animation: spinSlow 20s linear infinite;
}
.hero__badge svg { width: 100%; height: 100%; }
.hero__badge text {
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 3px;
  fill: var(--accent);
}

@keyframes spinSlow { to { transform: rotate(360deg); } }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 3.5rem;
  left: 0;
  right: 0;
  margin-inline: auto;
  width: max-content;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0;
  animation: revealUp 0.6s var(--ease-out) 2.2s forwards;
}
.hero__scroll span {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}
.hero__scroll-line {
  width: 1px;
  height: 35px;
  background: linear-gradient(180deg, var(--accent), transparent);
  animation: pulse-line 2s ease-in-out infinite;
}
@keyframes pulse-line {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}


/* =====================================================================
   MARQUEE â€” Infinite scroll ticker
   ===================================================================== */
.marquee {
  overflow: hidden;
  white-space: nowrap;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  background: var(--ink);
}
.marquee__inner {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}
.marquee__item {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 2.2vw, 1.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  padding: 0 2rem;
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.marquee__item .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.marquee__item .stroke {
  -webkit-text-stroke: 1px var(--muted);
  color: transparent;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* =====================================================================
   SERVICES â€” 3-column card grid
   ===================================================================== */
.services {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  position: relative;
}

.services__header {
  margin-bottom: 2.1rem;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Service card */
.service-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.service-card:hover {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.05);
}

.service-card__img-wrap {
  overflow: hidden;
  aspect-ratio: 16/9;
  position: relative;
}
.service-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) contrast(1.08) saturate(0.85);
  transition: filter 0.4s ease, transform 0.6s var(--ease-out);
  display: block;
}
.service-card:hover .service-card__img {
  filter: brightness(0.55) contrast(1.1) saturate(0.85);
  transform: scale(1.04);
}

.service-card__body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.service-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.service-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 0.9rem;
}

.service-card__desc {
  font-size: 0.88rem;
  color: var(--light);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

.service-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.5rem;
}

.service-card__actions {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.service-card__cta {
  align-self: flex-start;
}

.service-card__gallery-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
  transition: color 0.2s ease, gap 0.3s var(--ease-spring);
}
.service-card__gallery-link:hover {
  color: var(--accent);
  gap: 0.6rem;
}


/* =====================================================================
   AUTHORITY â€” Stats, Awards, Brands
   ===================================================================== */
.authority {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  background: var(--ink);
  position: relative;
}
.authority::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.18;
}

.authority__header {
  margin-bottom: 2.1rem;
}

/* Stats row */
.authority__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: clamp(2.1rem, 4.2vh, 3.6rem);
}
.authority__stat {
  padding: clamp(1.5rem, 3vw, 2.5rem) 1.5rem;
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}
.authority__stat:last-child { border-right: none; }
.authority__stat:hover { background: rgba(212,175,55,0.03); }

.authority__stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.authority__stat-num .accent { color: var(--accent); }
.authority__stat-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-top: 0.5rem;
}

/* Awards */
.awards {
  margin-bottom: clamp(2.1rem, 4.2vh, 3.6rem);
}
.awards__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.awards__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.award-badge {
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--card);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.award-badge:hover {
  border-color: rgba(212,175,55,0.2);
  box-shadow: 0 0 20px rgba(212,175,55,0.05);
}
.award-badge__year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent);
}
.award-badge__title {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.award-badge__org {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.15rem;
}

/* Brands */
.brands {
  margin-top: clamp(3rem, 6vh, 5rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vh, 3rem) clamp(1.5rem, 4vw, 3rem);
  position: relative;
}

.brands__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
  margin-bottom: 1.5rem;
  text-align: center;
}
.brands__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-start;
  justify-content: center;
}

/* â”€â”€ Brand logo card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blc {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1rem 0.85rem;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  /* Fixed width â€” every card is the same size regardless of label length */
  width: 110px;
  min-width: 110px;
  max-width: 110px;
  text-align: center;
  background: rgba(255,255,255,0.03);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  cursor: default;
  box-sizing: border-box;
}
.blc:hover {
  border-color: rgba(212,175,55,0.3);
  background: rgba(212,175,55,0.04);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.25), 0 0 0 1px rgba(212,175,55,0.12);
}

/* White logo tile â€” fixed 52Ã—52, never grows */
.blc__logo-wrap {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  max-width: 52px;
  max-height: 52px;
  background: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  flex-shrink: 0;
}
.blc:hover .blc__logo-wrap {
  box-shadow: 0 4px 16px rgba(212,175,55,0.25);
  transform: scale(1.06);
}

/* Simple Icons img (strategy 1) */
.blc__img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  display: block;
}

/* Inline branded SVG (strategy 2) â€” fills the white tile completely */
.blc__inline-svg {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 8px;
  overflow: hidden;
}

/* Initials / abbrev fallback tile */
.blc__logo-wrap--fallback {
  background: #1a1a1a;
  border: 1px solid rgba(212,175,55,0.2);
}
.blc__initials {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
}

/* Brand name label â€” fixed 2-line height keeps all cards identical */
.blc__name {
  font-family: var(--font-mono);
  font-size: 0.57rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(255,255,255,0.35);
  line-height: 1.4;
  transition: color 0.25s ease;
  text-align: center;
  /* Always occupies exactly 2 lines â€” clips overflow with ellipsis */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 1.6em;   /* reserve space even for 1-word names */
  max-height: 2.8em;   /* never taller than 2 lines */
  width: 100%;
}
.blc:hover .blc__name {
  color: rgba(212,175,55,0.85);
}

/* 3-column grid on mobile */
@media (max-width: 640px) {
  .brands__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }
  .blc {
    width: 100%;
    min-width: unset;
    max-width: unset;
  }
}

/* Legacy pill â€” kept for any places not yet migrated */
.brand-pill {
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--light);
  transition: all 0.25s ease;
  cursor: default;
}
.brand-pill:hover {
  border-color: rgba(212,175,55,0.3);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(212,175,55,0.08);
}


/* Trusted By â€” full-bleed lime contrast strip */
.brands-strip {
  background: var(--accent);
  margin-top: 0;
  padding: clamp(2.5rem, 5vh, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.brands-strip::before {
  /* Subtle diagonal texture */
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 40px,
    rgba(0,0,0,0.03) 40px,
    rgba(0,0,0,0.03) 42px
  );
  pointer-events: none;
}

.brands-strip__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 4rem);
  position: relative;
  z-index: 1;
}

.brands-strip__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(0,0,0,0.45);
  text-align: center;
  margin-bottom: 1.5rem;
}

.brands-strip__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  align-items: center;
  justify-content: center;
}

.brands-strip__name {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.4vw, 1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
  padding: 0.45rem 1.1rem;
  border-radius: 4px;
  background: #000;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: default;
  line-height: 1;
}
.brands-strip__name:hover {
  background: #1a1a1a;
  color: var(--accent);
}


/* =====================================================================
   AWARDS SHOWCASE â€” Dedicated full-section treatment
   ===================================================================== */
.awards-showcase {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  background: var(--card);
  position: relative;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.awards-showcase::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}

.awards-showcase__header {
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
}

.awards-showcase__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

/* Award card */
.award-card {
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s ease, transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}
.award-card:hover {
  border-color: rgba(212,175,55,0.3);
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06);
}

/* Image area */
.award-card__img-wrap {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: #0a0a0a;
}
.award-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.65) brightness(0.55) contrast(1.1);
  transition: filter 0.5s ease, transform 0.6s var(--ease-out);
  display: block;
}
.award-card:hover .award-card__img {
  filter: grayscale(0.3) brightness(0.6) contrast(1.1);
  transform: scale(1.05);
}

/* Ghost year watermark on image */
.award-card__year-ghost {
  position: absolute;
  bottom: -0.4rem;
  right: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 6vw, 5.5rem);
  font-weight: 900;
  color: var(--accent);
  opacity: 0.12;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
  transition: opacity 0.4s ease;
}
.award-card:hover .award-card__year-ghost { opacity: 0.2; }

/* Body */
.award-card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  flex: 1;
}

/* Trophy icon circle */
.award-card__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 0.5rem;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.award-card:hover .award-card__icon {
  background: rgba(212,175,55,0.14);
  border-color: rgba(212,175,55,0.4);
}

.award-card__year {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.award-card__title {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.3vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.15;
  transition: color 0.25s ease;
}
.award-card:hover .award-card__title { color: var(--accent); }

.award-card__org {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.1rem;
}

.award-card__desc {
  font-size: 0.8rem;
  color: var(--light);
  line-height: 1.65;
  margin-top: 0.5rem;
  opacity: 0.75;
}


/* =====================================================================
   VIDEOS â€” Featured work with YouTube lightbox
   ===================================================================== */
.videos {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  position: relative;
  background: var(--ink);
  border-top: 1px solid var(--border);
}
/* Thin gold accent line at top of Featured Work */
.videos::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.videos__header {
  margin-bottom: 2.1rem;
}

.videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Video card */
.video-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 16/9;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  outline: none;
}
.video-card:hover,
.video-card:focus-visible {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,175,55,0.06);
}
.video-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
/* Playing state â€” lock out hover effects once inline video is active */
.video-card--playing,
.video-card--playing:hover,
.video-card--playing:focus-visible {
  transform: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  outline: none !important;
  cursor: default !important;
}

.video-card__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.85);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.video-card:hover .video-card__thumb,
.video-card:focus-visible .video-card__thumb {
  filter: brightness(0.4) saturate(0.85);
  transform: scale(1.05);
}

/* Play button */
.video-card__play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.35s var(--ease-spring);
  box-shadow: 0 0 40px rgba(212,175,55,0.35);
}
.video-card:hover .video-card__play,
.video-card:focus-visible .video-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.video-card__play svg {
  width: 22px; height: 22px;
  fill: var(--black);
  margin-left: 3px;
}

/* Text overlay */
.video-card__content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(180deg, transparent 40%, rgba(5,5,5,0.9) 100%);
  pointer-events: none;
  text-align: left;
}
.video-card__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.25rem;
}
.video-card__title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 0.3rem;
}
.video-card__desc {
  font-size: 0.75rem;
  color: var(--light);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* YouTube Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox__inner {
  width: 90%;
  max-width: 900px;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }


/* =====================================================================
   CTA SECTION â€” Booking call-to-action
   ===================================================================== */
.cta-section {
  padding: clamp(4.2rem, 8.5vh, 6.6rem) 0;
  background: var(--black);
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.2;
}

/* Ghost background text */
.cta-section__bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(5rem, 15vw, 14rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  -webkit-text-stroke: 1.5px rgba(212,175,55,0.04);
  color: transparent;
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.cta-section__inner {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
}

.cta-section__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.cta-section__sub {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--light);
  line-height: 1.8;
  max-width: 54ch;
  margin: 0 auto 2.5rem;
}

.cta-section__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.cta-section__trust {
  display: flex;
  justify-content: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}
.cta-section__trust li {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.cta-section__trust li svg { color: var(--accent); flex-shrink: 0; }


/* =====================================================================
   BUTTONS â€” Shared
   ===================================================================== */
.btn--primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  background: linear-gradient(180deg, #E8C84A 0%, #C9A030 100%);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.55) inset,
    0 -2px 0 rgba(0,0,0,0.2) inset,
    0 6px 20px rgba(212,175,55,0.45),
    0 2px 6px rgba(0,0,0,0.3);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}
.btn--primary:hover {
  background: linear-gradient(180deg, #F0D060 0%, #D4AF37 100%);
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.6) inset,
    0 -2px 0 rgba(0,0,0,0.2) inset,
    0 10px 28px rgba(212,175,55,0.55),
    0 3px 8px rgba(0,0,0,0.3);
}
.btn--primary:active {
  transform: translateY(2px);
  background: linear-gradient(180deg, #C9A030 0%, #B08820 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.3) inset,
    0 -1px 0 rgba(0,0,0,0.25) inset,
    0 2px 8px rgba(212,175,55,0.3);
}

.btn--ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.1rem;
  background: rgba(255,255,255,0.07);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.12) inset,
    0 4px 14px rgba(255,255,255,0.06),
    0 2px 6px rgba(0,0,0,0.25);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease,
              transform 0.12s ease, box-shadow 0.2s ease;
}
.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,175,55,0.08);
  transform: translateY(-2px);
  box-shadow:
    0 1px 0 rgba(212,175,55,0.15) inset,
    0 6px 20px rgba(212,175,55,0.15),
    0 2px 6px rgba(0,0,0,0.2);
}
.btn--ghost:active {
  transform: translateY(2px);
  box-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

.btn--wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.1rem;
  background: linear-gradient(180deg, #2de86b 0%, #1db954 100%);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 100px;
  border: none;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  box-shadow:
    0 2px 0 rgba(255,255,255,0.4) inset,
    0 -2px 0 rgba(0,0,0,0.15) inset,
    0 6px 20px rgba(37,211,102,0.45),
    0 2px 6px rgba(0,0,0,0.25);
  transition: background 0.2s ease, transform 0.12s ease, box-shadow 0.2s ease;
}
.btn--wa:hover {
  background: linear-gradient(180deg, #38f077 0%, #22cc5e 100%);
  transform: translateY(-2px);
  box-shadow:
    0 2px 0 rgba(255,255,255,0.45) inset,
    0 -2px 0 rgba(0,0,0,0.15) inset,
    0 10px 28px rgba(37,211,102,0.55),
    0 3px 8px rgba(0,0,0,0.25);
}
.btn--wa:active {
  transform: translateY(2px);
  background: linear-gradient(180deg, #1db954 0%, #18a048 100%);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.25) inset,
    0 2px 8px rgba(37,211,102,0.3);
}


/* =====================================================================
   FOOTER â€” Minimal, brand-forward
   ===================================================================== */
.footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 3rem;
  margin-bottom: 3rem;
  text-align: center;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: block;
  margin-bottom: 0.85rem;
}
.footer__logo span { color: var(--accent); }

.footer__tagline {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.7;
  max-width: 30ch;
  margin: 0 auto;
}

.footer__nav-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}
.footer__link {
  font-size: 0.78rem;
  color: var(--light);
  transition: color 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}
.footer__link:hover { color: var(--accent); }

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
}
.footer__social {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition: all 0.25s ease;
}
.footer__social:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 0 16px rgba(212,175,55,0.15);
}
.footer__social svg { width: 15px; height: 15px; }

.footer__bottom {
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.65rem;
  color: #444;
  letter-spacing: 0.05em;
}
.footer__credit {
  margin-top: 0.5rem;
  font-size: 0.6rem;
  color: #444;
  letter-spacing: 0.04em;
}
.footer__credit-link {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.footer__credit-link:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}


/* =====================================================================
   SCROLL REVEAL
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.vis { opacity: 1; transform: translateY(0); }

.reveal--d1 { transition-delay: 0.08s; }
.reveal--d2 { transition-delay: 0.16s; }
.reveal--d3 { transition-delay: 0.24s; }
.reveal--d4 { transition-delay: 0.32s; }

.reveal--left  { transform: translateX(-40px); }
.reveal--left.vis  { transform: translateX(0); }
.reveal--right { transform: translateX(40px); }
.reveal--right.vis { transform: translateX(0); }

@keyframes revealUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* =====================================================================
   RESPONSIVE
   ===================================================================== */

/* Tablet â€” 1024px */
@media (max-width: 1024px) {
  .hero { min-height: 84vh; }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .awards-showcase__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority__stat:nth-child(2) { border-right: none; }
  .authority__stat:nth-child(1),
  .authority__stat:nth-child(2) {
    border-bottom: 1px solid var(--border);
  }
  .awards__list {
    grid-template-columns: repeat(2, 1fr);
  }
  .videos__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

/* Tablet portrait â€” 769px to 1024px */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero {
    min-height: clamp(500px, 82vh, 780px);
    padding-top: 0;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 12vh, 8rem) clamp(2rem, 5vw, 4rem) clamp(3rem, 6vh, 5rem);
  }
  .hero__col { align-items: center; width: 100%; justify-content: center; }
  .hero__col--right { padding-bottom: 0; }
  .hero__title { max-width: none; font-size: clamp(2.5rem, 5.5vw, 4rem); }
  .hero__sub { max-width: 44ch; margin-left: auto; margin-right: auto; }
  .hero__label::before { display: none; }
  .hero__actions { justify-content: center; }
  .hero__badge { display: none; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.25) 28%, rgba(5,5,5,0.58) 52%, rgba(5,5,5,0.78) 75%, var(--black) 100%);
  }
}

/* Mobile â€” 768px */
@media (max-width: 768px) {
  /* Nav */
  .nav__links { display: none; }
  .nav__book  { display: none; }
  .nav__toggle { display: flex; }
  .mobile-menu { display: flex; }

  /* Hero */
  .hero {
    padding-top: 0;
    min-height: 88vh;
  }
  .hero__content {
    text-align: center;
    align-items: center;
    justify-content: center;
    padding: clamp(5rem, 12vh, 7rem) clamp(1.5rem, 5vw, 4rem) clamp(2.5rem, 5vh, 4rem);
  }
  .hero__col { align-items: center; width: 100%; justify-content: center; }
  .hero__col--right { padding-bottom: 0; }
  .hero__title { max-width: none; }
  .hero__sub   { max-width: 38ch; margin-left: auto; margin-right: auto; }
  .hero__label::before { display: none; }
  .hero__actions { justify-content: center; }
  .hero__badge { display: none; }
  .hero__scroll { bottom: 2rem; }
  .hero__overlay {
    background:
      linear-gradient(180deg, rgba(5,5,5,0.05) 0%, rgba(5,5,5,0.25) 28%, rgba(5,5,5,0.6) 52%, rgba(5,5,5,0.8) 72%, var(--black) 100%);
  }

  /* Services */
  .services__grid { grid-template-columns: 1fr; }

  /* Awards Showcase */
  .awards-showcase__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .award-card__year-ghost { font-size: 4rem; }

  /* Authority */
  .authority__stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .authority__stat {
    border-bottom: 1px solid var(--border);
  }
  .awards__list { grid-template-columns: 1fr 1fr; }

  /* Videos */
  .videos__grid { grid-template-columns: 1fr; }

  /* CTA */
  .cta-section__actions { flex-direction: column; align-items: center; }
  .cta-section__trust   { flex-direction: column; gap: 0.75rem; align-items: center; }

  /* Footer â€” single column, centred */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .footer__links   { align-items: center; }
  .footer__socials { justify-content: center; }
  .footer__bottom  { flex-direction: column; align-items: center; gap: 0.4rem; text-align: center; }
}

/* Small mobile â€” 480px */
@media (max-width: 480px) {
  .hero__actions .btn--primary,
  .hero__actions .btn--ghost {
    width: 100%;
    justify-content: center;
  }
  .awards__list { grid-template-columns: 1fr; }
  .authority__stats { grid-template-columns: 1fr 1fr; }
  .brands__grid { justify-content: flex-start; }
  .cta-section__actions .btn--primary,
  .cta-section__actions .btn--wa {
    width: 100%;
    justify-content: center;
  }
}


/* =======================================================================
   PHASE 2 â€” About & Work pages
   ======================================================================= */


/* =====================================================================
   PAGE HERO â€” Shared inner-page hero (About, Work, etc.)
   ===================================================================== */
.page-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 6vh, 4.8rem);
  overflow: hidden;
}

/* Full-bleed image bg (About page) */
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  filter: brightness(0.35) saturate(0.7);
}

/* Gradient overlay */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,5,5,0.2) 0%, rgba(5,5,5,0.5) 50%, var(--black) 100%),
    linear-gradient(90deg, rgba(5,5,5,0.6) 0%, transparent 60%);
}

/* Dark-only variant â€” no image (Work page) */
.page-hero--dark {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  min-height: 80vh;
}
.page-hero--dark .page-hero__bg,
.page-hero--dark .page-hero__overlay { display: none; }

/* Ghost oversized background letter */
.page-hero__ghost {
  display: none;
}
.page-hero--dark .page-hero__ghost {
  display: none;
}

/* Inner content */
.page-hero__inner {
  position: relative;
  z-index: 2;
  padding-top: clamp(8rem, 16vh, 11rem);
}

/* Breadcrumb */
.page-hero__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 1.75rem;
}
.page-hero__breadcrumb a { transition: color 0.2s ease; }
.page-hero__breadcrumb a:hover { color: var(--accent); }
.page-hero__breadcrumb span:last-child { color: var(--accent); }

/* Page title */
.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* Serif italic accent / quote */
.page-hero__accent {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.55rem);
  color: var(--accent);
  letter-spacing: 0.01em;
  margin-bottom: 1rem;
  line-height: 1.3;
}

/* Sub-copy */
.page-hero__sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--light);
  max-width: 52ch;
  line-height: 1.75;
}
.page-hero__sub strong {
  color: var(--accent);
  font-weight: 600;
}

/* Work page category jump links */
.work__jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.5rem;
}
.work__jump-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  transition: all 0.25s ease;
}
.work__jump-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px rgba(212,175,55,0.1);
}
.work__jump-link:hover svg { transform: translateY(2px); }
.work__jump-link svg { transition: transform 0.2s ease; }


/* =====================================================================
   ABOUT â€” Story section (asymmetric editorial layout)
   ===================================================================== */
.about {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  position: relative;
}

.about__layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

/* Visual column */
.about__visual { position: relative; }

.about__img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  position: relative;
}
.about__img-main img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05);
  transition: transform 0.6s var(--ease-out);
  display: block;
}
.about__img-main:hover img { transform: scale(1.03); }

/* Floating accent image */
.about__img-float {
  position: absolute;
  bottom: -30px; right: -30px;
  width: 45%;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--black);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
.about__img-float img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.9);
  display: block;
}

/* Sticker badge */
.about__sticker {
  position: absolute;
  top: -15px; left: -15px;
  z-index: 2;
  background: var(--accent);
  color: var(--black);
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transform: rotate(-6deg);
  box-shadow: 0 4px 20px rgba(212,175,55,0.3);
  white-space: nowrap;
}

/* Content column */
.about__content { padding: 1rem 0; }

.about__heading {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.about__text {
  color: var(--light);
  font-size: 0.95rem;
  line-height: 1.8;
}
.about__text p + p { margin-top: 1rem; }

/* Trait pills */
.about__traits {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}
.about__trait {
  padding: 0.4rem 1rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--off-white);
  transition: all 0.25s ease;
  cursor: default;
}
.about__trait:hover {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 14px rgba(212,175,55,0.1);
}


/* =====================================================================
   USPs â€” Unique Selling Points (2 x 2 grid)
   ===================================================================== */
.usps {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  background: var(--black);
  position: relative;
}
.usps::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.15;
}

.usps__header { margin-bottom: 2.1rem; }

.usps__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.usp-card {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: all 0.4s var(--ease-out);
}
.usp-card:hover {
  border-color: rgba(212,175,55,0.2);
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 30px rgba(212,175,55,0.05);
}

/* Big stroke number */
.usp-card__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  font-weight: 800;
  line-height: 1;
  -webkit-text-stroke: 1.5px rgba(212,175,55,0.15);
  color: transparent;
  margin-bottom: 1.5rem;
  transition: -webkit-text-stroke-color 0.3s ease;
}
.usp-card:hover .usp-card__num {
  -webkit-text-stroke-color: rgba(212,175,55,0.3);
}

.usp-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.8vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 0.85rem;
  line-height: 1.1;
}

.usp-card__desc {
  font-size: 0.9rem;
  color: var(--light);
  line-height: 1.8;
}


/* =====================================================================
   WORK â€” Category sections
   ===================================================================== */
.work-cat-section {
  padding: clamp(3rem, 7.2vh, 6rem) 0;
  background: var(--black);
}
.work-cat-section--alt { background: var(--ink); }
.work-cat-section + .work-cat-section {
  border-top: 1px solid var(--border);
}

/* Category header */
.work-cat-header {
  text-align: center;
  margin-bottom: clamp(2.4rem, 4.8vh, 3.6rem);
}
.work-cat-header__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1rem;
}
.work-cat-header__sub {
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  color: var(--light);
  max-width: 58ch;
  margin: 0 auto;
  line-height: 1.75;
}


/* =====================================================================
   WORK ITEM â€” Alternating 2-col layout
   ===================================================================== */
.work-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(1.8rem, 4.2vh, 3.6rem) 0;
  border-bottom: 1px solid var(--border);
}
.work-item:last-of-type { border-bottom: none; }

/* Reverse: video right, text left */
.work-item--reverse .work-item__video { order: 2; }
.work-item--reverse .work-item__text  { order: 1; }

/* Video side â€” inherits .video-card styles */
.work-item__video.video-card { border-radius: var(--radius-lg) !important; }

/* Instagram embed side */
.work-item--ig { align-items: flex-start; }
.work-item__ig-embed {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}
/* Reel / IGTV: portrait 9:16 */
.work-item__ig-embed[data-ig-type="reel"] .ig-iframe,
.work-item__ig-embed[data-ig-type="tv"]   .ig-iframe {
  aspect-ratio: 9 / 16;
  max-height: 600px;
}
/* Standard post: square-ish 4:5 */
.work-item__ig-embed[data-ig-type="p"] .ig-iframe {
  aspect-ratio: 4 / 5;
  max-height: 600px;
}
.ig-iframe {
  width: 100%;
  border: none;
  border-radius: var(--radius-lg);
  display: block;
  background: #000;
}

/* Text side */
.work-item__text {
  display: flex;
  flex-direction: column;
}

/* Tag / eyebrow */
.work-item__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.85rem;
}
.work-item__tag::before {
  content: '';
  width: 20px;
  height: 1.5px;
  background: var(--accent);
  flex-shrink: 0;
}

/* Title */
.work-item__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

/* Description */
.work-item__desc {
  color: var(--light);
  font-size: 0.93rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.work-item__desc p + p { margin-top: 0.85rem; }

/* Highlights checklist */
.work-item__highlights {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(212,175,55,0.02);
}
.work-item__highlights li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--off-white);
}
.work-item__highlights li svg { color: var(--accent); flex-shrink: 0; }

.work-item__cta { align-self: flex-start; }

/* Placeholder warning badge */
.video-placeholder-notice {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,77,0,0.88);
  backdrop-filter: blur(6px);
  border-radius: 100px;
  padding: 0.3rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  z-index: 10;
}

/* Category CTA strip */
.work-cat-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: clamp(3rem, 6vh, 4.5rem);
  padding: 2rem 2.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: border-color 0.3s ease;
}
.work-cat-cta:hover { border-color: rgba(212,175,55,0.15); }
.work-cat-cta__text {
  font-size: clamp(0.9rem, 1.4vw, 1.05rem);
  color: var(--light);
}
.work-cat-cta__text strong { color: var(--white); }


/* =====================================================================
   PHASE 2 â€” RESPONSIVE
   ===================================================================== */

/* Tablet â€” 1024px */
@media (max-width: 1024px) {
  .page-hero { min-height: 60vh; }

  /* About story */
  .about__layout  { grid-template-columns: 1fr; gap: 3rem; }
  .about__visual  { max-width: 480px; }
  .about__img-float { display: none; }

  /* Work items stack on tablet */
  .work-item {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .work-item--reverse .work-item__video,
  .work-item--reverse .work-item__text { order: unset; }
  .work-item .work-item__video { order: 1; }
  .work-item .work-item__text  { order: 2; }
}

/* Mobile â€” 768px */
@media (max-width: 768px) {
  .page-hero { min-height: auto; padding-top: 0; }
  .page-hero__inner { padding-top: clamp(6rem, 14vh, 9rem); }
  .page-hero__title { font-size: clamp(3rem, 12vw, 5rem); }
  .page-hero__sub { max-width: 38ch; }

  .about__sticker { left: 0; top: -10px; }

  .usps__grid { grid-template-columns: 1fr; }

  .work-cat-header { text-align: left; }
  .work-cat-header__sub { margin: 0; }

  .work-cat-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
  }

  .work__jump-nav { gap: 0.5rem; }
}

/* Small mobile â€” 480px */
@media (max-width: 480px) {
  .page-hero__title { font-size: clamp(2.8rem, 14vw, 4rem); }
  .page-hero__accent { font-size: 1rem; }
  .work-item__title { font-size: 1.3rem; }
}


/* =====================================================================
   WORK INDEX â€” Category cards
   ===================================================================== */

.work-index {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
}

.work-index__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

/* Card container */
.work-cat-card {
  position: relative;
  height: clamp(380px, 55vh, 520px);
  overflow: hidden;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  border: 1px solid var(--border);
  transition: border-color 0.3s ease;
}
.work-cat-card:hover { border-color: rgba(212,175,55,0.2); }

/* Photo background via --card-thumb custom property */
.work-cat-card__bg {
  position: absolute;
  inset: 0;
  background-image: var(--card-thumb);
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.7);
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
}
.work-cat-card:hover .work-cat-card__bg {
  transform: scale(1.05);
  filter: brightness(0.2) saturate(0.6);
}

/* Gradient scrim */
.work-cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 30%, rgba(5,5,5,0.92) 100%);
}

/* Lime left bar â€” slides in on hover */
.work-cat-card::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 2px;
  z-index: 3;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out);
}
.work-cat-card:hover::after,
.work-cat-card:focus-visible::after { transform: scaleY(1); }

.work-cat-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Text body */
.work-cat-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.work-cat-card__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.8;
}

.work-cat-card__title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin: 0;
  text-align: left;
  transition: color 0.25s ease;
}
.work-cat-card:hover .work-cat-card__title { color: var(--accent); }

.work-cat-card__sub {
  font-size: clamp(0.8rem, 1.2vw, 0.9rem);
  color: var(--light);
  line-height: 1.5;
  max-width: 36ch;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.work-cat-card__count {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  width: fit-content;
}

.work-cat-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-top: 0.4rem;
  transition: gap 0.3s var(--ease-spring);
}
.work-cat-card:hover .work-cat-card__cta { gap: 0.7rem; }

/* â”€â”€ Card responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

/* Tablet: keep 2-column grid, portrait cards */
@media (max-width: 1024px) {
  .work-index__grid {
    gap: 1rem;
  }
  .work-cat-card {
    height: auto;
    aspect-ratio: 3 / 4;   /* portrait â€” shows the full person */
  }
}

/* If odd number of cards, last one spans both columns */
.work-cat-card:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 7;
}

/* Mobile: single column */
@media (max-width: 600px) {
  .work-index__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .work-cat-card {
    aspect-ratio: 4 / 3;
  }
  .work-cat-card:last-child:nth-child(odd) {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }
  .work-index { padding: 1.8rem 0; }
  .work-cat-card__sub { display: none; }
  .work-cat-card__title { font-size: 0.95rem; }
}

/* Shift the focal point upward on all small screens so faces/upper body show */
@media (max-width: 1024px) {
  .work-cat-card__bg {
    background-position: center 20%;
  }
}


/* =====================================================================
   WORK INDEX â€” Stats bar (full-bleed, 4 equal cols, never stacks)
   ===================================================================== */
.work-stats-bar {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 29px;
}

.work-stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* locked â€” never changes */
  width: 100%;
}

.work-stats-bar__item {
  padding: clamp(1.5rem, 3vw, 2.5rem) clamp(1rem, 2vw, 2rem);
  text-align: center;
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
}
.work-stats-bar__item:last-child { border-right: none; }
.work-stats-bar__item:hover { background: rgba(212,175,55,0.03); }

.work-stats-bar__num {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  color: var(--white);
  letter-spacing: -0.03em;
}

.work-stats-bar__label {
  font-family: var(--font-mono);
  font-size: clamp(0.55rem, 1vw, 0.65rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-top: 0.5rem;
}


/* =====================================================================
   WORK INDEX â€” Editorial intro
   ===================================================================== */
.work-intro {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
}

.work-intro__layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}

.work-intro__heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin-top: 1rem;
}

.work-intro__right p {
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.work-intro__right p:last-child { margin-bottom: 0; }
.work-intro__right strong { color: var(--white); font-weight: 600; }

@media (max-width: 768px) {
  .work-intro__layout { grid-template-columns: 1fr; gap: 2rem; }
}


/* =====================================================================
   WORK INDEX â€” Category cards header
   ===================================================================== */
.work-index__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
}
.work-index__header .eyebrow { margin-bottom: 0.75rem; }


/* =====================================================================
   WORK INDEX â€” Testimonials
   ===================================================================== */
.work-testimonials {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.work-testimonials__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
}
.work-testimonials__header .eyebrow { margin-bottom: 0.75rem; }

.work-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  position: relative;
  background: var(--ink);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 2.5vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
  transition: border-color 0.3s ease, transform 0.3s var(--ease-out);
}
.testimonial-card:hover {
  border-color: rgba(212,175,55,0.25);
  border-left-color: var(--accent);
  transform: translateY(-3px);
}

.testimonial-card__type {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  opacity: 0.75;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.3vw, 1.05rem);
  color: var(--light);
  line-height: 1.7;
  flex: 1;
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testimonial-card__name {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
}

.testimonial-card__role {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* â”€â”€ Testimonial responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .work-testimonials__grid { grid-template-columns: 1fr; gap: 1rem; }
}


/* =====================================================================
   WORK INDEX â€” Brands section
   ===================================================================== */
.work-brands {
  padding: clamp(2.4rem, 5.5vh, 4.8rem) 0;
}


/* =====================================================================
   GALLERY PAGE
   ===================================================================== */

.gallery-section {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
}

/* Header row: text left, filters right */
.gallery-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
}

.gallery-header__text .eyebrow { margin-bottom: 0.5rem; }
.gallery-header__text .section-heading { margin: 0; }

/* Filter tabs */
.gallery-filter {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.625rem;
  flex-wrap: wrap;
}

.gallery-filter__btn {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.75rem 1.75rem;
  border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  white-space: nowrap;
  /* raised / pressable look */
  box-shadow:
    0 1px 0 rgba(255,255,255,0.06) inset,
    0 4px 10px rgba(0,0,0,0.35),
    0 1px 3px rgba(0,0,0,0.4);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease,
              box-shadow 0.2s ease, transform 0.12s ease;
  -webkit-tap-highlight-color: transparent;
}
.gallery-filter__btn:hover {
  border-color: rgba(212,175,55,0.45);
  color: var(--white);
  background: rgba(212,175,55,0.07);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.08) inset,
    0 6px 16px rgba(0,0,0,0.4),
    0 2px 6px rgba(0,0,0,0.35);
  transform: translateY(-2px);
}
/* pressed state â€” feels like physically pushing down */
.gallery-filter__btn:active {
  transform: translateY(1px);
  box-shadow:
    0 0 0 rgba(255,255,255,0) inset,
    0 1px 4px rgba(0,0,0,0.4);
}
.gallery-filter__btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(212,175,55,0.1);
  box-shadow:
    0 1px 0 rgba(212,175,55,0.12) inset,
    0 0 0 1px rgba(212,175,55,0.2),
    0 4px 18px rgba(212,175,55,0.18),
    0 2px 6px rgba(0,0,0,0.35);
}
.gallery-filter__btn:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* â”€â”€ True masonry grid â€” 1px rows, JS sets span per item â”€â”€â”€ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1px;
  column-gap: 10px;
  row-gap: 0;
  grid-auto-flow: dense;
  align-items: start;
}

/* Size variants â€” column spans only; height always natural */
.gallery-item--large,
.gallery-item--wide { grid-column: span 2; }

/* Base item */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: border-color 0.3s ease, opacity 0.4s ease;
  /* invisible until image loads and span is set â€” prevents layout flash */
}
.gallery-item--loading { opacity: 0; background: var(--card); }
/* 10px bottom gap â€” mirrors COL_GAP in JS span calculation */
.gallery-item { margin-bottom: 10px; }
.gallery-item:hover,
.gallery-item:focus-visible { border-color: rgba(212,175,55,0.25); }
.gallery-item:focus-visible  { outline: 2px solid var(--accent); outline-offset: 2px; }

/* Hidden state (after filter) */
.gallery-item--hidden { display: none !important; }

/* Photo â€” natural aspect ratio */
.gallery-item__img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.88) saturate(0.8);
  transition: transform 0.7s var(--ease-out), filter 0.5s var(--ease-out);
}
.gallery-item:hover .gallery-item__img {
  transform: scale(1.05);
  filter: brightness(0.6) saturate(0.7);
}

/* Zoom icon badge */
.gallery-item__zoom {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(5,5,5,0.65);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.75);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-spring);
}
.gallery-item:hover .gallery-item__zoom  { opacity: 1; transform: scale(1); }
.gallery-item:focus-visible .gallery-item__zoom { opacity: 1; transform: scale(1); }

/* Hover overlay */
.gallery-item__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(0.85rem, 1.8vw, 1.4rem);
  background: linear-gradient(180deg, transparent 45%, rgba(5,5,5,0.9) 100%);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
}
.gallery-item:hover .gallery-item__overlay,
.gallery-item:focus-visible .gallery-item__overlay { opacity: 1; transform: translateY(0); }

.gallery-item__cat {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  margin-bottom: 0.2rem;
}

.gallery-item__caption {
  font-family: var(--font-display);
  font-size: clamp(0.78rem, 1.4vw, 0.95rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

/* Empty state */
.gallery-empty {
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  padding: 3rem 0;
}

/* â”€â”€ Gallery image lightbox â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
#gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 600;
  background: rgba(0,0,0,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#gallery-lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.gallery-lightbox__close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
  z-index: 10;
}
.gallery-lightbox__close:hover { background: rgba(255,255,255,0.16); }

/* Prev / next navigation */
.gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 10;
}
.gallery-lightbox__nav:hover { background: rgba(212,175,55,0.12); color: var(--accent); }
.gallery-lightbox__nav--prev { left: 1.25rem; }
.gallery-lightbox__nav--next { right: 1.25rem; }

/* Image wrapper */
.gallery-lightbox__img-wrap {
  max-width: min(90vw, 1100px);
  max-height: 78vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

#gallery-lb-img {
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0,0,0,0.85);
  display: block;
}

/* Footer: caption + counter */
.gallery-lightbox__footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.gallery-lightbox__caption {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--light);
}

.gallery-lightbox__counter {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  color: var(--muted);
  letter-spacing: 0.1em;
}

/* Lightbox description (new â€” shown when item has a description) */
.gallery-lightbox__description {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  max-width: 56ch;
  margin: 0.2rem 0 0;
}

/* Video play icon overlay on gallery thumbnails */
.gallery-item__video-thumb {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
}
.gallery-item__play-icon {
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
  transition: transform 0.25s ease;
}
.gallery-item:hover .gallery-item__play-icon {
  transform: scale(1.15);
}

/* â”€â”€ Gallery responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); column-gap: 8px; }
  .gallery-header { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); column-gap: 6px; }
  .gallery-item--large,
  .gallery-item--wide { grid-column: span 1; } /* full-width span on narrow screens */

  /* Filters: stack below the heading, full row */
  .gallery-header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .gallery-filter {
    width: 100%;
    justify-content: flex-start;
    gap: 0.5rem;
  }
  .gallery-filter__btn {
    flex: 1 1 auto;
    text-align: center;
    font-size: 0.65rem;
    padding: 0.65rem 1rem;
  }
  .gallery-lightbox__nav { display: none; }
}

@media (max-width: 480px) {
  .gallery-filter { gap: 0.4rem; }
  .gallery-filter__btn {
    flex: 1 1 0;         /* equal-width columns */
    font-size: 0.62rem;
    padding: 0.6rem 0.5rem;
    letter-spacing: 0.1em;
  }
}


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

/* Hero actions row */
.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.contact-section {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
}

/* Two-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  margin-bottom: clamp(1.8rem, 3.6vh, 3.6rem);
}

/* â”€â”€ Left info column â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-info__heading {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.5vw, 2.9rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--white);
  margin: 1rem 0 1.5rem;
}

.contact-info__sub {
  font-size: clamp(0.875rem, 1.2vw, 0.95rem);
  color: var(--light);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 38ch;
}

.contact-info__links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.contact-info__link {
  display: grid;
  grid-template-columns: 36px 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.3rem 0.65rem;
  text-decoration: none;
  padding: 1.1rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--card);
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease-out);
}
.contact-info__link:hover {
  border-color: rgba(212,175,55,0.2);
  background: rgba(212,175,55,0.03);
  transform: translateY(-3px);
}

/* icon — top-left cell */
.contact-info__link-icon {
  grid-column: 1;
  grid-row: 1;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212,175,55,0.07);
  border: 1px solid rgba(212,175,55,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  align-self: center;
}

/* unwrap body so label + value become direct grid children */
.contact-info__link-body {
  display: contents;
}

/* label — top-right cell, aligned with icon */
.contact-info__link-label {
  grid-column: 2;
  grid-row: 1;
  align-self: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
}

/* value — bottom row, spans full width, centred */
.contact-info__link-value {
  grid-column: 1 / -1;
  grid-row: 2;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  word-break: break-word;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 0.2rem;
  text-align: center;
}

.contact-info__assurances {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-info__assurance {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.63rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--light);
}
.contact-info__assurance svg { color: var(--accent); flex-shrink: 0; }

/* â”€â”€ Form card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.5vw, 2.75rem);
}

.contact-form__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.75rem;
  flex-wrap: wrap;
}

.contact-form__title {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  margin: 0;
}

.contact-form__badge {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: rgba(212,175,55,0.08);
  border: 1px solid rgba(212,175,55,0.18);
  border-radius: 999px;
  padding: 0.3rem 0.75rem;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
  margin-bottom: 1.1rem;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-bottom: 1.1rem;
}
.contact-form__field:last-of-type { margin-bottom: 0; }

.contact-form__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
}
.contact-form__label span { color: var(--accent-alt); }

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  background: var(--ink);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  width: 100%;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.contact-form__input::placeholder,
.contact-form__textarea::placeholder { color: var(--muted); }
.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.08);
}
.contact-form__input--date::-webkit-calendar-picker-indicator {
  filter: invert(0.5);
  cursor: pointer;
}
.contact-form__select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.75rem;
}
.contact-form__select option { background: var(--ink); color: var(--white); }
.contact-form__textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.65;
}

.contact-form__submit {
  width: 100%;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.95rem 2rem;
  font-size: 0.78rem;
}

.contact-form__note {
  margin-top: 0.9rem;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  color: var(--muted);
}

/* Success alert */
.contact-form__success {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(212, 175, 55,0.06);
  border: 1px solid rgba(212, 175, 55,0.25);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--light);
  font-size: 0.875rem;
  line-height: 1.5;
}
.contact-form__success svg {
  flex-shrink: 0;
  color: var(--accent);
  margin-top: 0.1rem;
}
.contact-form__success strong {
  color: var(--accent);
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.875rem;
}

/* Urgency strip */
.contact-urgency {
  background: rgba(212,175,55,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.contact-urgency__text {
  font-family: var(--font-display);
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--white);
}
.contact-urgency__text span { color: var(--accent); }

/* â”€â”€ Trust section â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-trust {
  padding: clamp(3rem, 6vh, 5.5rem) 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.contact-trust__header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.6vh, 3rem);
}
.contact-trust__header .eyebrow { margin-bottom: 0.75rem; }

.contact-trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.contact-trust__item {
  padding: clamp(2.5rem, 5vw, 4rem) clamp(1rem, 2vw, 2rem);
  border-right: 1px solid var(--border);
  transition: background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.contact-trust__item:last-child { border-right: none; }
.contact-trust__item:hover      { background: rgba(212,175,55,0.03); }

.contact-trust__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1;
}

.contact-trust__label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-top: 0.6rem;
}

.contact-trust__desc {
  font-size: 0.78rem;
  color: var(--light);
  line-height: 1.5;
  margin-top: 0.5rem;
  max-width: 18ch;
}

/* â”€â”€ Contact responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1024px) {
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-info__sub { max-width: 100%; }
  .contact-trust__num { font-size: clamp(2rem, 5vw, 3rem); }
}
@media (max-width: 768px) {
  .contact-form__row  { grid-template-columns: 1fr; gap: 0; }

  /* Urgency strip â€” centred on mobile */
  .contact-urgency {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Trust stats â€” 2Ã—2 on tablet */
  .contact-trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }
  .contact-trust__item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }
  .contact-trust__item:nth-child(2n) { border-right: none; }
  .contact-trust__item:nth-child(3),
  .contact-trust__item:nth-child(4)  { border-bottom: none; }
  .contact-trust__num  { font-size: clamp(2rem, 8vw, 2.8rem); }
  .contact-trust__desc { display: none; }

  .page-hero__actions { flex-direction: column; }
}

@media (max-width: 480px) {
  .contact-trust__label { font-size: 0.55rem; letter-spacing: 0.06em; }
  .contact-trust__item  { padding: 2rem 1rem; }
  .contact-trust__num   { font-size: clamp(1.8rem, 10vw, 2.4rem); }
}

/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   SHOWREEL â€” Autoplay landscape video section
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */
.showreel {
  position: relative;
  width: 100%;
  background: #000;
  overflow: hidden;
  /* Landscape by default â€” 16:9 */
  aspect-ratio: 16 / 9;
}

.showreel__wrap {
  position: relative;
  width: 100%;
  height: 100%;
}

.showreel__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* YouTube iframe â€” scaled to cover container (object-fit: cover equivalent) */
.showreel__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* 16:9: width drives height, or height drives width â€” whichever is larger */
  width: 100%;
  height: 56.25vw;    /* 100vw Ã— (9/16) */
  min-height: 100%;
  min-width: 177.78vh; /* 100vh Ã— (16/9) */
  transform: translate(-50%, -50%);
  border: none;
  pointer-events: none; /* keep it purely decorative â€” no pause/click */
}

/* Gradient overlay â€” subtle at top, stronger at bottom for text legibility */
.showreel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.10) 0%,
    rgba(0, 0, 0, 0.35) 55%,
    rgba(0, 0, 0, 0.70) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* Overlay text â€” pinned to bottom left */
.showreel__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding-bottom: clamp(2rem, 5vh, 4.5rem);
}

.showreel__eyebrow {
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.showreel__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
}

.showreel__sub {
  font-size: clamp(0.88rem, 1.5vw, 1.05rem);
  color: rgba(255, 255, 255, 0.72);
  max-width: 52ch;
  line-height: 1.65;
  margin: 0;
}

/* Mute / Unmute button */
.showreel__mute-btn {
  position: absolute;
  bottom: clamp(1rem, 3vh, 2rem);
  right: clamp(1rem, 3vw, 2.5rem);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(8px);
  color: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}
.showreel__mute-btn:hover {
  border-color: var(--accent);
  background: rgba(0, 0, 0, 0.65);
  transform: scale(1.08);
}
.showreel__mute-btn:active { transform: scale(0.95); }

/* Show correct icon based on state */
.showreel__mute-btn .icon-unmuted { display: none; }
.showreel__mute-btn.is-muted .icon-muted   { display: block; }
.showreel__mute-btn.is-muted .icon-unmuted { display: none; }
.showreel__mute-btn:not(.is-muted) .icon-muted   { display: none; }
.showreel__mute-btn:not(.is-muted) .icon-unmuted { display: block; }

/* Responsive â€” keep landscape on all sizes, just scale with viewport */
@media (max-width: 1024px) {
  .showreel__title { font-size: clamp(1.8rem, 6vw, 3.5rem); }
}

@media (max-width: 768px) {
  .showreel { aspect-ratio: 16 / 9; } /* Stay landscape on mobile too */
  .showreel__title { font-size: clamp(1.5rem, 7vw, 2.5rem); }
  .showreel__sub   { display: none; }
}

@media (max-width: 480px) {
  .showreel__title { font-size: clamp(1.3rem, 8vw, 2rem); }
  .showreel__content { padding-bottom: 1.5rem; }
}

/* â”€â”€ Contact page â€” hero title override â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero__title--contact {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 7.5vw, 6.5rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  line-height: 1.05;
}
@media (max-width: 768px) {
  .page-hero__title--contact { font-size: clamp(2.6rem, 10vw, 4rem); }
}
@media (max-width: 480px) {
  .page-hero__title--contact { font-size: clamp(2.4rem, 12vw, 3.2rem); }
}

/* â”€â”€ Contact scarcity block â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-scarcity {
  margin-top: 1.75rem;
  padding: 1.25rem 1.5rem;
  border: 1px solid rgba(212,175,55,0.15);
  border-left: 3px solid var(--accent);
  background: rgba(212,175,55,0.03);
  border-radius: 4px;
}

.contact-scarcity__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.contact-scarcity__heading {
  font-family: var(--font-display);
  font-size: clamp(0.9rem, 1.4vw, 1.1rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 0.5rem;
}

.contact-scarcity__body {
  font-size: 0.82rem;
  color: var(--light);
  line-height: 1.55;
  margin: 0;
}


/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */

.testi-section {
  padding: clamp(3rem, 6vw, 5.4rem) 0;
  background: var(--dark);
  overflow: hidden;
}

.testi-header {
  text-align: center;
  margin-bottom: clamp(1.8rem, 3.6vw, 3rem);
}

.testi-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
  margin-top: 0.75rem;
}
.testi-heading em {
  font-style: italic;
  color: var(--accent);
}

/* â”€â”€ Card â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: border-color 0.25s, transform 0.25s;
  height: 100%;
}
.testi-card:hover {
  border-color: rgba(212,175,55,0.25);
  transform: translateY(-3px);
}

.testi-card__quote-mark {
  font-family: var(--font-serif);
  font-size: 4rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.6;
  margin-bottom: -1rem;
}

.testi-card__quote {
  font-size: clamp(0.82rem, 1.2vw, 0.92rem);
  line-height: 1.75;
  color: var(--light);
  flex: 1;
  margin: 0;
}

.testi-card__footer {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.testi-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ink);
  border: 2px solid var(--border);
}
.testi-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testi-card__name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  margin: 0;
}
.testi-card__role {
  font-size: 0.72rem;
  color: var(--muted);
  margin: 0;
  margin-top: 0.1rem;
}

/* â”€â”€ Desktop grid: 3 Ã— 2 â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

/* â”€â”€ Mobile slider: hidden on desktop â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-slider { display: none; }

/* â”€â”€ Responsive â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 991px) {
  .testi-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
}

@media (max-width: 767px) {
  /* Hide grid, show slider */
  .testi-grid   { display: none; }
  .testi-slider { display: block; position: relative; }

  .testi-slider__track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
  }

  .testi-slider__slide {
    flex: 0 0 100%;
    width: 100%;
    padding: 0 0.25rem;
  }

  .testi-card--slide { height: auto; }

  /* Arrows */
  .testi-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(212,175,55,0.08);
    border: 1px solid rgba(212,175,55,0.2);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
  }
  .testi-arrow:hover { background: rgba(212,175,55,0.18); }
  .testi-arrow--prev { left: -4px; }
  .testi-arrow--next { right: -4px; }

  /* Dots */
  .testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 1.5rem;
  }
  .testi-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--border);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, transform 0.2s;
  }
  .testi-dot--active {
    background: var(--accent);
    transform: scale(1.3);
  }
}

@media (max-width: 480px) {
  .testi-arrow--prev { left: 0; }
  .testi-arrow--next { right: 0; }
}


/* =====================================================================
   MOBILE GLOBAL — centre headings + hide card clutter (≤ 768px)
   ===================================================================== */
@media (max-width: 768px) {

  /* ── Hide work-category sub-text on small screens ── */
  .work-cat-card__sub {
    display: none;
  }

  /* ── Centre all h2 / h3 outside hero sections ── */
  section:not(.hero):not(.page-hero):not(.work-cat-section):not(.work-index):not(.videos) h2,
  section:not(.hero):not(.page-hero):not(.work-cat-section):not(.work-index):not(.videos) h3 {
    text-align: center;
  }

  /* ── Work cards: always left-align title, hide sub ── */
  .work-cat-card__title { text-align: left !important; }
  .work-cat-card__sub   { display: none !important; }

  /* ── Centre section header wrapper blocks ── */
  .work-index__header,
  .work-intro__left,
  .testi-header,
  .contact-trust__header,
  .gallery-header__text,
  .gallery-header {
    text-align: center;
    align-items: center;
  }

  /* ── Featured Work header stays centered ── */
  .videos__header {
    text-align: center;
    align-items: center;
  }

  /* ── Centre supporting body text under headings ── */
  .cta-section__sub,
  .work-intro__sub,
  .authority__lead,
  .showreel__sub {
    text-align: center;
  }

  /* ── Centre CTA button rows ── */
  .cta-section__actions {
    justify-content: center;
  }

  /* ── Centre remaining eyebrows in non-hero sections ── */
  section:not(.hero):not(.page-hero):not(.work-cat-section) .eyebrow {
    display: block;
    text-align: center;
  }

}









