/* =========================================================================
   KimFilms.com — pixel-faithful clone (self-contained, no build step)
   Working base for the Selah Cinema rebuild. Fidelity is the only goal.
   Values taken verbatim from docs/research/components/*.spec.md.
   ========================================================================= */

/* ---------- Fonts (self-hosted) ---------- */
@font-face {
  font-family: 'PonteExtraLight';
  src: url('public/fonts/ponte-extralight.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PonteExtraLightItalic';
  src: url('public/fonts/ponte-extralightitalic.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PonteLight';
  src: url('public/fonts/ponte-light.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'PonteLightItalic';
  src: url('public/fonts/ponte-lightitalic.woff') format('woff');
  font-weight: normal; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Albert Sans';
  src: url('public/fonts/albert-sans.woff2') format('woff2');
  font-weight: 100 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Red Hat Display';
  src: url('public/fonts/red-hat-display.woff2') format('woff2');
  font-weight: 300 900; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'EB Garamond';
  src: url('public/fonts/eb-garamond-italic.woff2') format('woff2');
  font-weight: 400 700; font-style: italic; font-display: swap;
}

/* ---------- Tokens ---------- */
:root {
  --ink: #251F18;          /* primary warm near-black */
  --ink-soft: #2E2D2D;     /* founder name, pull-quotes */
  --ink-brown: #443F3D;    /* portfolio couple names */
  --white: #FFFFFF;
  --paper: #FFFFFF;
  --cream: #FCFBF9;        /* warm panel */
  --dark: #251F18;         /* dark section fill */
  --deep: #0D191C;         /* deepest cool near-black */
  --sage: #8A9E96;         /* dusty sage accent (footer) — warmed off blue-gray */

  --serif: 'PonteExtraLight', 'Times New Roman', serif;
  --serif-italic: 'PonteExtraLightItalic', 'Times New Roman', serif;
  --serif-light: 'PonteLight', 'Times New Roman', serif;
  --serif-light-italic: 'PonteLightItalic', 'Times New Roman', serif;
  --body: 'Albert Sans', -apple-system, system-ui, sans-serif;
  --ui: 'Red Hat Display', -apple-system, system-ui, sans-serif;
  --garamond: 'EB Garamond', Georgia, serif;

  --max: 1200px;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: auto; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 40px; width: 100%; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; }
.reveal.in-view { animation: fadeIn 0.5s ease-out both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ---------- UI helpers ---------- */
.eyebrow-ui {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.eyebrow-garamond {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 26px;
  line-height: 1.2;
  color: var(--ink);
}
.textlink {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 2.4px;
  color: var(--ink);
  display: inline-block;
  transition: opacity 0.4s ease;
}
.textlink:hover { opacity: 0.55; }
.textlink--sm { font-size: 12px; letter-spacing: 1.8px; }
.textlink--white { color: var(--white); }
.hoverfade { transition: opacity 0.4s ease; }
.hoverfade:hover { opacity: 0.78; }

/* =========================================================================
   0. STICKY NAV (fixed, transparent, unchanged on scroll)
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 10;
  height: 53px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  background: transparent;
  pointer-events: none;
}
.nav a {
  pointer-events: auto;
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: var(--ink);
  transition: opacity 0.5s ease;
}
.nav a:hover { opacity: 0.5; }
.nav .nav-contact { position: absolute; right: 40px; }
.nav-toggle { display: none; }

/* =========================================================================
   0b. TOP BAND (in-flow header + KIMFILMS wordmark intro)
   ========================================================================= */
.topband {
  padding: 74px 0 0;
  text-align: center;
  background: var(--paper);
}
.wordmark {
  font-family: var(--serif);
  font-size: 148px;
  font-weight: 400;
  letter-spacing: 29.6px;
  line-height: 133.2px;
  color: var(--ink);
  text-indent: 29.6px; /* balance the trailing tracking */
  white-space: nowrap;
}

/* =========================================================================
   1. HERO — two video panels + KF monogram + eyebrows
   ========================================================================= */
.hero {
  position: relative;
  height: 900px;
  display: flex;
}
.hero__panel {
  position: relative;
  flex: 1 1 50%;
  overflow: hidden;
  background: #cfd4d2;
}
.hero__panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-desktop { display: flex; width: 100%; }
.hero-mobile { display: none; }
.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.hero__monogram { width: 92px; height: auto; margin-bottom: 4px; opacity: 0.95; }
.hero__monogram svg, .hero__monogram img { width: 100%; height: auto; }
.hero__eyebrow {
  font-family: var(--serif-light);
  font-size: 37px;
  line-height: 44.4px;
  color: var(--white);
  letter-spacing: 2px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.25);
}
.hero__estd {
  font-family: var(--ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 2.6px;
  text-transform: uppercase;
  color: var(--white);
  margin-top: 22px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero__contact {
  pointer-events: auto;
  margin-top: 30px;
  color: var(--white);
}

/* =========================================================================
   2. MANIFESTO
   ========================================================================= */
.manifesto {
  background: var(--paper);
  padding: 120px 0 130px;
  text-align: center;
}
.manifesto__eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 26px;
  line-height: 31.2px;
  color: var(--ink);
  margin-bottom: 36px;
}
.manifesto__title {
  font-family: var(--serif);
  font-size: 82px;
  letter-spacing: -0.82px;
  line-height: 82px;
  color: var(--ink);
  text-transform: uppercase;
  margin: 0 auto 44px;
  max-width: 1000px;
}
.manifesto__body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 28.8px;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto;
}

/* =========================================================================
   3. WHAT WE DO — dark band, 4-word list + polaroid stack
   ========================================================================= */
.what-we-do {
  position: relative;
  z-index: 1;
  color: var(--white);
  padding: 110px 0 120px;
  overflow: hidden;
  background: #b9bcbd; /* salt-flat mid-tone fallback under the image */
}
/* Light photographic salt-flat landscape (with the couple at left) behind the block */
.what-we-do .wwd__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('public/images/what-we-do/garrt-overlay.png') left center / cover no-repeat;
}
/* soft wash so the white words hold contrast over the pale flat */
.what-we-do .wwd__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(55,60,66,0.30) 0%, rgba(90,96,102,0.16) 42%, rgba(120,126,132,0.04) 100%);
}
.what-we-do .wrap { position: relative; z-index: 2; }
.what-we-do .grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 40px;
  align-items: center;
}
.wwd__eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  margin-bottom: 26px;
}
.wwd__word {
  font-family: var(--serif);
  font-size: 95px;
  letter-spacing: -0.95px;
  line-height: 95px;
  color: var(--white);
  text-transform: uppercase;
  display: block;
  text-shadow: 0 2px 24px rgba(30,34,38,0.35);
}
.wwd__eyebrow { text-shadow: 0 1px 14px rgba(30,34,38,0.4); }
.wwd__body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 28.8px;
  color: var(--white);
  max-width: 460px;
  margin: 40px 0 26px;
  text-shadow: 0 1px 12px rgba(30,34,38,0.5);
}
.wwd__link { color: var(--white); text-shadow: 0 1px 12px rgba(30,34,38,0.5); }

