/* ============================================================
   HOME PAGE — Page-specific styles
   ============================================================ */

/* ============================================================
   HOME NAV — Editorial minimal: hamburger · · · search + IG
   ============================================================ */
.page-home .site-nav .nav-logo,
.page-home .site-nav .nav-links,
.page-home .site-nav .nav-cta {
  display: none;
}

.page-home .site-nav .nav-hamburger {
  display: flex !important;
  order: -1;
}

/* Three-line tapered hamburger for editorial feel */
.page-home .site-nav .nav-hamburger span:nth-child(1) { width: 26px; }
.page-home .site-nav .nav-hamburger span:nth-child(2) { width: 18px; }
.page-home .site-nav .nav-hamburger span:nth-child(3) { width: 10px; }
.page-home .site-nav .nav-hamburger:hover span { width: 26px; }
.page-home .site-nav .nav-hamburger span {
  transition: width 0.25s var(--ease);
}

.nav-hero-icons {
  display: none; /* hidden on all other pages */
  align-items: center;
  gap: 16px;
}

.page-home .site-nav .nav-hero-icons {
  display: flex;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  color: var(--charcoal);
  opacity: 0.6;
  transition: opacity var(--dur);
  text-decoration: none;
  line-height: 0;
}

.nav-icon-btn:hover { opacity: 1; }

.nav-icon-btn svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

/* ============================================================
   HERO — Editorial: giant thin typography + transparent cutout
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--cream-light);
  overflow: hidden;
  padding-top: var(--nav-h);
}

/* ---- Z-1: Giant brand text — sits BEHIND the model cutout (Chronex effect) ---- */
.hero-brand-text {
  position: absolute;
  left: 0;
  right: 0;
  top: var(--nav-h);
  transform: none;
  text-align: center;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  padding: 0;                           /* edge-to-edge — no side padding */
}

/* Didot / Bodoni high-contrast luxury display serif
   Weight 400 = the authentic thin hairlines + thick strokes look.
   Heavy weight (900) kills the contrast — 400 is the Vogue choice.       */
.hero-brand-name {
  display: block;
  font-family: 'Bodoni Moda', Georgia, serif;
  font-size: clamp(56px, 14vw, 230px);
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-variation-settings: 'opsz' 96;  /* display optical size: max hairline contrast */
  letter-spacing: 0.15em;
  text-transform: uppercase;
  /* Warm editorial gray — visible but lets the portrait breathe */
  color: rgba(30, 24, 18, 0.55);
  line-height: 0.9;
  white-space: normal;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.hero-brand-official {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.72;
  margin-top: 20px;
}

/* ---- Subnav strip ---- */
.hero-subnav {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(var(--nav-h) + 25vw + 16px);
  z-index: 5;
  padding: 0 clamp(24px, 4vw, 64px);
}

.hero-subnav__rule {
  width: 100%;
  height: 1px;
  background: rgba(217, 207, 194, 0.55);
  margin-bottom: 16px;
}

.hero-subnav-links {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 44px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-subnav-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--charcoal);
  opacity: 0.75;
  text-decoration: none;
  transition: opacity var(--dur);
  white-space: nowrap;
  text-shadow: 0 0 18px rgba(240, 235, 227, 1);
}

.hero-subnav-links a:hover { opacity: 1; }

/* ---- Z-2: Portrait image — sits IN FRONT of text (Chronex breakthrough effect) ---- */
.hero-portrait {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 92%;
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  /* multiply: dark hair × light text = hair absorbs letterforms; light dress × cream bg = invisible */
  mix-blend-mode: multiply;
}

.hero-portrait img {
  height: 100%;
  width: auto;
  max-width: 50vw;
  display: block;
  object-fit: contain;
  object-position: center bottom;
}

/* Fallback JPG: fade all edges so the coloured background dissolves into the page */
.hero-portrait--fallback {
  -webkit-mask-image:
    linear-gradient(to bottom,  transparent 0%,  black 8%, black 80%, transparent 100%),
    linear-gradient(to right,   transparent 0%,  black 12%, black 88%, transparent 100%);
  mask-image:
    linear-gradient(to bottom,  transparent 0%,  black 8%, black 80%, transparent 100%),
    linear-gradient(to right,   transparent 0%,  black 12%, black 88%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-composite: intersect;
}

/* ---- Z-3: Left accent label ---- */
.hero-content-left {
  position: absolute;
  left: clamp(24px, 4vw, 64px);
  /* anchored below the subnav — never overlaps About/Projects/Press/Contact */
  top: calc(var(--nav-h) + 25vw + 80px);
  z-index: 3;
  max-width: 220px;
  padding: 16px 20px;
  background: rgba(240, 235, 227, 0.38);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-left: 1px solid rgba(217, 207, 194, 0.4);
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.eyebrow-line {
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted);
  max-width: 220px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 40px;
  align-items: flex-start;
}

/* Stats strip */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 16px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1;
}

