/* =========================================================
   Maroon Harpoon — Homepage redesign
   Local styles. Tokens come from ../colors_and_type.css
   ========================================================= */

* { box-sizing: border-box; }

/* =========================================================
   Accent role: Raleway italic 300 wherever --font-accent is used
   ========================================================= */
.hero__accent,
.services__head .accent,
.services__foot .accent,
.vendors__lead,
.t__who,
.cta__right .accent,
.cta__sig .signed,
.modal__sub {
  font-style: italic;
  font-weight: 300;
  letter-spacing: 0.005em;
}

body {
  margin: 0;
  overflow-x: hidden;
}

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

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding-block: var(--section-y); }

.section--cream { background: var(--cream); }
.section--warm  { background: var(--warm); }
.section--dark  { background: var(--bg-dark); color: var(--cream); }
.section--plum  { background: var(--plum); color: var(--cream); }

/* Eyebrow with pink leading line + sand fade right */
.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.eyebrow-row::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--pink);
  flex: 0 0 36px;
}
.eyebrow-row::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--sand), transparent);
}
.eyebrow-row .eyebrow { color: var(--ink); }
.section--dark .eyebrow-row .eyebrow,
.section--plum .eyebrow-row .eyebrow { color: var(--cream); }
.section--dark .eyebrow-row::after,
.section--plum .eyebrow-row::after { background: linear-gradient(90deg, var(--cream-30), transparent); }

/* Reveal on scroll — pending state is JS-applied, so if JS or
   IntersectionObserver fails, content is visible by default. */
.reveal {
  transition: opacity var(--reveal-dur, 480ms) var(--ease-out),
              transform var(--reveal-dur, 480ms) var(--ease-out);
}
.reveal.is-pending {
  opacity: 0;
  transform: translateY(18px);
}
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Top Nav
   ========================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav--scrolled,
.nav--solid {
  background: var(--cream);
  border-bottom-color: var(--sand);
  padding: 12px 0;
}
.nav__inner {
  display: grid;
  grid-template-columns: 144px 1fr auto;
  align-items: center;
  gap: 0;
}
.nav--scrolled .nav__inner { grid-template-columns: 120px 1fr auto; }
.nav__logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.nav__logo svg { display: block; }
.nav__logo .logo-dot { color: var(--pink); }
.nav--on-hero .nav__logo,
.nav--on-hero .nav__link { color: var(--cream); }
.nav--on-hero.nav--scrolled .nav__logo,
.nav--on-hero.nav--scrolled .nav__link { color: var(--ink); }

.nav__links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.nav__link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  letter-spacing: 0.01em;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 0;
  background: currentColor;
  transition: width var(--dur-fast) var(--ease-out);
}
.nav__link:hover::after { width: 100%; }
.nav__link--ext::after { display: none; }
.nav__link--ext .arrow { display: inline-block; margin-left: 4px; transform: rotate(-45deg); transition: transform var(--dur-fast) var(--ease-out); }
.nav__link--ext:hover .arrow { transform: rotate(-45deg) translate(2px, 0); }

