/* ============================================================
   P&S Specialist Joinery — design system
   Palette derived entirely from the logo: ink, signal red, cream,
   plus a real warm-grey ramp between the two.
   ============================================================ */

:root {
  /* colour */
  --ink:        #141210;
  --ink-2:      #1d1a17;   /* raised dark surface */
  --cream:      #f2ecdf;
  --cream-2:    #f7f3ea;   /* light page ground */
  --cream-3:    #e9e2d2;   /* cream section ground */
  --red:        #b3252c;
  --red-deep:   #8f1d23;
  --red-bright: #c9363e;  /* red for text on ink — clears AA large-text 3:1 */
  /* warm-grey ramp (ink → cream) */
  --grey-1:     #3a362f;
  --grey-2:     #5b564e;
  --grey-3:     #8a8378;
  --grey-4:     #c9c2b2;

  /* type scale, ratio ≈ 1.28 */
  --fs--1: 0.8125rem;
  --fs-0:  1.0625rem;
  --fs-1:  1.375rem;
  --fs-2:  1.75rem;
  --fs-3:  2.25rem;
  --fs-4:  clamp(2.1rem, 1.3rem + 2.6vw, 3.4rem);   /* section titles */
  --fs-hero: clamp(2.8rem, 1.4rem + 5.4vw, 5.6rem);

  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-body: "Inter", "Helvetica Neue", Arial, sans-serif;

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1280px;
  --pad-section: clamp(4.5rem, 3rem + 6vw, 10rem);
}

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

html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  font-size: var(--fs-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream-2);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; }

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

/* Focus — visible, on brand, never removed */
:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed; top: -100%; left: 1rem; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 0.6rem 1rem; text-decoration: none; font-size: var(--fs--1);
  transition: top 0.2s var(--ease);
}
.skip-link:focus-visible { top: 1rem; }

/* ---------- primitives ---------- */

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 3rem);
}
.container--narrow { max-width: 880px; }

.section { padding-block: var(--pad-section); }
/* anchor arrivals clear the fixed nav (nav ≈ 90px + breathing room) */
[id] { scroll-margin-top: 110px; }
.section--light { background: var(--cream-2); color: var(--ink); }
.section--cream { background: var(--cream-3); color: var(--ink); }
.section--dark  { background: var(--ink); color: var(--cream); }

.eyebrow {
  display: block;
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-2);
  font-style: normal;
}
.eyebrow--oncream { color: var(--grey-4); }

.section__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-4);
  line-height: 1.12;
  letter-spacing: -0.015em;
  margin: 0.75rem 0 2.5rem;
  max-width: 18ch;
}

/* buttons */
.btn {
  display: inline-block;
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 1.05rem 1.9rem;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease),
              background-color 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease);
  will-change: transform;
}
.btn--primary {
  background: var(--red);
  color: var(--cream);
}
.btn--primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 14px 34px -12px rgba(143, 29, 35, 0.55);
}
.btn--ghost {
  border-color: var(--grey-4);
  color: var(--cream);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
}

/* ============================================================ PRELOADER */

.preloader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--ink);
  display: grid; place-items: center;
}
.preloader[hidden] { display: none; }
.preloader__inner { text-align: center; }
.preloader__mark { width: clamp(64px, 10vw, 96px); height: auto; margin-inline: auto; }
.preloader__name {
  margin-top: 1.4rem;
  display: grid; gap: 0.35rem;
}
.preloader__ps {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 2rem;
  color: var(--red);
  line-height: 1;
}
.preloader__sub {
  font-size: 0.7rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--cream);
}

/* ============================================================ NAV */

