/* ===========================================================
   Bradford Renovations - homepage concept
   Design language: Studio Creative (asymmetric, expressive)
   Palette source: bradfordrenovationsllc.com (slate #2b3d4f,
   accent cyan #5affff) + the navy of the logo on their trucks.
   =========================================================== */

:root {
  /* Ink family, deepened from their own slate */
  --ink:            #131f2a;
  --ink-2:          #1b2b39;
  --slate:          #2b3d4f;
  --slate-2:        #3b5168;
  --navy-mark:      #32466e;

  /* Their accent */
  --cyan:           #5affff;
  --cyan-soft:      rgba(90, 255, 255, 0.16);
  --cyan-line:      rgba(90, 255, 255, 0.4);
  --cyan-ink:       #0b5f6b;   /* darkened within hue for use on light grounds */

  /* Light grounds, pulled from the stone and plaster in their photography */
  --paper:          #f3f0ea;
  --paper-2:        #e7e1d7;
  --white:          #ffffff;

  --text-dark:      #16212b;
  --text-body:      #4a5763;
  --text-light:     #f2f6f8;
  --text-light-muted: rgba(242, 246, 248, 0.66);
  --hair-dark:      rgba(22, 33, 43, 0.14);
  --hair-light:     rgba(242, 246, 248, 0.18);

  --font-display:   "Coustard", Georgia, serif;
  --font-body:      "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  --wrap:           min(90%, 1100px);
  --wrap-wide:      min(94%, 1480px);
  --wrap-narrow:    min(90%, 780px);
  --nav-h:          88px;

  --ease-spring:    cubic-bezier(0.34, 1.3, 0.64, 1);
  --ease-out:       cubic-bezier(0.22, 0.61, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.68;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

p { margin: 0 0 1.15em; max-width: 68ch; }

:focus-visible {
  outline: 2px solid var(--cyan-ink);
  outline-offset: 3px;
  border-radius: 3px;
}

.on-dark :focus-visible { outline-color: var(--cyan); }

.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;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 300;
  background: var(--ink); color: var(--text-light);
  padding: 0.75rem 1.1rem; border-radius: 12px; font-size: 0.9rem;
  text-decoration: none; transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

/* ---------- shared bits ---------- */

.wrap       { width: var(--wrap);        margin-inline: auto; }
.wrap-wide  { width: var(--wrap-wide);   margin-inline: auto; }
.wrap-narrow{ width: var(--wrap-narrow); margin-inline: auto; }

.band { padding-block: clamp(4.5rem, 9vw, 8.5rem); position: relative; }
.band--tight { padding-block: clamp(3.25rem, 6vw, 5.5rem); }
.band--tall  { padding-block: clamp(5.5rem, 11vw, 10.5rem); }

.band--paper  { background: var(--paper); }
.band--paper2 { background: var(--paper-2); }
.band--white  { background: var(--white); }
.band--ink    { background: var(--ink); color: var(--text-light-muted); }
.band--slate  { background: var(--slate); color: var(--text-light-muted); }

.band--ink h2, .band--ink h3, .band--slate h2, .band--slate h3 { color: var(--text-light); }

.kicker {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-ink);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.25rem;
}
.kicker::after {
  content: ""; height: 1px; flex: 1; max-width: 84px;
  background: currentColor; opacity: 0.45;
}
.on-dark .kicker, .band--ink .kicker, .band--slate .kicker { color: var(--cyan); }

.h-section { font-size: clamp(1.95rem, 3.9vw, 3.35rem); }
.h-lead    { font-size: clamp(1.6rem, 2.8vw, 2.35rem); line-height: 1.12; }

.lede { font-size: clamp(1.075rem, 1.35vw, 1.2rem); line-height: 1.62; }

/* ---------- buttons ---------- */

.btn {
  display: inline-flex; align-items: center; gap: 0.7rem;
  min-height: 52px; padding: 0 1.5rem 0 1.6rem;
  border-radius: 999px; border: 1px solid transparent;
  font-family: var(--font-body); font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.01em; text-decoration: none; cursor: pointer;
  transition: transform 0.35s var(--ease-spring), background-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.btn__dot {
  width: 26px; height: 26px; border-radius: 50%;
  display: grid; place-items: center; flex: none;
  transition: transform 0.4s var(--ease-spring);
}
.btn__dot svg { width: 12px; height: 12px; display: block; }
.btn:hover .btn__dot { transform: translateX(3px) rotate(45deg); }

.btn--solid { background: var(--cyan); color: var(--ink); }
.btn--solid .btn__dot { background: var(--ink); color: var(--cyan); }
.btn--solid:hover { background: var(--white); }

.btn--dark { background: var(--ink); color: var(--text-light); }
.btn--dark .btn__dot { background: var(--cyan); color: var(--ink); }
.btn--dark:hover { background: var(--slate); }

.btn--ghost-light { border-color: rgba(242,246,248,0.42); color: var(--text-light); }
.btn--ghost-light .btn__dot { background: rgba(242,246,248,0.14); color: var(--text-light); }
.btn--ghost-light:hover { border-color: var(--cyan); color: var(--cyan); }

.btn--ghost-dark { border-color: rgba(22,33,43,0.3); color: var(--text-dark); }
.btn--ghost-dark .btn__dot { background: rgba(22,33,43,0.08); color: var(--text-dark); }
.btn--ghost-dark:hover { border-color: var(--ink); background: var(--ink); color: var(--text-light); }
.btn--ghost-dark:hover .btn__dot { background: var(--cyan); color: var(--ink); }

.textlink {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem; text-decoration: none;
  color: var(--cyan-ink); padding-block: 0.4rem;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease-spring);
}
.textlink:hover { gap: 0.85rem; }
.on-dark .textlink { color: var(--cyan); }

/* ---------- nav ---------- */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 90;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent;
  transition: background-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}