.nav__cta { font-size: 13px; padding: 10px 22px; white-space: nowrap; }

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-top: 140px;
  padding-bottom: 80px;
  overflow: hidden;
}
.hero--photo {
  background: var(--dark);
  color: var(--cream);
}
.hero--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,15,7,0.28) 0%, rgba(19,15,7,0.42) 50%, rgba(19,15,7,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero__video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  z-index: 0;
}
/* Mobile — video plays, poster shows while loading, overlay stays on */
@media (max-width: 768px) {
  .hero--type {
    background: var(--dark);
  }
  .hero--type::before {
    background: linear-gradient(180deg, rgba(19,15,7,0.52) 0%, rgba(19,15,7,0.68) 50%, rgba(19,15,7,0.88) 100%);
  }
}
.hero--photo .hero__content { position: relative; z-index: 2; }
.hero--type {
  background: var(--dark);
  color: var(--cream);
  justify-content: center;
  padding-top: 116px;
  padding-bottom: 64px;
  min-height: auto;
}
.hero--type::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='g'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23g)' opacity='0.22'/></svg>"),
    linear-gradient(180deg, rgba(19,15,7,0.52) 0%, rgba(19,15,7,0.68) 50%, rgba(19,15,7,0.88) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Grain overlay on the type hero — feels like a printed poster */
.hero--type::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 3;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='320' height='320'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.72' numOctaves='4' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  background-size: 280px 280px;
  opacity: 0.18;
  mix-blend-mode: screen;
}
.hero--type .hero__content { position: relative; z-index: 4; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.hero--lockup .hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero--lockup .hero__eyebrow {
  justify-content: center;
  margin-bottom: 18px;
  color: var(--cream-68);
  font-weight: 700;
  letter-spacing: 0.18em;
}
.hero--lockup .hero__actions { justify-content: center; margin-top: 32px; }
.hero__lockup {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: -8px;
}
.hero__lockup-img {
  display: block;
  width: min(860px, 88vw);
  height: auto;
  filter: none;
}
.hero__lockup-sub {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin: 0;
  padding-top: clamp(4px, 0.6vw, 10px);
  text-shadow: 0 2px 12px rgba(19,15,7,0.5);
  width: min(860px, 88vw);
  font-size: min(54px, 5.6vw);
  white-space: nowrap;
}
.hero__lockup-period {
  color: var(--pink);
}
.hero__subline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(22px, 2.4vw, 32px);
  color: var(--cream-90);
  margin: 22px 0 0;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 8px rgba(19,15,7,0.6);
}
.hero--lockup .hero__accent {
  max-width: 680px;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-shadow: 0 1px 8px rgba(19,15,7,0.6);
}
.hero__accent-head {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--cream);
  font-style: normal;
}
.hero__accent-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--cream-68);
}

.hero__circle {
  position: absolute;
  right: -180px;
  top: 8%;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  background: var(--plum);
  opacity: 0.92;
  pointer-events: none;
}
.hero__circle::after {
  content: "";
  position: absolute; inset: 0;
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.9 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
  opacity: 0.35;
}
.hero--type .hero__circle { display: none; }

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.hero--photo .hero__eyebrow { color: var(--cream-68); }
.hero--photo .hero__eyebrow::before { background: var(--pink); }
.hero__eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: var(--pink);
}

.hero__h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(56px, 9vw, 128px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
  text-wrap: balance;
}
.hero--type .hero__h1 { font-size: clamp(64px, 12vw, 180px); color: var(--cream); }

.hero__h1 .partner { display: block; }
.hero__h1 .swap-line {
  display: block;
  font-weight: 400;
  font-size: 0.55em;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin-top: 0.15em;
  color: inherit;
  opacity: 0.95;
}
.hero--type .hero__h1 .swap-line {
  font-weight: 400;
  font-size: 0.5em;
  color: var(--ink-68);
}

.swap-word {
  color: var(--pink);
  font-weight: 700;
  position: relative;
  display: inline-block;
  min-width: 4ch;
}
.swap-word::after {
  content: ".";
  color: var(--pink);
}

.hero__accent {
  font-family: var(--font-accent);
  font-size: clamp(22px, 2.4vw, 34px);
  margin-top: 36px;
  max-width: 620px;
  line-height: 1.3;
}
.hero--photo .hero__accent { color: var(--cream-90); }
.hero--type .hero__accent { color: var(--cream-68); }

.hero__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero__view-link {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.85;
  cursor: pointer;
  background: none;
  border: none;
  padding: 8px 0;
}
.hero__view-link:hover { opacity: 1; }
.hero__view-link .arr { transition: transform var(--dur-fast) var(--ease-out); }
.hero__view-link:hover .arr { transform: translateX(4px); }

/* Hero corner type — bottom right meta */
.hero__meta {
  position: absolute;
  right: var(--gutter);
  bottom: 32px;
  z-index: 3;
}
.surf-meta {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: right;
  color: var(--cream-50);
  line-height: 1.6;
}
.surf-meta--loading {
  opacity: 0.4;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0.05em;
}
.surf-meta__loc {
  color: var(--cream-50);
  margin-bottom: 3px;
}
.surf-meta__row {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  color: var(--cream-68);
}
.surf-meta__val { color: var(--cream); }
.surf-meta__sep { color: var(--cream-30); }
.surf-meta__rating {
  color: var(--pink);
}

/* =========================================================
   Marquee — client logos
   ========================================================= */