.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 90;
  transition: background-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  background: transparent;
}
.nav.is-solid {
  background: rgba(20, 18, 16, 0.96);
  box-shadow: 0 10px 30px -18px rgba(0, 0, 0, 0.7);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0.55rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; gap: 2rem;
}
.nav__brand img { width: 74px; height: 74px; object-fit: contain; }
.nav__links {
  margin-left: auto;
  display: flex; align-items: center; gap: 2rem;
}
.nav__links a {
  color: var(--cream);
  text-decoration: none;
  font-size: var(--fs--1);
  font-weight: 500;
  letter-spacing: 0.06em;
  position: relative;
  padding-block: 0.4rem;
}
/* red underline draws left → right */
.nav__links a::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); }
.nav__phone { color: var(--grey-4) !important; font-variant-numeric: tabular-nums; }
.nav__cta { padding: 0.8rem 1.4rem; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  background: none; border: 0; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 7px;
}
.nav__burger span {
  display: block; width: 26px; height: 2px;
  background: var(--cream);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.nav__burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(4.5px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:nth-child(2) { transform: translateY(-4.5px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav__cta { display: none; }
  .nav__burger { display: flex; margin-left: auto; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    background: var(--ink);
    flex-direction: column; justify-content: center; gap: 1.6rem;
    font-size: var(--fs-1);
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav__links a { font-size: var(--fs-1); }
  .nav.is-open .nav__links { opacity: 1; pointer-events: auto; }
}

/* ============================================================ HERO */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: flex-end;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__video {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  /* 35–45% ink veil + a stronger foot for text legibility */
  background:
    linear-gradient(to top, rgba(20,18,16,0.82) 0%, rgba(20,18,16,0.25) 45%, rgba(20,18,16,0.35) 100%);
}
.hero__content {
  position: relative;
  width: 100%;
  padding-bottom: clamp(4rem, 9vh, 7.5rem);
  padding-top: 9rem;
}
.hero__eyebrow { color: var(--grey-4); }
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-hero);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 1.1rem 0 1.4rem;
}
.hero__line { display: block; overflow: hidden; }
.hero__line > span { display: inline-block; }
.hero__sub {
  max-width: 46ch;
  color: var(--cream);
  opacity: 0.88;
  margin-bottom: 2.2rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scrollcue {
  position: absolute; bottom: 2.2rem; right: clamp(1.25rem, 4vw, 3rem);
}
.hero__scrollcue span {
  display: block; width: 1px; height: 64px;
  background: linear-gradient(var(--cream), transparent);
  animation: cue 2.4s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Mobile: static poster, no video download */
@media (max-width: 720px) {
  .hero__video { display: none; }
  .hero__media {
    background: url("../video/hero-poster.jpg") center / cover no-repeat;
  }
}

/* ============================================================ CRAFT */

.craft__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  margin-top: 1rem;
}
.craft__statement p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-3);
  line-height: 1.25;
  letter-spacing: -0.01em;
  max-width: 22ch;
}
.craft__body { color: var(--grey-1); }
.craft__body p + p { margin-top: 1.1rem; }

.craft__stats {
  margin-top: clamp(3rem, 6vw, 5.5rem);
  padding-top: 2.5rem;
  border-top: 1px solid var(--grey-4);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.stat__num {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-4);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat__num--text { font-size: var(--fs-3); padding-top: 0.35rem; }
.stat__label { margin-top: 0.6rem; }

@media (max-width: 820px) {
  .craft__grid { grid-template-columns: 1fr; }
  .craft__stats { grid-template-columns: 1fr; gap: 1.6rem; }
}

/* ============================================================ MARQUEE */

.marquee {
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-block: 1.35rem;
  border-block: 1px solid var(--grey-1);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 75s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__group {
  white-space: nowrap;
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  padding-right: 0.5em;
}
.marquee__group i { font-style: normal; color: var(--red-bright); padding-inline: 1.1em; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================================ SERVICES */

.services__list { list-style: none; }
.service {
  display: grid;
  grid-template-columns: 4rem 1fr 1.2fr;
  gap: 1.5rem 2.5rem;
  align-items: baseline;
  padding-block: 1.9rem;
  border-top: 1px solid var(--grey-4);
  transition: background-color 0.35s var(--ease);
}
.services__list .service:last-child { border-bottom: 1px solid var(--grey-4); }
.service__index {
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--red);
  font-variant-numeric: tabular-nums;
}
.service__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-2);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.service__desc { color: var(--grey-2); }

@media (max-width: 720px) {
  .service { grid-template-columns: 3rem 1fr; }
  .service__desc { grid-column: 2; }
}

/* ============================================================ PROCESS */

.process__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.process__steps { list-style: none; display: grid; gap: 2.6rem; }
.process__step h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-2);
  margin: 0.4rem 0 0.5rem;
}
.process__step p { color: var(--grey-4); max-width: 42ch; }

.process__figure { text-align: center; }
.assembly { width: min(100%, 440px); height: auto; margin-inline: auto; }
.process__figcaption { margin-top: 1rem; }

@media (max-width: 900px) {
  .process__grid { grid-template-columns: 1fr; }
  .process__figure { order: -1; }
  .assembly { width: min(100%, 340px); }
}

/* ---------- scroll scrub ---------- */

