/* ============================================
   AFIRE MEDIA — Core Styles
   Palette: Crimson · Black · Cream · White
   ============================================ */

:root {
  --red: #8B1A1A;
  --red-deep: #5C0E0E;
  --red-bright: #B22234;
  --red-soft: #F5E6E8;
  --black: #0B0A0A;
  --black-soft: #1A1818;
  --cream: #F5EFE6;
  --cream-warm: #EFE7DA;
  --white: #FFFFFF;
  --muted: #8A8277;
  --line: rgba(11, 10, 10, 0.12);
  --line-light: rgba(255, 255, 255, 0.15);

  --font-script: 'Snell Roundhand', 'Apple Chancery', 'Pinyon Script', 'Italianno', cursive;
  --font-serif: 'Playfair Display', 'DM Serif Display', Georgia, serif;
  --font-serif-2: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --ease: cubic-bezier(0.7, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1440px;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--black);
  font-size: 16px;
  line-height: 1.5;
  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: inherit; border: none; background: none; cursor: pointer; color: inherit; }
input, textarea { font: inherit; }

/* Lenis */
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }

::selection { background: var(--red); color: var(--cream); }

/* ============================================
   PRELOADER
   ============================================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: transform 1.2s var(--ease-out), opacity 0.6s ease;
}
.preloader.done { transform: translateY(-100%); }
.preloader__inner {
  text-align: center; color: var(--cream);
  width: min(90%, 600px);
}
.preloader__text {
  display: flex; flex-direction: column; align-items: center;
  gap: 0.2rem; margin-bottom: 3rem;
}
.preloader__script {
  font-family: var(--font-script);
  font-size: clamp(5rem, 14vw, 11rem);
  line-height: 0.9;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.preloader__label {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.6em;
  font-weight: 500;
  color: var(--red-bright);
  padding-left: 0.6em;
}
.preloader__bar {
  height: 1px;
  background: rgba(245, 239, 230, 0.15);
  overflow: hidden;
  margin-bottom: 1rem;
}
.preloader__bar-fill {
  height: 100%; width: 0;
  background: var(--red-bright);
  transition: width 0.2s linear;
}
.preloader__count {
  font-size: 0.8rem; letter-spacing: 0.3em;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor, .cursor-follower {
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}
.cursor {
  width: 8px; height: 8px;
  background: var(--cream);
  transition: width 0.3s, height 0.3s, background 0.3s;
}
.cursor-follower {
  width: 40px; height: 40px;
  border: 1px solid rgba(245, 239, 230, 0.4);
  transition: width 0.5s var(--ease-out), height 0.5s var(--ease-out), border-color 0.3s;
}
.cursor.hover { width: 20px; height: 20px; }
.cursor-follower.hover { width: 80px; height: 80px; border-color: var(--cream); }
@media (hover: none), (max-width: 900px) {
  .cursor, .cursor-follower { display: none; }
  body { cursor: auto; }
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed; top: 32px; left: 0; right: 0;
  z-index: 102;
  padding: 0.95rem var(--pad);
  background: var(--red-deep);
  border-bottom: 1px solid rgba(245,239,230,0.12);
  transition: background 0.4s var(--ease-out), padding 0.3s, top 0.3s;
}
.nav.scrolled {
  top: 0;
  background: var(--red-deep);
  backdrop-filter: blur(12px);
  padding: 0.7rem var(--pad);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 1.15rem;
  color: var(--cream);
  text-transform: uppercase;
}
.nav__logo-img {
  width: 32px; height: 32px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 3px;
  transition: transform 0.6s var(--ease-out);
}
.nav__logo:hover .nav__logo-img { transform: rotate(15deg) scale(1.05); }
.nav.scrolled .nav__logo-img { background: var(--cream); }

.nav__links {
  display: flex; gap: 2.2rem;
  margin-left: auto;
}
.nav__link {
  position: relative;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  opacity: 0.85;
  transition: opacity 0.3s;
}
.nav__link::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 1px; background: var(--cream);
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.5s var(--ease-out);
}
.nav__link:hover { opacity: 1; }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.3rem;
  background: var(--cream);
  color: var(--black);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s, transform 0.3s var(--ease-out);
}
.nav__cta:hover { background: var(--red-bright); color: var(--cream); }
.nav__cta-arrow { transition: transform 0.3s var(--ease-out); }
.nav__cta:hover .nav__cta-arrow { transform: translateX(4px); }

.nav__burger {
  display: flex;
  flex-direction: column;
  width: 38px;
  height: 24px;
  gap: 6px;
  align-items: flex-end;
  justify-content: center;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  transform: none;
  position: relative;
}
.nav__burger span {
  display: block;
  height: 1.5px;
  background: var(--cream);
  border-radius: 1px;
  transform-origin: right center;
  transition: width 0.5s var(--ease-out), transform 0.45s var(--ease-out), opacity 0.3s;
}
.nav__burger span:nth-child(1) { width: 100%; }
.nav__burger span:nth-child(2) { width: 60%; }
.nav__burger span:nth-child(3) { width: 85%; }

.nav__burger:hover span:nth-child(1) { width: 75%; }
.nav__burger:hover span:nth-child(2) { width: 100%; }
.nav__burger:hover span:nth-child(3) { width: 65%; }

.nav__burger.open span { width: 100%; }
.nav__burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(-45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(45deg); }

/* MOBILE MENU */
.mobile-menu {
  position: fixed; inset: 0; z-index: 101;
  background: var(--red-deep);
  padding: 7rem var(--pad) 2rem;
  transform: translateY(-100%);
  transition: transform 0.7s var(--ease-out);
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu__inner {
  display: flex; flex-direction: column;
  gap: 0.5rem; flex: 1; justify-content: center;
}
.mobile-menu__link {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 10vw, 4rem);
  color: var(--cream);
  line-height: 1;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(245,239,230,0.15);
}
.mobile-menu__footer {
  display: flex; justify-content: space-between;
  color: var(--cream); opacity: 0.6;
  font-size: 0.85rem;
}

/* ============================================
   HERO — CENTERED w/ VIDEO BG
   ============================================ */
/* ============================================
   TOP RIBBON — cream strip with dark editorial text
   ============================================ */
.ribbon {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--cream);
  color: var(--black);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  font-weight: 600;
  border-bottom: 1px solid rgba(11,10,10,0.08);
  transition: transform 0.4s var(--ease-out);
}
.ribbon.hidden { transform: translateY(-100%); }
.ribbon span {
  display: inline-block;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 600px) {
  .ribbon {
    font-size: 0.6rem;
    letter-spacing: 0.18em;
    padding: 0.45rem 0.8rem;
  }
}
@media (max-width: 380px) {
  .ribbon { letter-spacing: 0.12em; font-size: 0.56rem; }
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 7rem var(--pad) 3rem;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  overflow: hidden;
  color: var(--cream);
  gap: clamp(2rem, 4vh, 3.5rem);
}
.hero > .hero__center { margin-top: auto; }
.hero > .hero__cta-row { margin-top: auto; }
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid rgba(245, 239, 230, 0.28);
  border-radius: 999px;
  background: rgba(11, 10, 10, 0.35);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red-bright);
  box-shadow: 0 0 12px rgba(178, 34, 52, 0.7);
  flex-shrink: 0;
}
.hero__brandmark {
  font-family: var(--font-script);
  font-size: clamp(8rem, 26vw, 26rem);
  font-weight: 400;
  color: var(--cream);
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-shadow: 0 12px 100px rgba(0,0,0,0.7), 0 2px 16px rgba(0,0,0,0.5);
  padding-top: 0.05em;
  padding-bottom: 0.05em;
  /* Optical centering: the script "A" swash and "e" tail throw the
     geometric center off — nudge slightly left so it reads centered. */
  transform: translateX(-0.05em);
  will-change: transform;
}
.hero__tagline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--cream);
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.6);
  margin-top: 0.4rem;
  max-width: 18ch;
}
.hero__tagline em {
  font-style: italic;
  color: var(--red-bright);
}
.hero__services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 0.7rem;
  list-style: none;
  padding: 0;
  margin-top: 1.4rem;
  max-width: 720px;
}
.hero__services li {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.82;
  padding: 0.45rem 0.95rem;
  border: 1px solid rgba(245, 239, 230, 0.22);
  border-radius: 999px;
  background: rgba(11, 10, 10, 0.28);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}
.hero__services li:hover {
  border-color: rgba(178, 34, 52, 0.5);
  background: rgba(178, 34, 52, 0.15);
  color: var(--cream);
  opacity: 1;
}
.hero__services li a {
  color: inherit;
  text-decoration: none;
  display: block;
  margin: -0.45rem -0.95rem;
  padding: 0.45rem 0.95rem;
  cursor: pointer;
}

