/* ═══════════════════════════════════════════════
   IROQUOIS — Main Stylesheet v7
   ADA / WCAG 2.1 AA compliant sizing & spacing
   Min 16px body, min 44px touch targets, 4.5:1 contrast
   ═══════════════════════════════════════════════ */

/* ── Local Fonts ── */
@font-face {
  font-family: 'Copperplate';
  src: url('../fonts/Copperplate.ttc') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Copperplate';
  src: url('../fonts/Copperplate.ttc') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Graphik';
  src: url('../fonts/Graphik-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ── Design Tokens ── */
:root {
  --bg:          #ffffff;
  --bg-alt:      #f5f3ef;
  --text:        #1a1916;
  --text-mid:    #4a4744;
  --text-light:  #767270;
  --accent:      #b8923e;
  --border:      rgba(26,25,22,0.18);

  --cp:  'Copperplate', 'Copperplate Gothic', serif;
  --gr:  'Graphik', 'Helvetica Neue', Arial, sans-serif;

  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-md:   1.125rem;
  --text-lg:   1.25rem;
  --text-xl:   1.5rem;
  --text-2xl:  2rem;
  --text-3xl:  2.5rem;
  --nav-label: 0.8125rem;

  --pad:       clamp(1.5rem, 5vw, 5rem);
  --max:       1320px;
  --nav-h:     80px;
  --ease:      cubic-bezier(0.16,1,0.3,1);
  --dur:       0.25s;
  --touch-min: 44px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--gr);
  font-size: var(--text-base);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  clip: rect(0,0,0,0);
  width: 1px; height: 1px;
  overflow: hidden;
  white-space: nowrap;
}
.skip-link:focus {
  position: fixed;
  top: 0; left: 0;
  z-index: 9999;
  clip: auto;
  width: auto; height: auto;
  padding: 1rem 2rem;
  background: var(--text);
  color: var(--bg);
  font-family: var(--cp);
  font-size: var(--text-base);
  letter-spacing: 0.1em;
  border-bottom: 3px solid #0066cc;
}

/* ════════════════════════════════
   HEADER
════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: transparent;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.scrolled {
  background: var(--bg);
  box-shadow: 0 1px 0 var(--border);
}

.header-inner {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.site-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  color: var(--text);
  transition: opacity var(--dur);
  min-height: var(--touch-min);
  justify-content: center;
}
.site-logo a:hover,
.site-logo a:focus { opacity: 0.7; }

.logo-image {
  display: block;
  height: clamp(22px, 2.2vw, 32px);
  width: auto;
  max-width: none;
}

.logo-wordmark {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
  line-height: 1;
}

.logo-tagline {
  font-family: var(--cp);
  font-weight: 400;
  font-size: clamp(0.6rem, 0.8vw, 0.72rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  line-height: 1;
}

.site-nav { display: flex; align-items: center; }
.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 3.5rem);
}

.nav-link {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.8rem, 1vw, 0.9375rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  padding: 0 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.nav-link:hover,
.nav-link:focus-visible {
  color: var(--text);
  border-bottom-color: var(--text);
  outline: none;
}
.nav-link.active {
  color: var(--text);
  border-bottom-color: var(--text);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 4px;
}
.menu-toggle:focus-visible { outline: 3px solid #0066cc; }

.menu-toggle__bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--dur), opacity var(--dur);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-toggle__bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ════════════════════════════════
   HERO SECTION
════════════════════════════════ */
.section--hero {
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  background: #1a1916;
  margin-top: 0;
  padding-top: 0;
}

@supports not (height: 100svh) {
  .section--hero {
    height: -webkit-fill-available;
    height: 100vh;
  }
}

@supports (height: 100dvh) {
  .section--hero {
    height: 100dvh;
  }
}

.hero__bg-img {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.06);
  transition: transform 8s ease-out;
}
.section--hero.is-visible .hero__bg-img { transform: scale(1); }

.hero__bg-placeholder {
  position: absolute; inset: 0;
  background: #1a1916;
}
.hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(
    125deg,
    rgba(26,25,22,0.00) 0%,
    rgba(26,25,22,0.06) 100%
  );
  pointer-events: none;
}
.hero__content {
  position: relative; z-index: 2;
  padding: var(--pad);
  padding-bottom: clamp(4rem, 9vh, 7rem);
  max-width: 1100px;
  text-align: right;
}

