/* ============================================================
   Encounter — shared styles (landing + London + Los Angeles)
   True black, cool silver/blue accent, Cormorant + Syne.
   Image-forward: full-bleed plates, large type.
   ============================================================ */

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

:root {
  --black:      #000000;
  --near:       #050608;
  --white:      #ffffff;
  --off-white:  #e6eaee;
  --mid:        #9aa3ad;
  --soft:       #6b7480;
  --dim:        #3a424b;
  --rule:       #14181d;
  --accent:     #9fb6c9;
  --accent-dim: #6a7d8e;
  --accent-bri: #d2dde6;

  --pad:   clamp(24px, 6vw, 120px);
  --prose: 640px;
  --wide:  920px;
  --full:  1240px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--black);
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 400;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; }

.serif { font-family: 'Cormorant Garamond', serif; font-weight: 300; }
.eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--accent);
}

/* ---------------- nav ---------------- */
#nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem var(--pad);
  background: linear-gradient(180deg, rgba(0,0,0,0.8), rgba(0,0,0,0));
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
#nav.solid { background: rgba(0,0,0,0.92); backdrop-filter: blur(10px); border-bottom-color: var(--rule); }
.wordmark {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--white); text-decoration: none;
  white-space: nowrap; transition: color 0.25s;
}
.wordmark:hover { color: var(--accent); }
.nav-links { display: flex; gap: clamp(1rem, 2.6vw, 2.4rem); align-items: center; }
.nav-links a {
  font-size: 0.74rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--soft); text-decoration: none;
  transition: color 0.2s; white-space: nowrap;
}
.nav-links a:hover { color: var(--off-white); }
.nav-links a.current { color: var(--accent); }
.nav-right { display: flex; align-items: center; gap: clamp(0.9rem, 2vw, 1.8rem); }
.nav-toggle { display: none; width: 30px; height: 26px; flex-direction: column; justify-content: center; gap: 6px; background: none; border: none; padding: 0; cursor: pointer; }
.nav-toggle span { display: block; height: 1.5px; width: 24px; background: var(--off-white); transition: transform 0.3s, opacity 0.2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }
@media (max-width: 720px) {
  .wordmark { font-size: 0.72rem; letter-spacing: 0.2em; }
  .wordmark, .nav-right { position: relative; z-index: 2; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; inset: 0 0 auto 0; flex-direction: column; align-items: flex-start;
    gap: 1.5rem; background: rgba(0,0,0,0.97); backdrop-filter: blur(14px);
    padding: clamp(82px,15vh,120px) var(--pad) clamp(40px,7vh,64px);
    border-bottom: 1px solid var(--rule); z-index: 1;
    transform: translateY(-100%); visibility: hidden; transition: transform 0.38s cubic-bezier(.2,.7,.2,1), visibility 0.38s;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; }
  .nav-links a { font-size: 1.05rem; letter-spacing: 0.12em; color: var(--off-white); }
  .nav-links a.current { color: var(--accent); }
}
.nav-lock {
  font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--mid); white-space: nowrap;
}
@media (max-width: 700px) { .nav-lock { display: none; } }

/* ---------------- hero ---------------- */
.hero {
  position: relative; height: 100svh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media, .hero video, .hero img.hero-media {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; z-index: 0;
}
.hero.contain .hero-media { object-fit: contain; background: var(--black); }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.25) 62%, rgba(0,0,0,.95) 100%);
}
.hero-inner { position: relative; z-index: 2; width: 100%; padding: 0 var(--pad) clamp(44px, 8vh, 110px); }
.hero .eyebrow { margin-bottom: 1.2rem; }
.hero h1 {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(2.8rem, 9.5vw, 8rem); line-height: 0.9;
  letter-spacing: -0.02em; color: var(--off-white);
}
.hero h1 .sub-title { display:block; font-size: clamp(1rem, 3vw, 2.1rem); letter-spacing: 0.02em; color: var(--accent); font-style: italic; margin-top: 0.6rem; }
.hero-sub {
  margin-top: 1.4rem; max-width: 40ch;
  font-size: clamp(0.85rem, 1.5vw, 1.05rem); color: var(--mid);
}
.hero-meta {
  margin-top: 1.6rem; display: flex; flex-wrap: wrap; gap: 0.6rem 2rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--accent-dim);
}
.scroll-cue {
  position: absolute; z-index: 2; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.58rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--dim);
  animation: bob 2.6s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,6px)} }

