/* =========================================================
   SCAN-STICK — Large format print & cut
   Type-led, editorial, minimal. Gotham / coral / charcoal.
   ========================================================= */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Gotham";
  src: url("../Fonts/Gotham-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --coral: #499f38;
  --coral-deep: #3d8a2f;
  --charcoal: #34373B;
  --ink: #26282B;
  --paper: #FAFAF8;
  --white: #FFFFFF;
  --line: rgba(52, 55, 59, 0.16);
  --line-strong: rgba(52, 55, 59, 0.85);

  /* ---- Colour closer (contact/footer) ----
     The distinctive end-of-scroll colour moment. Single variable —
     tweak the exact green (or any deep tone) here; all footer text
     is white/off-white so it survives the swap. */
  --closer-bg: #F1F5EE;

  --font: "Gotham", "Helvetica Neue", Helvetica, Arial, sans-serif;
  /* Secondary "technical" voice — loaded from Google Fonts for now, can be self-hosted later */
  --mono: "Space Mono", "Courier New", monospace;

  --space: clamp(1.44rem, 4.6vw, 2.88rem);
  --section-pad: clamp(4.5rem, 10vw, 8.5rem);
  --max: 82rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 4.25rem;

  /* clipped-corner "tag" motif, echoing the logo */
  --tag-clip: polygon(0 0, 100% 0, 100% calc(100% - 1.1em), calc(100% - 1.1em) 100%, 0 100%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 1rem);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.45;
  color: var(--charcoal);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
ul, ol { list-style: none; }
em { font-weight: 500; font-style: normal; }

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s var(--ease), background-color 0.25s var(--ease), opacity 0.25s var(--ease);
}

::selection { background: var(--coral); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 3px;
  border-radius: 1px;
}
.about :focus-visible { outline-color: var(--white); }

.skip-link {
  position: absolute;
  top: 0.75rem; left: 0.75rem;
  z-index: 200;
  padding: 0.75rem 1.25rem;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform: translateY(-300%);
}
.skip-link:focus { transform: none; }

.container {
  width: 100%;
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: var(--space);
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
}
/* Logo + hamburger are white. Once scrolled the whole (transparent) header blends
   "difference" so the mark + hamburger invert against whatever content is behind
   them — no bar background. The blend must sit on the fixed element itself. */