.nav.is-stuck {
  background: var(--ink);
  box-shadow: 0 12px 34px -18px rgba(0,0,0,0.85);
}
.nav__inner {
  width: var(--wrap-wide); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav__logo { display: block; flex: none; }
.nav__logo img { width: auto; height: 58px; max-width: 170px; object-fit: contain; }

.nav__links { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2rem); }
.nav__links a {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; text-decoration: none; color: var(--text-light);
  padding-block: 0.6rem; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0.15rem;
  height: 1px; background: var(--cyan); transition: right 0.35s var(--ease-out);
}
.nav__links a:hover::after { right: 0; }

.nav__cta { display: inline-flex; }

.nav__burger {
  display: none; width: 46px; height: 46px; flex: none;
  align-items: center; justify-content: center;
  background: none; border: 1px solid rgba(242,246,248,0.35);
  border-radius: 999px; cursor: pointer; padding: 0;
}
.nav__burger span {
  display: block; width: 18px; height: 1.5px; background: var(--text-light);
  position: relative;
}
.nav__burger span::before, .nav__burger span::after {
  content: ""; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--text-light);
}
.nav__burger span::before { top: -6px; }
.nav__burger span::after  { top: 6px; }

/* Drawer is a direct child of <body>, a sibling of the nav, so nothing
   upstream can create a stacking context above its close control. */
.drawer {
  position: fixed; inset: 0; z-index: 140;
  background: var(--ink);
  display: flex; flex-direction: column;
  padding: 1.15rem 0 clamp(2rem, 6vw, 3.5rem);
  opacity: 0; visibility: hidden; pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out),
              visibility 0s linear 0.32s;
}
.drawer[hidden] { display: none; }
.drawer.is-open {
  opacity: 1; visibility: visible; pointer-events: auto; transform: none;
  transition: opacity 0.32s var(--ease-out), transform 0.32s var(--ease-out),
              visibility 0s;
}
.drawer__top {
  width: var(--wrap-wide); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between;
  height: calc(var(--nav-h) - 1.15rem);
}
.drawer__top img { width: auto; height: 58px; max-width: 170px; object-fit: contain; }
.drawer__close {
  position: relative; z-index: 2;
  width: 46px; height: 46px; border-radius: 999px;
  border: 1px solid rgba(242,246,248,0.35); background: none; color: var(--text-light);
  cursor: pointer; display: grid; place-items: center; padding: 0;
}
.drawer__close svg { width: 15px; height: 15px; }
.drawer__body {
  width: var(--wrap-wide); margin-inline: auto;
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  gap: 0.25rem; overflow-y: auto;
}
.drawer__body a {
  font-family: var(--font-display); font-size: clamp(1.9rem, 8vw, 2.9rem);
  color: var(--text-light); text-decoration: none; letter-spacing: -0.025em;
  padding-block: 0.42rem; display: block;
}
.drawer__body a:hover { color: var(--cyan); }
.drawer__foot {
  width: var(--wrap-wide); margin-inline: auto;
  border-top: 1px solid var(--hair-light); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 0.75rem 1.5rem; align-items: center;
}
.drawer__foot a { color: var(--text-light); text-decoration: none; font-weight: 700; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: var(--ink);
  color: var(--text-light-muted);
  height: 100vh;
  height: 100svh;
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: stretch;
  overflow: hidden;
}