@media (max-width: 700px) {
  .hero__eyebrow {
    font-size: 0.62rem;
    letter-spacing: 0.22em;
    padding: 0.45rem 0.85rem;
  }
  .hero__tagline { font-size: clamp(1.1rem, 4.5vw, 1.5rem); }
  .hero__services li {
    font-size: 0.62rem;
    letter-spacing: 0.18em;
    padding: 0.35rem 0.75rem;
  }
}
.hero__cta-row {
  position: relative;
  width: 100%;
  z-index: 3;
  display: flex; align-items: center; justify-content: center; gap: 1rem;
  padding: 0 clamp(1.5rem, 4vw, 3rem);
  flex: 0 0 auto;
}
.hero__btn {
  flex: 0 0 auto;
  max-width: 320px;
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--red-deep);
  color: var(--cream);
  border: 1px solid rgba(245, 239, 230, 0.18);
  border-radius: 999px;
  padding: 1.05rem 1.4rem 1.05rem 1.3rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 12px 32px -16px rgba(0, 0, 0, 0.55);
  transition: transform 0.5s var(--ease-out), border-color 0.4s, color 0.4s;
}
.hero__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--cream);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.55s var(--ease-out);
  z-index: -1;
}
.hero__btn:hover::before { transform: scaleX(1); }
.hero__btn:hover {
  color: var(--red-deep);
  border-color: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px -14px rgba(178, 34, 52, 0.45);
}
.hero__btn-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
  position: relative;
  transition: background 0.4s, transform 0.5s var(--ease-out);
}
.hero__btn-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(245, 239, 230, 0.4);
  opacity: 0;
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}
.hero__btn:hover .hero__btn-dot { background: var(--red-bright); transform: scale(1.2); }
.hero__btn:hover .hero__btn-dot::after {
  opacity: 1;
  border-color: rgba(178, 34, 52, 0.5);
  transform: scale(1.6);
}
.hero__btn-label {
  flex: 1;
  text-align: center;
}
.hero__btn-arrow {
  width: 18px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.45s var(--ease-out);
}
.hero__btn:hover .hero__btn-arrow { transform: translateX(5px); }

@media (max-width: 700px) {
  .hero__cta-row { flex-direction: column; padding: 0 1.5rem; gap: 0.7rem; }
  .hero__btn { width: 100%; max-width: none; flex: 1 1 auto; padding: 0.95rem 1.3rem; letter-spacing: 0.22em; }
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.85) contrast(1.05) brightness(0.65);
}
.hero__bg-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center center;
  filter: saturate(0.85) contrast(1.05) brightness(0.55);
}
.hero__bg-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(11,10,10,0.3) 0%, rgba(11,10,10,0.65) 70%, rgba(11,10,10,0.85) 100%),
    linear-gradient(to bottom, rgba(11,10,10,0.25) 0%, rgba(11,10,10,0.15) 50%, rgba(11,10,10,0.55) 100%);
}
.hero__grain {
  position: absolute; inset: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3CfeColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.2 0 0 0 0 0.1 0 0 0 0.9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__badge {
  position: relative; z-index: 2;
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(245,239,230,0.25);
  border-radius: 999px;
  background: rgba(11,10,10,0.35);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
}
.hero__badge--top {
  position: absolute; top: 6rem; left: 50%;
  transform: translateX(-50%);
}
.dot-pulse {
  width: 8px; height: 8px;
  background: var(--red-bright);
  border-radius: 50%;
  position: relative;
}
.dot-pulse::after {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--red-bright);
  animation: pulse 1.8s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

.hero__content { position: relative; z-index: 2; max-width: 1200px; margin: auto 0; }

.hero__center {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  display: flex; flex-direction: column; align-items: center;
}
.hero__brand {
  display: inline-flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.6rem;
  padding: 0.5rem 1rem 0.5rem 0.5rem;
  background: rgba(245,239,230,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(245,239,230,0.15);
  border-radius: 999px;
}
.hero__brand-mark {
  width: 28px; height: 28px;
  background: var(--cream);
  border-radius: 50%;
  padding: 3px;
  object-fit: contain;
}
.hero__brand-text {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  font-weight: 600;
  color: var(--cream);
}

.hero__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 7vw, 6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 1.5rem;
  max-width: 16ch;
}
.hero__headline-row {
  display: block;
  padding: 0.05em 0;
}
.hero__headline em {
  font-style: italic;
  color: var(--red-bright);
  position: relative;
}
.hero__headline em::after {
  content: ''; position: absolute;
  left: 0; right: 0; bottom: 0.04em;
  height: 0.06em;
  background: var(--red-bright);
  opacity: 0.35;
  transform: scaleX(0); transform-origin: left;
  animation: heroUnderline 1.4s var(--ease-out) 1.6s forwards;
}
@keyframes heroUnderline {
  to { transform: scaleX(1); opacity: 0.55; }
}
.hero__headline-perform {
  font-style: italic;
}

.hero__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.5;
  color: var(--cream);
  opacity: 0.8;
  max-width: 540px;
  margin-bottom: 2.5rem;
}

.hero__actions--center {
  display: flex; justify-content: center;
  margin-bottom: 3rem;
}

.hero__trust {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap; justify-content: center;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.65;
}
.hero__trust-item { white-space: nowrap; }
.hero__trust-item:first-child { color: var(--red-bright); opacity: 0.95; }
.hero__trust-divider { width: 30px; height: 1px; background: currentColor; opacity: 0.3; }
@media (max-width: 600px) {
  .hero__trust-divider { display: none; }
}

.hero__eyebrow {
  display: flex; align-items: center; gap: 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; opacity: 0.85;
}
.hero__eyebrow .line {
  width: 60px; height: 1px; background: var(--cream);
}

.hero__title {
  display: flex; flex-direction: column;
  line-height: 0.85;
  margin-bottom: 2rem;
}
.hero__title-row {
  display: block;
  /* no overflow: hidden — italic serif ascenders (d, i, l, t) get clipped */
  padding-top: 0.1em;
}
.hero__script {
  display: inline-block;
  font-family: var(--font-script);
  font-size: clamp(6rem, 18vw, 16rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.05;
  padding-top: 0.08em;
}
.hero__serif {
  display: inline-block;
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(3rem, 9vw, 8.5rem);
  letter-spacing: -0.01em;
  color: var(--cream);
  line-height: 1.1;
  margin-top: -0.15em;
  padding-top: 0.1em;
  padding-left: clamp(2rem, 10vw, 8rem);
}

.hero__subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  max-width: 480px;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.hero__actions {
  display: flex; gap: 0.8rem; flex-wrap: wrap;
}

.hero__meta {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: repeat(3, auto);
  gap: 2.5rem;
  margin-top: 3rem;
}
.hero__meta-item {
  display: flex; align-items: baseline; gap: 0.6rem;
  border-top: 1px solid rgba(245,239,230,0.2);
  padding-top: 0.6rem;
  min-width: 140px;
}
.hero__meta-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--red-bright);
}
.hero__meta-label {
  font-size: 0.78rem; letter-spacing: 0.25em;
  text-transform: uppercase; opacity: 0.8;
}

.hero__scroll {
  position: absolute;
  right: var(--pad); bottom: 2rem; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem;
  font-size: 0.72rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--cream); opacity: 0.8;
}
.hero__scroll-line {
  width: 1px; height: 50px; background: var(--cream);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -50%; left: 0;
  width: 100%; height: 50%;
  background: var(--red-bright);
  animation: scrollLine 1.8s var(--ease-out) infinite;
}
@keyframes scrollLine {
  0% { top: -50%; } 100% { top: 100%; }
}