.marquee {
  background: var(--cream);
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 40px 0;
  overflow: hidden;
  position: relative;
}
.marquee__label {
  text-align: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-bottom: 22px;
}
.marquee__track {
  display: flex;
  gap: 64px;
  align-items: center;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.marquee__logo {
  width: auto;
  opacity: 0.6;
  transition: opacity var(--dur-med) var(--ease-out);
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (hover: hover) and (pointer: fine) {
  .marquee__item:hover .marquee__logo { opacity: 1; }
}

/* =========================================================
   Services — accordion
   ========================================================= */
.services__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 56px;
  align-items: center;
}
.services__head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
}
.services__head .accent {
  font-family: var(--font-accent);
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.3;
  color: var(--ink-68);
  max-width: 480px;
}

.acc {
  border-top: 1px solid var(--sand);
}
.acc__item {
  border-bottom: 1px solid var(--sand);
}
.acc__row {
  width: 100%;
  display: grid;
  grid-template-columns: 90px 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
  color: var(--ink);
  transition: background-color var(--dur-med) var(--ease-out),
              padding var(--dur-med) var(--ease-out);
}
.acc__row:hover { padding-inline: 16px; }
.acc__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--ink-50);
  transition: color var(--dur-fast) var(--ease-out);
}
.acc__item--open .acc__num,
.acc__row:hover .acc__num { color: var(--plum); }
.acc__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.05;
  letter-spacing: -0.005em;
  transition: color var(--dur-fast) var(--ease-out);
}
.acc__item--open .acc__title,
.acc__row:hover .acc__title { color: var(--plum); }

.acc__icon {
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  display: grid;
  place-items: center;
  transition: background-color var(--dur-fast) var(--ease-out),
              border-color var(--dur-fast) var(--ease-out),
              color var(--dur-fast) var(--ease-out);
  color: var(--ink);
  font-size: 16px;
  line-height: 1;
}
.acc__item--open .acc__icon {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.acc__plus {
  display: inline-block;
  transition: transform var(--dur-med) var(--ease-out);
}
.acc__item--open .acc__plus { transform: rotate(45deg); }

.acc__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 200ms var(--ease-out);
}
.acc__item--open .acc__panel { grid-template-rows: 1fr; }
.acc__panel > div { overflow: hidden; }
.acc__body {
  display: grid;
  grid-template-columns: 90px 1fr 1fr;
  gap: 32px;
  padding: 0 0 36px 0;
}
.acc__body .acc__spacer { /* aligns under number column */ }
.acc__copy {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-68);
  max-width: 56ch;
}
.acc__deliverables {
  font-family: var(--font-body);
  font-size: 13px;
  line-height: 2;
  color: var(--ink-50);
}
.acc__deliverables-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  display: block;
  margin-bottom: 12px;
}

.services__foot {
  margin-top: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--sand);
}
.services__foot .accent {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--ink-68);
}

/* =========================================================
   Work — vertical posters
   ========================================================= */
.work__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  align-items: center;
}
.work__head h2 {
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
}
.work__head .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}

.posters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.poster {
  position: relative;
  aspect-ratio: 3 / 4.15;
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  background: var(--ink);
  text-decoration: none;
  display: block;
  color: inherit;
}
.poster__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 400ms var(--ease-out),
              filter 400ms var(--ease-out);
  filter: saturate(0.85) contrast(1.05);
}
@media (hover: hover) and (pointer: fine) {
  .poster:hover .poster__bg { transform: scale(1.05); filter: saturate(1) contrast(1.05); }
}
.poster__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg,
    rgba(19,15,7,0.10) 0%,
    rgba(19,15,7,0.00) 30%,
    rgba(19,15,7,0.78) 100%);
}

/* Quiet top line: number + single category */
.poster__top {
  position: absolute;
  top: 0; left: 0; right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 22px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-68);
  z-index: 2;
}

/* Bottom block: bold company name, explanation beneath, hover arrow */
.poster__foot {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 24px 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  z-index: 2;
}
.poster__client {
  font-family: var(--font-body);
  font-weight: 800;
  font-style: normal;
  font-size: clamp(21px, 1.55vw, 27px);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
}
.poster__desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: var(--cream-68);
  margin: 10px 0 0;
  max-width: 24ch;
  text-wrap: pretty;
}
.poster__go {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border: 1px solid var(--cream-30);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-size: 16px;
  opacity: 0.85;
  transform: translateY(2px);
  transition: background-color var(--dur-med) var(--ease-out),
              color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out),
              opacity var(--dur-med) var(--ease-out);
}
.poster:hover .poster__go {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  opacity: 1;
}
.poster__text { min-width: 0; }

