:root {
  --paper: #f3ecdf;
  --paper-deep: #e6dac8;
  --ink: #1d1915;
  --muted: #6d6257;
  --accent: #a73428;
  --line: #b98276;
  --shell: min(1180px, calc(100vw - 64px));
  --serif: "Cormorant Garamond", "Noto Serif JP", "Hiragino Mincho ProN", "Yu Mincho", Georgia, serif;
  --sans: "Source Serif 4", "Noto Serif JP", Georgia, serif;
  --nav-h: 58px;
  --safe-t: env(safe-area-inset-top, 0px);
  --safe-b: env(safe-area-inset-bottom, 0px);
  --safe-l: env(safe-area-inset-left, 0px);
  --safe-r: env(safe-area-inset-right, 0px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--serif);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  padding-left: var(--safe-l);
  padding-right: var(--safe-r);
}

body:before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: .1;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.09'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
iframe { border: 0; }

.skip-link {
  position: fixed;
  top: calc(10px + var(--safe-t));
  left: calc(10px + var(--safe-l));
  z-index: 9999;
  transform: translateY(-150%);
  background: var(--ink);
  color: #fff;
  padding: 10px 14px;
}
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid #165cc4; outline-offset: 4px; }

.page-nav {
  position: fixed;
  top: 50%;
  right: max(10px, var(--safe-r));
  z-index: 120;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding: 8px 4px 8px 18px;
  opacity: 0;
  transition: opacity .55s ease;
  pointer-events: auto;
}
.page-nav.is-awake,
.page-nav:hover,
.page-nav:focus-within { opacity: 1; }
.page-nav a {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  column-gap: 10px;
  text-decoration: none;
  color: color-mix(in srgb, var(--ink) 55%, transparent);
  text-align: right;
  padding: 2px 10px 2px 0;
}
.page-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--line) 80%, transparent);
  transform: translateY(-50%) scale(1);
  transition: transform .3s ease, background .3s ease, box-shadow .3s ease;
}
.page-nav a.is-active { color: var(--accent); }
.page-nav a.is-active::after {
  background: var(--accent);
  transform: translateY(-50%) scale(2.2);
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 30%, transparent);
}
.page-nav a:hover,
.page-nav a:focus-visible { color: var(--ink); }
.page-nav-num {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .12em;
  opacity: .7;
}
.page-nav-label {
  font-family: var(--serif);
  font-size: 13px;
  font-style: italic;
  letter-spacing: .02em;
  line-height: 1.2;
}

.snap-panel {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  min-height: 100dvh;
  min-height: 100svh;
}
.hero.snap-panel {
  min-height: calc(100dvh - (2 * var(--frame-gap)));
}

.paper-frame {
  position: relative;
  border: 1px solid var(--line);
}
.paper-frame:after {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid color-mix(in srgb, var(--line) 65%, transparent);
  pointer-events: none;
  z-index: 3;
}

.hero {
  --frame-gap: clamp(8px, 1.4vw, 16px);
  width: calc(100% - (2 * var(--frame-gap)));
  height: calc(100dvh - (2 * var(--frame-gap)));
  max-height: calc(100svh - (2 * var(--frame-gap)));
  min-height: calc(100dvh - (2 * var(--frame-gap)));
  margin: var(--frame-gap) auto;
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.hero-inner {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 0;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(14px, 2.8vh, 32px) clamp(18px, 3.5vw, 48px) clamp(10px, 1.8vh, 22px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.8vh, 18px);
}

.hero-head { text-align: center; min-width: 0; flex: 0 0 auto; }

.eyebrow,
.section-kicker {
  letter-spacing: .18em;
  font-size: 13px;
  margin: 0 0 10px;
  text-transform: uppercase;
}
.hero .eyebrow {
  font-size: clamp(11px, 1.4vh, 13px);
  margin-bottom: clamp(4px, .7vh, 8px);
}
.hero-title {
  margin: 0;
  font-size: clamp(44px, 7.8vh, 84px);
  line-height: .88;
  letter-spacing: -.035em;
  font-weight: 500;
}
.hero-title span { display: block; }
.hero-subtitle {
  margin: clamp(6px, 1.2vh, 14px) 0 0;
  color: var(--accent);
  font-style: italic;
  font-size: clamp(17px, 2.7vh, 28px);
  font-weight: 500;
}
.hero-special {
  margin: clamp(5px, 1vh, 12px) 0 0;
  color: var(--accent);
  letter-spacing: .16em;
  font-size: clamp(11px, 1.55vh, 16px);
}

.hero-visual {
  flex: 0 1 auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.8vw, 24px);
  max-height: min(38vh, 340px);
}