@media (max-width: 700px) {
  .hero__meta { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .hero__scroll { display: none; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7rem;
  padding: 1rem 1.8rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out);
  cursor: pointer;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(6px); }

.btn--primary {
  background: var(--red-bright);
  color: var(--cream);
  box-shadow: 0 6px 24px -6px rgba(178,34,52,0.6);
}
.btn--primary::before {
  content: ''; position: absolute; inset: 0;
  background: var(--black);
  transform: translateY(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: -1;
}
.btn--primary:hover::before { transform: translateY(0); }

.btn--ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(245,239,230,0.4);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover { background: var(--cream); color: var(--black); border-color: var(--cream); }

.btn--dark {
  background: var(--black);
  color: var(--cream);
}
.btn--dark:hover { background: var(--red-bright); }

.btn--ghost-light {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--cream);
}
.btn--ghost-light:hover { background: var(--cream); color: var(--black); }

.btn--lg { padding: 1.15rem 2rem; font-size: 0.85rem; }

/* ============================================
   MARQUEE
   ============================================ */
.marquee {
  background: var(--black);
  color: var(--cream);
  padding: 1.5rem 0;
  border-top: 1px solid var(--red-deep);
  border-bottom: 1px solid var(--red-deep);
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
  will-change: transform;
}
.marquee__inner {
  display: flex; align-items: center;
  gap: 2.5rem;
  padding-right: 2.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee__star {
  color: var(--red-bright);
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 1.2em;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTION ELEMENTS
   ============================================ */
.section__eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.section__eyebrow .dot {
  width: 6px; height: 6px; background: var(--red-bright); border-radius: 50%;
}
.section__eyebrow--light { color: var(--red-soft); }
.section__eyebrow--light .dot { background: var(--red-soft); }

/* ============================================
   ABOUT — Magazine-cover Founder Feature
   ============================================ */
.about {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.about::before {
  content: 'AFIRE';
  position: absolute;
  top: -2rem;
  right: -3rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(8rem, 18vw, 18rem);
  line-height: 0.9;
  color: var(--red);
  opacity: 0.04;
  letter-spacing: -0.04em;
  pointer-events: none;
  z-index: 0;
}

/* TOP — Masthead + headline */
.about__top {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
  border-bottom: 1px solid rgba(11, 10, 10, 0.15);
  padding-bottom: clamp(2rem, 4vw, 3rem);
}
.about__masthead {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--red-deep);
  font-weight: 500;
}
.about__issue {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--red);
}
.about__divider {
  width: 32px;
  height: 1px;
  background: var(--red);
}
.about__headline {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3.2rem, 9vw, 8rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--black);
}
.about__headline em {
  font-style: italic;
  color: var(--red);
}
.about__subhead {
  margin-top: 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--black);
  opacity: 0.7;
}

/* FEATURE — 2-column with portrait + story */
.about__feature {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: start;
}

/* PORTRAIT — Big magazine-style */
.about__portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 36px 100px -32px rgba(0, 0, 0, 0.45);
}
.about__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.about__portrait:hover img { transform: scale(1.04); }
.about__portrait-frame {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(245, 239, 230, 0.35);
  pointer-events: none;
  mix-blend-mode: screen;
}
.about__portrait-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(11, 10, 10, 0.85) 100%);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  color: var(--cream);
}
.about__portrait-name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.6vw, 1.4rem);
  font-weight: 500;
  letter-spacing: -0.005em;
}
.about__portrait-role {
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.85;
}

/* Rotating sticker badge on portrait */
.about__portrait-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 110px;
  height: 110px;
  color: var(--cream);
  animation: rotate 22s linear infinite;
  z-index: 3;
}
.about__portrait-badge svg { width: 100%; height: 100%; }
.about__portrait-badge-mark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red-bright);
  font-size: 1.4rem;
  animation: rotate 22s linear infinite reverse;
}
@keyframes rotate {
  to { transform: rotate(360deg); }
}

/* STORY column */
.about__story {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding-top: 0.5rem;
}

.about__lead {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--black);
  position: relative;
  padding-left: 0.4rem;
}
.about__lead em {
  font-style: italic;
  color: var(--red);
}
.about__lead-mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2.4em;
  line-height: 0;
  color: var(--red);
  opacity: 0.35;
  margin-right: 0.05em;
  vertical-align: -0.3em;
}

.about__story-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about__story-body p {
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--black-soft);
  opacity: 0.85;
  max-width: 56ch;
}
.about__story-body strong {
  font-weight: 600;
  color: var(--red);
}

.about__principle {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: rgba(178, 34, 52, 0.06);
  border-left: 3px solid var(--red);
  border-radius: 2px;
}
.about__principle-mark {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(178, 34, 52, 0.6);
}
.about__principle em {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  color: var(--black);
  line-height: 1.4;
  letter-spacing: -0.005em;
}

.about__sign {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 0.5rem;
}
.about__sign-script {
  font-family: var(--font-script);
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  line-height: 1;
  color: var(--black);
  letter-spacing: 0.01em;
}
.about__sign-line {
  flex: 1;
  height: 1px;
  background: rgba(11, 10, 10, 0.2);
  max-width: 80px;
}
.about__sign-meta {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.about__cta {
  align-self: flex-start;
  margin-top: 0.8rem;
}

@media (max-width: 900px) {
  .about__feature {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .about__portrait {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
  .about__portrait-badge {
    width: 90px;
    height: 90px;
  }
}

/* ============================================
   STATS
   ============================================ */
.stats {
  padding: 3rem var(--pad) 4rem;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.stats__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stat {
  padding: 2rem 0;
  border-left: 1px solid var(--line);
  padding-left: 2rem;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat__num {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: var(--black);
  line-height: 1;
  margin-bottom: 0.6rem;
  font-feature-settings: "ss01";
}
.stat__num .counter { font-style: italic; color: var(--red); }
.stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 760px) {
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3) { border-left: none; padding-left: 0; }
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.services::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(178,34,52,0.2), transparent 50%);
  pointer-events: none;
}
.services__head {
  max-width: var(--container);
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}
.services__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.services__title span:first-child { color: var(--cream); }
.services__title-em {
  font-style: italic;
  color: var(--red-bright);
  display: inline-block;
  margin-left: 0.5em;
}
.services__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--cream);
  opacity: 0.7;
  max-width: 550px;
}

.services__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.2rem;
  position: relative;
  z-index: 2;
}

/* ============================================
   SERVICES — Accordion Layout
   ============================================ */
.services__accordion {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.acc {
  border-bottom: 1px solid rgba(245,239,230,0.15);
}
.acc__summary {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 1.5rem;
  padding: 1.8rem 0.5rem;
  cursor: pointer;
  list-style: none;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.acc__summary::-webkit-details-marker { display: none; }
.acc__summary:hover { padding-left: 1.5rem; padding-right: 1.5rem; background: rgba(245,239,230,0.03); }

.acc__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red-bright);
  opacity: 0.9;
  letter-spacing: 0.05em;
}
.acc__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.4rem);
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
  transition: color 0.3s, transform 0.5s var(--ease-out);
}
.acc:hover .acc__title { color: var(--red-bright); }

.acc__icon {
  width: 28px; height: 28px;
  position: relative;
  justify-self: end;
}
.acc__icon::before, .acc__icon::after {
  content: ''; position: absolute;
  background: var(--cream);
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.acc__icon::before {
  top: 50%; left: 0; right: 0; height: 1px;
  transform: translateY(-50%);
}
.acc__icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px;
  transform: translateX(-50%);
}
.acc[open] .acc__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.acc:hover .acc__icon::before, .acc:hover .acc__icon::after { background: var(--red-bright); }

.acc__panel {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
  padding: 0 0.5rem 2.5rem 80px;
  animation: accFade 0.5s var(--ease-out);
}
@keyframes accFade {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}
.acc__media {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: var(--black-soft);
}
.acc__media video, .acc__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  background-size: cover; background-position: center;
  filter: saturate(0.95) contrast(1.05) brightness(0.85);
}
.acc__body { display: flex; flex-direction: column; justify-content: center; gap: 1.2rem; }
.acc__body p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.85;
}
.acc__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.acc__tags span {
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(245,239,230,0.25);
  border-radius: 999px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.85;
}
.acc__stack {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.85rem;
  padding-top: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid rgba(245, 239, 230, 0.12);
}
.acc__stack-label {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--red-bright);
  letter-spacing: 0;
  margin-right: 0.4rem;
  position: relative;
  padding-right: 0.85rem;
}
.acc__stack-label::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 14px;
  background: rgba(245, 239, 230, 0.2);
}
.acc__stack > span:not(.acc__stack-label) {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  position: relative;
  transition: opacity 0.3s, color 0.3s;
}
.acc__stack > span:not(.acc__stack-label):not(:last-child)::after {
  content: '·';
  position: absolute;
  right: -0.55rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--red-bright);
  opacity: 0.5;
  font-weight: 700;
}
.acc__stack > span:not(.acc__stack-label):hover {
  opacity: 1;
  color: var(--red-bright);
}
.acc__cta {
  align-self: flex-start;
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red-bright);
  border-bottom: 1px solid var(--red-bright);
  padding-bottom: 0.3rem;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
}
.acc__cta:hover { opacity: 0.75; transform: translateX(6px); }

@media (max-width: 800px) {
  .acc__summary { grid-template-columns: 40px 1fr 28px; gap: 1rem; padding: 1.4rem 0; }
  .acc__panel { grid-template-columns: 1fr; padding: 0 0 2rem 0; gap: 1.5rem; }
}
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--black-soft);
  border: 1px solid rgba(245,239,230,0.08);
  aspect-ratio: 4/5;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out), border-color 0.4s, box-shadow 0.5s;
}
.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(178,34,52,0.55);
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.55);
}
@media (max-width: 1000px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .services__grid { grid-template-columns: 1fr; }
  .service-card { aspect-ratio: 4/5; }
}