/* Staggered entrance — posters rise as the section reveals (Emil: 60ms steps) */
.posters .poster {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s var(--ease-out), transform 0.55s var(--ease-out);
}
.reveal.in .posters .poster { opacity: 1; transform: none; }
.reveal.in .posters .poster:nth-child(2) { transition-delay: 60ms; }
.reveal.in .posters .poster:nth-child(3) { transition-delay: 120ms; }
.reveal.in .posters .poster:nth-child(4) { transition-delay: 180ms; }

/* Editorial rhythm — stagger the row so it reads like a gallery wall,
   not a rigid grid. Even cards drop; the featured card lifts + grows. */
.posters { align-items: start; }
.posters > .poster:nth-child(even) { margin-top: 48px; }
.poster--featured {
  aspect-ratio: 3 / 4.55;
  outline: 1px solid var(--sand);
  outline-offset: 6px;
}

/* =========================================================
   VendorCost section
   ========================================================= */
.vendors__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 96px;
  align-items: start;
}
.vendors h2 {
  font-size: clamp(36px, 4.5vw, 60px);
  line-height: 1.0;
}
.vendors__lead {
  font-family: var(--font-accent);
  font-size: 24px;
  color: var(--ink-68);
  margin-top: 28px;
  max-width: 460px;
  line-height: 1.3;
}
.vendors__list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--sand);
}
.vendors__list li {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--sand);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.vendors__plus {
  color: var(--pink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
}
.vendors__list .price {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.vendors__total {
  margin-top: 18px;
  padding: 22px 0 6px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.vendors__total .label {
  color: var(--ink-50);
}
.vendors__total .strike {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--ink-50);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
}
.vendors__alt {
  margin-top: 36px;
  padding: 28px 30px;
  border: 1.5px solid var(--ink);
  border-radius: var(--r-lg);
  background: var(--cream);
  position: relative;
}
.vendors__alt::before {
  content: "OR";
  position: absolute;
  top: -12px; left: 24px;
  background: var(--warm);
  padding: 0 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ink);
}
.vendors__alt h3 {
  font-family: var(--font-display);
  font-size: 28px;
  line-height: 1.05;
  margin: 0 0 10px;
}
.vendors__alt p {
  margin: 0;
  font-size: 15px;
  color: var(--ink-68);
}

/* =========================================================
   CampaignClarity
   ========================================================= */
.cc {
  position: relative;
  overflow: hidden;
}
.cc__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}
.cc__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-68);
  padding: 7px 14px;
  border: 1px solid var(--cream-30);
  border-radius: 999px;
  margin-bottom: 32px;
}
.cc__badge::before {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pink);
  display: inline-block;
}
.cc h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(42px, 5vw, 80px);
  line-height: 1.0;
  color: var(--cream);
  margin: 0 0 32px;
  letter-spacing: -0.01em;
}
.cc__body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--cream-68);
  max-width: 52ch;
  margin: 0 0 48px;
}
.cc__feats {
  display: flex;
  gap: 0;
  margin-bottom: 48px;
  border-top: 1px solid var(--cream-12);
  border-bottom: 1px solid var(--cream-12);
  padding: 28px 0;
}
.cc__feat {
  flex: 1;
  padding-right: 28px;
  border-right: 1px solid var(--cream-12);
}
.cc__feat:last-child { border-right: none; padding-right: 0; }
.cc__num {
  font-family: var(--font-display) !important;
  font-size: 80px !important;
  font-weight: 700 !important;
  color: #F4EDDF !important;
  line-height: 1 !important;
  margin-bottom: 12px;
  display: block;
}
.cc__feat-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(244,237,223,0.65);
}
.cc__feats b {
  font-family: var(--font-display);
  font-size: 56px;
  display: block;
  color: var(--cream);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.cc__feats span {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-50);
}