/* ---------------- sections / rhythm ---------------- */
section { padding: clamp(48px, 8vh, 104px) var(--pad); }
section.tight { padding-top: clamp(30px,4.5vh,58px); padding-bottom: clamp(30px,4.5vh,58px); }
.measure { max-width: var(--prose); margin: 0 auto; }
.wide { max-width: var(--wide); margin: 0 auto; }

/* big centered quote */
.lead { max-width: var(--wide); margin: 0 auto; text-align: center; }
.lead .serif { font-size: clamp(1.7rem, 3.6vw, 3rem); line-height: 1.2; letter-spacing: -0.01em; color: var(--off-white); }
.lead .serif em { font-style: italic; color: var(--accent); }
.lead cite {
  display: block; margin-top: 1.8rem; font-style: normal;
  font-size: 0.66rem; font-weight: 600; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--accent-dim);
}
.pull { max-width: var(--wide); margin: 0 auto; text-align: center; }
.pull .serif { font-size: clamp(1.5rem, 3vw, 2.5rem); line-height: 1.28; font-style: italic; color: var(--accent-bri); }
.pull cite { display:block; margin-top: 1.6rem; font-style: normal; font-size: 0.66rem; font-weight:600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dim); }

/* heading */
h2.head, .head {
  font-family: 'Cormorant Garamond', serif; font-weight: 300;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem); line-height: 1.1;
  letter-spacing: -0.01em; color: var(--off-white);
}
.sec-head { max-width: var(--full); margin: 0 auto clamp(40px,6vh,72px); border-top: 1px solid var(--rule); padding-top: 1.5rem; display: flex; align-items: baseline; gap: 1.2rem; flex-wrap: wrap; }
.sec-head .eyebrow { flex-shrink: 0; }
.sec-head .head { margin-left: auto; font-size: clamp(1.4rem,2.8vw,2.1rem); }

/* body prose */
.prose p { font-size: clamp(1rem, 1.45vw, 1.16rem); line-height: 1.78; color: var(--mid); }
.prose p + p { margin-top: 1.3rem; }
.prose p strong, .prose em.key { color: var(--off-white); font-weight: 500; font-style: normal; }
.prose .drop::first-letter { font-family:'Cormorant Garamond',serif; font-size: 3.4em; line-height: 0.8; float: left; padding: 0.05em 0.12em 0 0; color: var(--accent); font-weight: 400; }

/* ---------------- plates (image inset to a common gutter so captions align) ---------------- */
.plate { padding: 0 var(--pad); }
.plate img, .plate video { width: 100%; display: block; }
.plate.tall img, .plate.tall video { max-height: 92vh; object-fit: cover; }
.plate.viewport img, .plate.viewport video { height: 100svh; object-fit: cover; }
.plate.bleed { padding: 0; }
figure { margin: 0; }
.cap { padding: 0.6rem 0 0; }
.cap, figcaption { font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--soft); }
.cap .accent { color: var(--accent-dim); }

/* portrait / phone-capture image shown whole on black, left-aligned so caption aligns to image edge.
   --vmax is the shared "happy-medium" width for single vertical images & videos across the site. */
:root { --vmax: 500px; }
.plate.portrait { padding: clamp(36px,6vh,80px) var(--pad); display: flex; flex-direction: column; align-items: flex-start; background: var(--black); }
.plate.portrait figure { display: inline-block; max-width: 100%; }
.plate.portrait img, .plate.portrait video, .plate.portrait .contain-video { width: auto; max-width: min(100%, var(--vmax)); max-height: 80svh; object-fit: contain; }
.plate.portrait figcaption, .plate.portrait .cap { max-width: 100%; }
/* contained (not full-bleed) image on black — for works that carry their own black ground */
.plate.framed { padding: clamp(30px,4.5vh,56px) var(--pad); display: flex; flex-direction: column; align-items: flex-start; }
.plate.framed figure { display: inline-block; max-width: min(100%, 940px); }
.plate.framed img { width: 100%; height: auto; }