.stat-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
}

.hero-stat-divider {
  width: 1px;
  height: 28px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Z-4: Right floating card ---- */
.hero-content-right {
  position: absolute;
  right: clamp(24px, 4vw, 68px);
  top: 50%;
  transform: translateY(-44%);
  z-index: 4;
  width: clamp(230px, 22vw, 286px);
  background: rgba(240, 235, 227, 0.42);
  backdrop-filter: blur(22px) saturate(1.4);
  -webkit-backdrop-filter: blur(22px) saturate(1.4);
  border: 1px solid rgba(217, 207, 194, 0.45);
  padding: clamp(26px, 3vw, 36px) clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
}

.hero-content-right::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  opacity: 0.55;
}

.card-kicker {
  display: block;
  font-family: var(--font-body);
  font-size: 8.5px;
  font-weight: 600;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 18px;
}

.card-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 400;
  line-height: 1.18;
  color: var(--charcoal);
  margin-bottom: 16px;
}

.card-rule {
  width: 32px;
  height: 1px;
  background: var(--border);
  margin-bottom: 16px;
}

.card-bio {
  font-family: var(--font-body);
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: 28px;
}

.card-bio em {
  font-style: italic;
  font-family: var(--font-display);
  color: var(--charcoal);
}

.card-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-content-right .btn {
  padding: 11px 16px;
  font-size: 9px;
  letter-spacing: 0.22em;
  display: block;
  text-align: center;
}

/* ---- Z-4: Euphoria accent card ---- */
.hero-accent-card {
  position: absolute;
  bottom: clamp(80px, 12vh, 140px);
  right: clamp(24px, 4vw, 64px);
  background: var(--charcoal);
  color: var(--cream-light);
  padding: 12px 18px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  z-index: 4;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  transition: background var(--dur), transform var(--dur), box-shadow var(--dur);
}

.hero-accent-card:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}

.accent-card-label {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color var(--dur);
}

.hero-accent-card:hover .accent-card-label { color: var(--white); }

.accent-card-title {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  color: var(--cream-light);
  line-height: 1.2;
}

.accent-card-cta {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  transition: color var(--dur), letter-spacing var(--dur);
}

.hero-accent-card:hover .accent-card-cta {
  color: var(--white);
  letter-spacing: 0.28em;
}

/* ---- Panel subcomponents (shared by hero-content-right + hero-panel) ---- */
.panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.panel-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel-feature {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.panel-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
}

.panel-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;   /* cinema/popcorn shot — face at top */
  transition: transform 0.6s var(--ease);
}

.panel-img:hover { transform: scale(1.05); }

.panel-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-display);
  font-size: 14px;
  font-style: italic;
  text-align: center;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
}

.panel-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.panel-category {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel-title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--cream-light);
  line-height: 1.1;
}

.panel-desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(245,237,224,0.55);
}

.panel-link {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--gold);
  transition: color var(--dur);
  margin-top: 4px;
}

.panel-link:hover { color: var(--gold-light); }

/* Panel thumbnails */
.panel-thumbs {
  display: flex;
  gap: 8px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
}

.panel-thumb {
  position: relative;
  flex: 1;
  aspect-ratio: 1;
  overflow: hidden;
  text-decoration: none;
  display: block;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 8px;
  transition: border-color var(--dur);
}

.panel-thumb.active {
  border-color: var(--gold);
}

.panel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s var(--ease);
}

.panel-thumb:hover img { transform: scale(1.08); }

.thumb-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,8,5,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.thumb-overlay span {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.panel-thumb:hover .thumb-overlay { opacity: 1; }

.thumb-placeholder {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(255,255,255,0.15);
}

/* ---- SCROLL INDICATOR ---- */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 10;
  animation: fadeInUp 1s 1.5s both;
}

.scroll-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: var(--border);
  position: relative;
  overflow: hidden;
}

.scroll-dot {
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

@keyframes scrollDrop {
  0%   { top: -6px; opacity: 1; }
  80%  { top: calc(100% + 2px); opacity: 0.3; }
  100% { top: -6px; opacity: 0; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ---- TICKER ---- */
.ticker {
  background: var(--charcoal);
  overflow: hidden;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 24px;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-track span {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,237,224,0.5);
}

.ticker-dot {
  color: var(--gold) !important;
  font-size: 16px !important;
  line-height: 1;
}

@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- FEATURED WORK ---- */
.featured-work {
  padding: var(--section-pad) 0;
  background: var(--cream-light);
}

.section-intro {
  margin-bottom: 56px;
}

.section-intro-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 20px;
}

.section-intro-text {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.75;
  color: var(--muted);
  max-width: 400px;
}

/* Work grid */
.work-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 12px;
}

.work-card {
  position: relative;
  cursor: pointer;
}

.work-card-img {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 12px;
}

.work-card-large .work-card-img {
  aspect-ratio: 2/3;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;   /* favour face for all portrait work cards */
  transition: transform 0.7s var(--ease);
}

.work-card:hover .work-card-img img {
  transform: scale(1.06);
}

.work-card-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}