.scrub { margin-top: var(--pad-section); }
.scrub__stage {
  position: relative;
  height: 100svh;
  display: grid; place-items: center;
  overflow: hidden;
}
.scrub__video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
}
.scrub__copy {
  position: relative;
  text-align: center;
  padding-inline: 1.5rem;
  max-width: 780px;
}
.scrub__line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-4);
  line-height: 1.15;
  margin-top: 1rem;
  text-shadow: 0 2px 30px rgba(20, 18, 16, 0.8);
}
.scrub__line em { font-style: italic; color: var(--red-bright); }

/* Mobile / reduced motion: unpinned, calm static band */
@media (max-width: 900px) {
  .scrub__stage { height: auto; min-height: 60svh; padding-block: 5rem; }
}

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

/* Structured editorial composition: one tall portrait anchors the left,
   a stack of two landscapes on the right, then a balanced second band.
   Every frame's crop is fixed by aspect-ratio + object-fit — image files
   never dictate layout. */
.work__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: auto;
  gap: clamp(1.25rem, 2.2vw, 2rem);
  margin-top: 1rem;
}
.work__item { position: relative; overflow: hidden; margin: 0; }
.work__item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s var(--ease);
}
.work__item:hover img { transform: scale(1.04); }

.work__item:nth-child(1) { grid-column: 1 / 7;  grid-row: 1 / 3; }
.work__item:nth-child(1) img { position: absolute; inset: 0; } /* fills both rows */
.work__item:nth-child(2) { grid-column: 7 / 13; grid-row: 1; aspect-ratio: 4 / 3; }
.work__item:nth-child(3) { grid-column: 7 / 13; grid-row: 2; aspect-ratio: 4 / 3; }
.work__item:nth-child(4) { grid-column: 1 / 6;  grid-row: 3; aspect-ratio: 4 / 5; }
.work__item:nth-child(5) { grid-column: 6 / 13; grid-row: 3; aspect-ratio: 16 / 10; margin-top: 64px; }

@media (max-width: 820px) {
  .work__item:nth-child(n) { grid-column: 1 / 13; grid-row: auto; aspect-ratio: 4 / 3; margin-top: 0; }
  .work__item:nth-child(1) img { position: static; }
}

/* captions: hidden until hover/focus, then the scrim fades up and the
   eyebrow + title rise in — staggered, sharing the image's scale gesture */
.work__cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.6rem 1.4rem 1.2rem;
  color: var(--cream);
  background: linear-gradient(to top, rgba(20,18,16,0.85), rgba(20,18,16,0.15) 55%, transparent);
  font-family: var(--font-display);
  font-size: var(--fs-1);
  line-height: 1.3;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
}
.work__cap .eyebrow,
.work__cap__t {
  display: block;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.42s var(--ease), opacity 0.42s var(--ease);
}
.work__cap .eyebrow { color: var(--grey-4); margin-bottom: 0.2rem; font-size: 0.68rem; }

.work__item:hover .work__cap,
.work__item:focus-within .work__cap { opacity: 1; }
.work__item:hover .work__cap .eyebrow,
.work__item:focus-within .work__cap .eyebrow,
.work__item:hover .work__cap__t,
.work__item:focus-within .work__cap__t { transform: translateY(0); opacity: 1; }
.work__item:hover .work__cap__t,
.work__item:focus-within .work__cap__t { transition-delay: 0.08s; }

/* touch devices (no hover): keep captions visible but understated */
@media (hover: none) {
  .work__cap { opacity: 1; background: linear-gradient(to top, rgba(20,18,16,0.7), transparent 75%); }
  .work__cap .eyebrow, .work__cap__t { transform: none; opacity: 1; }
}
@media (prefers-reduced-motion: reduce) {
  .work__cap, .work__cap .eyebrow, .work__cap__t { transition: opacity 0.2s linear; }
}

/* ---------- brand grain band divider ---------- */

.grain-band {
  position: relative;
  height: 32vh;
  min-height: 190px;
  max-height: 340px;
  /* ~80–100px of cream above; space below is the B/A's reduced top padding */
  margin-top: clamp(5rem, 8vw, 6.25rem);
  overflow: hidden;
  background: #100e0c;
}
.grain-band__svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.grain-band .container {
  position: relative;              /* sits above the svg; anchors the caption */
  height: 100%;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding-bottom: 1.5rem;
}
.grain-band__cap {
  color: var(--cream);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.75);   /* keeps AA over the lightest grain */
}
@media (max-width: 720px) {
  .grain-band { height: 20vh; min-height: 120px; }
}

/* ---------- before / after ---------- */