.hero__headline {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.9vw, 1.65rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}
.hero__subheadline {
  font-family: var(--gr);
  font-size: clamp(0.95rem, 1.3vw, 1.15rem);
  font-style: italic;
  line-height: 1.8;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 1px 10px rgba(0,0,0,0.45);
}

.hero__cta {
  display: inline-flex;
  align-items: center;
  margin-top: 2rem;
  padding: 0.875rem 2.5rem;
  min-height: var(--touch-min);
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.75);
  color: #fff;
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.hero__cta:hover,
.hero__cta:focus-visible {
  background: rgba(255,255,255,0.18);
  border-color: #fff;
  color: #fff;
  outline: none;
}
.hero__cta:focus-visible { outline: 3px solid #0066cc; outline-offset: 3px; }

/* ════════════════════════════════
   SHARED SECTION STYLES
════════════════════════════════ */
.section { position: relative; width: 100%; }

.section__heading {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 2rem;
  line-height: 1.4;
}
.section__heading--center { text-align: center; }

.text-link {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  display: inline-flex;
  align-items: center;
  min-height: var(--touch-min);
  transition: color var(--dur);
}
.text-link:hover, .text-link:focus-visible { color: var(--text); outline: none; }

.prose {
  font-family: var(--gr);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-mid);
}
.prose p { margin-bottom: 1.4em; }
.prose p:last-child { margin-bottom: 0; }
.prose h2 {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.9vw, 0.82rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text);
  margin: 3em 0 1em;
}

/* ── Shared Outline Button ── */
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.5rem;
  min-height: var(--touch-min);
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn-outline:hover,
.btn-outline:focus-visible {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  outline: none;
}
.btn-outline:focus-visible { outline: 3px solid #0066cc; outline-offset: 3px; }
.btn-outline--dark { border-color: var(--text); color: var(--text); }
.btn-outline--dark:hover,
.btn-outline--dark:focus-visible { background: var(--text); color: var(--bg); }

/* ── Primary Button (used for Inquire in story section) ── */
.btn--primary {
  display: inline-flex;
  align-items: center;
  padding: 0.875rem 2.5rem;
  min-height: var(--touch-min);
  background: var(--text);
  border: 1.5px solid var(--text);
  color: var(--bg);
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.9vw, 0.875rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.btn--primary:hover,
.btn--primary:focus-visible {
  background: transparent;
  border-color: var(--text);
  color: var(--text);
  outline: none;
}
.btn--primary:focus-visible { outline: 3px solid #0066cc; outline-offset: 3px; }

/* ════════════════════════════════
   STORY SECTION (homepage teaser)
════════════════════════════════ */
.section--story {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--bg);
  margin-top: 0;
}

.story__text-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 5vw, 5rem);
}

.story__text-row > .text-link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: auto;
}

.story__body {
  font-family: var(--gr);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-mid);
}
.story__body p { margin-bottom: 1.3em; }
.story__body p:last-child { margin-bottom: 0; }

.story__media-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(0.75rem, 1.5vw, 1.5rem);
  max-width: var(--max);
  margin: 0 auto clamp(3rem, 5vw, 4rem);
}

.story__media-panel {
  overflow: hidden;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
}

.story__media-panel figure { margin: 0; }

.story__media-panel img,
.story__media-panel video {
  width: 100%;
  height: clamp(260px, 35vw, 540px);
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}

.story__media-panel:hover img,
.story__media-panel:hover video {
  transform: scale(1.02);
}

.story__video-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}
.story__video-wrap iframe,
.story__video-wrap video,
.story__video-wrap object,
.story__video-wrap embed {
  position: absolute;
  top: 0; left: 0;
  width: 100% !important;
  height: 100% !important;
  border: none;
}

.story__media-caption {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted, #888);
  padding: 0.6rem 0.1rem 0;
  text-align: left;
}

.section--story .carousel {
  max-width: var(--max);
  margin: 0 auto;
}

.progress__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

/* ════════════════════════════════
   FULL-BLEED IMAGE
════════════════════════════════ */
.section--full-bleed { width: 100%; overflow: hidden; line-height: 0; position: relative; }
.full-bleed__image { width: 100%; margin: 0; }
.full-bleed__image img {
  width: 100%;
  height: clamp(240px, 33vw, 480px);
  object-fit: cover;
  object-position: center 55%;
  display: block;
}
.full-bleed__placeholder {
  width: 100%;
  height: clamp(240px, 33vw, 480px);
  background: var(--bg-alt);
}