/* Polaroid composite */
.polaroids {
  position: relative;
  min-height: 640px;
}
.polaroid {
  position: absolute;
  width: 190px;
  aspect-ratio: 400 / 492;
  z-index: 2;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
}
.polaroid .frame {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  z-index: 1;
}
.polaroid .photo {
  position: absolute;
  top: 8%; left: 8%;
  width: 84%; height: 69%;
  object-fit: cover;
  z-index: 2;
}
.polaroid--1 { top: 20px;  right: 30px;  transform: rotate(6deg);  width: 205px; }
.polaroid--2 { top: 210px; right: 175px; transform: rotate(-5deg); width: 200px; z-index: 3; }
.polaroid--3 { top: 360px; right: 20px;  transform: rotate(4deg);  width: 210px; }

/* =========================================================================
   4. BEHIND THE CAMERA — founder split
   ========================================================================= */
.about {
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 110px 0 120px;
}
.about .grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about__eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 26px;
  color: var(--ink);
  margin-bottom: 22px;
}
.about__name {
  font-family: var(--serif);
  font-size: 95px;
  line-height: 95px;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 40px;
}
.about__bio {
  font-family: var(--body);
  font-size: 20px;
  line-height: 32px;
  color: var(--ink);
  max-width: 440px;
  margin-bottom: 40px;
}
.about__media {
  position: relative;
}
.about__portrait {
  width: 100%;
  aspect-ratio: 800 / 1198;
  object-fit: cover;
}
.about__signature {
  position: absolute;
  right: -18px;
  bottom: 40px;
  width: 150px;
  z-index: 3;
}