.hero__text {
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--nav-h) + 2rem) clamp(1.75rem, 4vw, 4.5rem) clamp(2.5rem, 5vw, 4rem)
           max(1.5rem, calc((100vw - min(94vw, 1480px)) / 2));
  position: relative; z-index: 2;
}
.hero__eyebrow {
  font-size: 0.74rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 0.8rem; margin-bottom: clamp(1.1rem, 2.4vw, 1.9rem);
}
.hero__eyebrow::before {
  content: ""; width: 34px; height: 1px; background: var(--cyan); flex: none;
}
.hero h1 {
  color: var(--text-light);
  font-size: clamp(2.15rem, 4.35vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: -0.028em;
  max-width: 15ch;
  margin-bottom: clamp(1.1rem, 2.2vw, 1.6rem);
}
.hero h1 .accent { color: var(--cyan); display: block; }
.hero__sub {
  font-size: clamp(1.02rem, 1.35vw, 1.22rem);
  line-height: 1.6;
  color: var(--text-light-muted);
  max-width: 34ch;
  margin-bottom: clamp(1.6rem, 3vw, 2.4rem);
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; }

.hero__media { position: relative; overflow: hidden; }
.hero__media img.hero__photo {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.hero__scrim {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(90deg, var(--ink) 0%, rgba(19,31,42,0.55) 26%,
              rgba(19,31,42,0.06) 48%, rgba(19,31,42,0) 62%);
}
/* the off-grid inset: Studio Creative breaking its own column */
.hero__inset {
  position: absolute; z-index: 3;
  left: clamp(-2.5rem, -3vw, -1.5rem);
  bottom: clamp(2rem, 6vh, 5rem);
  width: clamp(140px, 15vw, 232px);
  aspect-ratio: 3 / 4;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -26px rgba(0,0,0,0.85);
}
.hero__inset img { width: 100%; height: 100%; object-fit: cover; }

.hero__scrollcue {
  position: absolute; z-index: 4; bottom: 1.6rem;
  left: max(1.5rem, calc((100vw - min(94vw, 1480px)) / 2));
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-light-muted);
}
.hero__scrollcue span.rule {
  display: block; width: 46px; height: 1px; background: var(--cyan-line);
  transform-origin: left center;
}

/* ---------- intro ---------- */

.intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 5vw, 5.5rem);
  align-items: start;
}
.intro__grid h2 { max-width: 12ch; }
.intro__body p:last-child { margin-bottom: 0; }
.intro__meta {
  margin-top: clamp(2rem, 4vw, 3rem);
  display: flex; flex-wrap: wrap; gap: 0.6rem 0.75rem;
}
.intro__tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-dark);
  border: 1px solid var(--hair-dark); border-radius: 999px;
  padding: 0.45rem 0.95rem;
}

/* ---------- large-format services ---------- */

.svc { position: relative; }
.svc__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.75rem, 4vw, 4.5rem);
  align-items: center;
}
.svc__row + .svc__row { margin-top: clamp(3.5rem, 8vw, 7rem); }
.svc__row--flip .svc__media { order: 2; }