/* ════════════════════════════════
   CAROUSELS
════════════════════════════════ */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.carousel__track {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.5rem;
  cursor: grab;
  scroll-snap-type: x mandatory;
}
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__track.is-dragging { cursor: grabbing; scroll-snap-type: none; }

.carousel__item {
  flex: 0 0 auto;
  width: clamp(220px, 28vw, 380px);
  scroll-snap-align: start;
  overflow: hidden;
  background: var(--bg-alt);
  margin: 0;
}
.carousel__item img,
.carousel__item video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s var(--ease), opacity 0.3s;
  opacity: 0.92;
}
.carousel__item:hover img,
.carousel__item:hover video { transform: scale(1.02); opacity: 1; }
.carousel__item--video video { aspect-ratio: 16 / 9; }

/* ════════════════════════════════
   PERFORMANCE
════════════════════════════════ */
.section--performance {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}
.performance__image { width: 100%; margin: 0; overflow: hidden; }
.performance__image img {
  width: 100%;
  height: clamp(270px, 35vw, 525px);
  object-fit: cover;
  object-position: center 60%;
  display: block;
}
.performance__image-placeholder {
  width: 100%;
  height: clamp(270px, 35vw, 525px);
  background: var(--bg-alt);
}
.performance__heading-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem var(--pad) 3.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 100%);
}
.performance__label {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

/* ════════════════════════════════
   SPECIFICATIONS (homepage section)
════════════════════════════════ */
.section--specs {
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
  background: var(--bg);
}
.specs__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
}
.specs__text-col { display: flex; flex-direction: column; }
.specs__list { display: flex; flex-direction: column; margin: 2rem 0; }
.specs__row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.25rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.specs__row:first-child { border-top: 1px solid var(--border); }
.specs__label {
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1.6;
}
.specs__value {
  font-family: var(--gr);
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.65;
}
.specs__tagline {
  font-family: var(--gr);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--accent);
  line-height: 1.8;
  margin: 1.5rem 0 1.25rem;
}
.specs__download { margin-top: 0.5rem; }
.specs__image-col {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 0.5rem;
}
.specs__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s var(--ease);
}
.specs__image:hover img { transform: scale(1.02); }
.specs__secondary-image { overflow: hidden; max-width: 220px; }
.specs__secondary-image img { width: 100%; height: auto; }

/* ════════════════════════════════
   PRESS
════════════════════════════════ */
.section--press {
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
  background: var(--bg);
}
.press__list { max-width: 720px; margin: 0 auto; }
.press__item { border-bottom: 1px solid var(--border); }
.press__item:first-child { border-top: 1px solid var(--border); }
.press__link {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.4rem 0;
  min-height: var(--touch-min);
  transition: color var(--dur);
}
.press__link:hover,
.press__link:focus-visible { color: var(--text); outline: none; }
.press__link:hover .press__arrow { transform: translateX(6px); color: var(--accent); }
.press__publication {
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  flex: 1;
}
.press__date {
  font-family: var(--gr);
  font-size: var(--text-sm);
  color: var(--text-light);
}
.press__arrow {
  color: var(--text-light);
  font-size: 1rem;
  transition: transform var(--dur), color var(--dur);
}

/* ════════════════════════════════
   CONTACT
════════════════════════════════ */
.section--contact {
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad);
  background: var(--bg-alt);
}
.contact__inner { max-width: 580px; margin: 0 auto; text-align: center; }
.contact__intro {
  font-family: var(--gr);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--text-mid);
  margin-bottom: 3.5rem;
  line-height: 1.7;
}
.contact__placeholder {
  font-family: var(--gr);
  font-style: italic;
  color: var(--text-light);
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--border);
  font-size: var(--text-base);
  line-height: 1.7;
  border-radius: 2px;
}