.ba {
  max-width: 980px;
  margin-inline: auto;
  /* top tightened so it reads as connected to the band above */
  padding-top: clamp(5rem, 8vw, 6.25rem);
  padding-bottom: clamp(3.5rem, 7vw, 8.75rem);
}
.ba__head { text-align: center; margin-bottom: 2.2rem; }
.ba__head .eyebrow { margin-bottom: 0.6rem; }
.ba__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-3);
  line-height: 1.15;
}
.ba__sub { color: var(--grey-2); margin-top: 0.5rem; }
.ba__frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  margin-inline: auto;
  cursor: ew-resize;
  user-select: none;
  touch-action: pan-y;
}
.ba__img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  object-position: center 58%;   /* keep the staircase, both frames crop alike */
}
.ba__beforewrap {
  position: absolute; inset: 0;
  overflow: hidden;
  /* clipped from the right edge as the divider moves; width set inline by JS */
  clip-path: inset(0 50% 0 0);
}
.ba__divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--cream);
  box-shadow: 0 0 18px rgba(0,0,0,0.5);
}
.ba__handle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--red);
  color: var(--cream);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px -8px rgba(0,0,0,0.6);
}
.ba__tag {
  position: absolute; top: 1rem;
  color: var(--cream);
  background: rgba(20,18,16,0.65);
  padding: 0.35rem 0.7rem;
  pointer-events: none;
}
.ba__tag--before { left: 1rem; }
.ba__tag--after { right: 1rem; }

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

.quotes__list { display: grid; gap: clamp(2.5rem, 5vw, 4rem); margin-top: 2rem; }
.quote { max-width: 60ch; }
.quote:nth-child(even) { justify-self: end; text-align: right; }
.quote p {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-2);
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.quote cite { margin-top: 0.8rem; }

/* ============================================================ CONTACT */

.contact__grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: start;
}
.contact__lede { color: var(--grey-1); max-width: 46ch; }
.contact__phone {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: var(--fs-3);
  color: var(--ink);
  text-decoration: none;
  margin: 1.2rem 0 2rem;
  border-bottom: 2px solid var(--red);
  line-height: 1.3;
}

.form { display: grid; gap: 1.3rem; max-width: 560px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form__field { display: grid; gap: 0.4rem; }
.form__field label {
  font-size: var(--fs--1);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--grey-2);
}
.form__field input,
.form__field select,
.form__field textarea {
  font: inherit;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--grey-4);
  padding: 0.55rem 0.1rem;
  border-radius: 0;
  transition: border-color 0.3s var(--ease);
}
.form__field textarea { resize: vertical; }
.form__field input:focus,
.form__field select:focus,
.form__field textarea:focus {
  outline: none;
  border-bottom-color: var(--red);
}
.form__field.is-invalid input,
.form__field.is-invalid select,
.form__field.is-invalid textarea { border-bottom-color: var(--red); }
.form__error {
  font-size: var(--fs--1);
  color: var(--red-deep);
  min-height: 1.2em;
}
.form__submit { justify-self: start; }
.form__success {
  border-left: 2px solid var(--red);
  padding-left: 1rem;
  color: var(--grey-1);
}

.contact__map iframe {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  filter: grayscale(0.85) contrast(1.05);
}
.contact__addr {
  margin-top: 1rem;
  color: var(--grey-2);
  font-size: var(--fs--1);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .contact__grid { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
}

/* ============================================================ FOOTER */

.footer {
  background: var(--ink);
  color: var(--cream);
  padding-top: clamp(3.5rem, 6vw, 6rem);
}
.footer a { color: var(--cream); text-decoration: none; }
.footer a:hover { color: var(--grey-4); }
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer__brand img { width: 96px; height: 96px; object-fit: contain; }
.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--fs-1);
  margin-top: 1rem;
  max-width: 16ch;
  line-height: 1.35;
}
.footer__col .eyebrow { margin-bottom: 0.8rem; }
.footer__col p { color: var(--grey-4); }
.footer__col p a { color: var(--cream); }
.footer__social { display: flex; gap: 1.2rem; margin-top: 0.6rem; }
.footer__social a {
  font-size: var(--fs--1);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--grey-2);
  padding-bottom: 2px;
}
.footer__legal {
  border-top: 1px solid var(--grey-1);
  padding-block: 1.5rem;
  color: var(--grey-3);
  font-size: var(--fs--1);
}
@media (max-width: 720px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   Motion prep — initial states are applied by JS (gsap.set) so the
   page is fully readable if JS fails. Reduced-motion users get
   plain content: all GSAP work is gated behind matchMedia in JS.
   ============================================================ */
