/* =====================================================
   STUDIO TALEV. BRAND-COMPLIANT STYLESHEET
   Black 60% · White 35% · Signal Red 5%
   Codec Pro (display) + Josefin Sans (body)
   ===================================================== */

/* ---------- 1. Tokens ---------- */
:root {
  --talev-black: #0A0A0A;
  --talev-paper: #FFFFFF;
  --talev-red: #D20A2E;
  --talev-red-deep: #A4081F;

  --grey-900: #141414;
  --grey-800: #1B1B1B;
  --grey-700: #2A2A2A;
  --grey-500: #6E6E6E;
  --grey-300: #C9C9C9;
  --grey-150: #ECECEC;
  --grey-100: #F4F4F4;

  /* Codec Pro is licensed. Spec the fallback chain from brand guidelines */
  --font-display: "Codec Pro", "Inter", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Josefin Sans", "Avenir Next", Futura, system-ui, sans-serif;

  --container: 1440px;
  --gutter: clamp(20px, 4vw, 80px);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ---------- 2. Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.6;
  background: var(--talev-black);
  color: var(--talev-paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: 0; cursor: pointer; font: inherit; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
::selection { background: var(--talev-red); color: var(--talev-paper); }

.theme-dark { background: var(--talev-black); color: var(--talev-paper); }

/* ---------- Public notice bar (homepage) ----------
   Sits at the top of the page above the nav. The nav's top offset and
   the body's padding-top are both pushed down by a CSS variable that
   script.js keeps in sync with the live notice height. Dismissing it
   resets that variable to 0 so the nav glides up. */
/* Notice now sits AFTER the footer as an in-flow block. No nav offset needed. */
.notice {
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px var(--gutter);
}
.notice__inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 24px;
}
.notice__copy { flex: 1; max-width: 920px; }
.notice__eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--talev-paper);
  margin: 0 0 10px;
}
.notice__body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--grey-300);
  margin: 0 0 8px;
}
.notice__body:last-child { margin-bottom: 0; }
.notice__body--quiet {
  color: var(--grey-500);
  font-style: italic;
  font-size: 13px;
  margin-top: 12px;
}
.notice__body strong { color: var(--talev-paper); font-weight: 600; }
.notice__body a {
  color: var(--talev-paper);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 0.2s;
}
.notice__body a:hover { opacity: 0.7; }
.notice__close {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  color: var(--grey-300);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
  margin-top: -2px;
}
.notice__close:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--talev-paper);
}
.notice.is-dismissed { display: none; }

@media (max-width: 560px) {
  .notice { padding: 14px var(--gutter); }
  .notice__body { font-size: 13px; line-height: 1.55; }
  .notice__body--quiet { font-size: 12px; }
  .notice__eyebrow { font-size: 10px; letter-spacing: 0.14em; }
  .notice__inner { gap: 12px; }
  .notice__close { width: 28px; height: 28px; font-size: 18px; }
}

/* The signature dot.
   Empty <span class="dot"> rendered as a filled circle so we get
   pixel-perfect size and baseline alignment independent of font fallbacks.
   Both `background` and `color` are set to the signal red as a defensive
   measure — if any literal "." text ever creeps in next to it, it inherits
   the red instead of the heading's white. */
.dot {
  display: inline-block;
  width: 0.18em;
  height: 0.18em;
  background: var(--talev-red) !important;
  color: var(--talev-red);
  border-radius: 50%;
  vertical-align: baseline;
  margin-left: 0.05em;
  flex-shrink: 0;
}

/* ---------- 3. Reusable type styles ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.eyebrow--dark { color: var(--grey-700); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 30px 16px 32px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-indent: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.4s var(--ease-out), background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  /* Josefin Sans has an unusually tall ascender region. Push text down 1px
     to optically centre within the pill. */
  padding-top: 18px;
  padding-bottom: 14px;
}
.btn--red {
  background: var(--talev-red);
  color: var(--talev-paper);
}
.btn--red:hover { background: var(--talev-red-deep); transform: translateY(-2px); }
.btn--ghost {
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--talev-paper);
}
.btn--ghost:hover {
  border-color: var(--talev-paper);
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
}
.btn--dark-ghost {
  border: 1px solid var(--talev-black);
  color: var(--talev-black);
}
.btn--dark-ghost:hover { background: var(--talev-black); color: var(--talev-paper); transform: translateY(-2px); }
.btn--submit { margin-top: 12px; }