/* ---------------- lightbox ---------------- */
img.zoomable { cursor: zoom-in; }
.lb-overlay { position: fixed; inset: 0; z-index: 200; background: rgba(0,0,0,0.94); display: flex; align-items: center; justify-content: center; padding: clamp(20px,5vh,64px) clamp(20px,5vw,80px); opacity: 0; visibility: hidden; transition: opacity 0.3s ease, visibility 0.3s; cursor: zoom-out; }
.lb-overlay.open { opacity: 1; visibility: visible; }
.lb-overlay img { max-width: 100%; max-height: 100%; object-fit: contain; box-shadow: 0 10px 60px rgba(0,0,0,0.6); }
.lb-close { position: fixed; top: clamp(14px,2vh,24px); right: clamp(16px,2.4vw,32px); z-index: 201; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: none; color: var(--off-white); font-size: 1.7rem; line-height: 1; cursor: pointer; transition: color 0.2s; }
.lb-close:hover { color: var(--accent); }

/* ---------------- sound toggle (animated) ---------------- */
.sound-btn { display: inline-flex; align-items: center; gap: 0.6rem; background: none; border: none; cursor: pointer; padding: 0.3rem 0; color: var(--mid); transition: color 0.2s; }
.sound-btn:hover { color: var(--off-white); }
.sound-btn.playing { color: var(--accent); }
.sound-btn .eq { display: inline-flex; align-items: flex-end; gap: 2.5px; height: 18px; }
.sound-btn .eq i { width: 2.5px; height: 5px; background: currentColor; border-radius: 1px; transition: height 0.2s; }
.sound-btn.playing .eq i { animation: eqbar 0.9s ease-in-out infinite; }
.sound-btn.playing .eq i:nth-child(1) { animation-delay: -0.5s; }
.sound-btn.playing .eq i:nth-child(2) { animation-delay: -0.2s; }
.sound-btn.playing .eq i:nth-child(3) { animation-delay: -0.7s; }
.sound-btn.playing .eq i:nth-child(4) { animation-delay: -0.35s; }
@keyframes eqbar { 0%,100% { height: 4px; } 50% { height: 18px; } }
.sound-btn .sound-label { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) { .sound-btn.playing .eq i { animation: none; height: 9px; } }
@media (max-width: 540px) { .sound-btn .sound-label { display: none; } }
.plate.portrait figcaption, .plate.portrait .cap { padding: 0.7rem 0 0; text-align: left; }

/* duo: two images edge to edge */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.duo img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
/* portrait duo — one video + one still as a tight, matched diptych, centred on black */
.duo.pair { display: grid; grid-template-columns: auto auto; gap: clamp(8px,1.2vw,16px); width: fit-content; max-width: 100%; margin: 0 auto; align-items: start; justify-content: center; }
.duo.pair figure { display: flex; flex-direction: column; align-items: center; }
.duo.pair img, .duo.pair video { width: auto; max-width: 100%; height: auto; max-height: 56svh; object-fit: contain; background: var(--black); aspect-ratio: auto; }
.duo.pair .cap { text-align: center; width: 100%; padding-top: 0.6rem; }
@media (max-width: 640px) { .duo.pair { grid-template-columns: 1fr; gap: 20px; } .duo.pair img, .duo.pair video { max-height: 66svh; } }
/* diptych beside a balancing paragraph */
.diptych-row { display: grid; grid-template-columns: auto minmax(260px, 1fr); gap: clamp(30px,4.5vw,76px); align-items: center; max-width: var(--full); margin: 0 auto; }
.diptych-text .eyebrow { margin-bottom: 1.1rem; }
.diptych-text .prose p { font-size: clamp(1rem,1.4vw,1.14rem); line-height: 1.78; color: var(--mid); }
.diptych-text .prose p + p { margin-top: 1.2rem; }
@media (max-width: 820px) { .diptych-row { grid-template-columns: 1fr; gap: clamp(24px,4vh,36px); justify-items: center; } .diptych-text { max-width: var(--prose); } }