.artwork-mat {
  margin: 0;
  padding: clamp(6px, 1vh, 12px);
  background: color-mix(in srgb, var(--paper) 90%, white);
  border: 1px solid color-mix(in srgb, var(--muted) 38%, transparent);
  box-shadow: 0 10px 28px rgba(42, 34, 26, .07);
}
.artwork-mat img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f8f4ec;
}

.wm {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.wm::after {
  content: var(--wm-text, "Fundacja Księstwo Ziębickie");
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  transform: translate(-50%, -50%) rotate(-32deg);
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(15px, 2.6vw, 28px);
  letter-spacing: .04em;
  line-height: 1;
  white-space: nowrap;
  color: color-mix(in srgb, var(--ink) 28%, transparent);
  text-shadow: 0 0 1px color-mix(in srgb, var(--paper) 40%, transparent);
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
}
.hero-artwork.wm::after { font-size: clamp(11px, 1.9vh, 17px); }
.slide-artwork.wm::after { font-size: clamp(14px, 2.4vw, 26px); }
.presentation-dialog .wm::after {
  color: rgba(255, 255, 255, .28);
  mix-blend-mode: soft-light;
  font-size: clamp(18px, 3.2vw, 36px);
  text-shadow: none;
}

.hero-artwork {
  height: min(38vh, 340px);
  width: auto;
  max-width: min(240px, 42vw);
  aspect-ratio: 4 / 5;
  flex: 0 1 auto;
  min-height: 0;
  min-width: 0;
}
.hero-artwork img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.japanese-term {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 0 0 auto;
  align-self: center;
}
.kanji {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Noto Serif JP", var(--serif);
  font-size: clamp(26px, 4.2vh, 44px);
  letter-spacing: .14em;
  font-weight: 500;
}
.kanji-rule {
  width: 28px;
  height: 1px;
  background: var(--accent);
  margin: 2px 0 4px;
}
.romanization {
  font-family: var(--sans);
  color: var(--accent);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.hero-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(6px, 1vh, 10px);
  flex: 0 0 auto;
  width: 100%;
}
.event-grid {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  font-size: clamp(12px, 1.55vh, 15px);
  line-height: 1.45;
}
.event-place {
  flex: 0 1 auto;
  padding-right: clamp(14px, 2vw, 22px);
  text-align: left;
}
.event-grid p { margin: 0 0 2px; }
.event-date {
  flex: 0 0 auto;
  border-left: 1px solid var(--line);
  padding-left: clamp(14px, 2vw, 22px);
  text-align: left;
}
.event-date .date {
  color: var(--accent);
  font-size: clamp(15px, 2.1vh, 22px);
  white-space: nowrap;
}
.event-date .time {
  font-size: clamp(13px, 1.8vh, 17px);
  white-space: nowrap;
}
.hero-organizer {
  margin: 0;
  text-align: center;
  font-size: clamp(11px, 1.4vh, 13px);
}
.organizer strong { color: var(--accent); font-weight: 500; }
.discover {
  text-decoration: none;
  color: var(--accent);
  font-size: clamp(12px, 1.5vh, 14px);
  line-height: 1;
  padding: 2px 0;
}
.light-wash {
  position: absolute;
  width: 55%;
  height: 130%;
  left: -20%;
  top: -40%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, .56), transparent 68%);
  animation: light-breath 26s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
}
@keyframes light-breath {
  from { transform: translateX(-2%); opacity: .55; }
  to { transform: translateX(16%); opacity: .88; }
}