.link-arrow {
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  transition: opacity 0.3s, transform 0.3s var(--ease-out);
  display: inline-block;
}
.link-arrow:hover { transform: translateX(4px); }

/* ---------- 4. Navigation ---------- */
.nav {
  position: fixed;
  top: 0;
  left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--gutter);
  background: linear-gradient(to bottom, rgba(10, 10, 10, 0.85), rgba(10, 10, 10, 0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding 0.4s var(--ease-out), background 0.3s ease;
}
.nav.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav__logo { height: 52px; width: auto; display: block; }
.nav.is-scrolled .nav__logo { height: 42px; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
.nav__links a {
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0;
  height: 1px;
  background: var(--talev-red);
  transition: width 0.4s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__cta {
  padding: 12px 22px 10px 24px !important;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  text-indent: 0.06em;
}
.nav__cta:hover {
  background: var(--talev-red);
  border-color: var(--talev-red);
}
.nav__toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav__toggle span {
  display: block;
  height: 1.5px;
  background: var(--talev-paper);
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(360px, 85vw);
  height: 100vh;
  background: var(--talev-black);
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 100px 40px 40px;
  transform: translateX(100%);
  transition: transform 0.5s var(--ease-out);
  z-index: 99;
}
.drawer.is-open { transform: translateX(0); }
.drawer a {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 28px;
  text-transform: lowercase;
  letter-spacing: -0.02em;
}

/* ---------- 5. Hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 180px var(--gutter) 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero__img {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  background-image:
    radial-gradient(at 20% 30%, rgba(210, 10, 46, 0.08) 0%, transparent 50%),
    radial-gradient(at 80% 70%, rgba(255, 255, 255, 0.03) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  /* SWAP THIS: replace the gradients above with:
     background-image: url('/images/hero.jpg'); background-size: cover; background-position: center; */
  animation: kenBurns 24s var(--ease-in-out) infinite alternate;
}
.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 10, 10, 0.4) 0%, rgba(10, 10, 10, 0.2) 40%, rgba(10, 10, 10, 0.85) 100%),
    linear-gradient(90deg, rgba(10, 10, 10, 0.6) 0%, rgba(10, 10, 10, 0) 60%);
}
.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  pointer-events: none;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}
@keyframes kenBurns {
  from { transform: scale(1) translate(0, 0); }
  to   { transform: scale(1.08) translate(-2%, -2%); }
}

.hero__content {
  max-width: 1100px;
  position: relative;
  width: 100%;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin-bottom: 28px;
}
.hero .eyebrow {
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.18em;
  color: var(--grey-300);
  margin-bottom: 16px;
}
.hero__title--cap { text-transform: none; }
.hero__title-line {
  display: block;
  white-space: nowrap;
}
.hero__sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(16px, 1.6vw, 20px);
  line-height: 1.5;
  max-width: 540px;
  color: var(--grey-300);
  margin-bottom: 40px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__meta {
  position: absolute;
  right: var(--gutter);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--grey-500);
}
.hero__meta > div { display: flex; align-items: center; gap: 12px; }
.scrollbar {
  display: block;
  width: 60px;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  overflow: hidden;
}
.scrollbar__fill {
  position: absolute;
  inset: 0;
  width: 30%;
  background: var(--talev-paper);
  animation: scrollHint 2s ease-in-out infinite;
}
@keyframes scrollHint {
  0%   { transform: translateX(-100%); }
  100% { transform: translateX(333%); }
}

/* ---------- 6. Marquee ---------- */
.marquee {
  background: var(--talev-black);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
  padding: 22px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 35s linear infinite;
}
.marquee__set {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-right: 40px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 3vw, 38px);
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--grey-300);
  flex-shrink: 0;
  white-space: nowrap;
}
.marquee__set .sep { color: var(--talev-red); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- 6b. Intro / SEO section ---------- */
.intro {
  padding-top: clamp(50px, 6vw, 80px);
  padding-bottom: clamp(50px, 6vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.intro__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.intro__inner .eyebrow { margin-bottom: 24px; }
.intro__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  margin-bottom: 24px;
  color: var(--talev-paper);
}
.intro__body {
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.7;
  color: var(--grey-300);
  font-weight: 300;
}

/* ---------- 7. Sections ---------- */
.section {
  padding: clamp(60px, 8vw, 110px) var(--gutter);
  position: relative;
  scroll-margin-top: 80px;
}
.section--dark {
  background: var(--talev-black);
  color: var(--talev-paper);
}
.section--light {
  background: var(--talev-paper);
  color: var(--talev-black);
}
.section__head {
  max-width: 900px;
  margin-bottom: clamp(40px, 4.5vw, 64px);
}
.section__head .eyebrow { margin-bottom: 24px; }
.section__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 88px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  margin-bottom: 24px;
}
.section__title--dark { color: var(--talev-black); }
.section__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  max-width: 560px;
  color: var(--grey-300);
  font-weight: 300;
}
.section__lede--dark { color: var(--grey-500); }
.section__head--light .eyebrow { color: var(--grey-500); }