/* =========================================================================
   5 + 10. PULL-QUOTES
   ========================================================================= */
.pullquote {
  position: relative;
  z-index: 2;
  background: var(--paper);
  padding: 120px 0;
  text-align: center;
}
.pullquote__text {
  font-family: var(--serif-light);
  font-size: 50px;
  line-height: 55px;
  text-transform: uppercase;
  color: var(--ink-soft);
  max-width: 900px;
  margin: 0 auto 34px;
}
.pullquote__attr {
  font-family: var(--garamond);
  font-style: italic;
  font-weight: 500;
  font-size: 22px;
  color: var(--ink);
}
.pullquote--b .pullquote__text { font-size: 45px; line-height: 45px; }

/* =========================================================================
   6 + 8. VIDEO BANDS
   ========================================================================= */
.video-band {
  position: relative;
  height: 710px;
  overflow: hidden;
  background: #000;
}
.video-band video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-band--b { height: 709px; }

/* =========================================================================
   6b. AS FEATURED IN — press-logo row
   ========================================================================= */
.press {
  background: var(--paper);
  padding: 70px 0 74px;
  text-align: center;
}
.press__eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 24px;
  color: var(--ink);
  margin-bottom: 40px;
}
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 56px;
}
.press__logos img {
  height: 34px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.72;
  transition: opacity 0.4s ease;
}
.press__logos img:hover { opacity: 1; }

/* =========================================================================
   7. PORTFOLIO — staggered cards
   ========================================================================= */
.portfolio {
  background: var(--paper);
  padding: 110px 0 120px;
  text-align: center;
}
.portfolio__eyebrow {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: var(--ink);
  margin-bottom: 18px;
}
.portfolio__title {
  font-family: var(--serif);
  font-size: 105px;
  letter-spacing: -1.05px;
  line-height: 105px;
  color: var(--ink);
  margin-bottom: 70px;
}
.portfolio__title .the {
  font-family: var(--serif-italic);
  text-transform: none;
}
.portfolio__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px 80px;
  text-align: left;
  margin-bottom: 70px;
}
.pcard { display: block; }
.pcard .pcard__img {
  width: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease;
}
.pcard:hover .pcard__img { opacity: 0.82; }
.pcard__name {
  font-family: var(--serif-light);
  font-size: 36px;
  line-height: 43.2px;
  text-transform: uppercase;
  color: var(--ink-brown);
  margin: 26px 0 10px;
}
.pcard__venue {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.3px;
  color: var(--ink);
}
/* stagger */
.pcard--1 { margin-top: 0; }
.pcard--2 { margin-top: 90px; }
.pcard--3 { margin-top: -60px; }
.pcard--4 { margin-top: 30px; }
.pcard--1 .pcard__img { aspect-ratio: 3 / 4; }
.pcard--2 .pcard__img { aspect-ratio: 4 / 3; }
.pcard--3 .pcard__img { aspect-ratio: 4 / 3; }
.pcard--4 .pcard__img { aspect-ratio: 3 / 4; }

/* =========================================================================
   9. EXPERIENCE — image + text split
   ========================================================================= */
.experience {
  position: relative;
  z-index: 4;
  background: var(--paper);
  padding: 110px 0 120px;
}
.experience .grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  align-items: center;
}
.experience__img,
.experience__media {
  width: 100%;
  aspect-ratio: 800 / 1200;
  overflow: hidden;
}
.experience__img { object-fit: cover; filter: grayscale(1); }
.experience__vid {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}
.experience__title {
  font-family: var(--serif);
  font-size: 65px;
  line-height: 71.5px;
  color: var(--ink);
  margin-bottom: 32px;
}
.experience__title .the { font-family: var(--serif-italic); }
.experience__body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 28.8px;
  color: var(--ink);
  max-width: 380px;
  margin-bottom: 40px;
}
.experience__btn {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.8px;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 18px 34px;
  display: inline-block;
  transition: opacity 0.4s ease;
}
.experience__btn:hover { opacity: 0.6; }

/* =========================================================================
   11. CLOSING CTA — pinned text behind three scrolling videos
   ========================================================================= */