.work-card-placeholder span {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--muted);
}

.work-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,21,16,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}

.work-card:hover .work-card-overlay { opacity: 1; }

.work-card-btn {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 10px 20px;
  transition: all var(--dur);
}

.work-card-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
}

.work-card-info {
  padding: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.work-card-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.work-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.1;
}

.work-card-role {
  font-size: 13px;
  font-style: italic;
  font-family: var(--font-display);
  color: var(--muted);
}

.work-card-year {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--border);
  margin-top: 4px;
}

.work-footer {
  margin-top: 56px;
  text-align: center;
}

/* ---- ABOUT STRIP ---- */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 720px;
}

.about-strip-img {
  position: relative;
  overflow: hidden;
}

.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 5%;
  transition: transform 0.8s var(--ease);
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.about-strip-img:hover img { transform: scale(1.04); }

.about-strip-img-placeholder {
  position: absolute;
  inset: 0;
  background: var(--cream-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-strip-img-placeholder span {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--muted);
}

.about-strip-content {
  background: var(--cream);
  padding: 100px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.about-strip-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--charcoal);
  margin-top: 16px;
}

.about-strip-heading em {
  font-style: italic;
  color: var(--gold);
}

.about-strip-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
}

/* ---- PRESS STRIP ---- */
.press-strip {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
  color: var(--cream-light);
}

.press-strip .section-label {
  color: rgba(184,147,90,0.7);
}

.press-strip .section-label::before {
  background: var(--gold);
}

.press-strip .section-heading {
  color: var(--cream-light);
  margin-top: 16px;
}

.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 56px;
}

.quote-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: background var(--dur);
}

.quote-card:hover {
  background: rgba(255,255,255,0.06);
}

.quote-text {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.6;
  color: var(--cream-dark);
  flex: 1;
}

.quote-text::before { content: '"'; }
.quote-text::after  { content: '"'; }

.quote-source {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 16px;
}

.quote-pub {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Press logos strip */
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.press-logos span {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: rgba(245,237,224,0.25);
  transition: color var(--dur);
  cursor: default;
}

.press-logos span:hover {
  color: rgba(245,237,224,0.5);
}

.press-logos span:not(:last-child):not([style]) {
  /* dots */
}

/* ---- GALLERY PREVIEW ---- */
.gallery-preview {
  padding: var(--section-pad) 0 0;
  background: var(--cream-light);
}

.gallery-preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}

.gallery-mosaic {
  columns: 4;
  column-gap: 10px;
  padding: 0 12px;
}

.mosaic-item {
  break-inside: avoid;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  background: var(--cream-dark);
  border-radius: 12px;
}

/* Varying heights — editorial, non-uniform rhythm */
.mosaic-item:nth-child(5n+1) img { height: 340px; }
.mosaic-item:nth-child(5n+2) img { height: 240px; }
.mosaic-item:nth-child(5n+3) img { height: 290px; }
.mosaic-item:nth-child(5n+4) img { height: 380px; }
.mosaic-item:nth-child(5n+5) img { height: 210px; }

.mosaic-item img {
  width: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 0.7s var(--ease);
}

.mosaic-item:hover img { transform: scale(1.05); }

.mosaic-placeholder {
  position: absolute;
  inset: 0;
  background: var(--cream-dark);
  border: 1px solid var(--border);
}

/* ============================================================
   RESPONSIVE — HOME
   ============================================================ */
@media (max-width: 1200px) {
  .work-grid { grid-template-columns: 1fr 1fr; gap: 2px; }
  .work-card-large .work-card-img { aspect-ratio: 3/4; }
}

@media (max-width: 1024px) {
  .hero-content-right { width: clamp(200px, 30vw, 260px); }
  .about-strip-content { padding: 80px 48px; }
  .gallery-mosaic { columns: 3; }
  .quotes-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hero-brand-name { font-size: clamp(30px, 11vw, 100px); letter-spacing: 0.12em; }
  .hero-subnav { top: calc(var(--nav-h) + 22vw + 12px); padding-left: 40px; }
  .hero-subnav-links { gap: 24px; }
  .hero-portrait { height: 76%; }
  .hero-portrait img { max-width: 80vw; }
  .hero-content-left { display: none; }
  .hero-content-right { display: none; }

  .section-intro-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { min-height: 300px; }
  .about-strip-content { padding: 60px 20px; }
  .gallery-preview-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .gallery-mosaic { columns: 2; }
}

@media (max-width: 480px) {
  .hero-brand-name { font-size: clamp(22px, 10vw, 56px); letter-spacing: 0.12em; }
  .hero-content-left { display: none; }
  .work-grid { grid-template-columns: 1fr; }
  .gallery-mosaic { columns: 2; }
  .press-logos { gap: 12px; }
}