.service-card__num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  z-index: 3;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--red-bright);
  opacity: 0.85;
}
.service-card__media {
  position: absolute; inset: 0;
  overflow: hidden;
}
.service-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-out), filter 0.6s;
  filter: grayscale(0.15) brightness(0.7) saturate(1);
  transform: scale(1.02);
}
.service-card:hover .service-card__img {
  transform: scale(1.08);
  filter: grayscale(0) brightness(0.9) saturate(1.1);
}
.service-card__img--brand {
  background-position: center 40%;
  filter: brightness(0.8) saturate(1.1);
}
.service-card:hover .service-card__img--brand {
  transform: scale(1.08);
  filter: brightness(0.95) saturate(1.15);
}
.service-card__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  pointer-events: none;
  filter: grayscale(0.25) brightness(0.6) saturate(0.95);
  transition: filter 0.6s var(--ease-out), transform 1.2s var(--ease-out);
  transform: scale(1.02);
}
.service-card:hover .service-card__video {
  filter: grayscale(0) brightness(0.85) saturate(1.08);
  transform: scale(1.07);
}
.service-card__media::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,10,10,0.95) 0%, rgba(11,10,10,0.6) 40%, rgba(11,10,10,0.2) 100%);
}

.service-card__body {
  position: absolute; inset: auto 0 0 0;
  z-index: 2;
  padding: 1.8rem 1.6rem;
  color: var(--cream);
}
.service-card__title {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.1;
  margin-bottom: 0.8rem;
}
.service-card__desc {
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.75;
  margin-bottom: 1rem;
  max-height: 0; opacity: 0;
  overflow: hidden;
  transition: max-height 0.6s var(--ease-out), opacity 0.4s ease 0.1s;
}
.service-card:hover .service-card__desc { max-height: 150px; opacity: 0.8; }

.service-card__tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
  margin-bottom: 1rem;
}
.service-card__tags span {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(245,239,230,0.25);
  border-radius: 999px;
  color: var(--cream);
  backdrop-filter: blur(6px);
  background: rgba(11,10,10,0.3);
}
.service-card__link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red-bright);
  padding-top: 0.8rem;
  border-top: 1px solid rgba(245,239,230,0.15);
}
.service-card__link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease-out); }
.service-card:hover .service-card__link svg { transform: translateX(4px); }

/* ============================================
   BROWSER MOCKUP (Web Dev card)
   ============================================ */
.service-card--mockup .service-card__media {
  background: linear-gradient(135deg, #1f1b1b 0%, #0b0a0a 100%);
}
.browser {
  position: absolute;
  inset: 8% 6% 34% 6%;
  background: #0f0d0d;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7);
  border: 1px solid rgba(245,239,230,0.1);
  transform: perspective(1200px) rotateX(3deg) rotateY(-4deg);
  transition: transform 0.7s var(--ease-out);
}
.service-card:hover .browser { transform: perspective(1200px) rotateX(0) rotateY(0) scale(1.02); }

.browser__bar {
  display: flex; align-items: center; gap: 0.6rem;
  height: 22px;
  padding: 0 10px;
  background: rgba(245,239,230,0.05);
  border-bottom: 1px solid rgba(245,239,230,0.08);
}
.browser__dots { display: flex; gap: 4px; }
.browser__dots i {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(245,239,230,0.25);
}
.browser__dots i:first-child { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #ffbd2e; }
.browser__dots i:nth-child(3) { background: #28c940; }
.browser__url {
  flex: 1;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  color: rgba(245,239,230,0.5);
  text-align: center;
}

.browser__screen {
  position: absolute; inset: 22px 0 0;
  padding: 14px;
  display: flex; flex-direction: column; gap: 10px;
  background:
    radial-gradient(ellipse at top right, rgba(178,34,52,0.2), transparent 60%),
    linear-gradient(180deg, rgba(11,10,10,0.8), rgba(11,10,10,0.95));
}

.browser__hero {
  padding: 8px 8px 12px;
  border: 1px dashed rgba(245,239,230,0.1);
  border-radius: 4px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
}
.browser__badge {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 0.52rem;
  letter-spacing: 0.2em;
  color: var(--red-bright);
  text-transform: uppercase;
  align-self: flex-start;
}
.browser__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--red-bright);
  animation: dotBlink 1.4s ease-in-out infinite;
}
@keyframes dotBlink { 50% { opacity: 0.3; } }

.browser__h1 { display: flex; flex-direction: column; gap: 4px; }
.browser__line {
  height: 6px;
  background: linear-gradient(90deg, rgba(245,239,230,0.8), rgba(245,239,230,0.3));
  border-radius: 2px;
  width: 0;
  animation: typeLine 2.4s var(--ease-out) infinite;
}
.browser__line--short {
  width: 0;
  animation: typeLineShort 2.4s var(--ease-out) infinite;
  animation-delay: 0.4s;
}
@keyframes typeLine {
  0% { width: 0; } 45%, 85% { width: 92%; } 100% { width: 0; }
}
@keyframes typeLineShort {
  0% { width: 0; } 50%, 85% { width: 58%; } 100% { width: 0; }
}

.browser__btn {
  margin-top: 6px;
  width: 36px; height: 12px;
  background: var(--red-bright);
  border-radius: 999px;
  box-shadow: 0 4px 12px -2px rgba(178,34,52,0.6);
  animation: btnPulse 2.4s ease-in-out infinite;
}
@keyframes btnPulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.06); opacity: 1; }
}

.browser__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 6px;
}
.browser__tile {
  aspect-ratio: 1;
  border-radius: 4px;
  background: linear-gradient(135deg, rgba(245,239,230,0.08), rgba(245,239,230,0.02));
  border: 1px solid rgba(245,239,230,0.08);
  position: relative;
  overflow: hidden;
}
.browser__tile::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(245,239,230,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: tileShimmer 3s ease-in-out infinite;
}
.browser__tile:nth-child(2)::after { animation-delay: 0.4s; }
.browser__tile:nth-child(3)::after { animation-delay: 0.8s; }
@keyframes tileShimmer {
  0% { transform: translateX(-100%); }
  60%, 100% { transform: translateX(100%); }
}

.browser__cursor {
  position: absolute;
  right: 26%; bottom: 30%;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 0 2px rgba(11,10,10,0.6);
  animation: cursorMove 3.8s var(--ease-out) infinite;
}
@keyframes cursorMove {
  0% { right: 60%; bottom: 70%; }
  30% { right: 40%; bottom: 55%; transform: scale(1); }
  35% { transform: scale(0.7); }
  40% { transform: scale(1); }
  70% { right: 26%; bottom: 30%; }
  100% { right: 60%; bottom: 70%; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: none;
  align-items: center; justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox__backdrop {
  position: absolute; inset: 0;
  background: rgba(11,10,10,0.85);
  backdrop-filter: blur(10px);
  animation: fadeIn 0.4s ease;
}
.lightbox__panel {
  position: relative;
  width: 100%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--cream);
  border-radius: 8px;
  padding: 3rem;
  animation: rise 0.5s var(--ease-out);
}
@keyframes fadeIn { from { opacity: 0; } }
@keyframes rise { from { opacity: 0; transform: translateY(30px); } }

.lightbox__close {
  position: absolute; top: 1rem; right: 1rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--black); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s, background 0.3s;
}
.lightbox__close:hover { background: var(--red-bright); transform: rotate(90deg); }
.lightbox__close svg { width: 18px; height: 18px; }

.lightbox__content h2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--red);
  margin-bottom: 1rem;
  line-height: 1.1;
}
.lightbox__content .lightbox__num {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red-bright);
  margin-bottom: 0.6rem;
}
.lightbox__content p {
  color: var(--black-soft);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.lightbox__content ul {
  list-style: none; padding: 0; margin: 1.5rem 0;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem 1.2rem;
}
.lightbox__content li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.lightbox__content li::before {
  content: '→'; color: var(--red-bright); font-weight: 700;
}

/* ============================================
   PROCESS — Editorial chapters with monumental italic numerals
   ============================================ */
.process {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.5rem, 4vw, 3rem) clamp(5rem, 10vw, 9rem);
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 30%, rgba(178, 34, 52, 0.10), transparent 50%),
    radial-gradient(ellipse at 85% 70%, rgba(178, 34, 52, 0.08), transparent 55%);
  pointer-events: none;
}
.process > * { position: relative; z-index: 1; }