.wpcf7 { color: var(--text); text-align: left; }
.wpcf7 label {
  display: block;
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.wpcf7 .wpcf7-form-control-wrap { display: block; margin-bottom: 1.75rem; }
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--gr);
  font-size: var(--text-base);
  padding: 0.85rem 0;
  outline: none;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color var(--dur);
  min-height: var(--touch-min);
}
.wpcf7 input:focus-visible,
.wpcf7 textarea:focus-visible {
  border-color: var(--text);
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}
.wpcf7 input::placeholder,
.wpcf7 textarea::placeholder { color: var(--text-light); font-style: italic; }
.wpcf7 textarea { min-height: 130px; resize: vertical; }
.wpcf7 input[type="submit"] {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text);
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 3rem;
  cursor: pointer;
  margin-top: 1rem;
  min-height: var(--touch-min);
  transition: background var(--dur), color var(--dur), border-color var(--dur);
}
.wpcf7 input[type="submit"]:hover,
.wpcf7 input[type="submit"]:focus-visible {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  outline: none;
}
.wpcf7 .wpcf7-not-valid-tip {
  font-family: var(--gr);
  font-size: var(--text-sm);
  color: #b32d2e;
  margin-top: 0.25rem;
  display: block;
}
.wpcf7 .wpcf7-response-output {
  font-family: var(--gr);
  font-size: var(--text-sm);
  border: 1px solid var(--border);
  padding: 1rem 1.25rem;
  margin-top: 1.25rem;
  text-align: center;
}

/* ════════════════════════════════
   FOOTER
════════════════════════════════ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 4rem var(--pad) 2.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto 2.5rem;
  gap: 2rem;
}
.footer-nav__list {
  display: flex;
  flex-direction: row;
  gap: clamp(1.5rem, 3vw, 3.5rem);
  align-items: center;
}
.footer-nav .nav-link {
  color: var(--text-mid);
  min-height: var(--touch-min);
}
.footer-nav .nav-link:hover { color: var(--text); border-color: var(--text); }

.footer-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer__inquire-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 2rem;
  min-height: var(--touch-min);
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease),
              color var(--dur) var(--ease);
}
.footer__inquire-btn:hover,
.footer__inquire-btn:focus-visible {
  background: var(--text);
  border-color: var(--text);
  color: var(--bg);
  outline: none;
}
.footer__inquire-btn:focus-visible { outline: 3px solid #0066cc; outline-offset: 3px; }

.footer-logo { justify-self: end; }
.footer-logo .logo-wordmark { font-size: clamp(1.5rem, 3vw, 2.4rem); }
.footer-logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.4rem;
  color: var(--text);
  transition: opacity var(--dur);
  min-height: var(--touch-min);
  justify-content: center;
}
.footer-logo a:hover { opacity: 0.65; }
.footer-logo .logo-tagline {
  font-family: var(--cp);
  font-weight: 400;
  font-size: clamp(0.55rem, 0.7vw, 0.65rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  white-space: nowrap;
  line-height: 1;
  display: block;
}
.footer-legal {
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  text-align: center;
}
.footer-legal p { font-family: var(--gr); font-size: var(--text-sm); color: var(--text-light); line-height: 1.7; }
.footer-legal a { color: var(--text-light); text-decoration: underline; }
.footer-legal a:hover { color: var(--text); }

/* ════════════════════════════════
   GALLERY / SPECS PAGE HERO
════════════════════════════════ */
.section--page-hero {
  position: relative;
  height: 60vh;
  min-height: 380px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: var(--bg-alt);
  margin-top: 0;
}
.page-hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
}
.page-hero__content {
  position: relative; z-index: 2;
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 5vh, 4.5rem);
}
.page-hero__title {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.section--page-hero-minimal {
  height: auto;
  padding: 5.5rem var(--pad) 2.5rem;
  background: var(--bg);
  margin-top: var(--nav-h);
}
.page-hero__title-plain {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 2rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
}

/* ════════════════════════════════
   SPECS PAGE — INTRO BLOCK
════════════════════════════════ */
.section--specs-intro {
  padding: clamp(3rem, 6vw, 5rem) var(--pad) clamp(2rem, 4vw, 3rem);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.specs-intro__inner {
  max-width: 900px;
  margin: 0 auto;
}
.specs-intro__kicker {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.7rem, 0.85vw, 0.8rem);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.specs-intro__body {
  font-family: var(--gr);
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--text-mid);
  max-width: 720px;
}

/* ════════════════════════════════
   FULL SPECS PAGE
════════════════════════════════ */
.section--full-specs { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); background: var(--bg); }
.full-specs__inner { max-width: 900px; margin: 0 auto; }
.full-specs__table { width: 100%; margin: 2.5rem 0 4.5rem; }
.full-specs__row {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  align-items: baseline;
}
.full-specs__row:first-child { border-top: 1px solid var(--border); }
.full-specs__row dt {
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
}
.full-specs__row dd {
  font-family: var(--gr);
  font-size: var(--text-base);
  color: var(--text-mid);
  line-height: 1.65;
}
.full-specs__downloads { margin-top: 3.5rem; }