.content-shell { width: var(--shell); margin: 0 auto; }
.content-shell.narrow { max-width: 860px; }

.about-section {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 8vh, 90px) 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 25%, transparent);
  overflow: hidden;
  box-sizing: border-box;
}
.red-rule {
  width: 44px;
  height: 1px;
  background: var(--accent);
  margin: 14px 0 22px;
}
.about-copy { font-size: 18px; color: #423a32; }
.about-copy p { margin: 0 0 18px; }
.coastline {
  position: absolute;
  left: 0;
  bottom: -20px;
  width: 42%;
  height: 78%;
  opacity: .11;
  background: url("../artwork/coastline.svg") left bottom / contain no-repeat;
}

.poster-section {
  position: relative;
  padding: 0;
  margin: 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 25%, transparent);
  box-sizing: border-box;
  overflow: hidden;
  background: #e8dcc8;
}
.poster-stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}
.poster-view {
  margin: 0;
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(10px, 2.2vh, 24px) clamp(10px, 3vw, 36px);
  box-sizing: border-box;
}
.poster-view img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  aspect-ratio: 210 / 297;
  background: #faf5eb;
  box-shadow: 0 0 0 1px color-mix(in srgb, var(--muted) 28%, transparent), 0 18px 48px rgba(40, 30, 20, .18);
}

.poster-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: clamp(24px, 4vh, 48px) clamp(20px, 5vw, 64px) clamp(28px, 5vh, 56px);
  background: linear-gradient(180deg, rgba(243, 236, 223, .18) 0%, rgba(243, 236, 223, .42) 38%, rgba(243, 236, 223, .88) 72%, rgba(236, 226, 210, .96) 100%);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .55s ease, transform .55s ease;
  cursor: grab;
  touch-action: pan-y;
}
.poster-section.is-revealed .poster-overlay {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}
.poster-overlay-copy { width: min(560px, 100%); text-align: left; }
.poster-overlay-copy h2 {
  font-size: clamp(28px, 6vh, 52px);
  font-weight: 500;
  line-height: 1.05;
  margin: .15em 0 .45em;
}
.poster-overlay-copy .section-intro {
  color: color-mix(in srgb, var(--ink) 78%, transparent);
  max-width: none;
  margin: 0;
}
.poster-hint {
  margin: 18px 0 0;
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

.poster-download {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: max(28px, calc(18px + var(--safe-b)));
  transform: translateX(-50%) translateY(12px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--accent);
  background: color-mix(in srgb, var(--paper) 88%, transparent);
  color: var(--accent);
  text-decoration: none;
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .45s ease .08s, transform .45s ease .08s;
}
.poster-section.is-revealed .poster-download {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.section-intro {
  color: var(--muted);
  max-width: 620px;
  font-size: 17px;
}
.outline-link,
.outline-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
  padding: 13px 18px;
  min-height: 44px;
  border: 1px solid var(--accent);
  background: transparent;
  color: var(--accent);
  text-decoration: none;
  cursor: pointer;
}

.presentation-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vh, 72px) 0;
  background: color-mix(in srgb, var(--paper) 96%, white);
  box-sizing: border-box;
}
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 34px;
}
.section-header h2 {
  font-weight: 500;
  font-size: clamp(34px, 4vw, 62px);
  margin: 0;
}
.slide-count { color: var(--accent); font-size: 17px; flex-shrink: 0; }
.presentation-grid {
  display: grid;
  grid-template-columns: 56px minmax(260px, 500px) minmax(280px, 1fr) 56px;
  gap: 32px;
  align-items: center;
}
.slide-artwork {
  width: 100%;
  max-height: min(620px, 68vh);
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(8px, 1.2vh, 14px);
}
.slide-artwork img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: min(580px, 64vh);
  object-fit: contain;
  background: #f8f4ec;
}
.slide-meta dl { margin: 0 0 26px; }
.slide-meta dl div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 7px 0;
  border-bottom: 1px solid color-mix(in srgb, var(--line) 20%, transparent);
}
.slide-meta dt {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
}
.slide-meta dd { margin: 0; }
.slide-meta p { color: var(--muted); }
.nav-arrow,
.dialog-arrow {
  border: 0;
  background: none;
  color: var(--accent);
  font-size: 42px;
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
}
.slide-dots {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}
.slide-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 0;
  background: #b9b2a8;
  padding: 0;
  cursor: pointer;
}
.slide-dots button.is-active { background: var(--accent); }