/* parallax */
.px-box { overflow: hidden; }
.parallax { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .parallax { transform: none !important; } }
.trio { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; }
.trio img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/5; }
/* landscape cluster variant — wide event captures shown 3:2 */
.duo.land img, .trio.land img { aspect-ratio: 3/2; object-position: center 30%; }

/* split: image + text, large image */
.split { max-width: var(--full); margin: 0 auto; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(28px, 5vw, 80px); align-items: center; }
.split.flip .split-media { order: -1; }
.split-media img { width: 100%; }
.split-body .head { margin-bottom: 1.4rem; }
.split-body .eyebrow { margin-bottom: 1rem; }

/* ---------------- index cards (link to installations) ---------------- */
.index-cards { max-width: var(--full); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 2.4vw, 28px); }
.icard { position: relative; display: block; text-decoration: none; overflow: hidden; aspect-ratio: 4/5; background: var(--near); border: 1px solid var(--rule); }
.icard img { position:absolute; inset:0; width:100%; height:100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.2,1), opacity 0.5s; opacity: 0.78; }
.icard:hover img { transform: scale(1.04); opacity: 0.95; }
.icard::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.1) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.85) 100%); }
.icard-body { position: absolute; z-index: 2; inset: auto 0 0 0; padding: clamp(20px,3vw,40px); }
.icard .num { font-family:'Cormorant Garamond',serif; font-style: italic; font-size: 1rem; color: var(--accent); }
.icard h3 { font-family:'Cormorant Garamond',serif; font-weight: 300; font-size: clamp(1.8rem,3.4vw,2.8rem); line-height: 1.04; color: var(--off-white); margin: 0.3rem 0 0.5rem; }
.icard .venue { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mid); }
.icard .go { margin-top: 1rem; font-size: 0.64rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); display: inline-flex; gap: 0.5rem; }

/* ---------------- spec / credits / exhibition ---------------- */
.specs { max-width: var(--wide); margin: 0 auto; }
.spec-row { display: grid; grid-template-columns: 210px 1fr; gap: 1.4rem; padding: 1.25rem 0; border-top: 1px solid var(--rule); }
.spec-row:last-child { border-bottom: 1px solid var(--rule); }
.spec-row dt { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-dim); padding-top: 0.2rem; }
.spec-row dd { font-size: clamp(1rem,1.5vw,1.2rem); color: var(--off-white); font-weight: 500; }
.spec-row dd small { display:block; margin-top: 0.3rem; color: var(--mid); font-weight: 400; font-size: 0.86rem; }

.credits { max-width: var(--wide); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(190px,1fr)); gap: 2.4rem; }
.credits dt { font-size: 0.62rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent-dim); margin-bottom: 0.5rem; }
.credits dd { font-size: 0.95rem; color: var(--off-white); line-height: 1.5; }
.credits dd small { color: var(--soft); }

/* download button */
.btn { display: inline-flex; align-items: center; gap: 0.7rem; padding: 0.95rem 1.7rem; border: 1px solid var(--accent-dim); color: var(--accent); text-decoration: none; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; transition: border-color .2s, background .2s, color .2s; }
.btn:hover { border-color: var(--accent); background: rgba(159,182,201,0.07); color: var(--accent-bri); }
.isbn { margin-top: 1.2rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--soft); }