/* Legacy inline CTA — hidden in favour of closing contact block */
.specs__contact-cta { display: none; }

/* ════════════════════════════════
   GALLERY CAROUSELS (specs page)
════════════════════════════════ */
.section--full-gallery { padding: clamp(4.5rem, 9vw, 8rem) var(--pad); background: var(--bg-alt); }
.full-gallery__inner { max-width: var(--max); margin: 0 auto; }
.full-gallery__empty {
  font-family: var(--gr);
  font-style: italic;
  font-size: var(--text-base);
  color: var(--text-light);
  text-align: center;
  padding: 6rem 0;
}
.full-gallery__caption {
  font-family: var(--gr);
  font-size: var(--text-sm);
  font-style: italic;
  color: var(--text-light);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
  line-height: 1.75;
}

.gallery-carousel-block { margin-bottom: 4rem; }
.gallery-carousel-block:last-child { margin-bottom: 0; }
.gallery-carousel__label {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.75rem, 0.95vw, 0.875rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

.gallery-item { background: var(--bg-alt); position: relative; }
.gallery-item__link { display: block; width: 100%; }
.gallery-item__img {
  width: 100%; height: auto;
  display: block;
  opacity: 0.92;
  transition: transform 0.5s var(--ease), opacity 0.3s;
}
.gallery-item:hover .gallery-item__img { transform: scale(1.02); opacity: 1; }
.gallery-item__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.75rem 1rem;
  background: linear-gradient(to top, rgba(255,255,255,0.92) 0%, transparent 100%);
  font-family: var(--gr);
  font-size: var(--text-sm);
  color: var(--text-mid);
  opacity: 0; transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item:hover .gallery-item__caption,
.gallery-item:focus-within .gallery-item__caption { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   SPECS PAGE — CLOSING CONTACT BLOCK
════════════════════════════════ */
.section--specs-contact {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--bg);
  text-align: center;
  border-top: 1px solid var(--border);
}
.specs-contact__inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.specs-contact__body {
  font-family: var(--gr);
  font-size: var(--text-md);
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.8;
}

/* ════════════════════════════════
   LIGHTBOX
════════════════════════════════ */
.lightbox {
  position: fixed; inset: 0; z-index: 300;
  display: flex; align-items: center; justify-content: center; padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox__backdrop {
  position: fixed; inset: 0; z-index: 299;
  background: rgba(255,255,255,0.96);
  opacity: 0; transition: opacity 0.3s;
  pointer-events: none;
}
.lightbox__backdrop.is-active { opacity: 1; pointer-events: all; }
.lightbox__figure { position: relative; z-index: 301; max-width: 90vw; max-height: 85vh; margin: 0; }
.lightbox__img { max-width: 90vw; max-height: 80vh; width: auto; height: auto; object-fit: contain; display: block; box-shadow: 0 20px 80px rgba(26,25,22,0.12); }
.lightbox__caption { font-family: var(--gr); font-size: var(--text-sm); font-style: italic; color: var(--text-light); text-align: center; margin-top: 1rem; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: fixed;
  background: transparent;
  border: none;
  color: var(--text-mid);
  cursor: pointer;
  z-index: 302;
  min-width: var(--touch-min);
  min-height: var(--touch-min);
  display: flex; align-items: center; justify-content: center;
  border-radius: 4px;
  transition: color var(--dur);
}
.lightbox__close { top: 1rem; right: 1rem; font-size: 2.25rem; }
.lightbox__prev { left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.75rem; }
.lightbox__next { right: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.75rem; }
.lightbox__close:hover,
.lightbox__prev:hover,
.lightbox__next:hover,
.lightbox__close:focus-visible,
.lightbox__prev:focus-visible,
.lightbox__next:focus-visible { color: var(--text); outline: 3px solid #0066cc; }

/* ════════════════════════════════
   SINGLE POST
════════════════════════════════ */
.section--single-post { padding: calc(var(--nav-h) + 4.5rem) var(--pad) 7rem; background: var(--bg); }
.single-post__inner { max-width: 760px; margin: 0 auto; }
.single-post__hero { margin-bottom: 3.5rem; overflow: hidden; }
.single-post__hero img { width: 100%; height: 480px; object-fit: cover; }
.single-post__date {
  font-family: var(--cp); font-weight: 400;
  font-size: 0.75rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--text-light);
  display: block; margin-bottom: 1rem;
}
.single-post__title {
  font-family: var(--cp); font-weight: 700;
  font-size: clamp(0.75rem, 1.3vw, 1rem);
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--text);
  margin-bottom: 3.5rem; padding-bottom: 2.5rem; border-bottom: 1px solid var(--border);
}
.single-post__body { margin-bottom: 6rem; }
.single-post__nav {
  display: flex; justify-content: space-between;
  gap: 2rem; padding-top: 2.5rem; border-top: 1px solid var(--border);
}
.single-post__nav a {
  font-family: var(--cp); font-weight: 400;
  font-size: var(--text-sm); letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--text-light);
  min-height: var(--touch-min); display: flex; align-items: center;
  transition: color var(--dur);
}
.single-post__nav a:hover { color: var(--text); }