/* ---------- 8. Highlights gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  grid-auto-flow: dense;
}
.gallery__item {
  position: relative;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  background-image:
    radial-gradient(at 30% 20%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 1;
}
.gallery__item:has(img)::before { display: none; }
.gallery__item::before {
  /* Photo slot label. Hidden when image present (handled by :has(img)) */
  content: attr(data-photo-slot);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 500;
}
.gallery__item--tall { grid-row: span 2; aspect-ratio: 3/4; }
/* Wide tile spans 2 cols but keeps the SAME ROW HEIGHT as a default 4/3 tile,
   so the grid never has vertical gaps. 8/3 = (2 × 4/3) → matches default height. */
.gallery__item--wide { grid-column: span 2; aspect-ratio: 8/3; }
.gallery__item figcaption {
  position: absolute;
  left: 16px; bottom: 16px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--talev-paper);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease-out), transform 0.4s var(--ease-out);
  z-index: 3;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.85) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}
.gallery__item:hover { transform: scale(1.01); }
.gallery__item:hover::after,
.gallery__item:hover figcaption { opacity: 1; transform: translateY(0); }

/* ---------- 9. Projects ---------- */
.projects { display: flex; flex-direction: column; gap: clamp(60px, 7vw, 96px); }
.project {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: auto auto;
  gap: 16px;
  align-items: end;
}
.project--flip { grid-template-columns: 0.8fr 0.8fr 1.2fr; }
.project__media {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--grey-100) 0%, var(--grey-150) 100%);
  background-image:
    radial-gradient(at 30% 30%, rgba(0, 0, 0, 0.04) 0%, transparent 50%),
    linear-gradient(135deg, #F4F4F4 0%, #ECECEC 100%);
  position: relative;
  overflow: hidden;
  /* SWAP: background-image: url('/images/project-XX-X.jpg') */
}
.project__media::before {
  content: attr(data-photo-slot);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.18);
  font-weight: 500;
}
.project__media:nth-child(1) {
  grid-column: 1;
  grid-row: 1 / 3;
  aspect-ratio: 4/5;
}
.project--flip .project__media:nth-child(1) { grid-column: 3; }
.project__meta {
  grid-column: 2 / 4;
  grid-row: 2;
  padding: 24px 0 0;
}
.project--flip .project__meta { grid-column: 1 / 3; }
.project__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 64px;
  line-height: 1;
  color: var(--talev-red);
  display: block;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.project__meta h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 12px;
  color: var(--talev-black);
}
.project__meta p {
  color: var(--grey-700);
  max-width: 560px;
  margin-bottom: 16px;
}
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
}
.tag-list li {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  color: var(--grey-700);
}
.projects__note {
  text-align: center;
  margin-top: clamp(50px, 6vw, 72px);
  font-size: 15px;
  color: var(--grey-500);
}
.projects__note a {
  color: var(--talev-black);
  border-bottom: 1px solid var(--talev-red);
  padding-bottom: 2px;
}

/* ---------- 10. Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.service {
  background: var(--talev-black);
  padding: 48px 36px 56px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background 0.5s ease;
  position: relative;
  min-height: 320px;
}
.service:hover { background: var(--grey-900); }
.service__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--grey-500);
  margin-bottom: 24px;
}
.service h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
}
.service p {
  color: var(--grey-300);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
}
.service--cta { justify-content: space-between; }
.service--cta .service__num .dot { font-size: 22px; }
.service__soon { font-style: italic; color: var(--grey-500); }
.service--cta .link-arrow { color: var(--talev-red); margin-top: 12px; align-self: flex-start; }

/* ---------- 11. Statement ---------- */
.section--statement {
  padding-top: clamp(80px, 10vw, 140px);
  padding-bottom: clamp(80px, 10vw, 140px);
  text-align: center;
}
.statement {
  max-width: 1000px;
  margin: 0 auto;
}
.statement__eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--talev-red);
  margin-bottom: 40px;
}
.statement__quote {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  margin-bottom: 40px;
  color: var(--talev-black);
}
.statement__body {
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 48px;
  color: var(--grey-700);
}