.svc__media {
  position: relative; border-radius: 16px; overflow: hidden;
  aspect-ratio: 4 / 3;
}
.svc__media img { width: 100%; height: 100%; object-fit: cover; }
.svc__media--tall { aspect-ratio: 3 / 4; }

.svc__copy h3 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
  margin-bottom: 1rem;
}
.svc__copy p { max-width: 46ch; }
.svc__list {
  list-style: none; margin: 1.75rem 0 0; padding: 0;
  display: grid; gap: 0.55rem;
}
.svc__list li {
  display: flex; gap: 0.7rem; align-items: baseline;
  font-size: 0.98rem;
}
.svc__list li::before {
  content: ""; width: 7px; height: 7px; flex: none; border-radius: 50%;
  background: var(--cyan-ink); transform: translateY(-2px);
}

/* ---------- the rest of the list ---------- */

.roster {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.roster__names { list-style: none; margin: 0; padding: 0; }
.roster__names li { border-top: 1px solid var(--hair-light); }
.roster__names li:last-child { border-bottom: 1px solid var(--hair-light); }
.roster__names span {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2.15rem);
  letter-spacing: -0.025em;
  color: var(--text-light);
  padding-block: clamp(0.7rem, 1.5vw, 1.05rem);
  transition: color 0.3s var(--ease-out), padding-left 0.4s var(--ease-spring);
}
.roster__names li:hover span { color: var(--cyan); padding-left: 0.6rem; }

/* ---------- gallery ---------- */

.gallery__head {
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 1.5rem clamp(1.5rem, 4vw, 3rem);
  margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.gallery__head p { margin: 0.9rem 0 0; max-width: 40ch; }

.filters {
  display: flex; gap: 0.5rem;
  overflow-x: auto; flex-wrap: nowrap;
  padding-bottom: 0.4rem;
  scrollbar-width: none; -ms-overflow-style: none;
  margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
  -webkit-overflow-scrolling: touch;
}
.filters::-webkit-scrollbar { display: none; }
.filter {
  flex: none; min-height: 44px; padding: 0 1.15rem;
  display: inline-flex; align-items: center;
  border-radius: 999px; border: 1px solid var(--hair-dark);
  background: transparent; color: var(--text-dark);
  font-family: var(--font-body); font-size: 0.85rem; font-weight: 700;
  letter-spacing: 0.05em; cursor: pointer; white-space: nowrap;
  transition: background-color 0.25s var(--ease-out), color 0.25s var(--ease-out),
              border-color 0.25s var(--ease-out);
}
.filter:hover { border-color: var(--ink); }
.filter[aria-pressed="true"] {
  background: var(--ink); border-color: var(--ink); color: var(--text-light);
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.6vw, 1.35rem);
}
.tile {
  position: relative; border-radius: 14px; overflow: hidden;
  aspect-ratio: 4 / 3; background: var(--paper-2);
}
.tile.is-hidden { display: none; }
.tile--tall { aspect-ratio: 3 / 4; }
.tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.tile:hover img { transform: scale(1.045); }
.tile__label {
  position: absolute; left: 0.85rem; bottom: 0.85rem;
  background: rgba(19,31,42,0.86);
  color: var(--text-light);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.42rem 0.7rem; border-radius: 8px;
  opacity: 0; transform: translateY(6px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
}
.tile:hover .tile__label, .tile:focus-within .tile__label { opacity: 1; transform: none; }

.gallery__empty {
  display: none; padding: clamp(2.5rem, 6vw, 4rem) 0;
  text-align: center; font-size: 1.05rem; color: var(--text-body);
  border: 1px dashed var(--hair-dark); border-radius: 16px;
}
.gallery__empty.is-shown { display: block; }

.gallery__more { margin-top: clamp(1.75rem, 3.5vw, 2.5rem); display: flex; }
.gallery__more.is-done { display: none; }

/* ---------- the detail strip (signature moment) ---------- */

.strip__head {
  display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between;
  gap: 1.25rem 2rem; margin-bottom: clamp(1.75rem, 3.5vw, 2.75rem);
}
.strip__head p { margin: 0.85rem 0 0; max-width: 38ch; color: var(--text-light-muted); }
.strip__hint {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--cyan);
  display: flex; align-items: center; gap: 0.6rem;
}
.strip__hint svg { width: 26px; height: 8px; }