/* ---------------- carousel (AR captures) ---------------- */
.carousel { width: 100%; max-width: min(1020px, 94svh); margin: 0 auto; position: relative; }
.carousel-track { position: relative; aspect-ratio: 1/1; background: var(--black); overflow: hidden; }
.carousel.book { max-width: min(1080px, 100%); }
.carousel.book .carousel-track { aspect-ratio: 1.41/1; }
.carousel-slide img { filter: contrast(1.09) saturate(1.03); }
/* catalogue: large arrows beside the book, not over the pages */
@media (min-width: 920px) {
  .carousel.book .carousel-btn { background: none; border-color: transparent; color: var(--mid); width: 64px; height: 64px; font-size: 2.4rem; }
  .carousel.book .carousel-btn:hover { color: var(--accent); background: none; }
  .carousel.book .carousel-btn.prev { left: -68px; }
  .carousel.book .carousel-btn.next { right: -68px; }
}
.carousel-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.9s ease; pointer-events: none; }
.carousel-slide.active { opacity: 1; pointer-events: auto; }
.carousel-slide img { width: 100%; height: 100%; object-fit: contain; object-position: center; }
.carousel-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,0.38); border: 1px solid rgba(255,255,255,0.18); color: var(--off-white);
  cursor: pointer; font-size: 1rem; transition: background 0.2s, border-color 0.2s; user-select: none;
}
.carousel-btn:hover { background: rgba(0,0,0,0.72); border-color: var(--accent-dim); }
.carousel-btn.prev { left: clamp(10px,2vw,20px); }
.carousel-btn.next { right: clamp(10px,2vw,20px); }
.carousel-cap { text-align: center; padding: 0.85rem 0 0; }
.carousel-dots { display: flex; gap: 0.65rem; justify-content: center; margin-top: 0.9rem; }
.carousel-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--dim); border: none; padding: 0; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.carousel-dot.active { background: var(--accent); transform: scale(1.25); }
@media (max-width: 860px) { .carousel-track { aspect-ratio: 3/4; } }

/* ---------------- background-video section ---------------- */
.bg-video-sec { position: relative; overflow: hidden; padding: clamp(130px,26vh,300px) var(--pad); display: flex; align-items: center; justify-content: center; text-align: center; }
.bg-video-sec .bg-vid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; opacity: 0.6; }
.bg-video-sec::after { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(ellipse at center, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.9) 100%); }
.bg-video-sec .bg-inner { position: relative; z-index: 2; max-width: var(--wide); }
.bg-video-sec .serif { font-size: clamp(1.5rem, 3.2vw, 2.6rem); line-height: 1.26; font-style: italic; color: var(--accent-bri); }
.bg-video-sec cite { display: block; margin-top: 1.5rem; font-style: normal; font-size: 0.66rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-dim); }

/* back / next links */
.pager { max-width: var(--full); margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid var(--rule); padding-top: 2rem; }
.pager a { text-decoration: none; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); transition: color 0.2s; }
.pager a:hover { color: var(--accent-bri); }
.pager .lbl { display:block; font-size: 0.58rem; color: var(--soft); letter-spacing: 0.16em; margin-bottom: 0.4rem; }

/* footer */
footer { padding: clamp(70px,10vh,150px) var(--pad) clamp(40px,6vh,80px); border-top: 1px solid var(--rule); }
.foot-bottom { max-width: var(--full); margin: 2.5rem auto 0; display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center; }
.foot-bottom a { color: var(--accent); text-decoration: none; font-size: 0.85rem; }
.foot-bottom a:hover { color: var(--accent-bri); }
.foot-bottom .copy { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--dim); }

/* reveal */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 1s ease, transform 1s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue { animation: none; } html { scroll-behavior: auto; }
  .icard img { transition: none; }
}

/* responsive */
@media (max-width: 860px) {
  .split, .index-cards { grid-template-columns: 1fr; }
  .split.flip .split-media { order: 0; }
  .duo, .trio { grid-template-columns: 1fr; }
  .duo img, .trio img { aspect-ratio: 16/10; }
  .spec-row { grid-template-columns: 1fr; gap: 0.4rem; }
  .spec-row dt { padding-top: 0; }
  .sec-head { flex-direction: column; gap: 0.5rem; }
  .sec-head .head { margin-left: 0; }
}