/* CC mock — browser-chrome card */
.cc__mock {
  background: #111827;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(244,237,223,0.08);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.7);
  width: 100%;
}
.cc__mock-chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: #0d1117;
  border-bottom: 1px solid rgba(244,237,223,0.06);
}
.cc__dots {
  display: flex;
  gap: 6px;
}
.cc__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  display: block;
}
.cc__url {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(244,237,223,0.35);
  letter-spacing: 0.06em;
  margin: 0 auto;
}
.cc__mock-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cc__mock-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(244,237,223,0.07);
}
.cc__overall { text-align: right; }
.cc__score-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.cc__score-card {
  background: rgba(244,237,223,0.03);
  border: 1px solid rgba(244,237,223,0.07);
  border-radius: 8px;
  padding: 12px 14px;
}
.cc__suggestion {
  background: rgba(241,38,115,0.07);
  border: 1px solid rgba(241,38,115,0.25);
  border-radius: 8px;
  padding: 12px 14px;
}
.cc__shot {
  background: linear-gradient(180deg, #1d3047, #0e1a26);
  border-radius: var(--r-lg);
  border: 1px solid var(--cream-12);
  overflow: hidden;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6);
}
.cc__shot::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 10%, rgba(241,38,115,0.18), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(82,25,54,0.5), transparent 60%);
}
.cc__shot-ui {
  position: absolute; inset: 28px;
  background: rgba(20,12,8,0.88);
  border: 1px solid rgba(244,237,223,0.1);
  border-radius: 10px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cc__shot-ui .row {
  display: flex; gap: 10px; align-items: center;
}
.cc__dot { width: 10px; height: 10px; border-radius: 999px; background: #444; }
.cc__dot:nth-child(2) { background: rgba(241,38,115,0.7); }
.cc__dot:nth-child(3) { background: rgba(244,237,223,0.4); }
.cc__shot-ui .score-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin-top: 4px;
}
.cc__shot-ui .score {
  background: rgba(244,237,223,0.04);
  border: 1px solid rgba(244,237,223,0.08);
  border-radius: 8px;
  padding: 16px;
}
.cc__shot-ui .score b {
  font-family: var(--font-display);
  font-size: 30px;
  color: var(--cream);
  display: block;
  line-height: 1;
}
.cc__shot-ui .score span {
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-50);
}
.cc__shot-ui .score .bar {
  height: 3px;
  border-radius: 99px;
  background: rgba(244,237,223,0.1);
  margin: 8px 0 6px;
  overflow: hidden;
}
.cc__shot-ui .score .bar i {
  display: block;
  height: 100%;
  background: var(--pink);
  border-radius: 99px;
}
.cc__shot-ui .heading {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.cc__shot-ui .heading b {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
  font-weight: 700;
}
.cc__shot-ui .heading span {
  font-family: var(--font-body);
  font-size: 10px;
  color: var(--cream-50);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* =========================================================
   Testimonials — dark featured + cards
   ========================================================= */
.t__featured {
  text-align: left;
  max-width: 1000px;
  margin: 48px auto 56px;
  position: relative;
}
.t__featured .quote-mark {
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--pink);
  line-height: 0.6;
  margin-bottom: -30px;
  display: block;
}
.t__featured blockquote {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 46px);
  line-height: 1.18;
  color: var(--cream);
  margin: 0 0 36px;
  letter-spacing: -0.005em;
  text-wrap: balance;
}
.t__featured blockquote em {
  font-style: normal;
  color: var(--pink);
}
.t__attrib {
  display: flex;
  align-items: center;
  gap: 16px;
}
.t__avatar {
  width: 56px; height: 56px;
  border-radius: 999px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #5a3d2a, #2a1810);
  border: 1px solid var(--cream-30);
  flex: 0 0 56px;
  display: grid;
  place-items: center;
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
}
.t__who {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--cream);
  line-height: 1;
}
.t__role {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-top: 4px;
}

.t__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.t__card {
  border: 1px solid var(--cream-12);
  border-radius: var(--r-lg);
  padding: 32px;
  background: rgba(244,237,223,0.02);
  transition: background-color var(--dur-med) var(--ease-out),
              border-color var(--dur-med) var(--ease-out);
}
.t__card:hover {
  background: rgba(244,237,223,0.04);
  border-color: var(--cream-30);
}
.t__card p {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--cream-68);
  margin: 0 0 28px;
}