.practical-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-top: 1px solid color-mix(in srgb, var(--line) 24%, transparent);
  box-sizing: border-box;
}
.practical-section .practical-grid {
  flex: 1;
  align-items: stretch;
  min-height: 0;
}
.practical-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
}
.practical-copy { padding: 72px 48px 72px 0; }
.practical-rows p { font-size: 17px; margin: 0 0 13px; }
.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  margin-top: 12px;
  color: var(--accent);
  text-decoration: none;
}

.map-embed {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: #eee4d6;
  border-left: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
}
.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  filter: saturate(.82) contrast(.96);
}

.site-footer {
  text-align: center;
  padding: 28px 20px calc(28px + var(--safe-b));
  border-top: 1px solid color-mix(in srgb, var(--line) 25%, transparent);
  margin-top: auto;
}
.footer-kanji {
  font-family: "Noto Serif JP", var(--serif);
  font-size: 32px;
  letter-spacing: .12em;
}
.footer-romanization { font-size: 12px; color: var(--muted); }
.site-footer .organizer { font-size: 14px; }

.presentation-dialog {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  max-width: none;
  max-height: none;
  margin: 0;
  border: 0;
  padding: 0;
  background: rgba(19, 16, 13, .96);
  color: #fff;
}
.presentation-dialog::backdrop { background: #15120f; }
.dialog-close {
  position: absolute;
  right: calc(16px + var(--safe-r));
  top: calc(12px + var(--safe-t));
  z-index: 3;
  border: 0;
  background: none;
  color: #fff;
  font-size: 44px;
  cursor: pointer;
  min-width: 48px;
  min-height: 48px;
}
.dialog-stage {
  height: 100%;
  display: grid;
  grid-template-columns: 72px 1fr 72px;
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: calc(56px + var(--safe-t)) 20px calc(28px + var(--safe-b));
}
.dialog-stage figure {
  margin: 0;
  height: calc(100dvh - 150px - var(--safe-t) - var(--safe-b));
  width: 100%;
  display: grid;
  place-items: center;
  min-height: 0;
}
.dialog-stage img {
  max-width: min(100%, 920px);
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.dialog-caption {
  grid-column: 1 / 4;
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: baseline;
  flex-wrap: wrap;
  text-align: center;
  padding-inline: 8px;
}
.dialog-arrow { color: #e0d3c4; }

@media (max-width: 1100px) {
  .hero-inner { max-width: 760px; }
  .presentation-grid {
    grid-template-columns: 44px minmax(260px, .95fr) minmax(240px, 1fr) 44px;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: calc(100vw - 32px - var(--safe-l) - var(--safe-r));
    --nav-h: 52px;
  }
  .hero { --frame-gap: 6px; }
  .hero.paper-frame:after { inset: 5px; }
  .hero-inner {
    max-width: none;
    padding: clamp(12px, 2vh, 20px) 14px clamp(8px, 1.4vh, 14px);
    gap: clamp(8px, 1.3vh, 12px);
  }
  .hero-title { font-size: clamp(40px, 7.5vh, 58px); }
  .hero-subtitle { font-size: clamp(16px, 2.6vh, 22px); }
  .hero-special { font-size: clamp(10px, 1.5vh, 12px); letter-spacing: .12em; }
  .hero-visual { gap: 10px; max-height: min(32vh, 260px); }
  .hero-artwork { height: min(32vh, 260px); max-width: min(190px, 48vw); }
  .kanji { font-size: clamp(22px, 3.8vh, 32px); }
  .event-grid { font-size: clamp(11px, 1.5vh, 13px); }
  .event-place { padding-right: 12px; }
  .event-date { padding-left: 12px; }
  .event-date .date { font-size: clamp(14px, 2vh, 18px); }
  .event-date .time { font-size: clamp(12px, 1.7vh, 15px); }
  .about-section,
  .presentation-section { padding: clamp(36px, 6vh, 56px) 0; }
  .page-nav { right: max(6px, var(--safe-r)); gap: 10px; padding-left: 12px; }
  .page-nav-label { font-size: 11px; }
  .page-nav-num { font-size: 9px; }
  .coastline { width: 78%; opacity: .07; }
  .about-copy { font-size: 16px; }
  .poster-overlay { padding: 20px 18px max(24px, var(--safe-b)); }
  .poster-overlay-copy h2 { font-size: clamp(26px, 7vw, 36px); }
  .poster-view { padding: 8px 8px 72px; }
  .section-intro { font-size: 15px; }
  .section-header { display: block; margin-bottom: 24px; }
  .section-header h2 { font-size: clamp(28px, 8vw, 42px); }
  .presentation-grid { grid-template-columns: 44px 1fr 44px; gap: 10px 8px; }
  .slide-artwork { grid-column: 2; max-height: min(48svh, 420px); width: 100%; }
  .slide-artwork img { max-height: min(44svh, 400px); }
  .slide-meta { grid-column: 1 / 4; }
  .prev { grid-column: 1; grid-row: 1; }
  .next { grid-column: 3; grid-row: 1; }
  .practical-grid { grid-template-columns: 1fr; }
  .practical-copy { padding: 48px 0 28px; }
  .map-embed {
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--line) 22%, transparent);
    min-height: 280px;
  }
  .dialog-stage { grid-template-columns: 48px 1fr 48px; gap: 8px; }
}

@media (max-width: 430px) {
  :root { --shell: calc(100vw - 24px - var(--safe-l) - var(--safe-r)); }
  .hero-inner { padding-inline: 12px; }
  .hero-title { font-size: clamp(36px, 7.2vh, 50px); }
  .hero-artwork { height: min(28vh, 220px); max-width: min(160px, 44vw); }
  .hero-visual { max-height: min(28vh, 220px); }
  .page-nav-label { display: none; }
  .page-nav a { grid-template-columns: auto; padding-right: 12px; }
  .event-grid { flex-direction: column; align-items: center; gap: 8px; }
  .event-place { padding-right: 0; text-align: center; }
  .event-date { border-left: 0; border-top: 1px solid var(--line); padding: 8px 0 0; text-align: center; }
  .outline-link,
  .outline-button { width: 100%; text-align: center; }
}

@media (max-width: 900px) and (max-height: 520px) and (orientation: landscape) {
  .hero-inner {
    display: grid;
    grid-template-columns: 1.15fr auto;
    grid-template-rows: auto auto;
    gap: 8px 18px;
    padding: 12px 20px 10px;
    max-width: none;
  }
  .hero-head { grid-column: 1; grid-row: 1; text-align: left; }
  .hero-title { font-size: clamp(26px, 9vh, 40px); }
  .hero-visual { grid-column: 2; grid-row: 1 / 3; max-height: min(70vh, 280px); }
  .hero-artwork { height: min(70vh, 280px); max-width: min(160px, 28vw); }
  .hero-foot { grid-column: 1; grid-row: 2; align-items: flex-start; }
  .discover { display: none; }
  .map-embed { min-height: 220px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; scroll-snap-type: y proximity; }
  *, *:before, *:after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
  .page-nav { transition: none; }
}