/* ════════════════════════════════
   DOWNLOAD MONITOR
════════════════════════════════ */
.dlm-button, .dlm-download-link {
  display: inline-flex; align-items: center;
  min-height: var(--touch-min);
  font-family: var(--cp); font-weight: 700;
  font-size: 0.8125rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-mid);
  border-bottom: 1px solid transparent; padding-bottom: 2px;
  transition: color var(--dur), border-color var(--dur);
  background: none; cursor: pointer;
}
.dlm-button:hover, .dlm-download-link:hover { color: var(--text); border-bottom-color: var(--text); }

/* ════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════ */
.fade-in { opacity: 0; transform: translateY(18px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════════
   SECTION LABEL BAR
════════════════════════════════ */
.section-label-bar {
  max-width: var(--max);
  margin: 0 auto 3rem;
}
.section-label {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.6rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text);
}

/* ════════════════════════════════
   FULL-BLEED IMAGE WITH LABEL OVERLAY
════════════════════════════════ */
.section--full-bleed { position: relative; }
.full-bleed__label-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 3rem var(--pad) 3.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.38) 0%, transparent 100%);
}
.full-bleed__label {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
  line-height: 1.4;
}

/* ════════════════════════════════
   STORY PAGE — HERO WITH TITLE
════════════════════════════════ */
.section--story-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  background: #1a1916;
  margin-top: 0;
  padding-top: 0;
}
.story-hero__bg-placeholder { position: absolute; inset: 0; background: #1a1916; }
.story-hero__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.story-hero__overlay {
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.42) 0%, rgba(0,0,0,0.08) 50%, transparent 100%);
}
.story-hero__content {
  position: relative; z-index: 2;
  padding: var(--pad);
  padding-bottom: clamp(2.5rem, 5vh, 4.5rem);
}
.story-hero__title {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.3rem, 2.5vw, 2.2rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

/* ════════════════════════════════
   STORY CHAPTERS
════════════════════════════════ */
.story-chapter {
  padding: clamp(4rem, 8vw, 7rem) var(--pad);
  background: var(--bg);
}
.story-chapter:nth-child(even) { background: var(--bg-alt); }

.story-chapter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
}
.story-chapter--flipped .story-chapter__inner { direction: rtl; }
.story-chapter--flipped .story-chapter__inner > * { direction: ltr; }
.story-chapter__inner--no-image { grid-template-columns: 1fr; max-width: 760px; }

/* ── Story chapter image: background-image div with focal point anchor ──
   Using background-image (same pattern as hero/page-hero) guarantees that
   background-size:cover + background-position always work correctly — no
   srcset surprises, no object-position axis conflicts.
── */
.story-chapter__image {
  overflow: hidden;
  align-self: stretch;
  min-height: clamp(360px, 55vw, 680px);
  background-size: cover;
  background-repeat: no-repeat;
  /* background-position is set per-chapter via inline style */
  background-position: center center;
  transition: transform 0.7s var(--ease);
}
.story-chapter__image:hover { transform: scale(1.02); }

/* If the image is naturally taller than the crop height, let it show fully */
.story-chapter__image--natural img {
  height: auto;
  min-height: clamp(280px, 40vw, 560px);
}

.story-chapter__heading {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.5rem;
}
.story-chapter__body {
  font-family: var(--gr);
  font-size: var(--text-md);
  line-height: 1.8;
  color: var(--text-mid);
}
.story-chapter__body p { margin-bottom: 1.3em; }
.story-chapter__body p:last-child { margin-bottom: 0; }
.story-chapter__divider {
  height: 1px;
  background: var(--border);
  max-width: var(--max);
  margin: 0 auto;
}

.section--story-inline-cta {
  padding: 3rem var(--pad);
  background: var(--bg-alt);
  text-align: center;
}
.story-inline-cta__inner { max-width: var(--max); margin: 0 auto; }