.process__brand-label {
  text-align: center;
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.7;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.process__title {
  text-align: center;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 6.5vw, 5.4rem);
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.process__title-script {
  font-family: var(--font-script);
  font-size: 1.55em;
  vertical-align: -0.14em;
  margin-right: -0.1em;
  display: inline-block;
  color: var(--cream);
}
.process__intro {
  max-width: 580px;
  margin: 0 auto clamp(4rem, 7vw, 6rem);
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.72;
}

.process__chapters {
  max-width: 1320px;
  margin: 0 auto;
}

.process__chapter {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 1.35fr;
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: center;
  padding: clamp(3rem, 6vw, 5.5rem) 0;
  border-top: 1px solid rgba(245, 239, 230, 0.14);
  position: relative;
}
.process__chapter:last-child {
  border-bottom: 1px solid rgba(245, 239, 230, 0.14);
}

/* The monumental italic numeral — half cream, half crimson, sliced by a red rule */
.process__chapter-marker {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.process__chapter-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(7rem, 15vw, 15rem);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--cream);
  position: relative;
  display: inline-block;
  text-shadow: 0 2px 30px rgba(178, 34, 52, 0.25);
  transition: transform 0.6s var(--ease-out), color 0.5s var(--ease-out), text-shadow 0.5s;
}
.process__chapter:hover .process__chapter-num {
  transform: translateY(-4px);
  color: var(--red-bright);
  text-shadow: 0 4px 40px rgba(178, 34, 52, 0.45);
}

/* Right column — phase tag, title, body */
.process__chapter-body {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}
.process__chapter-meta {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.process__chapter-dot {
  width: 7px;
  height: 7px;
  background: var(--red-bright);
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(178, 34, 52, 0.6);
}
.process__chapter-phase {
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--red-bright);
  font-weight: 500;
}
.process__chapter-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(245, 239, 230, 0.22), transparent);
}
.process__chapter-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.process__chapter-title em {
  font-style: italic;
  color: var(--red-bright);
}
.process__chapter-text {
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.78;
  max-width: 56ch;
}

@media (max-width: 900px) {
  .process__chapter {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2.8rem 0;
    align-items: flex-start;
  }
  .process__chapter-marker {
    justify-content: flex-start;
  }
  .process__chapter-num {
    font-size: clamp(5.5rem, 22vw, 9rem);
  }
  .process__chapter-marker::before {
    left: 0;
    right: auto;
    width: 60%;
  }
}

/* ============================================
   APPROACH — Editorial split with video
   ============================================ */
.approach {
  padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 3rem);
  background: var(--black);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.approach::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(178, 34, 52, 0.10), transparent 55%);
  pointer-events: none;
}
.approach__grid {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.approach__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.7);
}
.approach__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: contrast(1.05) saturate(1.05);
}
.approach__media-frame {
  position: absolute;
  inset: 1.2rem;
  border: 1px solid rgba(245, 239, 230, 0.22);
  pointer-events: none;
  mix-blend-mode: screen;
}
.approach__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.approach__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 4.5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.approach__title em {
  font-style: italic;
  color: var(--red-bright);
}
.approach__text {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  max-width: 52ch;
}
.approach__text p {
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  line-height: 1.75;
  color: var(--cream);
  opacity: 0.78;
}
.approach__signature {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.8rem;
}
.approach__signature-line {
  width: 48px;
  height: 1px;
  background: var(--red-bright);
}
.approach__signature-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.7;
  letter-spacing: 0.02em;
}

@media (max-width: 900px) {
  .approach__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .approach__media {
    aspect-ratio: 3 / 4;
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }
}

/* ============================================
   OUR WORKS — Video Carousel
   ============================================ */
.ourworks {
  padding: clamp(4rem, 8vw, 7rem) var(--pad) clamp(5rem, 10vw, 9rem);
  background: var(--cream);
  position: relative;
}
.ourworks__head {
  max-width: var(--container);
  margin: 0 auto clamp(2.5rem, 4vw, 4rem);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 2rem;
}
.ourworks__head .section__eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0.6rem;
}
.ourworks__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--black);
  text-transform: none;
}
.ourworks__title em {
  font-style: italic;
  color: var(--red);
}
.ourworks__nav {
  display: flex;
  gap: 0.7rem;
  align-self: end;
  padding-bottom: 0.5rem;
}
.ourworks__arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(11, 10, 10, 0.18);
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--black);
  transition: background 0.4s, border-color 0.4s, color 0.4s, transform 0.3s var(--ease-out);
}
.ourworks__arrow:hover {
  background: var(--red-deep);
  border-color: var(--red-deep);
  color: var(--cream);
}
.ourworks__arrow svg { width: 18px; height: 18px; }

.ourworks__track {
  max-width: var(--container);
  margin: 0 auto;
  overflow: hidden;
}
.ourworks__rail {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.7s var(--ease-out);
  will-change: transform;
}
.ourworks__card {
  flex: 0 0 28%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.5s var(--ease-out);
}
.ourworks__card:hover { transform: translateY(-6px); }

.ourworks__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 4px;
  background: var(--black);
  box-shadow: 0 14px 40px -22px rgba(0, 0, 0, 0.45);
}
.ourworks__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.98) contrast(1.05);
  transition: transform 0.7s var(--ease-out);
}
.ourworks__card:hover .ourworks__video { transform: scale(1.03); }

.ourworks__index {
  position: absolute;
  top: 1rem;
  left: 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: 0.05em;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.ourworks__meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding-top: 0.4rem;
}
.ourworks__name {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  line-height: 1.15;
  color: var(--black);
  letter-spacing: -0.01em;
}
.ourworks__cat {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

@media (max-width: 1100px) {
  .ourworks__card { flex: 0 0 38%; }
}
@media (max-width: 700px) {
  .ourworks__head {
    grid-template-columns: 1fr;
    gap: 1.4rem;
  }
  .ourworks__nav { justify-self: start; }
  .ourworks__card { flex: 0 0 70%; }
  .ourworks__arrow { width: 44px; height: 44px; }
}

/* ============================================
   FEATURED WORK
   ============================================ */
.work {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--cream);
  position: relative;
}
.work__head {
  max-width: var(--container);
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 2rem 4rem;
  align-items: end;
}
.work__head .section__eyebrow { grid-column: 1 / -1; }
.work__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--black);
  white-space: nowrap;
}
.work__title em { color: var(--red-bright); font-style: italic; font-weight: 700; }
.work__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--black-soft);
  opacity: 0.75;
  max-width: 440px;
  justify-self: end;
}
@media (max-width: 800px) {
  .work__head { grid-template-columns: 1fr; }
  .work__title { white-space: normal; font-size: clamp(2.2rem, 8vw, 3.4rem); }
  .work__desc { justify-self: start; }
}

.work__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1.2rem;
  min-height: 720px;
}
.work-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--black);
  color: var(--cream);
  cursor: pointer;
  transition: transform 0.6s var(--ease-out), box-shadow 0.5s;
}
.work-card:hover { transform: translateY(-6px); box-shadow: 0 30px 60px -20px rgba(0,0,0,0.4); }
.work-card--01 { grid-row: span 2; }
.work-card--04 { grid-column: span 2; }

@media (max-width: 900px) {
  .work__grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; min-height: 0; }
  .work-card--01 { grid-row: auto; aspect-ratio: 4/5; }
  .work-card--04 { grid-column: span 2; aspect-ratio: 16/9; }
  .work-card { aspect-ratio: 4/5; }
}
@media (max-width: 600px) {
  .work__grid { grid-template-columns: 1fr; }
  .work-card, .work-card--01, .work-card--04 { grid-column: auto; grid-row: auto; aspect-ratio: 4/5; }
}

.work-card__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: grayscale(0.15) brightness(0.6) saturate(1.05);
  transition: transform 1.2s var(--ease-out), filter 0.6s;
  transform: scale(1.04);
}
.work-card:hover .work-card__img {
  transform: scale(1.1);
  filter: grayscale(0) brightness(0.75) saturate(1.15);
}
.work-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(11,10,10,0.9) 0%, rgba(11,10,10,0.4) 50%, transparent 100%);
}
.work-card__content {
  position: absolute; inset: auto 0 0 0;
  padding: 1.8rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.work-card__tag {
  align-self: flex-start;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border: 1px solid rgba(245,239,230,0.35);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  background: rgba(11,10,10,0.35);
}
.work-card__name {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.work-card__metric {
  display: flex; align-items: baseline; gap: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px solid rgba(245,239,230,0.18);
}
.work-card__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  color: var(--red-bright);
  line-height: 1;
}
.work-card__label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  opacity: 0.8;
}
.work-card__cta {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s, transform 0.4s var(--ease-out);
  margin-top: 0.4rem;
}
.work-card__cta span {
  display: inline-block;
  transition: transform 0.4s var(--ease-out);
}
.work-card:hover .work-card__cta { opacity: 1; }
.work-card:hover .work-card__cta span { transform: translateX(8px); }

.work__footer {
  max-width: var(--container);
  margin: 3rem auto 0;
  text-align: center;
}

/* ============================================
   TECH STACK
   ============================================ */