.closing {
  position: relative;
}
.closing__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 3; /* pinned copy sits ABOVE the scrolling media so it stays legible */
  color: var(--white);
  background: transparent; /* videos show through; media scrim darkens them */
  padding: 0 24px;
  text-shadow: 0 2px 22px rgba(0,0,0,0.6);
  pointer-events: none;
}
.closing__sticky a { pointer-events: auto; }
.closing__script {
  font-family: var(--serif-italic);
  font-size: 50px;
  line-height: 55px;
  color: var(--white);
  margin-bottom: 8px;
}
.closing__headline {
  font-family: var(--serif);
  font-size: 90px;
  line-height: 85.5px;
  color: var(--white);
  margin-bottom: 30px;
}
.closing__sub {
  font-family: var(--body);
  font-size: 18px;
  line-height: 28.8px;
  color: var(--white);
  max-width: 480px;
  margin: 0 auto 28px;
}
.closing__media {
  position: relative;
  z-index: 2; /* media scrolls, but stays BELOW the pinned copy (z-3) */
  margin-top: -100vh; /* pull media up over the sticky layer */
  pointer-events: none;
}
.closing__panel {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.closing__panel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Dark scrim ABOVE each video (below the pinned copy) so the white CTA
   copy stays legible wherever it overlaps bright footage. */
.closing__panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.38) 50%, rgba(0,0,0,0.5) 100%);
}
/* middle panel: dim the footage further so the pinned CTA copy centered
   over it reads clearly (was fully hidden before). */
.closing__panel--reveal::before {
  background: rgba(0,0,0,0.55);
}

/* =========================================================================
   12. FOOTER — sage band, static big text, IG grid, columns
   ========================================================================= */
.footer {
  position: relative;
  z-index: 9;
  background: var(--sage);
  color: var(--white);
  padding: 0 0 60px;
  overflow: hidden;
}
.footer__marquee {
  font-family: var(--serif);
  font-size: 137px;
  letter-spacing: 13.7px;
  line-height: 123.3px;
  color: var(--white);
  white-space: nowrap;
  padding: 60px 0 30px;
  text-align: center;
  opacity: 0.92;
}
.footer__ig {
  position: relative;
  padding: 40px 0 60px;
}
.footer__ig-center {
  text-align: center;
  position: relative;
  z-index: 2;
}
.footer__ig-eyebrow {
  font-family: var(--garamond);
  font-style: italic;
  font-size: 21px;
  color: var(--white);
  margin-bottom: 12px;
}
.footer__ig-title {
  font-family: var(--serif);
  font-size: 56px;
  line-height: 56px;
  color: var(--white);
  margin-bottom: 26px;
}
.footer__ig-follow { color: var(--white); border: 1px solid rgba(255,255,255,0.6); padding: 12px 26px; }
.footer__ig-grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 130px;
  gap: 16px;
  z-index: 1;
  pointer-events: none;
}
.footer__ig-grid img {
  width: 100%; height: 100%; object-fit: cover;
  pointer-events: auto;
}
.footer__ig-grid a { transition: opacity 0.4s ease; }
.footer__ig-grid a:hover { opacity: 0.8; }
/* scatter the IG tiles around the centered label */
.ig-a { grid-column: 1; grid-row: 1; }
.ig-b { grid-column: 1; grid-row: 2; }
.ig-c { grid-column: 2; grid-row: 1 / span 2; align-self: start; }
.ig-d { grid-column: 5; grid-row: 1; }
.ig-e { grid-column: 6; grid-row: 1 / span 2; }
.ig-f { grid-column: 5; grid-row: 2; margin-top: 40px; }
.ig-g { grid-column: 3; grid-row: 2; margin-top: 120px; }
.ig-h { grid-column: 4; grid-row: 2; margin-top: 120px; }