.section--story-cta {
  padding: clamp(4rem, 7vw, 6rem) var(--pad);
  background: var(--bg);
  border-top: 1px solid var(--border);
  text-align: center;
}
.story-cta__inner { max-width: var(--max); margin: 0 auto; }

/* ════════════════════════════════
   CREDITS PAGE
════════════════════════════════ */
.section--credits {
  padding: 3rem var(--pad) clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}
.credits__inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.credits__group {
  border-bottom: 1px solid var(--border);
  padding-bottom: 2.5rem;
}
.credits__group:last-child { border-bottom: none; padding-bottom: 0; }
.credits__heading {
  font-family: var(--cp);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.credits__entry {
  font-family: var(--gr);
  font-size: var(--text-md);
  color: var(--text-mid);
  line-height: 1.65;
}
.credits__entry a {
  color: var(--text-mid);
  border-bottom: 1px solid currentColor;
  transition: color var(--dur);
}
.credits__entry a:hover { color: var(--text); }

/* ════════════════════════════════
   PRIVACY PAGE
════════════════════════════════ */
.section--privacy {
  padding: 3rem var(--pad) clamp(4rem, 8vw, 7rem);
  background: var(--bg);
}
.privacy__inner { max-width: 760px; margin: 0 auto; }
.privacy__body h2 {
  font-family: var(--cp);
  font-weight: 700;
  font-size: clamp(0.75rem, 1vw, 0.9rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  margin: 3rem 0 1rem;
}
.privacy__body p {
  font-family: var(--gr);
  font-size: var(--text-md);
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.4em;
}
.privacy__body a { color: var(--text-mid); text-decoration: underline; }
.privacy__body a:hover { color: var(--text); }

/* ════════════════════════════════
   HERO SCROLL CUE
════════════════════════════════ */
.hero__scroll-cue {
  position: absolute;
  bottom: clamp(1.75rem, 4vh, 3rem);
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: hero-scroll-fade-in 1s ease 1.5s forwards;
}
@keyframes hero-scroll-fade-in { to { opacity: 1; } }
.hero__scroll-icon {
  width: 26px; height: 40px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.35));
}
.hero__scroll-dot {
  animation: scroll-bounce 2s ease-in-out 2.5s infinite;
  transform-origin: center;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%       { transform: translateY(9px); opacity: 0.4; }
}

/* ════════════════════════════════
   RESPONSIVE — Tablet ≤1024px
════════════════════════════════ */
@media (max-width: 1024px) {
  .specs__grid { grid-template-columns: 1fr; gap: 3.5rem; }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: flex-start;
  }
  .footer-center { justify-content: flex-start; }
  .footer-logo { justify-self: start; }
  .footer-logo a { align-items: flex-start; }

  /* On tablet, reduce chapter image height slightly */
  .story-chapter__image {
    min-height: clamp(300px, 45vw, 520px);
  }
}