.brand-logo { filter: brightness(0) invert(1); }
.nav-toggle { color: #fff; }
.nav-toggle-bars i { background: #fff; }
.site-header.scrolled { mix-blend-mode: difference; }
/* When the dropdown is open, drop the blend and give a solid bar so the menu reads */
.site-header.scrolled:has(.site-nav.is-open) {
  mix-blend-mode: normal;
  background: rgba(250, 250, 248, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.site-header.scrolled:has(.site-nav.is-open) .brand-logo { filter: none; }
.site-header.scrolled:has(.site-nav.is-open) .nav-toggle { color: var(--charcoal); }
.site-header.scrolled:has(.site-nav.is-open) .nav-toggle-bars i { background: var(--charcoal); }

/* Desktop, at the very top: expand to the inline nav (no hamburger). */
@media (min-width: 48em) {
  .site-header:not(.scrolled) .nav-toggle { display: none; }
  .site-header:not(.scrolled) .nav-menu {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 2.75rem);
    min-width: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
  }
  .site-header:not(.scrolled) .nav-menu a {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 0.45em;
    font-size: 0.74rem;
    padding: 0.35rem 0;
    border: 0;
    color: #fff;
  }
  .site-header:not(.scrolled) .nav-menu a:hover { color: var(--coral); }
  .site-header:not(.scrolled) .nav-cta {
    border: 1.5px solid #fff;
    padding: 0.55rem 1.1rem !important;
  }
  .site-header:not(.scrolled) .nav-cta:hover { border-color: var(--coral); background: transparent; color: #fff !important; }
}

.header-inner {
  max-width: 100%;
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 3vw, 2.25rem);
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand { display: inline-flex; align-items: center; flex-shrink: 0; }
.brand-logo { width: auto; height: 1.9rem; }

/* --- Nav --- */
.site-nav { position: relative; }
.nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: none;
  border: 0;
  font: inherit;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  padding: 0.5rem 0;
}
.nav-toggle-bars { display: inline-flex; flex-direction: column; gap: 5px; width: 1.4rem; }
.nav-toggle-bars i {
  display: block;
  height: 2px;
  background: currentColor;
  transition: transform 0.3s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:first-child { transform: translateY(3.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars i:last-child { transform: translateY(-3.5px) rotate(-45deg); }

/* Collapsed dropdown (default — used for the hamburger on scroll and on mobile) */
.nav-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  min-width: 13rem;
  display: none;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 36px rgba(52, 55, 59, 0.16);
  padding: 0.4rem 1.1rem 0.9rem;
}
.site-nav.is-open .nav-menu { display: flex; }
.nav-menu a {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  gap: 0.6em;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.8rem 0.15rem;
  border-bottom: 1px solid var(--line);
}
.nav-menu li:last-child a { border-bottom: 0; }
.nav-index {
  font-size: 0.68em;
  font-weight: 400;
  color: var(--coral);
  letter-spacing: 0;
}
.nav-menu a:hover { color: var(--coral); }
.nav-menu a:hover .nav-index { color: inherit; }

.nav-cta {
  padding: 0.8rem 0.15rem !important;
}
.nav-cta:hover { color: var(--coral) !important; }

/* =========================================================
   HERO — full-bleed photo with white Gotham headline
   (swap .hero-bg src in index.html to change the select)
   ========================================================= */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--paper);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-block: clamp(7rem, 16vh, 11rem) clamp(3rem, 7vh, 6rem);
}
.hero-slides { position: absolute; inset: 0; }
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.hero-bg.is-active { opacity: 1; }
/* The clip is brighter footage than the stills — knock it back so it sits with them under the scrim */
video.hero-bg { filter: brightness(0.62) contrast(1.03); }
/* Shrimp-dinner shot: drop the crop down so the adidas trefoil (upper third) stays in frame at all sizes */
.hero-bg[src*="adidas-shrimp-dinner"] { object-position: 50% 35%; }
@media (prefers-reduced-motion: reduce) {
  .hero-bg { transition: none; }
}
/* scrim for legibility over the photo */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.38) 45%, rgba(0, 0, 0, 0.6) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero :focus-visible { outline-color: var(--paper); }

.kicker {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.hero-heading {
  font-weight: 700;
  font-size: clamp(2.35rem, 7.5vw, 6.25rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 18ch;
}
.hero-heading { color: var(--white); }
.hero-heading em { color: var(--coral); font-weight: 700; }

/* let the headline wrap naturally on small screens; honour art-directed breaks on larger ones */
.hero-heading br { display: none; }
@media (min-width: 40em) { .hero-heading br { display: inline; } }

/* --- Badge motif --- */
.hero-badge-wrap {
  margin-top: clamp(3rem, 7vw, 5.5rem);
  max-width: 34rem;
}

.hero-verbs {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(0.72rem, 1.4vw, 0.88rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  padding-inline: 0.15rem;
}
.hero-verbs li[aria-hidden] { color: var(--coral); letter-spacing: 0; }
.hero .hero-verbs { color: var(--white); }

.hero-badge {
  color: var(--charcoal); /* white sticker card over the photo */
  border: 2.5px solid var(--charcoal);
  clip-path: var(--tag-clip);
  padding: clamp(1.5rem, 4vw, 2.25rem) clamp(1.5rem, 4vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--white);
}
.hero-badge-line {
  font-weight: 400;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  letter-spacing: 0.01em;
}
.hero-badge-quote {
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--coral);
}

.hero-foot {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem;
}
.hero-note {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 30ch;
  line-height: 1.5;
}
.hero .btn { background: var(--coral); }
.hero .btn:hover { background: var(--paper); color: var(--charcoal); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
  background: var(--charcoal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.05rem 1.6rem;
  clip-path: var(--tag-clip);
  transition: background-color 0.25s var(--ease);
}
.btn:hover { background: var(--coral); }
.btn-arrow { transition: transform 0.25s var(--ease); }
.btn:hover .btn-arrow { transform: translateY(0.15em); }
.btn:hover .btn-arrow:last-child { transform: translateX(0.25em) translateY(0); }

.btn-light { background: var(--paper); color: var(--charcoal); }
.btn-light:hover { background: var(--charcoal); color: var(--paper); }
.btn-light:hover .btn-arrow { transform: translateX(0.25em); }

/* =========================================================
   MARQUEE (ambient, disabled under reduced motion)
   ========================================================= */
.marquee {
  overflow: hidden;
  background: var(--coral);
  color: var(--white);
  border-block: 1px solid var(--coral-deep);
  padding-block: 0.8rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  white-space: nowrap;
  font-family: var(--mono);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.5vw, 1rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* =========================================================
   PHOTO BANDS — full-bleed imagery with white Gotham overlay
   (swap the <img src> in index.html to change a select)
   ========================================================= */
.photo-band {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(20rem, 62vh, 34rem);
  overflow: hidden;
  background: var(--charcoal);
}
.photo-band .photo-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.4s var(--ease);
}
.photo-band .photo-media--img { opacity: 1; }
.photo-band.show-video .photo-media--img { opacity: 0; }
.photo-band.show-video .photo-media--video { opacity: 1; }
/* scrim for headline legibility */
.photo-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
}
.photo-band .container {
  position: relative;
  z-index: 1;
  padding-block: clamp(2rem, 5vw, 3.5rem) clamp(3rem, 6.5vw, 5rem);
}
.photo-heading {
  font-weight: 700;
  font-size: clamp(1.65rem, 4.2vw, 3.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
  max-width: 18ch;
  text-wrap: balance;
}
/* Flow label — matches the Our Work tile captions, locked bottom-right */
.photo-cap {
  position: absolute;
  z-index: 2;
  right: var(--space);
  bottom: clamp(1.5rem, 4vw, 2.5rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: right;
}
.photo-cap-name {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  color: #fff;
}
.photo-cap-desc {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
/* Cross-fade the two captions in step with the still/video swap */
.photo-cap { transition: opacity 1.4s var(--ease); }
.photo-cap--liz { opacity: 0; }
.photo-band.show-video .photo-cap.photo-cap--flow { opacity: 0; }
.photo-band.show-video .photo-cap.photo-cap--liz { opacity: 1; }

/* =========================================================
   SECTION SCAFFOLD
   ========================================================= */
section { padding-block: var(--section-pad); }

/* Tighten the gap between the gallery and the clients section */
.gallery { padding-bottom: clamp(2.75rem, 6vw, 5rem); }
.clients { padding-top: clamp(2.75rem, 6vw, 5rem); }

.section-head {
  display: grid;
  gap: 1rem;
  margin-bottom: clamp(2.75rem, 6vw, 4.5rem);
}
.section-index {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--coral);
}
.section-title {
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.section-standfirst {
  max-width: 42ch;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: rgba(52, 55, 59, 0.7);
}

@media (min-width: 56em) {
  .section-head {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    align-items: end;
    column-gap: var(--space);
  }
  .section-index { grid-column: 1 / -1; }
  .section-standfirst { justify-self: end; text-align: left; }
}

/* =========================================================
   WORK — editorial index list
   ========================================================= */
.work { padding-top: calc(var(--section-pad) * 0.85); }

.work-index { border-top: 1px solid var(--line-strong); }

.work-item {
  --pad-x: clamp(0.75rem, 2.5vw, 2rem);
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "no   tags"
    "body body";
  gap: 0.75rem var(--space);
  padding: clamp(1.75rem, 4vw, 2.75rem) var(--pad-x);
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}

.work-no {
  grid-area: no;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  padding-top: 0.5em;
  transition: color 0.3s var(--ease);
}

.work-body { grid-area: body; max-width: 56ch; }

.work-title {
  font-weight: 700;
  font-size: clamp(1.75rem, 4.5vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.work-strap {
  margin-top: 0.5rem;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--coral);
  transition: color 0.3s var(--ease);
}

.work-blurb {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(52, 55, 59, 0.78);
  transition: color 0.3s var(--ease);
}

/* spec-sheet detail line — materials & processes */
.work-spec {
  margin-top: 0.9rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(52, 55, 59, 0.55);
  transition: color 0.3s var(--ease);
}

.work-tags {
  grid-area: tags;
  justify-self: end;
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(52, 55, 59, 0.55);
  padding-top: 0.6em;
  transition: color 0.3s var(--ease);
}

/* Hover / focus: flood row with the project's accent colour */
@media (hover: hover) {
  .work-item:hover {
    background: var(--accent);
    color: var(--accent-ink);
  }
  .work-item:hover .work-no,
  .work-item:hover .work-strap { color: var(--accent-ink); }
  .work-item:hover .work-blurb,
  .work-item:hover .work-spec,
  .work-item:hover .work-tags { color: var(--accent-ink); opacity: 0.85; }
}

@media (min-width: 56em) {
  .work-item {
    grid-template-columns: 6rem 1fr auto;
    grid-template-areas: "no body tags";
    align-items: start;
  }
}

/* =========================================================
   SERVICES
   ========================================================= */
.services {
  background: var(--white);
  border-block: 1px solid var(--line);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: 1fr;
  border-top: 1px solid var(--line-strong);
  border-left: 1px solid var(--line-strong);
}
.services-grid li {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  justify-content: space-between;
  min-height: 8.5rem;
  padding: 1.4rem 1.5rem;
  border-right: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  font-weight: 700;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.25;
  letter-spacing: -0.01em;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.svc-no {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--coral);
  transition: color 0.3s var(--ease);
}
@media (hover: hover) {
  .services-grid li:hover { background: var(--charcoal); color: var(--paper); }
  .services-grid li:hover .svc-no { color: var(--coral); }
}

@media (min-width: 40em) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 64em) { .services-grid { grid-template-columns: repeat(5, 1fr); } }

.services-note {
  margin-top: clamp(2rem, 4vw, 3rem);
  max-width: 62ch;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.6;
  color: rgba(52, 55, 59, 0.78);
}

/* =========================================================
   ABOUT — coral full-bleed
   ========================================================= */
.about {
  background: var(--coral);
  color: var(--charcoal);
}
.about .section-title { color: var(--charcoal); }
.about .section-index { color: var(--charcoal); }
.about .section-standfirst { color: rgba(52, 55, 59, 0.8); }

.about-statement {
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 16ch;
  text-wrap: balance;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}
.about-statement em { color: var(--charcoal); font-weight: 700; }

.about-cols {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 68rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.4;
}
@media (min-width: 48em) {
  .about-cols { grid-template-columns: 1fr 1fr; }
}

.about-facts {
  margin-top: clamp(3rem, 7vw, 5rem);
  border-top: 2px solid var(--ink);
  display: grid;
  gap: 0;
}
.about-facts > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1.5rem;
  padding-block: 1.1rem;
  border-bottom: 1px solid rgba(38, 40, 43, 0.35);
}
.about-facts dt {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.about-facts dd {
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  text-align: right;
}
@media (min-width: 56em) {
  .about-facts { grid-template-columns: repeat(2, 1fr); column-gap: clamp(2rem, 5vw, 4rem); }
}

/* =========================================================
   GALLERY — full-bleed, gapless mosaic, hover captions
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(5px, 0.7vw, 9px);
  padding: clamp(5px, 0.7vw, 9px);
  background: var(--white);
  grid-auto-rows: clamp(230px, 62vw, 340px);
}
@media (min-width: 40em) {
  .gallery-grid {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: clamp(240px, 26vw, 430px);
  }
  .tile { grid-column: span var(--span, 4); }
}

/* Hatched filler boxes for the leftover columns at row ends (desktop mosaic only) */
.gap-fill { display: none; }
@media (min-width: 40em) {
  .gap-fill {
    display: block;
    grid-column: span var(--span, 1);
    background-color: var(--white);
    background-image: repeating-linear-gradient(
      -45deg,
      var(--coral) 0, var(--coral) 1.5px,
      transparent 1.5px, transparent 12px
    );
  }
}

.tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  background: var(--charcoal);
}
.tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease), opacity 0.35s var(--ease);
}
.tile:hover img,
.tile:focus-within img { transform: scale(1.04); }
/* zoom in on the Public menu board (crops out the dark negative space) */
.tile--public img { transform: scale(1.75); transform-origin: 50% 43%; }
.tile--public:hover img,
.tile--public:focus-within img { transform: scale(1.82); }
/* coral wash on hover */
.tile::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--coral);
  mix-blend-mode: multiply;
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.tile:hover::before,
.tile:focus-within::before { opacity: 0.16; }

.tile-cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1.4rem 1.15rem 1rem;
  color: #fff;
  text-align: left;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.28) 55%, transparent 100%);
}
.tile-name {
  font-weight: 700;
  font-size: clamp(1.05rem, 1.7vw, 1.4rem);
  letter-spacing: -0.015em;
  line-height: 1.05;
  transform: translateY(0.35rem);
  transition: transform 0.4s var(--ease);
}
.tile:hover .tile-name,
.tile:focus-within .tile-name { transform: translateY(0); }
.tile-desc {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  opacity: 0;
  transform: translateY(0.35rem);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.tile:hover .tile-desc,
.tile:focus-within .tile-desc { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .tile img, .tile-name, .tile-desc { transition: none; }
  .tile-name, .tile-desc { transform: none; }
  .tile-desc { opacity: 1; }
}

/* tile frame arrows */
.tile-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.6rem;
  height: 2.6rem;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--coral);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  opacity: 1;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s var(--ease), background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.tile-nav--prev { left: 0.6rem; }