.footer__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 70px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
}
.footer__coltitle {
  font-family: var(--serif-light);
  font-size: 36px;
  line-height: 39.6px;
  color: var(--white);
  margin-bottom: 26px;
}
.footer__nav { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 40px; max-width: 320px; }
.footer__nav a {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.3px;
  color: var(--white);
  transition: opacity 0.4s ease;
}
.footer__nav a:hover { opacity: 0.6; }
.footer__about-body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 28.8px;
  color: var(--white);
  max-width: 360px;
  margin-bottom: 14px;
}
.footer__handle {
  font-family: var(--ui);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 1.3px;
  color: var(--white);
}
.footer__monogram {
  text-align: center;
  padding: 40px 0 10px;
}
.footer__monogram svg, .footer__monogram img { width: 70px; height: auto; margin: 0 auto; }
.footer__tagline {
  text-align: center;
  font-family: var(--garamond);
  font-style: italic;
  font-size: 21px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 10px;
}
.footer__tagline::before,
.footer__tagline::after {
  content: "";
  height: 1px;
  width: 120px;
  background: rgba(255,255,255,0.5);
}
.footer__legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 40px;
  font-family: var(--body);
  font-size: 13px;
  color: var(--white);
}
.footer__legal a { color: var(--white); }

/* =========================================================================
   RESPONSIVE — single breakpoint at 767px
   ========================================================================= */
@media (max-width: 767px) {
  .wrap { padding: 0 22px; }

  .nav { justify-content: flex-end; gap: 0; height: 60px; padding-right: 20px; }
  .nav a:not(.nav-contact) { display: none; }
  .nav .nav-contact { position: static; }

  .topband { padding: 90px 0 0; }
  .wordmark { font-size: 46px; letter-spacing: 8px; line-height: 1.1; text-indent: 8px; }

  /* hero: mobile canvas swap */
  .hero { height: 620px; }
  .hero-desktop { display: none; }
  .hero-mobile { display: flex; width: 100%; }
  .hero__monogram { width: 66px; }
  .hero__eyebrow { font-size: 24px; }

  .manifesto { padding: 70px 0 80px; }
  .manifesto__title { font-size: 38px; line-height: 40px; letter-spacing: -0.4px; }
  .manifesto__eyebrow { font-size: 20px; }

  .what-we-do { padding: 70px 0 80px; }
  .what-we-do .grid { grid-template-columns: 1fr; gap: 50px; }
  .wwd__word { font-size: 52px; line-height: 52px; }
  .polaroids { min-height: 520px; }
  .polaroid--1 { top: 10px; right: 10px; width: 150px; }
  .polaroid--2 { top: 160px; right: 120px; width: 150px; }
  .polaroid--3 { top: 300px; right: 20px; width: 155px; }

  .about { padding: 70px 0 80px; }
  .about .grid { grid-template-columns: 1fr; gap: 40px; }
  .about__name { font-size: 56px; line-height: 56px; }
  .about__bio { font-size: 18px; line-height: 28px; }
  .about__signature { width: 110px; right: 8px; }

  .pullquote { padding: 70px 0; }
  .pullquote__text { font-size: 30px; line-height: 34px; }
  .pullquote--b .pullquote__text { font-size: 28px; line-height: 32px; }

  .video-band, .video-band--b { height: 420px; }

  .press { padding: 48px 0 50px; }
  .press__eyebrow { font-size: 20px; margin-bottom: 28px; }
  .press__logos { gap: 26px 32px; }
  .press__logos img { height: 22px; }

  .portfolio { padding: 70px 0 80px; }
  .portfolio__title { font-size: 54px; line-height: 54px; }
  .portfolio__grid { grid-template-columns: 1fr; gap: 46px; }
  .pcard--1, .pcard--2, .pcard--3, .pcard--4 { margin-top: 0; }
  .pcard__name { font-size: 30px; line-height: 36px; }

  .experience { padding: 70px 0 80px; }
  .experience .grid { grid-template-columns: 1fr; gap: 40px; }
  .experience__title { font-size: 42px; line-height: 46px; }

  .closing__script { font-size: 30px; line-height: 34px; }
  .closing__headline { font-size: 44px; line-height: 44px; }
  .closing__sub { font-size: 16px; }

  .footer__marquee { font-size: 44px; letter-spacing: 4px; line-height: 1.1; white-space: normal; padding: 40px 22px 20px; }
  .footer__ig-grid { display: none; }
  .footer__ig-title { font-size: 40px; line-height: 40px; }
  .footer__cols { grid-template-columns: 1fr; gap: 40px; }
  .footer__coltitle { font-size: 30px; }
  .footer__legal { flex-direction: column; gap: 14px; text-align: center; }
  .footer__tagline::before, .footer__tagline::after { width: 40px; }
}