/* ---------- 12. Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.contact__copy .section__title { margin-bottom: 32px; }
.contact__copy .section__lede { margin-bottom: 48px; }
.contact__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.contact__list li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  font-size: 15px;
}
.contact__list span:first-child {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  padding-top: 4px;
}
.contact__list a { border-bottom: 1px solid rgba(255, 255, 255, 0.2); padding-bottom: 2px; transition: border-color 0.3s; }
.contact__list a:hover { border-color: var(--talev-red); }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 20px;
  background: var(--grey-900);
  padding: 48px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.field .opt {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  color: var(--grey-700);
  margin-left: 6px;
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 0;
  font-size: 16px;
  font-weight: 300;
  font-family: var(--font-body);
  color: var(--talev-paper);
  transition: border-color 0.3s ease;
  border-radius: 0;
}
.field textarea { resize: vertical; min-height: 100px; }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path fill='%23C9C9C9' d='M6 8L0 0h12z'/></svg>"); background-repeat: no-repeat; background-position: right 8px center; padding-right: 30px; }
.field select option { background: var(--grey-900); color: var(--talev-paper); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-bottom-color: var(--talev-red);
}

/* Checkbox group for multi-select services */
.field__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 16px;
}
.field__label .opt {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  color: var(--grey-700);
  margin-left: 6px;
}
.checkgroup {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  cursor: pointer;
  transition: border-color 0.3s ease, background 0.3s ease;
  font-size: 14px;
  font-weight: 300;
  user-select: none;
}
.checkbox:hover {
  border-color: rgba(255, 255, 255, 0.4);
}
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 14px;
  height: 14px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 3px;
  background: transparent;
  margin: 0;
  padding: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.checkbox input:checked {
  background: var(--talev-red);
  border-color: var(--talev-red);
}
.checkbox input:checked::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 0px;
  width: 5px;
  height: 9px;
  border: solid var(--talev-paper);
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}
.checkbox:has(input:checked) {
  border-color: var(--talev-red);
  background: rgba(210, 10, 46, 0.06);
}

/* Required marker — replaces 'optional' for mandatory fields */
.field .req {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  color: var(--talev-red);
  margin-left: 6px;
  opacity: 0.85;
}
.field__label .req,
.field__label .opt {
  font-style: italic;
  letter-spacing: 0;
  text-transform: none;
  font-weight: 300;
  margin-left: 6px;
}
.field__label .req { color: var(--talev-red); opacity: 0.85; }

/* Radio variant of checkbox pill (used for property status) */
.checkbox--radio input[type="radio"] {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  margin: 0;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.checkbox--radio input[type="radio"]:checked {
  background: var(--talev-red);
  border-color: var(--talev-red);
}
.checkbox--radio input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--talev-paper);
}
.checkbox--radio input[type="radio"]:checked::before { display: none; }

/* Terms checkbox — full width, less pill-shaped */
.checkbox--terms {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  font-size: 13px;
  line-height: 1.6;
  color: var(--grey-300);
  cursor: pointer;
}
.checkbox--terms:hover { background: transparent; border: 0; }
.checkbox--terms:has(input:checked) {
  background: transparent;
  border: 0;
}
.checkbox--terms input {
  margin-top: 3px;
}
.checkbox--terms a {
  color: var(--talev-paper);
  border-bottom: 1px solid var(--talev-red);
  padding-bottom: 1px;
  transition: color 0.3s ease;
}
.checkbox--terms a:hover { color: var(--talev-red); }

/* Validation error highlight */
.checkgroup--error .checkbox {
  border-color: rgba(210, 10, 46, 0.4);
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}
.btn--submit { grid-column: 1 / -1; justify-self: start; }
.form-note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--grey-500);
  font-style: italic;
  margin-top: -8px;
}
.hp { position: absolute; left: -9999px; }

/* Form-success toast — appears on / when ?sent=1 is in the URL (used by
   the Netlify fallback redirect if thanks.html isn't deployed). */