/* =========================================================
   CTA
   ========================================================= */
.cta {
  text-align: left;
}
.cta__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: -0.015em;
  margin: 0;
}
.cta__right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 28px;
}
.cta__right .accent {
  font-family: var(--font-accent);
  font-size: 26px;
  color: var(--ink-68);
  line-height: 1.3;
  max-width: 440px;
}
.cta__sig {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta__sig .signed {
  font-family: var(--font-accent);
  font-size: 38px;
  color: var(--plum);
  line-height: 1;
}
.cta__sig .who {
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}

/* =========================================================
   Footer
   ========================================================= */
.footer {
  background: var(--bg-dark);
  color: var(--cream);
  padding: 80px 0 36px;
  position: relative;
  overflow: hidden;
}
.footer .container { position: relative; z-index: 1; }
/* Subtle surf watermark, built from a separated brand element */
.footer__deco {
  position: absolute;
  right: clamp(8px, 4vw, 80px);
  bottom: -16px;
  width: 150px;
  height: auto;
  opacity: 0.06;
  pointer-events: none;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--cream-12);
}
.footer__brand .wm {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 36px;
  letter-spacing: -0.005em;
  color: var(--cream);
  margin-bottom: 18px;
  line-height: 1;
}
.footer__brand .wm .dot { color: var(--pink); }
.footer__brand .tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--cream-68);
  line-height: 1.1;
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.footer__brand .tag2 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin-top: 22px;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-50);
  margin: 0 0 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; }
.footer__col li { margin-bottom: 10px; }
.footer__col a {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--cream);
  text-decoration: none;
}
.footer__col a:hover { opacity: 0.7; }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  flex-wrap: wrap;
  gap: 20px;
}
.footer__bottom .copy {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--cream-50);
}
.footer__social {
  display: flex;
  gap: 14px;
}
.footer__social a {
  width: 36px; height: 36px;
  border: 1px solid var(--cream-30);
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: var(--cream);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.footer__social a:hover {
  background: var(--cream);
  color: var(--ink);
  opacity: 1;
}

/* =========================================================
   Contact Modal
   ========================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out);
}
.modal.open { opacity: 1; pointer-events: auto; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(19,15,7,0.7);
  backdrop-filter: blur(6px);
}
.modal__panel {
  position: relative;
  width: min(560px, 100%);
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 40px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--sand);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  transition: transform var(--dur-med) var(--ease-out),
              opacity var(--dur-med) var(--ease-out);
}
.modal.open .modal__panel { transform: translateY(0) scale(1); opacity: 1; }
.modal__close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border: 1px solid var(--ink);
  background: transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1;
  color: var(--ink);
  transition: background-color var(--dur-fast) var(--ease-out), color var(--dur-fast) var(--ease-out);
}
.modal__close:hover { background: var(--ink); color: var(--cream); }
.modal__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 10px;
}
.modal__h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 42px;
  line-height: 1;
  letter-spacing: -0.005em;
  margin: 0 0 12px;
}
.modal__sub {
  font-family: var(--font-accent);
  font-size: 22px;
  color: var(--ink-68);
  margin: 0 0 28px;
}
.modal__form { display: grid; gap: 16px; }
.modal__field {
  display: grid;
  gap: 6px;
}
.modal__field label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-50);
}
.modal__field input,
.modal__field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--sand);
  background: var(--warm);
  border-radius: var(--r-md);
  color: var(--ink);
  resize: vertical;
}
.modal__field input:focus,
.modal__field textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.modal__success {
  text-align: left;
  padding: 32px 0;
}
.modal__success .check {
  width: 48px; height: 48px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--cream);
  display: grid; place-items: center;
  font-size: 24px;
  margin-bottom: 20px;
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .services__head, .work__head, .vendors__grid, .cta__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .posters { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .posters > .poster:nth-child(even) { margin-top: 0; }
  .poster--featured { aspect-ratio: 3 / 4.15; outline: none; }
  .t__cards { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .acc__row { grid-template-columns: 60px 1fr auto; gap: 16px; }
  .acc__body { grid-template-columns: 1fr; }
  /* Nav: hide desktop links, show burger */
  .nav__links { visibility: hidden; pointer-events: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .nav__drawer-cta { display: inline-flex; }
}

@media (max-width: 600px) {
  .footer__grid { grid-template-columns: 1fr; gap: 36px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 16px; }
  .posters { grid-template-columns: 1fr; }
  .cc__grid { grid-template-columns: 1fr; }
  .cc__feats { grid-template-columns: repeat(3, 1fr); gap: var(--s-3); }
  .t__featured blockquote { font-size: clamp(22px, 5vw, 32px); }
  .cta__grid h2 { font-size: clamp(32px, 7vw, 48px); }
  .modal__panel { padding: 28px 20px; }
  .modal__form > div[style] { grid-template-columns: 1fr !important; }
}

/* =========================================================
   Mobile Nav — hamburger + full-screen drawer
   ========================================================= */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--s-4);
}
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
@media (min-width: 981px) {
  .nav__burger { display: none; }
}
.nav__burger-bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  transition: transform var(--dur-med) var(--ease-out),
              opacity var(--dur-fast) var(--ease-out),
              background-color var(--dur-med) var(--ease-out);
}
/* Bar color matches logo state */
.nav--on-hero .nav__burger-bar { background: var(--cream); }
.nav--scrolled .nav__burger-bar,
.nav__burger-bar { background: var(--ink); }