/* ════════════════════════════════
   RESPONSIVE — Mobile ≤768px
════════════════════════════════ */
@media (max-width: 768px) {
  :root {
    --nav-h: 68px;
    --pad:   1.5rem;
  }

  .header-inner { height: var(--nav-h); align-items: center; }
  .logo-tagline { display: none; }
  .menu-toggle { display: flex; }

  .site-header.menu-open {
    background: var(--bg) !important;
    box-shadow: 0 1px 0 var(--border);
  }

  .site-nav {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--bg);
    padding: 2.5rem var(--pad) 3rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
    z-index: 199;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: all; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 0; }
  .nav-link {
    font-size: 1rem;
    width: 100%;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    border-bottom-color: var(--border) !important;
    min-height: 54px;
    color: var(--text-mid) !important;
  }
  .nav-link.active,
  .nav-link:hover { color: var(--text) !important; }

  /* ── Hero mobile ── */
  .section--hero {
    align-items: flex-end;
    justify-content: flex-start;
    height: 100svh;
    min-height: 500px;
  }
  .hero__bg-img {
    transform: none !important;
    transition: none !important;
  }
  .section--hero.is-visible .hero__bg-img {
    transform: none !important;
    transition: none !important;
  }
  .hero__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 100%;
    width: 100%;
    padding: 1.5rem;
    padding-bottom: 5rem;
    text-align: left;
    gap: 0;
  }
  .hero__headline {
    font-size: clamp(1rem, 5.2vw, 1.3rem);
    letter-spacing: 0.14em;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    word-break: break-word;
  }
  .hero__subheadline {
    font-size: 0.9375rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
  }
  .hero__cta {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0.8rem 1.75rem;
    font-size: 0.75rem;
    letter-spacing: 0.18em;
    align-self: flex-start;
    position: relative;
    z-index: 4;
    width: auto;
  }
  .hero__scroll-cue { bottom: 1.25rem; z-index: 3; }

  /* ── Story section mobile ── */
  .story__media-row {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  .story__media-panel img,
  .story__media-panel video {
    height: clamp(200px, 60vw, 340px);
  }
  .progress__cta {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
  }

  /* ── Story chapters — image above text on mobile, natural height ── */
  .story-chapter {
    padding: clamp(2.5rem, 6vw, 4rem) 1.5rem;
  }
  .story-chapter__inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.75rem !important;
  }
  .story-chapter__image {
    order: -1 !important;
    width: 100%;
    align-self: auto;
    min-height: 260px;
  }
  .story-chapter__text { order: 0 !important; width: 100%; }
  .story-chapter--flipped .story-chapter__inner { direction: ltr !important; }
  .story-chapter--flipped .story-chapter__inner > * { direction: ltr !important; }

  .carousel__item { width: clamp(180px, 72vw, 320px); }

  .specs__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .full-specs__row { grid-template-columns: 1fr; gap: 0.25rem; }
  .footer-nav__list { flex-direction: row; flex-wrap: wrap; gap: 0.5rem 1.5rem; }
  .footer__inquire-btn { padding: 0.75rem 1.5rem; }
  .footer-legal { text-align: left; }
  .lightbox__prev { left: 0.25rem; }
  .lightbox__next { right: 0.25rem; }

  .full-bleed__label,
  .performance__label {
    font-size: clamp(0.85rem, 4vw, 1.2rem);
    letter-spacing: 0.15em;
    white-space: normal;
    word-break: break-word;
    line-height: 1.4;
  }
  .full-bleed__label-overlay,
  .performance__heading-overlay { padding: 2rem var(--pad) 2rem; }

  .section--story-inline-cta { padding: 2.5rem var(--pad); }

  /* ── Specs page intro / contact mobile ── */
  .specs-intro__body { font-size: var(--text-base); }
  .specs-contact__body { font-size: var(--text-base); }
}

@media (max-width: 375px) {
  :root { --pad: 1.125rem; }
  .hero__content {
    padding: 1.125rem;
    padding-bottom: 5rem;
  }
  .hero__headline {
    font-size: clamp(0.9rem, 4.8vw, 1.1rem);
    letter-spacing: 0.12em;
  }
}

/* dvh support for mobile ≤768 */
@media (max-width: 768px) {
  @supports (height: 100dvh) {
    .section--hero { height: 100dvh; }
  }
}

/* ── Print ── */
@media print {
  .site-header, .site-footer, .section--contact,
  .lightbox, .lightbox__backdrop { display: none !important; }
  body { background: white; color: black; font-size: 12pt; }
  a { color: black; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero__bg-img { transform: none !important; }
}

/* ── Video poster / keyframe cover ── */
.story__video-poster {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.story__video-poster.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Video unmute overlay button ── */
.story__video-unmute {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: rgba(0,0,0,0.25);
  border: none;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease;
  z-index: 3;
}
.story__video-unmute:hover {
  background: rgba(0,0,0,0.35);
}
.story__video-unmute svg {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  padding: 0.9rem;
  transition: background 0.2s ease, transform 0.2s ease;
}
.story__video-unmute:hover svg {
  background: rgba(255,255,255,0.25);
  transform: scale(1.07);
}
.story__video-unmute span {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
}
.story__video-unmute.is-hidden {
  display: none;
}

.story__media-lightbox {
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.story__media-zoom {
  position: absolute;
  bottom: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 1.1rem;
  border-radius: 3px;
  opacity: 0;
  transition: opacity 0.2s ease;
  pointer-events: none;
}
.story__media-lightbox:hover .story__media-zoom,
.story__media-lightbox:focus .story__media-zoom {
  opacity: 1;
}

/* ── Lightbox overlay ── */
.iroq-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.iroq-lightbox[hidden] { display: none; }
.iroq-lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 2px;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.iroq-lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  opacity: 0.7;
  transition: opacity 0.15s;
}
.iroq-lightbox__close:hover { opacity: 1; }

/* end of styles */