.form-toast {
  position: fixed;
  left: 50%;
  bottom: clamp(20px, 4vw, 40px);
  transform: translate(-50%, 24px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease-out), transform 0.5s var(--ease-out);
  max-width: min(560px, calc(100vw - 32px));
  width: 100%;
}
.form-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
  pointer-events: auto;
}
.form-toast__inner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--grey-900);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 18px 18px 18px 20px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}
.form-toast__dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--talev-red);
  margin-top: 8px;
}
.form-toast__copy { flex: 1; }
.form-toast__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  text-transform: lowercase;
  color: var(--talev-paper);
  margin: 0 0 4px;
}
.form-toast__sub {
  font-size: 13px;
  line-height: 1.5;
  color: var(--grey-300);
  margin: 0;
}
.form-toast__close {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  color: var(--grey-500);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
  margin-left: 4px;
}
.form-toast__close:hover {
  color: var(--talev-paper);
  background: rgba(255, 255, 255, 0.06);
}

/* ---------- 13. Footer ---------- */
.footer {
  background: var(--talev-black);
  color: var(--talev-paper);
  padding: 80px var(--gutter) 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer__mono { height: 64px; width: auto; }
.footer__tag {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 56px);
  text-transform: lowercase;
  letter-spacing: -0.02em;
  line-height: 1;
}
.footer__tag--cap { text-transform: none; }
.footer__tag-line {
  display: block;
  white-space: nowrap;
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding: 60px 0;
}
.footer__head {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 16px;
}
.footer__cols p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--grey-300);
}
.footer__cols a:hover { color: var(--talev-red); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--grey-500);
}
.footer__credit {
  color: var(--grey-300);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  padding-bottom: 1px;
  transition: color 0.3s, border-color 0.3s;
}
.footer__credit:hover {
  color: var(--talev-red);
  border-bottom-color: var(--talev-red);
}

/* ---------- 14. Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- 15. Image protection ---------- */
[data-protect] img,
[data-protect] .gallery__item,
.project__media,
.hero__img {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-touch-callout: none;
  pointer-events: auto;
}

/* ---------- 16. Sub-pages (about, terms, privacy, thanks) ---------- */
.subpage {
  padding: 160px var(--gutter) 100px;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--talev-black);
}
.subpage__head { max-width: 800px; margin-bottom: 80px; }
.subpage__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  text-transform: lowercase;
  margin: 24px 0 32px;
}
.subpage__lede {
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.5;
  color: var(--grey-300);
  font-weight: 300;
  max-width: 600px;
}
.prose {
  max-width: 720px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--grey-300);
}
.prose h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 32px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--talev-paper);
  margin: 56px 0 16px;
}
.prose h2:first-child { margin-top: 0; }
.prose h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1.8vw, 22px);
  letter-spacing: -0.01em;
  color: var(--talev-paper);
  margin: 36px 0 12px;
}
.prose h4 {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-300);
  margin: 28px 0 10px;
}
.prose p { margin-bottom: 18px; }
.prose ul, .prose ol { margin: 0 0 18px 24px; }
.prose li { margin-bottom: 8px; }
.prose a {
  border-bottom: 1px solid var(--talev-red);
  padding-bottom: 1px;
  transition: color 0.3s;
}
.prose a:hover { color: var(--talev-red); }
.prose strong { color: var(--talev-paper); font-weight: 500; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  margin-top: 80px;
}
.about-grid__media {
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  background-image:
    radial-gradient(at 30% 20%, rgba(210, 10, 46, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  position: relative;
}
.about-grid__media::before {
  content: 'CHRIS, NEW HEADSHOT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 500;
}

/* About-page stack: portrait placeholder on top, all body text below it,
   left-aligned. One flat column at every viewport — no side-by-side grid,
   nothing the facts row can interleave with. */
.about-stack {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: clamp(40px, 5vw, 64px);
}
.about-stack__media {
  width: 100%;
  max-width: 720px;
  aspect-ratio: 4/5;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.about-stack__media:not([style*="background-image"]) {
  /* placeholder gradient when no photo set */
  background-image:
    radial-gradient(at 30% 20%, rgba(210, 10, 46, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
}
.about-stack__media:not([style*="background-image"])::before {
  content: 'CHRIS, NEW HEADSHOT';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 500;
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  margin-top: clamp(64px, 8vw, 100px);
}
.fact {
  background: var(--talev-black);
  padding: 36px;
}
.fact__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  letter-spacing: -0.03em;
  color: var(--talev-paper);
  line-height: 1;
}
.fact__num .dot { color: var(--talev-red); }
.fact__label {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--grey-500);
  margin-top: 16px;
}

/* ---------- 16b. Journal / blog ---------- */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px);
  margin-top: 40px;
}
.journal-card {
  display: flex;
  flex-direction: column;
  background: var(--grey-900);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.3s ease, background 0.3s ease;
  color: inherit;
}
.journal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.16);
  background: var(--grey-800);
}
.journal-card__media {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  background-image:
    radial-gradient(at 30% 20%, rgba(210, 10, 46, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  position: relative;
}
.journal-card__media::before {
  /* Slot label shown only when no real background-image set */
  content: attr(data-photo-slot);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.18);
  font-weight: 500;
  opacity: 0;
}
.journal-card__body {
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.journal-card__body .eyebrow {
  margin-bottom: 0;
}
.journal-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.4vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--talev-paper);
  margin: 0;
}
.journal-card__excerpt {
  color: var(--grey-300);
  font-size: 15px;
  line-height: 1.7;
  flex: 1;
}
.journal-card .link-arrow {
  color: var(--talev-red);
  align-self: flex-start;
  margin-top: 4px;
}