/* Full-screen drawer */
.nav__drawer {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 200;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px var(--gutter) var(--s-8);
  transform: translateX(100%);
  transition: transform 350ms var(--ease-drawer, cubic-bezier(0.32, 0.72, 0, 1));
  pointer-events: none;
}
.nav__drawer--open {
  transform: translateX(0);
  pointer-events: auto;
}
.nav__drawer-close {
  position: absolute;
  top: 20px;
  right: var(--gutter);
  background: none;
  border: none;
  font-size: 22px;
  color: var(--ink);
  cursor: pointer;
  padding: 8px;
  line-height: 1;
  opacity: 0.6;
  transition: opacity var(--dur-fast) var(--ease-out);
}
.nav__drawer-close:hover { opacity: 1; }
.nav__drawer-links {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  margin-bottom: var(--s-8);
}
.nav__drawer-link {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 8vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__drawer-link:hover { color: var(--pink); }
.nav__drawer-cta {
  display: none;
  align-self: flex-start;
}

/* Burger X animation via class */
.nav__burger--open .nav__burger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger--open .nav__burger-bar:nth-child(2) { opacity: 0; }
.nav__burger--open .nav__burger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav__burger--open .nav__burger-bar { background: var(--ink) !important; }

/* Hero extra bottom padding on mobile for surf widget */
@media (max-width: 600px) {
  .hero { padding-bottom: 120px; }
  .hero__meta { bottom: 20px; }
}

/* =========================================================
   TYPE SYSTEM — MC Sequoia is reserved for PRIMARY HEADERS only
   (hero headline, section H2s, featured testimonial quote, modal H).
   Everything else — card titles, accordion rows, poster titles,
   list items, stats, wordmark — is Raleway. Cleaner, fewer voices.
   This block intentionally lives last so it overrides earlier rules.
   ========================================================= */
.nav__logo,
.footer__brand .wm {
  font-family: var(--font-body);
  font-weight: 800;
  letter-spacing: -0.015em;
}

.marquee__item,
.acc__num, .acc__title,
.poster__num, .poster__title, .poster__stats b,
.vendors__list li, .vendors__plus, .vendors__total .strike, .vendors__alt h3,
.t__avatar {
  font-family: var(--font-body);
}

/* Raleway lacks MC Sequoia's condensed weight, so firm these up */
.acc__title { font-weight: 700; letter-spacing: -0.01em; }
.poster__title { font-weight: 700; letter-spacing: -0.01em; }
.poster__num, .acc__num, .marquee__item,
.vendors__list li, .vendors__alt h3, .vendors__total .strike { font-weight: 700; }
.poster__stats b { font-weight: 800; letter-spacing: -0.01em; }
.t__avatar { font-weight: 700; }
.t__avatar--photo { object-fit: cover; object-position: center top; display: block; }

/* =========================================================
   Brand logos (vector)
   ========================================================= */
/* Nav brand: light logo on dark hero → crossfades to plum logo on scroll */
.nav__brand {
  position: relative;
  display: block;
  height: 54px;
  width: 144px;
  transition: width var(--dur-med) var(--ease-out),
              height var(--dur-med) var(--ease-out);
}
.nav__logo-light,
.nav__logo-dark {
  position: absolute;
  top: 50%; left: 0;
  transform: translateY(-50%);
  width: 100%; height: auto;
  transition: opacity var(--dur-med) var(--ease-out);
}
/* Default (on dark hero): show light cream logo */
.nav__logo-light { opacity: 1; }
.nav__logo-dark  { opacity: 0; }
/* Scrolled (cream bar): swap to plum logo */
.nav--scrolled .nav__brand { width: 120px; height: 45px; }
.nav--scrolled .nav__logo-light { opacity: 0; }
.nav--scrolled .nav__logo-dark  { opacity: 1; }
.nav__logo:hover .nav__logo-light { transform: translateY(-50%) rotate(-2deg); }
.nav__logo:hover .nav__logo-dark  { transform: translateY(-50%) rotate(-2deg); }

.footer__logo {
  display: block;
  width: min(320px, 78%);
  height: auto;
  margin-bottom: 22px;
}

/* Brand spot icons (separated from the element sheet).
   Mask-based so they recolor with `background-color`.
   Usage: <span class="brand-ico brand-ico--palm"></span> + set color. */
.brand-ico {
  display: inline-block;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  vertical-align: middle;
}
.brand-ico--glasses { -webkit-mask-image: url("assets/icon-glasses.svg"); mask-image: url("assets/icon-glasses.svg"); width: 2em; height: 0.96em; }
.brand-ico--shaka   { -webkit-mask-image: url("assets/icon-shaka.svg");   mask-image: url("assets/icon-shaka.svg");   width: 1.06em; height: 1em; }
.brand-ico--palm    { -webkit-mask-image: url("assets/icon-palm.svg");    mask-image: url("assets/icon-palm.svg");    width: 0.66em; height: 1em; }
.brand-ico--board   { -webkit-mask-image: url("assets/icon-board.svg");   mask-image: url("assets/icon-board.svg");   width: 0.45em; height: 1em; }

/* =========================================================
   Photography — full-bleed band + section backgrounds
   ========================================================= */
.band {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--dark) url("photos/lone-surfer.jpg") center 32% / cover no-repeat;
}
.band__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(19,15,7,0.32) 0%, rgba(19,15,7,0.52) 100%);
}
.band__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.band__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-68);
  margin-bottom: 18px;
}
.band__tag {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(44px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin: 0;
  text-wrap: balance;
}

/* Testimonials — subtle wave texture behind the dark overlay */
#testimonials { position: relative; }
#testimonials::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("photos/waves.jpg") center / cover no-repeat;
  opacity: 0.16;
  pointer-events: none;
}
#testimonials > .container { position: relative; z-index: 1; }