.stack {
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.stack::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(178,34,52,0.18), transparent 55%);
  pointer-events: none;
}
.stack__head {
  max-width: var(--container);
  margin: 0 auto 4rem;
  position: relative; z-index: 2;
}
.stack__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.stack__title em { color: var(--red-bright); font-style: italic; }
.stack__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  opacity: 0.7;
  max-width: 580px;
}

.stack__marquee {
  position: relative;
  z-index: 2;
  margin: 2rem calc(-1 * var(--pad));
  padding: 1rem 0;
  display: flex; flex-direction: column;
  gap: 1.2rem;
  border-top: 1px solid rgba(245,239,230,0.1);
  border-bottom: 1px solid rgba(245,239,230,0.1);
}
.stack__track {
  display: flex;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.stack__track--reverse { animation: marqueeReverse 50s linear infinite; }
@keyframes marqueeReverse {
  from { transform: translateX(-50%); } to { transform: translateX(0); }
}
.stack__row {
  display: flex; align-items: center;
  gap: 2.5rem; padding-right: 2.5rem;
}
.stack__tool {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  white-space: nowrap;
  color: var(--cream);
  transition: color 0.3s;
  cursor: default;
}
.stack__tool i {
  font-style: normal;
  color: var(--red-bright);
  font-size: 0.8em;
  line-height: 1;
}
.stack__tool:hover { color: var(--red-bright); }
.stack__tool--alt {
  font-family: var(--font-sans);
  font-style: normal;
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.3rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}

.stack__cats {
  max-width: var(--container);
  margin: 3rem auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  position: relative; z-index: 2;
}
.stack-cat {
  padding: 1.6rem;
  border: 1px solid rgba(245,239,230,0.12);
  border-radius: 6px;
  transition: border-color 0.4s, background 0.4s, transform 0.5s var(--ease-out);
}
.stack-cat:hover {
  border-color: rgba(178,34,52,0.5);
  background: rgba(178,34,52,0.08);
  transform: translateY(-4px);
}
.stack-cat__label {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red-bright);
  font-size: 1rem;
  margin-bottom: 0.8rem;
}
.stack-cat p {
  font-size: 0.92rem;
  line-height: 1.6;
  opacity: 0.75;
}
@media (max-width: 800px) {
  .stack__cats { grid-template-columns: 1fr; }
}

/* ============================================
   PRESS
   ============================================ */
.press {
  padding: clamp(4rem, 8vw, 8rem) var(--pad) 0;
  background: var(--cream);
  overflow: hidden;
}
.press__head {
  max-width: var(--container);
  margin: 0 auto 3rem;
  text-align: center;
}
.press__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  color: var(--black);
}
.press__title em { color: var(--red); font-style: italic; }

.press__marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
  margin: 2rem calc(-1 * var(--pad));
  overflow: hidden;
}
.press__track {
  display: flex;
  width: max-content;
  animation: marquee 50s linear infinite;
}
.press__inner {
  display: flex; align-items: center;
  gap: 3rem; padding-right: 3rem;
}
.press__logo {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--black);
  opacity: 0.7;
  white-space: nowrap;
  font-style: italic;
  font-weight: 500;
  transition: opacity 0.3s, color 0.3s;
  cursor: pointer;
}
.press__logo:hover { opacity: 1; color: var(--red); }
.press__logo--mark {
  font-family: var(--font-sans, inherit);
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0.25em;
  font-size: clamp(1.2rem, 2.6vw, 1.9rem);
  color: var(--red);
  opacity: 1;
}
.press__dot { color: var(--red-bright); font-size: 0.6rem; }

.press__sectors {
  max-width: var(--container);
  margin: 3rem auto 4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.press__sector {
  padding: 2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: background 0.4s, border-color 0.4s, transform 0.4s var(--ease-out);
}
.press__sector:hover { background: var(--black); color: var(--cream); border-color: var(--black); transform: translateY(-4px); }
.press__sector span {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--red);
  margin-bottom: 0.6rem;
  font-size: 0.95rem;
}
.press__sector:hover span { color: var(--red-bright); }
.press__sector p {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.15;
}
@media (max-width: 760px) {
  .press__sectors { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  padding: clamp(4rem, 8vw, 8rem) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.testimonials__head {
  max-width: var(--container);
  margin: 0 auto clamp(2.5rem, 5vw, 4rem);
}
.testimonials__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
}
.testimonials__title em {
  font-style: italic;
  color: var(--red);
}
.testimonials__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.55;
  color: var(--muted);
  max-width: 580px;
}

.testimonials__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.2rem;
}

.t-card {
  position: relative;
  background: rgba(11, 10, 10, 0.025);
  border: 1px solid rgba(11, 10, 10, 0.1);
  border-radius: 4px;
  padding: clamp(1.6rem, 2.2vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  transition: transform 0.5s var(--ease-out), border-color 0.4s, background 0.4s, box-shadow 0.5s;
}
.t-card::before {
  content: '"';
  position: absolute;
  top: 0.3rem;
  right: 1.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 5.5rem;
  line-height: 1;
  color: var(--red);
  opacity: 0.18;
  pointer-events: none;
}
.t-card:hover {
  transform: translateY(-5px);
  border-color: rgba(178, 34, 52, 0.35);
  background: rgba(178, 34, 52, 0.03);
  box-shadow: 0 18px 40px -22px rgba(178, 34, 52, 0.35);
}
.t-card:hover::before {
  opacity: 0.32;
}

.t-card--featured {
  grid-column: span 2;
  grid-row: span 2;
  background: var(--black);
  color: var(--cream);
  border-color: transparent;
  padding: clamp(2rem, 3vw, 3rem);
  gap: 1.8rem;
}
.t-card--featured::before {
  color: var(--red-bright);
  opacity: 0.35;
  font-size: 9rem;
  top: -0.4rem;
  right: 1.8rem;
}
.t-card--featured:hover {
  background: var(--black);
  border-color: rgba(178, 34, 52, 0.6);
  box-shadow: 0 22px 50px -22px rgba(178, 34, 52, 0.55);
}
.t-card--featured:hover::before {
  opacity: 0.55;
}

.t-card__metric {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(245, 239, 230, 0.18);
  align-self: flex-start;
}
.t-card__metric-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(2.4rem, 3.5vw, 3.4rem);
  line-height: 1;
  color: var(--red-bright);
  letter-spacing: -0.02em;
}
.t-card__metric-label {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--cream);
  opacity: 0.7;
  line-height: 1.4;
}

.t-card__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
  color: var(--black);
  letter-spacing: -0.005em;
  flex: 1;
}
.t-card--featured .t-card__quote {
  color: var(--cream);
  font-size: clamp(1.25rem, 1.8vw, 1.6rem);
  line-height: 1.45;
  letter-spacing: -0.01em;
  opacity: 0.95;
}

.t-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(11, 10, 10, 0.1);
}
.t-card--featured .t-card__author {
  border-top-color: rgba(245, 239, 230, 0.18);
}
.t-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
  position: relative;
}
.t-card__avatar::after {
  content: '';
  position: absolute;
  inset: -3px;
  border: 1px solid var(--red);
  border-radius: 50%;
  opacity: 0.5;
}
.t-card--featured .t-card__avatar::after {
  border-color: var(--red-bright);
  opacity: 0.7;
}
.t-card__name {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: -0.005em;
  color: var(--black);
}
.t-card--featured .t-card__name {
  color: var(--cream);
}
.t-card__role {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin-top: 0.15rem;
}
.t-card--featured .t-card__role {
  color: rgba(245, 239, 230, 0.6);
}

@media (max-width: 1100px) {
  .testimonials__grid { grid-template-columns: repeat(2, 1fr); }
  .t-card--featured {
    grid-column: span 2;
    grid-row: span 1;
  }
}
@media (max-width: 700px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .t-card--featured {
    grid-column: span 1;
  }
  .t-card--featured::before { font-size: 7rem; }
}

/* ============================================
   FAQ — Editorial accordion
   ============================================ */
.faq {
  padding: clamp(5rem, 10vw, 8rem) var(--pad);
  background: var(--cream);
  border-top: 1px solid var(--line);
  position: relative;
}
.faq__head {
  max-width: var(--container);
  margin: 0 auto clamp(3rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
}
.faq__head .section__eyebrow {
  grid-column: 1 / -1;
}
.faq__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.015em;
  color: var(--black);
  align-self: end;
}
.faq__title em {
  font-style: italic;
  color: var(--red);
}
.faq__sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 44ch;
  align-self: end;
  padding-bottom: 0.4rem;
}