/* Single post layout */
.post { max-width: 880px; }
.post__head { max-width: 800px; margin-bottom: clamp(40px, 5vw, 64px); }
.post__head .eyebrow { color: var(--talev-red); margin-bottom: 20px; }
.post__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--talev-paper);
  margin: 0 0 24px;
}
.post__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--grey-300);
  max-width: 680px;
}
.post__hero {
  width: 100%;
  aspect-ratio: 16/9;
  background-size: cover;
  background-position: center;
  border-radius: 6px;
  margin-bottom: clamp(48px, 6vw, 72px);
}
.post__body { max-width: 720px; }
.post__body h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.02em;
  text-transform: lowercase;
  color: var(--talev-paper);
  margin: 56px 0 16px;
}
.post__body h2:first-child { margin-top: 0; }
.post__figure {
  margin: clamp(40px, 5vw, 64px) 0;
  width: 100%;
  /* Let in-body figures break out wider than the 720px prose column so
     they feel like an editorial pause without overpowering the text. */
  max-width: 880px;
  margin-left: 0;
}
.post__figure img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.post__foot {
  margin-top: clamp(64px, 8vw, 96px);
  padding-top: clamp(32px, 4vw, 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  text-align: center;
  padding: 100px var(--gutter);
  background: var(--talev-black);
}
.thanks .dot--big {
  display: inline-block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--talev-red);
  margin-bottom: 40px;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.2); opacity: 0.7; }
}

/* ---------- 11b. About Chris (homepage inline) ---------- */
.section--about-inline { padding-top: clamp(70px, 9vw, 120px); padding-bottom: clamp(70px, 9vw, 120px); }
.about-inline {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.about-inline__media {
  position: relative;
  aspect-ratio: 4/5;
}
.about-inline__img {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-image:
    radial-gradient(at 30% 20%, rgba(210, 10, 46, 0.06) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.about-inline__img::before {
  content: attr(data-photo-slot);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}
.about-inline__img[style*="background-image"]::before { display: none; }
.about-inline__caption {
  position: absolute;
  bottom: -32px;
  left: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey-500);
}
.about-inline__copy .eyebrow { margin-bottom: 24px; }
.about-inline__copy .section__title { margin-bottom: 32px; }
.about-inline__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--talev-black);
  margin-bottom: 32px;
  max-width: 540px;
}
.about-inline__body { color: var(--grey-700); margin-bottom: 36px; max-width: 580px; }
.about-inline__body p { margin-bottom: 16px; line-height: 1.7; }
.about-inline__body strong { color: var(--talev-black); font-weight: 500; }
.about-inline__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
.pill {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 14px;
  border: 1px solid var(--grey-300);
  border-radius: 999px;
  color: var(--grey-700);
  background: var(--talev-paper);
}
.about-inline__cta {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}
.link-arrow--dark { color: var(--talev-black); border-bottom-color: var(--talev-red); }