.strip__scroller {
  display: flex; gap: clamp(0.85rem, 1.6vw, 1.4rem);
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  padding-inline: max(3vw, calc((100vw - min(94vw, 1480px)) / 2));
  margin-inline: calc(50% - 50vw);
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
}
.strip__scroller::-webkit-scrollbar { display: none; }
.strip__scroller.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.strip__item {
  flex: none; width: clamp(232px, 27vw, 400px);
  scroll-snap-align: center;
}
.strip__item figure { margin: 0; }
.strip__item .shot {
  border-radius: 14px; overflow: hidden; aspect-ratio: 3 / 4;
  background: var(--ink-2);
}
.strip__item img { width: 100%; height: 100%; object-fit: cover; }
.strip__item figcaption {
  margin-top: 0.9rem;
  font-size: 0.86rem; letter-spacing: 0.02em;
  color: var(--text-light-muted);
}
.strip__item figcaption b {
  display: block; color: var(--text-light); font-weight: 700;
  font-size: 0.74rem; letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 0.3rem;
}

/* ---------- reviews ---------- */

.quote__feature {
  border-top: 1px solid var(--hair-dark);
  padding-top: clamp(1.75rem, 3.5vw, 2.75rem);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.quote__feature blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.15vw, 1.85rem);
  line-height: 1.3; letter-spacing: -0.02em;
  color: var(--text-dark);
  max-width: 48ch;
}
.quote__feature .who { margin-top: 1.6rem; }

.who {
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--cyan-ink);
}
.who em {
  display: block; font-style: normal; color: var(--text-body);
  letter-spacing: 0.1em; font-size: 0.72rem; margin-top: 0.3rem;
}

.quotes {
  display: flex; gap: clamp(0.85rem, 1.6vw, 1.35rem);
  overflow-x: auto; scroll-snap-type: x proximity;
  padding-bottom: 1rem;
  padding-inline: max(5vw, calc((100vw - min(90vw, 1100px)) / 2));
  margin-inline: calc(50% - 50vw);
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.quotes::-webkit-scrollbar { display: none; }
.quotes figure {
  flex: none; width: clamp(268px, 30vw, 400px);
  scroll-snap-align: start;
  margin: 0; padding: clamp(1.5rem, 2.6vw, 2.1rem);
  background: var(--white); border-radius: 16px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 1.5rem;
}
.quotes blockquote { margin: 0; font-size: 0.98rem; line-height: 1.62; color: var(--text-body); }
.quotes blockquote p { max-width: none; margin: 0; }

/* ---------- about ---------- */

.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.about__stack { display: grid; gap: clamp(0.85rem, 1.6vw, 1.25rem); }
.about__stack figure { margin: 0; }
.about__stack .shot { border-radius: 16px; overflow: hidden; }
.about__stack .shot--portrait { aspect-ratio: 4 / 5; }
.about__stack .shot--crew { aspect-ratio: 4 / 3; }
.about__stack img { width: 100%; height: 100%; object-fit: cover; }
.about__stack figcaption {
  margin-top: 0.65rem; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--text-body);
}
.about__pair { display: grid; grid-template-columns: minmax(0,0.94fr) minmax(0,1.06fr); gap: clamp(0.85rem,1.6vw,1.25rem); align-items: end; }

/* ---------- CTA ---------- */

.cta { position: relative; overflow: hidden; }
.cta__inner {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}
.cta__shot { border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 3; }
.cta__shot img { width: 100%; height: 100%; object-fit: cover; }
.cta h2 { max-width: 16ch; margin-bottom: 1.25rem; }
.cta p { color: var(--text-light-muted); max-width: 44ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: clamp(1.75rem, 3.5vw, 2.5rem); }
.cta__rule { height: 2px; background: var(--cyan); width: 62px; margin-bottom: clamp(1.5rem,3vw,2rem); }

/* ---------- footer ---------- */