.faq__list {
  max-width: var(--container);
  margin: 0 auto;
  border-top: 1px solid rgba(11, 10, 10, 0.15);
}
.faq__item {
  border-bottom: 1px solid rgba(11, 10, 10, 0.15);
}
.faq__q {
  display: grid;
  grid-template-columns: 60px 1fr 40px;
  align-items: center;
  gap: 1.4rem;
  padding: 1.8rem 0.5rem;
  cursor: pointer;
  list-style: none;
  transition: padding 0.4s var(--ease-out), background 0.4s;
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover {
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  background: rgba(178, 34, 52, 0.04);
}
.faq__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--red);
  opacity: 0.85;
  letter-spacing: 0.05em;
}
.faq__question {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.7rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--black);
  transition: color 0.3s;
}
.faq__item[open] .faq__question { color: var(--red-deep); }
.faq__item:hover .faq__question { color: var(--red-bright); }

.faq__icon {
  position: relative;
  width: 22px;
  height: 22px;
  justify-self: end;
}
.faq__icon::before,
.faq__icon::after {
  content: '';
  position: absolute;
  background: var(--black);
  border-radius: 1px;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.faq__icon::before {
  left: 0;
  right: 0;
  top: 50%;
  height: 1.5px;
  transform: translateY(-50%);
}
.faq__icon::after {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1.5px;
  transform: translateX(-50%);
}
.faq__item[open] .faq__icon::after {
  transform: translateX(-50%) scaleY(0);
}
.faq__item[open] .faq__icon::before,
.faq__item[open] .faq__icon::after {
  background: var(--red);
}

.faq__a {
  padding: 0 0.5rem 2rem calc(60px + 1.4rem);
  max-width: 70ch;
}
.faq__a p {
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  line-height: 1.75;
  color: var(--black);
  opacity: 0.78;
}

@media (max-width: 800px) {
  .faq__head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .faq__sub { padding-bottom: 0; }
  .faq__q {
    grid-template-columns: 40px 1fr 28px;
    gap: 1rem;
    padding: 1.4rem 0.3rem;
  }
  .faq__q:hover { padding-left: 0.8rem; padding-right: 0.8rem; }
  .faq__a {
    padding-left: calc(40px + 1rem);
    padding-bottom: 1.5rem;
  }
}

/* ============================================
   CTA
   ============================================ */
.cta {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) var(--pad);
  color: var(--cream);
  overflow: hidden;
}
.cta__bg { position: absolute; inset: 0; z-index: 0; }
.cta__bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 25%;
  filter: saturate(0.55) contrast(1.1);
}
.cta__bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,14,14,0.9), rgba(11,10,10,0.95));
}
.cta__content {
  position: relative; z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
.cta__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.cta__title em { font-style: italic; color: var(--red-bright); }
.cta__desc {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  max-width: 550px;
  opacity: 0.85;
  margin-bottom: 3rem;
}

.cta__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 1.5rem;
  max-width: 820px;
}
.cta__field { display: flex; flex-direction: column; gap: 0.5rem; }
.cta__field--full { grid-column: 1 / -1; }
.cta__field label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.6;
}
.cta__field input, .cta__field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(245,239,230,0.3);
  color: var(--cream);
  padding: 0.7rem 0;
  font-size: 1.05rem;
  font-family: var(--font-serif);
  font-style: italic;
  outline: none;
  transition: border-color 0.3s;
  resize: vertical;
}
.cta__field input:focus, .cta__field textarea:focus { border-color: var(--red-bright); }
.cta__field input::placeholder, .cta__field textarea::placeholder { color: rgba(245,239,230,0.4); }

.cta__actions {
  grid-column: 1 / -1;
  display: flex; gap: 1rem; flex-wrap: wrap;
  margin-top: 1rem;
}
@media (max-width: 700px) {
  .cta__form { grid-template-columns: 1fr; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--black);
  color: var(--cream);
  padding: 0 var(--pad) 2rem;
}
.footer__top {
  padding: clamp(4rem, 10vw, 8rem) 0 3rem;
  border-bottom: 1px solid rgba(245,239,230,0.1);
}
.footer__big {
  max-width: var(--container);
  margin: 0 auto;
  display: flex; flex-direction: column;
  line-height: 0.9;
}
.footer__script {
  font-family: var(--font-script);
  font-size: clamp(4rem, 12vw, 12rem);
  color: var(--red-bright);
  line-height: 0.9;
}
.footer__serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2.5rem, 7vw, 6rem);
  color: var(--cream);
  padding-left: clamp(1rem, 5vw, 5rem);
  margin-top: -0.2em;
}

.footer__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.footer__label {
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 0.8rem;
}
.footer__col p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
}
.footer__col a { transition: color 0.3s; }
.footer__col a:hover { color: var(--red-bright); }

.footer__newsletter {
  display: flex;
  border-bottom: 1px solid rgba(245,239,230,0.25);
}
.footer__newsletter input {
  flex: 1;
  background: transparent; border: none;
  color: var(--cream);
  padding: 0.5rem 0;
  font-size: 0.95rem;
  outline: none;
  font-family: var(--font-serif); font-style: italic;
}
.footer__newsletter input::placeholder { color: rgba(245,239,230,0.3); }
.footer__newsletter button {
  color: var(--red-bright);
  font-size: 1.2rem;
  padding: 0 0.5rem;
  transition: transform 0.3s var(--ease-out);
}
.footer__newsletter button:hover { transform: translateX(4px); }

.footer__bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245,239,230,0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  opacity: 0.55;
  letter-spacing: 0.05em;
}
.footer__bottom a {
  color: var(--red-bright);
  font-weight: 500;
  transition: opacity 0.3s;
}
.footer__bottom a:hover { opacity: 0.7; }
@media (max-width: 760px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   BOOK STRATEGY CALL MODAL
   ============================================ */
.modal {
  position: fixed; inset: 0; z-index: 300;
  display: none;
  align-items: center; justify-content: center;
  padding: clamp(1rem, 3vw, 2rem);
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(11,10,10,0.85);
  backdrop-filter: blur(14px);
  animation: fadeIn 0.4s ease;
}
.modal__panel {
  position: relative;
  width: 100%;
  max-width: 1100px;
  max-height: 92vh;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  animation: modalRise 0.6s var(--ease-out);
  box-shadow: 0 40px 100px -30px rgba(0,0,0,0.6);
}
@keyframes modalRise {
  from { opacity: 0; transform: translateY(40px) scale(0.97); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 900px) {
  .modal__panel { grid-template-columns: 1fr; max-height: 95vh; overflow-y: auto; }
}

.modal__close {
  position: absolute; top: 1rem; right: 1rem;
  z-index: 5;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(11,10,10,0.85);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.4s var(--ease-out), background 0.3s;
}
.modal__close:hover { background: var(--red-bright); transform: rotate(90deg); }
.modal__close svg { width: 18px; height: 18px; }

.modal__media {
  position: relative;
  background: var(--black);
  color: var(--cream);
  overflow: hidden;
  min-height: 380px;
}
.modal__media-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.9) brightness(0.55);
  transform: scale(1.05);
}
.modal__media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(92,14,14,0.65), rgba(11,10,10,0.85));
}
.modal__media-content {
  position: relative; z-index: 2;
  height: 100%;
  padding: 2.4rem;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.5rem;
}
.modal__media-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  align-self: flex-start;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(245,239,230,0.3);
  border-radius: 999px;
  background: rgba(11,10,10,0.4);
  backdrop-filter: blur(8px);
}
.modal__media-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.01em;
}
.modal__media-title em { font-style: italic; color: var(--red-bright); }
.modal__media-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.85;
  max-width: 380px;
}
.modal__media-perks {
  display: flex; flex-direction: column; gap: 0.6rem;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}
.modal__media-perks div { display: flex; align-items: center; gap: 0.6rem; opacity: 0.9; }
.modal__media-perks span { color: var(--red-bright); }

.modal__form {
  padding: 2.4rem;
  display: flex; flex-direction: column;
  gap: 1rem;
  overflow-y: auto;
}
.modal__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--black);
  margin-bottom: 0.2rem;
}
.modal__subtitle {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}
.modal__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 500px) { .modal__row { grid-template-columns: 1fr; } }
.modal__field { display: flex; flex-direction: column; gap: 0.4rem; }
.modal__field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.modal__field input,
.modal__field textarea,
.modal__field select {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--black);
  padding: 0.7rem 0.9rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  outline: none;
  transition: border-color 0.3s, background 0.3s;
  resize: vertical;
}
.modal__field input:focus,
.modal__field textarea:focus,
.modal__field select:focus {
  border-color: var(--red-bright);
  background: rgba(178,34,52,0.04);
}
.modal__field input::placeholder,
.modal__field textarea::placeholder { color: rgba(11,10,10,0.35); }

.modal__submit {
  margin-top: 0.6rem;
  align-self: stretch;
  justify-content: center;
}
.modal__legal {
  font-size: 0.72rem;
  color: var(--muted);
  line-height: 1.5;
  text-align: center;
}