/* ---------- 11c. Print Store (dedicated section) ---------- */
.section--print {
  background: var(--grey-900);
  padding-top: clamp(80px, 10vw, 130px);
  padding-bottom: clamp(80px, 10vw, 130px);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.print-store {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.print-store__media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.print-store__img {
  position: absolute;
  inset: 0;
  background-color: #0a0a0a;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.print-store__img:not([style*="background-image"]) {
  background-image:
    radial-gradient(at 70% 30%, rgba(210, 10, 46, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, #1f1f1f 0%, #0a0a0a 100%);
}
.print-store__img:not([style*="background-image"])::before {
  content: attr(data-photo-slot);
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.2);
  font-weight: 500;
}

/* "Coming Soon" banner overlaid on the print-store photo */
.print-store__banner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  /* Subtle dark gradient so the banner stays readable on any photo. */
  background: linear-gradient(180deg, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.55) 50%, rgba(10,10,10,0.35) 100%);
}
.print-store__banner > span {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(36px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: lowercase;
  color: var(--talev-paper);
  text-align: center;
  padding: 22px 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.55);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}
.print-store__copy .eyebrow {
  color: var(--talev-red);
  margin-bottom: 24px;
}
.print-store__copy .section__title {
  margin-bottom: 32px;
}
.print-store__lede {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--talev-paper);
  margin-bottom: 24px;
  max-width: 480px;
}
.print-store__body {
  color: var(--grey-300);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}


/* ---------- 17. Responsive ---------- */