.footer { background: var(--ink-2); color: var(--text-light-muted); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.footer__logo img { width: auto; height: 104px; max-width: 210px; object-fit: contain; }
.footer h4 {
  font-family: var(--font-body); font-size: 0.74rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan);
  margin: 0 0 1rem;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.15rem; }
.footer a { color: var(--text-light-muted); text-decoration: none; display: inline-block; padding-block: 0.65rem; }
.footer a:hover { color: var(--cyan); }
.footer__note {
  margin-top: clamp(2.5rem, 5vw, 3.5rem); padding-top: 1.5rem;
  border-top: 1px solid var(--hair-light);
  display: flex; flex-wrap: wrap; gap: 0.5rem 1.5rem; justify-content: space-between;
  font-size: 0.82rem;
}
.footer__blurb { margin: 1.25rem 0 0; font-size: 0.9rem; max-width: 34ch; }

/* ---------- 404 ---------- */

.err {
  background: var(--ink); color: var(--text-light-muted);
  min-height: 100vh; min-height: 100svh;
  display: flex; align-items: center;
  padding-block: calc(var(--nav-h) + 3rem) 4rem;
}
.err__code {
  font-family: var(--font-display); font-size: clamp(5rem, 18vw, 12rem);
  line-height: 0.85; color: var(--cyan-soft); letter-spacing: -0.04em;
  margin-bottom: 1rem;
}
.err h1 { color: var(--text-light); font-size: clamp(1.9rem, 4.5vw, 3.2rem); margin-bottom: 1.15rem; }
.err p { max-width: 44ch; }

/* ---------- motion ---------- */

html.js .reveal { opacity: 0; transform: translateY(22px); }
html.js .hero__text > * { opacity: 0; }
html.js .hero__media, html.js .hero__inset { opacity: 0; }

@media (prefers-reduced-motion: reduce) {
  html.js .reveal, html.js .hero__text > *, html.js .hero__media, html.js .hero__inset {
    opacity: 1 !important; transform: none !important;
  }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

/* ===========================================================
   Responsive
   =========================================================== */

@media (max-width: 1100px) {
  .grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer__grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .footer__logo { grid-column: 1 / -1; }
}

@media (max-width: 960px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .hero {
    height: auto; min-height: 100svh;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .hero__text {
    order: 2;
    padding: clamp(1.9rem, 6vw, 2.9rem) 5vw clamp(3rem, 8vw, 4.25rem);
  }
  .hero__media { order: 1; height: 46vh; min-height: 300px; padding-top: 0; }
  .hero__scrim {
    background: linear-gradient(180deg, rgba(19,31,42,0.72) 0%, rgba(19,31,42,0.12) 34%,
                rgba(19,31,42,0.1) 62%, var(--ink) 100%);
  }
  .hero h1 { max-width: 18ch; }
  .hero__sub { max-width: 46ch; }
  .hero__inset {
    left: auto; right: 5vw; bottom: auto; top: calc(46vh - 86px);
    width: clamp(112px, 26vw, 160px);
  }
  .hero__scrollcue { display: none; }

  .intro__grid, .roster, .about__grid { grid-template-columns: minmax(0, 1fr); }
  .cta__inner { grid-template-columns: minmax(0, 1fr); }
  .svc__row { grid-template-columns: minmax(0, 1fr); }
  .svc__row--flip .svc__media { order: 0; }
  .svc__media, .svc__media--tall { aspect-ratio: 16 / 10; }
  .about__pair { grid-template-columns: minmax(0,1fr); }
  .about__stack .shot--portrait, .about__stack .shot--crew { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  body { font-size: 1.02rem; }
  .grid { grid-template-columns: minmax(0, 1fr); }
  .tile, .tile--tall { aspect-ratio: 4 / 3; }
  .footer__grid { grid-template-columns: minmax(0, 1fr); }
  .footer__logo { grid-column: auto; }
  .quote__feature blockquote { max-width: none; }
  .band { padding-block: clamp(3.5rem, 12vw, 5rem); }
}

@media (max-width: 420px) {
  .hero__inset { display: none; }
  .btn { width: 100%; justify-content: space-between; padding-right: 1.15rem; }
  .hero__actions .btn, .cta__actions .btn { width: 100%; }
}