/* CTA — warm sand as a faint texture behind the cream section */
.cta {
  position: relative;
  background: var(--cream);
}
.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("photos/fin-sand.jpg") center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
}
.cta > .container { position: relative; z-index: 1; }

/* =========================================================
   Reduced motion — keep opacity/color, remove movement
   (Emil: reduced motion means gentler, not zero)
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal.in,
  .posters .poster,
  .reveal.in .posters .poster {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 200ms var(--ease-out) !important;
  }
  .marquee__track { animation: none !important; }
  .swap-word span { animation: none !important; }
  .poster:hover .poster__bg { transform: none !important; }
  html { scroll-behavior: auto !important; }
}

/* Centered eyebrow-row variant */
.eyebrow-row--center {
  justify-content: center;
}
.eyebrow-row--center::before { display: none; }
.eyebrow-row--center::after { display: none; }

/* =========================================================
   Summer illustration — hero floating badge
   ========================================================= */
.hero__summer-illo {
  position: absolute;
  bottom: -40px;
  left: clamp(-60px, -3vw, -20px);
  width: clamp(160px, 18vw, 260px);
  height: auto;
  z-index: 2;
  animation: summer-spin 28s linear infinite;
  opacity: 0.92;
  pointer-events: none;
}
@keyframes summer-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (max-width: 600px) {
  .hero__summer-illo {
    width: 110px;
    bottom: -20px;
    left: -20px;
    z-index: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .hero__summer-illo { animation: none; }
}