/* Tablet & below */
@media (max-width: 960px) {
  .nav { padding: 16px var(--gutter); }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__logo { height: 44px; }
  .nav.is-scrolled .nav__logo { height: 38px; }

  .hero { padding-bottom: 120px; align-items: center; padding-top: 120px; }
  .hero__meta { display: none; }

  .gallery { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item--tall { grid-row: span 1; aspect-ratio: 4/3; }

  .project, .project--flip { grid-template-columns: 1fr; }
  .project__media:nth-child(1),
  .project--flip .project__media:nth-child(1) {
    grid-column: 1; grid-row: auto; aspect-ratio: 4/3;
  }
  .project__meta, .project--flip .project__meta { grid-column: 1; grid-row: auto; }

  .services { grid-template-columns: 1fr; }
  .service { padding: 32px 24px 36px; min-height: auto; }
  .service__num { margin-bottom: 16px; }

  .contact { grid-template-columns: 1fr; }
  .contact__form { padding: 32px 24px; grid-template-columns: 1fr; }

  .footer__cols { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .footer__top { padding-bottom: 40px; }
  .footer__mono { height: 48px; }

  .about-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .about-inline { grid-template-columns: 1fr; gap: 48px; }
  .about-inline__media { max-width: 520px; margin: 0 auto; width: 100%; }
  .about-inline__caption { position: static; margin-top: 12px; display: block; }

  .print-store { grid-template-columns: 1fr; gap: 48px; }
  .print-store__media { max-width: 520px; margin: 0 auto; width: 100%; }

  .journal-grid { grid-template-columns: 1fr; gap: 24px; }
  .post__foot { flex-direction: column; align-items: flex-start; }
}

/* Make captions tap-friendly — show them always on touch devices since
   hover doesn't exist there. */
@media (max-width: 960px) and (hover: none) {
  .gallery__item figcaption { opacity: 1; transform: none; }
  .gallery__item::after { opacity: 0.65; }
}

/* Phones */
@media (max-width: 560px) {
  :root { --gutter: clamp(18px, 5vw, 32px); }

  .nav { padding: 14px var(--gutter); }
  .nav__logo { height: 38px; }
  .nav.is-scrolled .nav__logo { height: 34px; }
  .nav__cta { padding: 10px 16px 8px 18px !important; font-size: 11px; }
  .drawer { padding: 90px 32px 32px; gap: 18px; }
  .drawer a { font-size: 24px; }

  .hero { padding-top: 110px; padding-bottom: 90px; }
  .hero__title { font-size: clamp(40px, 13vw, 60px); letter-spacing: -0.03em; }
  .hero__sub { font-size: 15px; margin-bottom: 28px; }
  .hero__actions { gap: 12px; }
  .hero__actions .btn { padding: 14px 22px 12px 24px; font-size: 13px; }
  .hero .eyebrow { font-size: 12px; letter-spacing: 0.16em; }

  .marquee { padding: 16px 0; }
  .marquee__set { font-size: 22px; gap: 28px; padding-right: 28px; }

  .intro { padding-top: 56px; padding-bottom: 56px; }
  .intro__heading { font-size: 22px; line-height: 1.35; }
  .intro__body { font-size: 14px; line-height: 1.7; }

  .section { padding-top: 64px; padding-bottom: 64px; }
  .section__head { margin-bottom: 40px; }
  .section__title { font-size: 38px; letter-spacing: -0.025em; line-height: 1.05; }
  .section__lede { font-size: 15px; line-height: 1.6; }

  /* Highlights gallery — single column at phone size so each real-estate
     photo gets the room it deserves. */
  .gallery { grid-template-columns: 1fr; gap: 10px; }
  .gallery__item, .gallery__item--tall, .gallery__item--wide { aspect-ratio: 4/3; grid-column: auto; grid-row: auto; }
  .gallery__item figcaption {
    opacity: 1;
    transform: none;
    font-size: 10px;
    letter-spacing: 0.12em;
    left: 12px;
    bottom: 12px;
  }
  .gallery__item::after { opacity: 0.55; }

  .section--about-inline { padding-top: 64px; padding-bottom: 64px; }
  .about-inline { gap: 32px; }
  .about-inline__lede { font-size: 20px; line-height: 1.35; margin-bottom: 24px; }
  .about-inline__body { margin-bottom: 28px; }
  .about-inline__body p { font-size: 15px; line-height: 1.7; }
  .about-inline__pills { margin-bottom: 28px; gap: 8px; }
  .pill { font-size: 10px; letter-spacing: 0.12em; padding: 6px 12px; }
  .about-inline__cta { gap: 20px; }
  .about-inline__caption { font-size: 10px; letter-spacing: 0.14em; }

  .service { padding: 28px 20px 32px; }
  .service h3 {
    font-size: 19px;
    letter-spacing: -0.02em;
    line-height: 1.15;
  }
  .service__num { font-size: 13px; }
  .service p { font-size: 14px; }

  .section--print { padding-top: 64px; padding-bottom: 64px; }
  .print-store { gap: 32px; }
  .print-store__lede { font-size: 19px; margin-bottom: 18px; }
  .print-store__body { font-size: 14px; margin-bottom: 28px; }
  .print-store__banner > span {
    font-size: 32px;
    padding: 16px 22px;
    letter-spacing: -0.025em;
  }

  .section--statement { padding-top: 80px; padding-bottom: 80px; }
  .statement__eyebrow { margin-bottom: 24px; font-size: 11px; }
  .statement__quote { font-size: 26px; line-height: 1.2; margin-bottom: 28px; }
  .statement__body { font-size: 15px; margin-bottom: 32px; }

  .contact__copy .section__lede { margin-bottom: 32px; }
  .contact__list { padding-top: 20px; gap: 14px; }
  .contact__list li { grid-template-columns: 1fr; gap: 4px; font-size: 14px; }
  .contact__list span:first-child { padding-top: 0; }
  .contact__form { padding: 24px 18px; gap: 18px; border-radius: 6px; }
  .field input, .field select, .field textarea { font-size: 16px; padding: 10px 0; }
  .field__label { margin-bottom: 12px; }
  .checkgroup { gap: 8px; }
  .checkbox { padding: 9px 14px; font-size: 13px; }
  .btn--submit { width: 100%; justify-self: stretch; }

  .footer { padding: 60px var(--gutter) 32px; }
  .footer__top { padding-bottom: 36px; gap: 18px; }
  .footer__tag { font-size: 30px; line-height: 1.05; }
  .footer__mono { height: 40px; }
  .footer__cols { grid-template-columns: 1fr; gap: 28px; padding: 36px 0; }
  .footer__head { margin-bottom: 12px; }
  .footer__cols p { font-size: 13px; }
  .footer__bottom { padding-top: 24px; font-size: 11px; gap: 10px; }
}

/* Small phones */
@media (max-width: 400px) {
  .hero__title { font-size: 36px; letter-spacing: -0.025em; }
  .section__title { font-size: 34px; }
  .intro__heading { font-size: 20px; }
  .marquee__set { font-size: 20px; gap: 24px; padding-right: 24px; }
  .footer__tag { font-size: 26px; }
  .print-store__banner > span {
    font-size: 26px;
    padding: 14px 18px;
  }
}

/* ---------- 18. Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__img { animation: none; }
  .marquee__track { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}