.modal__success {
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  padding: 3rem 2.4rem;
  text-align: center;
  gap: 1rem;
  grid-column: 1 / -1;
}
.modal__success.active { display: flex; }
.modal__success-icon {
  font-size: 4rem;
  color: var(--red-bright);
  animation: spin 4s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.modal__success h3 {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--red);
}
.modal__success p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  max-width: 480px;
  color: var(--black-soft);
}

/* Lightbox: Why it matters block */
.lightbox__why {
  margin: 1rem 0;
  padding: 1rem 1.2rem;
  background: var(--red-soft);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}
.lightbox__why span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.4rem;
  font-weight: 600;
}
.lightbox__why p {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--black);
  margin: 0;
}

/* ============================================
   PRESS — Intro & Featured Label
   ============================================ */
.press__intro {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  color: var(--black-soft);
  opacity: 0.75;
  max-width: 600px;
  margin: 1rem auto 0;
}
.press__featured-label {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4rem;
}

/* ============================================
   WORK GRID — 5 CARDS
   ============================================ */
.work__grid--five {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "a b c"
    "a d e";
  gap: 1.2rem;
  min-height: 720px;
}
.work__grid--five .work-card { grid-area: auto; aspect-ratio: auto; }
.work__grid--five .work-card--01 { grid-area: a; }
.work__grid--five .work-card--02 { grid-area: b; }
.work__grid--five .work-card--03 { grid-area: c; }
.work__grid--five .work-card--04 { grid-area: d; }
.work__grid--five .work-card--05 { grid-area: e; }

button.work-card {
  border: none; padding: 0; text-align: left;
  font: inherit;
  color: var(--cream);
  cursor: pointer;
  width: 100%; display: block;
  background: var(--black);
}

.work-card__name,
.work-card__copy,
.work-card__label,
.work-card__cta,
.work-card__tag { color: var(--cream); }

.work-card__copy {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
  margin-top: 0.5rem;
  max-width: 500px;
}

@media (max-width: 1000px) {
  .work__grid--five {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "a a"
      "b c"
      "d e";
    min-height: 0;
  }
  .work__grid--five .work-card--01 { aspect-ratio: 16/9; }
  .work__grid--five .work-card { aspect-ratio: 4/5; }
}
@media (max-width: 600px) {
  .work__grid--five {
    grid-template-columns: 1fr;
    grid-template-areas: "a" "b" "c" "d" "e";
  }
  .work__grid--five .work-card,
  .work__grid--five .work-card--01 { aspect-ratio: 4/5; }
}

/* ============================================
   COUPON — $100 OFF
   ============================================ */
.coupon {
  position: relative;
  margin: 3rem 0;
  max-width: 720px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cream) 0%, #fff 100%);
  color: var(--black);
  box-shadow: 0 30px 70px -20px rgba(0,0,0,0.5);
  overflow: visible;
}
.coupon__perforations {
  position: absolute;
  top: 50%;
  width: 24px;
  height: 24px;
  background: var(--red-deep);
  border-radius: 50%;
  transform: translateY(-50%);
}
.coupon__perforations--left { left: -12px; }
.coupon__perforations--right { right: -12px; }
@media (max-width: 700px) {
  .coupon__perforations { display: none; }
}

.coupon__inner {
  display: grid;
  grid-template-columns: 1fr 1px 1.3fr;
  gap: 1.5rem;
  padding: 2rem 2.2rem;
  align-items: center;
}
@media (max-width: 700px) {
  .coupon__inner { grid-template-columns: 1fr; gap: 1rem; padding: 1.5rem; }
  .coupon__divider { display: none; }
}
.coupon__divider {
  height: 100%;
  background-image: linear-gradient(to bottom, var(--line) 50%, transparent 50%);
  background-size: 1px 8px;
  background-repeat: repeat-y;
}

.coupon__badge {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.coupon__badge-dot {
  width: 6px; height: 6px;
  background: var(--red-bright);
  border-radius: 50%;
  animation: dotBlink 1.6s ease-in-out infinite;
}

.coupon__amount {
  display: inline-flex; align-items: baseline; gap: 0.2rem;
  font-family: var(--font-serif);
  color: var(--black);
}
.coupon__currency {
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--red);
}
.coupon__num {
  font-style: italic;
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
  color: var(--red);
}
.coupon__off {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.25em;
  color: var(--black);
  background: var(--red-bright);
  color: var(--cream);
  padding: 0.3rem 0.7rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  align-self: center;
}
.coupon__label {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--black-soft);
  margin-top: 0.2rem;
}

.coupon__code-label {
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.coupon__code {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  letter-spacing: 0.15em;
  color: var(--black);
  padding: 0.4rem 0.9rem;
  border: 2px dashed var(--red);
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 0.8rem;
  background: var(--red-soft);
}
.coupon__terms {
  font-size: 0.78rem;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 0.4rem;
}

.cta__lead {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.1rem, 1.7vw, 1.4rem);
  margin: 1.5rem 0;
  opacity: 0.95;
}
.cta__lead em {
  color: var(--red-bright);
  font-style: italic;
  display: block;
  margin-bottom: 0.2rem;
}
.cta__actions--center {
  justify-content: flex-start;
  flex-wrap: wrap;
}

/* ============================================
   FLOATING CHAT
   ============================================ */
.chat-fab {
  position: fixed;
  bottom: 1.5rem; right: 1.5rem;
  width: 60px; height: 60px;
  z-index: 90;
  border-radius: 50%;
  background: var(--red-bright);
  color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 40px -10px rgba(178,34,52,0.6);
  transition: transform 0.4s var(--ease-bounce), background 0.3s;
}
.chat-fab:hover { transform: scale(1.1); background: var(--red); }
.chat-fab svg { width: 24px; height: 24px; stroke: var(--cream); }
.chat-fab__pulse {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 2px solid var(--red-bright);
  animation: fabPulse 2s ease-out infinite;
}
@keyframes fabPulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   REVEAL ANIMATIONS (will be triggered by JS)
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
[data-reveal].in {
  opacity: 1;
  transform: translateY(0);
}

[data-split] .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(1em);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
[data-split] .char.in {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE FINE-TUNES
   ============================================ */
@media (max-width: 500px) {
  .hero { padding: 7rem var(--pad) 2rem; }
  .hero__eyebrow { font-size: 0.65rem; }
  .hero__eyebrow .line { width: 30px; }
  .hero__serif { padding-left: 0; }
  .btn { padding: 0.85rem 1.4rem; font-size: 0.72rem; }
  .service-card__body { padding: 1.2rem; }
  .chat-fab { width: 52px; height: 52px; }
}

/* ===== CASE STUDY MODAL ===== */
.modal__panel--case {
  grid-template-columns: 1fr;
  max-width: 900px;
  max-height: 92vh;
  overflow-y: auto;
  background: var(--cream);
}
.case { display: flex; flex-direction: column; }
.case__hero {
  position: relative;
  height: clamp(220px, 38vh, 360px);
  overflow: hidden;
  background: var(--black);
}
.case__hero-img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.case__hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,10,10,0.15) 0%, rgba(11,10,10,0.55) 60%, rgba(11,10,10,0.85) 100%);
}
.case__hero-content {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: clamp(1.4rem, 3vw, 2.4rem);
  color: var(--cream);
}
.case__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(245,239,230,0.35);
  border-radius: 999px;
  background: rgba(11,10,10,0.45);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  margin-bottom: 0.9rem;
}
.case__title {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.8rem, 4.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 0.4rem;
}
.case__sub {
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  opacity: 0.82;
  margin: 0;
}
.case__body {
  padding: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--black);
}
.case__stat {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0 1.4rem;
  border-bottom: 1px solid rgba(11,10,10,0.12);
  margin-bottom: 1.6rem;
  flex-wrap: wrap;
}
.case__stat-num {
  font-family: var(--font-display, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 500;
  color: var(--red-bright, #b22234);
  font-style: italic;
}
.case__stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.75;
}
.case__sections { display: flex; flex-direction: column; gap: 1.4rem; }
.case__lede {
  font-family: var(--font-serif, 'Playfair Display', Georgia, serif);
  font-weight: 400;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.55;
  letter-spacing: -0.005em;
  margin: 0;
  color: rgba(11,10,10,0.88);
}
.case__section h3 {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--red-bright, #b22234);
  margin: 0 0 0.5rem;
}
.case__section p {
  font-size: 0.98rem;
  line-height: 1.65;
  margin: 0;
  color: rgba(11,10,10,0.86);
}
.case__footer {
  margin-top: 2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(11,10,10,0.12);
  display: flex;
  justify-content: flex-start;
}
@media (max-width: 700px) {
  .case__hero { height: 240px; }
  .case__stat { flex-direction: column; gap: 0.3rem; }
}