.tile-nav--next { right: 0.6rem; }
.tile-nav svg { display: block; }
.tile-nav:hover { color: var(--coral-deep); transform: translateY(-50%) scale(1.08); }
.tile-nav:focus-visible { outline: 2px solid var(--coral); outline-offset: 2px; }

/* =========================================================
   CLIENTS — logotype text wall
   ========================================================= */
.clients-list {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.4em 0;
  border-top: 1px solid var(--line-strong);
  padding-top: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  font-size: clamp(1.5rem, 4.2vw, 3rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}
.clients-list li { color: var(--charcoal); transition: color 0.25s var(--ease); }
.clients-list li:not(:last-child)::after {
  content: "/";
  margin-inline: 0.45em;
  color: var(--coral);
  font-weight: 400;
}
@media (hover: hover) {
  .clients-list:hover li { color: rgba(52, 55, 59, 0.3); }
  .clients-list li:hover { color: var(--coral); }
}

/* =========================================================
   FOOTER / CONTACT — charcoal full-bleed
   ========================================================= */
.site-footer {
  position: relative;
  background: var(--closer-bg);
  color: var(--charcoal);
  border-top: 1px solid rgba(52, 55, 59, 0.12);
  padding-block: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 3vw, 2.25rem);
}

.footer-index { color: rgba(52, 55, 59, 0.6); margin-bottom: clamp(1.1rem, 2.5vw, 1.75rem); }

.footer-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  max-width: 14ch;
  text-wrap: balance;
}
.footer-heading { color: var(--charcoal); }
.footer-heading em { color: var(--charcoal); }

.footer-cta { margin-top: clamp(1.5rem, 3vw, 2.25rem); background: #F2604C; color: #FFFFFF; }
.footer-cta:hover { background: #E14E3A; color: #FFFFFF; }
.footer-cta:hover .btn-arrow { transform: translateX(0.25em); }

.footer-grid {
  margin-top: clamp(2.25rem, 5vw, 3.5rem);
  padding-top: clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(52, 55, 59, 0.15);
  display: grid;
  gap: 1.75rem var(--space);
  font-size: 0.9rem;
  line-height: 1.5;
}
@media (min-width: 48em) {
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

.footer-label {
  font-family: var(--mono);
  font-weight: 400;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(52, 55, 59, 0.6);
  margin-bottom: 0.75rem;
}
.footer-link:hover {
  color: #F2604C;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.footer-nav { display: grid; gap: 0.15rem; }

.footer-base {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);
  padding-top: 1.4rem;
  border-top: 1px solid rgba(52, 55, 59, 0.15);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem 2rem;
}
.footer-logo {
  height: 1.6rem;
  width: auto;
  /* black PNG stays dark on the off-white footer */
  filter: none;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(52, 55, 59, 0.5);
}

/* =========================================================
   CORNER PEEL — two-tone folded sticker corner (deck motif)
   ========================================================= */
.corner-peel {
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 90;
  width: clamp(44px, 5.5vw, 64px);
  pointer-events: none;
  filter: drop-shadow(-5px -5px 12px rgba(0, 0, 0, 0.14));
}
.corner-peel svg { display: block; width: 100%; height: auto; }

/* =========================================================
   REVEAL ON SCROLL (JS adds .in-view; no-JS stays visible)
   ========================================================= */
@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(1.25rem);
    transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  }
  .js .reveal.in-view {
    opacity: 1;
    transform: none;
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .site-header, .marquee, .btn, .skip-link { display: none; }
  body { background: #fff; color: #000; }
}


/* ============ INSTAGRAM GRID ============ */
.insta { padding: clamp(4rem, 9vw, 7rem) 0 4px; background: var(--white); }
.insta .section-head { margin-bottom: clamp(1.5rem, 4vw, 2.75rem); }
.insta-handle { color: var(--coral); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s ease; }
.insta-handle:hover, .insta-handle:focus-visible { border-color: var(--coral); }
.insta-grid { display: grid; grid-template-columns: repeat(8, 1fr); gap: 4px; padding-inline: 4px; }
.insta-cell { display: block; position: relative; aspect-ratio: 1 / 1; overflow: hidden; background: var(--ink); }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .45s ease, opacity .45s ease; }
.insta-cell:hover img, .insta-cell:focus-visible img { transform: scale(1.07); }
.insta-cell::after { content: ""; position: absolute; inset: 0; background: var(--coral); opacity: 0; mix-blend-mode: multiply; transition: opacity .35s ease; }
.insta-cell:hover::after { opacity: .22; }
@media (max-width: 1100px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 760px)  {
  .insta-grid { grid-template-columns: repeat(4, 1fr); }
  /* trim the feed to 15 tiles on mobile so the section stays compact */
  .insta-cell:nth-child(n+16) { display: none; }
}
@media (max-width: 460px)  { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 3px; } }
@media (prefers-reduced-motion: reduce) { .insta-cell img { transition: none; } }

/* ============ HERO LOGO (white, centred over photo) ============ */
.hero-logo-wrap { display: flex; justify-content: center; width: 100%; }
.hero-logo {
  width: min(56vw, 563px);
  height: auto;
  filter: brightness(0) invert(1);
}

/* ============ INTRO — tagline + CTA (moved out of hero) ============ */
.intro {
  background: var(--paper);
  padding-block: clamp(4.5rem, 11vw, 9rem);
}
.intro-heading {
  font-weight: 700;
  font-size: clamp(1.9rem, 5vw, 4.25rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  text-wrap: balance;
  max-width: 18ch;
  color: var(--charcoal);
}
.intro-heading em { color: var(--coral); font-weight: 700; font-style: normal; }
.intro-heading br { display: none; }
@media (min-width: 40em) { .intro-heading br { display: inline; } }
.intro-foot {
  margin-top: clamp(3rem, 6vw, 4.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem 3rem;
}
.intro-note {
  font-size: 0.9rem;
  color: rgba(52, 55, 59, 0.72);
  max-width: 30ch;
  line-height: 1.4;
}

/* Condensed "about" copy, woven into the intro. Two columns on
   desktop (echoing the old .about-cols), single column on mobile. */
.intro-body {
  margin-top: clamp(2rem, 5vw, 3.5rem);
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
  max-width: 68rem;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.4;
  color: var(--charcoal);
}
.intro-body em { font-style: normal; font-weight: 500; }
@media (min-width: 48em) {
  .intro-body { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   GRAFFITI STICKER BAND (desktop cursor delight)
   ---------------------------------------------------------
   A medium full-bleed band over a graffiti wall (Images/red-wall.jpg)
   that doubles as the interactive sticker stage (hooked via
   [data-sticker-stage] on <section class="sticker-band">).
   js/stickers.js appends a .sticker-layer + one reusable
   .sticker-follower and deposits stickers on mouse-click. No
   heading/scrim — a pure sticker wall. Feature = that markup +
   this block + js/stickers.js. All classes are `sticker-` prefixed.

   Stacking (bottom -> top) INSIDE the band, which is its own
   stacking context (position:relative + z-index):
     graffiti bg (z:auto) -> sticker layer (z:1) ->
     follower (z:2) -> clear button (z:3)
   The band's own z-index lifts the whole context ABOVE both the
   preceding Services section AND the following Our work gallery
   (whose tile captions sit at z-index:2 in the page), so stickers
   bleed OVER both neighbours. overflow:clip (never scrolls) +
   overflow-clip-margin let stickers spill ~200px UP and DOWN
   without any scroll container or horizontal/vertical scrollbar.
   NOTE: no touch-action override — the band stays scrollable on
   touch (the JS also disables itself entirely on coarse pointers).
   ========================================================= */
.sticker-band {
  position: relative;
  z-index: 3;                    /* > gallery tile-caps (z:2) so bleed paints over both sides */
  min-height: clamp(37.95rem, 79.5vh, 58.5rem); /* +15%, then +50% */
  overflow-x: clip;              /* clip sideways at the viewport edges (no horizontal page scroll) */
  overflow-y: visible;           /* let deposited stickers spill up/down into the neighbouring sections */
  background: var(--charcoal);   /* fallback while the graffiti photo loads */
  cursor: crosshair;
  -webkit-tap-highlight-color: transparent;
}
/* Full-bleed graffiti background — NO dark overlay/scrim. */
.sticker-band-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Deposited-sticker layer fills the band and sits ABOVE the
   graffiti bg but BELOW the clear button. Never blocks clicks. */
/* Single canvas that holds the whole deposited pile (see stickers.js). */
.sticker-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  will-change: transform;   /* own GPU layer: compositor keeps the bleed stable on scroll (no re-clip flash) */
}

/* Cursor-follow preview sizing: width/height stay auto and JS sets
   max-width/max-height to the same value, so the LONGEST side is
   constrained and aspect ratio preserved (some source PNGs are ~3x
   taller than wide). Position comes from transform only.
   NOTE: no drop-shadow filter here — a filter on an element that
   moves every frame forces Safari to re-rasterise it constantly,
   which is what made the follow feel laggy. Deposited stickers get
   their subtle shadow painted into the canvas instead. */
.sticker-follower {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

/* Cursor-follow preview: one reused element, above the pile.
   Hidden until the mouse is inside (.sticker-stage--live) and
   hidden again while hovering a protected zone
   (.sticker-stage--over-protected) so it reads as "can't place
   here". Leaving the hero for the fixed header bar fires the
   stage's pointerleave, which also hides it. Fade skipped under
   reduced motion. */
.sticker-follower {
  z-index: 2;                 /* above the deposited pile */
  opacity: 0;
  visibility: hidden;
  will-change: transform;     /* only the follower moves every frame */
  transition: opacity 0.18s var(--ease), visibility 0s 0.18s;
}
.sticker-stage--live .sticker-follower {
  opacity: 0.92;
  visibility: visible;
  transition: opacity 0.18s var(--ease);
}
.sticker-stage--live.sticker-stage--over-protected .sticker-follower {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.12s var(--ease);
}
.sticker-follower.sticker-no-motion,
.sticker-stage--live .sticker-follower.sticker-no-motion {
  transition: none;
}
@media (prefers-reduced-motion: reduce) {
  .sticker-follower { transition: none !important; }
}

/* ---- "Clear stickers" reset — anchored bottom-centre of the
   band. Appears once the first sticker lands (stage gains
   .sticker-stage--used). The wrap is pointer-events:none so only
   the button is a hit target (the rest of the bottom strip still
   accepts stickers); the button is also a [data-no-sticker]
   no-deposit zone. Styled to read over the red graffiti wall:
   white/translucent pill that fills on hover. ---- */
.sticker-clear-wrap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(1.25rem, 4vh, 2.5rem);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
/* Quote CTA — mirrors the Clear Stickers control's size/placement at the top */
.sticker-quote-wrap {
  position: absolute;
  left: 0;
  right: 0;
  top: clamp(1.25rem, 4vh, 2.5rem);
  z-index: 3;
  text-align: center;
  pointer-events: none;
}
.sticker-quote {
  pointer-events: auto;
  display: inline-block;
  text-decoration: none;
  font-family: var(--font);
  font-weight: 700;
  font-size: clamp(0.82rem, 1.15vw, 0.98rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--coral);
  border: 0;
  border-radius: 100px;
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
  transition: background-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.sticker-quote:hover { background: var(--coral-deep); transform: translateY(-2px); }
.sticker-quote:focus-visible { outline: 2px solid var(--white); outline-offset: 3px; }
.sticker-clear {
  pointer-events: auto;
  font-family: var(--mono);
  font-weight: 700;
  font-size: 0.66rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 100px;
  padding: 0.5rem 1.05rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              visibility 0s 0.3s, background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.sticker-stage--used .sticker-clear {
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease),
              background-color 0.2s var(--ease), color 0.2s var(--ease);
}
.sticker-clear:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--charcoal);
}
.sticker-clear:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
  .sticker-clear { transition: opacity 0.2s, visibility 0s; transform: none; }
}

/* ---- Touch-only "tap to stick" prompt ----
   Desktop gets the cursor-follow sticker as its affordance, so this is
   hidden there and only shown on coarse/touch pointers. pointer-events
   stays none (a tap on it still lands a sticker), and it fades away once
   the first sticker is placed (band gains .sticker-stage--used). */
.sticker-hint { display: none; }
@media (hover: none) and (pointer: coarse) {
  .sticker-hint {
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    margin: 0;
    padding: 0.65em 1.1em;
    border-radius: 999px;
    background: rgba(52, 55, 59, 0.92);
    color: var(--paper);
    font-family: var(--mono);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.45s var(--ease);
    animation: sticker-hint-pulse 2.4s var(--ease) infinite;
  }
  .sticker-stage--used .sticker-hint { opacity: 0; animation: none; }
}
@keyframes sticker-hint-pulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50%      { transform: translate(-50%, -50%) scale(1.06); }
}
@media (prefers-reduced-motion: reduce) {
  .sticker-hint { animation: none !important; }
}

/* =========================================================
   FREE STICKER PACK — spinning badge + form modal
   ========================================================= */
.pack-badge {
  position: absolute;
  text-decoration: none;
  right: clamp(1.25rem, 4vw, 2.75rem);
  bottom: clamp(3rem, 8vw, 5.5rem);   /* clears the fixed corner-peel */
  z-index: 6;
  width: clamp(132px, 17vw, 172px);
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  border-radius: 50%;
  transition: transform 0.3s var(--ease);
}
.pack-badge:hover { transform: scale(1.06); }
.pack-badge:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
.pack-badge-sticker {
  position: absolute;
  inset: 11%;
  width: 78%;
  height: 78%;
  border-radius: 50%;
  object-fit: cover;
  transform-origin: 50% 50%;
  transition: transform 0.4s var(--ease);
}
.pack-badge:hover .pack-badge-sticker,
.pack-badge:focus-visible .pack-badge-sticker { transform: rotate(9deg) scale(1.05); }
.pack-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: 50% 50%;
  animation: pack-spin 20s linear infinite;
}
.pack-badge-ring text {
  font-family: var(--mono);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: 0.5px;
  fill: var(--charcoal);
}
@keyframes pack-spin { to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .pack-badge-ring { animation: none; } }
@media (max-width: 34em) {
  .pack-badge { width: 116px; right: 1rem; bottom: 1.25rem; }
}

/* ---- Modal ---- */
.pack-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.25s var(--ease);
}
.pack-modal.is-open { opacity: 1; }
.pack-modal[hidden] { display: none; }
.pack-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 27, 29, 0.55);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}
.pack-modal-card {
  position: relative;
  width: min(30rem, 100%);
  max-height: calc(100dvh - 3rem);
  overflow-y: auto;
  background: var(--paper);
  padding: clamp(1.75rem, 4vw, 2.75rem);
  transform: translateY(8px);
  transition: transform 0.25s var(--ease);
}
.pack-modal.is-open .pack-modal-card { transform: none; }
.pack-modal-close {
  position: absolute;
  top: 0.6rem;
  right: 0.8rem;
  width: 2.2rem;
  height: 2.2rem;
  border: 0;
  background: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--charcoal);
  cursor: pointer;
}
.pack-modal-close:hover { color: var(--coral); }
.pack-modal-kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.5rem;
}
.pack-modal-title {
  font-weight: 700;
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.pack-modal-lead {
  margin-top: 0.6rem;
  font-size: 0.95rem;
  color: rgba(52, 55, 59, 0.8);
}
.pack-form { margin-top: 1.5rem; display: grid; gap: 1rem; }
.pack-field { display: grid; gap: 0.35rem; }
.pack-field label {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--charcoal);
}
.pack-field label span { color: rgba(52, 55, 59, 0.5); }
.pack-field input,
.pack-field textarea {
  font: inherit;
  font-size: 1rem;
  color: var(--charcoal);
  background: var(--white);
  border: 1px solid var(--line-strong);
  border-radius: 0;
  padding: 0.7rem 0.8rem;
  width: 100%;
}
.pack-field input:focus-visible,
.pack-field textarea:focus-visible { outline: 3px solid var(--coral); outline-offset: 1px; }
.pack-field textarea { resize: vertical; }
.pack-submit { margin-top: 0.5rem; justify-self: start; }
.pack-hp { position: absolute; left: -9999px; }
@media (prefers-reduced-motion: reduce) {
  .pack-modal, .pack-modal-card { transition: none; }
}
