:root {
  --bg: #f1efec;
  --ink: #111;
  --lilac: #b9a6ff;
  --lime: #d9f36b;
  --saffron: #ff9f1c;
  --wa: #25d366;
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter Tight', system-ui, -apple-system, 'Segoe UI', sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-snap-type: y proximity; }
body { margin: 0; background: var(--bg); color: var(--ink); font: 16px/1.5 var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2 { font-family: var(--serif); font-weight: 400; line-height: .95; margin: 0; }

/* Ticker */
.ticker { display: flex; overflow: hidden; background: var(--lilac); font: 400 clamp(2rem, 7vw, 4.5rem)/1.1 var(--serif); white-space: nowrap; padding: .2em 0; }
.ticker.lime { background: var(--lime); }
.ticker div { flex: none; padding-right: .3em; animation: marquee 60s linear infinite; }
@keyframes marquee { to { transform: translateX(-100%); } }

/* Hero */
.hero { min-height: 100svh; scroll-snap-stop: always; display: flex; flex-direction: column; overflow: hidden; scroll-snap-align: start; }
.hero-body { flex: 1; display: grid; align-content: center; gap: 1.25rem; padding: 1.25rem 16px; }
.hero h1 { font-size: clamp(2.4rem, 11.5vw, 9.5rem); text-transform: uppercase; letter-spacing: -.02em; }
.hero h1 em { font-style: italic; text-transform: lowercase; }
.deck { display: grid; gap: 14px; }
.collage { position: relative; height: 46svh; touch-action: pan-y; user-select: none; }
.card { position: absolute; left: 50%; top: 0; height: 100%; aspect-ratio: 9 / 16; padding: 0; border: 0; background: none; cursor: pointer; translate: -50% 0;
  transform: translateX(calc(var(--o, 0) * 62%)) rotate(calc(var(--o, 0) * 7deg)) scale(calc(1 - var(--a, 0) * .14));
  transform-origin: 50% 110%; z-index: calc(10 - var(--a, 0)); opacity: calc(1.6 - var(--a, 0) * .5);
  filter: brightness(calc(1 - var(--a, 0) * .12)); transition: transform 1s cubic-bezier(.2, .8, .2, 1), opacity 1s, filter 1s; }
.card img { display: block; width: 100%; height: 100%; object-fit: cover; box-shadow: 0 24px 50px #0004; -webkit-user-drag: none; }
.card[tabindex="0"] img { animation: float 5s ease-in-out infinite alternate; }
.deck-nav { display: flex; justify-content: center; align-items: center; gap: 14px; }
.card::after { content: ""; position: absolute; top: 50%; left: 50%; margin-left: -22px; z-index: 1; width: 44px; height: 44px; margin-top: -22px; border-radius: 50%; background: #111c center / 20px no-repeat; opacity: 0; transition: opacity .4s; pointer-events: none; }
.card[data-side="prev"]::after { opacity: 1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15 6l-6 6 6 6' fill='none' stroke='%23f1efec' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.card[data-side="next"]::after { opacity: 1; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 6l6 6-6 6' fill='none' stroke='%23f1efec' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E"); }
.deck-count { font-size: 12px; letter-spacing: .12em; min-width: 5.5em; text-align: center; }
@keyframes float { to { translate: 0 -14px; } }
.scroll-cue { text-align: center; padding: 1rem; text-transform: uppercase; font-size: 12px; letter-spacing: .12em; text-decoration: none; }

/* Poster reel */
.trip { position: relative; min-height: 100svh; scroll-snap-align: start; overflow: hidden; display: grid; place-items: center; padding: 12px 0 calc(76px + env(safe-area-inset-bottom)); isolation: isolate; }
.glow { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: blur(40px) saturate(1.3); opacity: .55; transform: scale(1.3); z-index: -1; }
.poster { position: relative; margin: 0; overflow: hidden; line-height: 0; box-shadow: 0 30px 80px #0005; }
.poster img { display: block; width: auto; height: auto; max-width: 100vw; max-height: calc(100svh - 88px); }
.wa { display: inline-flex; justify-content: center; align-items: center; gap: .5rem; margin-top: 10px; background: var(--wa); color: #06270f; border-radius: 99px; padding: .95rem 1.2rem; font-weight: 600; text-decoration: none; box-shadow: 0 8px 24px #25d36655; transition: transform .2s; }
.wa:hover { transform: translateY(-2px); }
.wa svg { width: 22px; height: 22px; }

/* Sticker: a tape label slapped diagonally across the top-right corner */
.sticker { position: absolute; top: 9%; right: -24%; width: 80%; rotate: 38deg; text-align: center; line-height: 1; padding: .7em 0; font: 700 clamp(.95rem, 4vw, 1.2rem) var(--sans); text-transform: uppercase; letter-spacing: .14em; background: var(--lime); color: var(--ink); border-block: 2px dashed #0006; outline: 4px solid var(--lime); box-shadow: 0 6px 14px #0004; clip-path: polygon(0 0, 3% 50%, 0 100%, 100% 100%, 97% 50%, 100% 0); }
.sticker::after { content: ''; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, #fff2 0 2px, transparent 2px 7px); mix-blend-mode: soft-light; }
[data-status="limited"] .sticker { background: var(--saffron); outline-color: var(--saffron); }
[data-status="soldout"] .sticker { background: var(--ink); color: var(--lime); outline-color: var(--ink); border-color: #fff6; }
[data-status="completed"] .sticker { background: var(--lilac); outline-color: var(--lilac); }
[data-status="trending"] .sticker, [data-status="limited"] .sticker { animation: wiggle 2.8s ease-in-out infinite; }
@keyframes wiggle { 0%, 88%, 100% { rotate: 38deg; } 92% { rotate: 41deg; } 96% { rotate: 36deg; } }

@supports (animation-timeline: view()) {
  .poster { animation: rise linear both; animation-timeline: view(); animation-range: entry 0% entry 90%; }
  .sticker { animation: slap linear both; animation-timeline: view(); animation-range: entry 50% entry 95%; }
  [data-status="trending"] .sticker, [data-status="limited"] .sticker { animation: slap linear both, wiggle 2.8s ease-in-out 1s infinite; animation-timeline: view(), auto; animation-range: entry 50% entry 95%, normal; }
}
@keyframes rise { from { transform: translateY(12%) scale(.82) rotate(-4deg); opacity: .2; } }
@keyframes slap { from { transform: scale(2.2); opacity: 0; } }
@keyframes fade { from { opacity: 0; transform: translateY(30px); } }

/* About */

/* Guldaar Basera */
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; }

/* Footer: one row */
.foot { padding-bottom: 96px !important; display: flex; flex-wrap: wrap; gap: .4rem 1.2rem; padding: 1.2rem 16px max(1.2rem, env(safe-area-inset-bottom)); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.foot span { margin-right: auto; }
.noscript { padding: 6rem 16px; }

/* Desktop: full-width split, poster one side, big title the other */
@media (min-width: 900px) {
  .hero-body { grid-template-columns: 1.1fr 1fr; padding: 2rem 32px; }
  .hero h1 { font-size: 7vw; }
  .collage { height: 64svh; }
  .trip { padding: 20px 5vw calc(84px + env(safe-area-inset-bottom)); }
  .poster img { max-height: calc(100svh - 104px); max-width: 90vw; }
  .sticker { font-size: 1.15rem; }
  .foot { padding: 1.4rem 32px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* FAQ page */
  .faq { max-width: 820px; margin: auto; padding: 48px 16px 4rem; }
  .faq h1 { font-size: clamp(3.5rem, 16vw, 8rem); text-transform: uppercase; margin-bottom: 2rem; }
  .faq details { border-top: 1px solid var(--ink); }
  .faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 1rem; padding: 1.1rem 0; font: 400 clamp(1.3rem, 4.5vw, 1.9rem)/1.2 var(--serif); }
  .faq summary::after { content: '+'; }
  .faq details[open] summary::after { content: '–'; }
  .faq details p { margin: 0 0 1.2rem; max-width: 60ch; }
  .faq .wa { display: inline-flex; margin-top: 2rem; }
#lost { min-height: 100svh; display: grid; place-content: center; }

/* ===== Motion ===== */
@view-transition { navigation: auto; }
::view-transition-group(*) { animation-duration: .45s; animation-timing-function: cubic-bezier(.2, .8, .2, 1); }
.scroll-cue { padding-bottom: 80px; }
.hero .ticker { font-size: clamp(1.4rem, 5vw, 3rem); }
.scroll-cue span { display: inline-block; animation: nudge 1.6s ease-in-out infinite; }
@keyframes nudge { 50% { transform: translateY(6px); } }
@supports (animation-timeline: view()) {
  .poster { animation: rise linear both, leave linear both; animation-timeline: view(), view(); animation-range: entry 0% entry 90%, exit 10% exit 90%; }
  .glow { animation: drift linear both; animation-timeline: view(); }
}
@keyframes leave { to { transform: scale(.9); opacity: .35; } }
@keyframes drift { from { translate: 0 -12%; } to { translate: 0 12%; } }
.hero h1 { animation: lift .9s cubic-bezier(.2, .8, .2, 1) both; }
.collage { animation: lift 1.1s .15s cubic-bezier(.2, .8, .2, 1) both; }
@keyframes lift { from { opacity: 0; transform: translateY(40px); } }

/* ===== Dock: one icon-only bar in the space below the poster ===== */
.dock { position: fixed; z-index: 20; left: 50%; bottom: max(12px, env(safe-area-inset-bottom)); translate: -50% 0; display: flex; align-items: center; gap: 2px; padding: 4px; border-radius: 99px; background: #111d; -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px); box-shadow: 0 10px 30px #0003; }
.dock > * { width: 48px; height: 48px; border: 0; border-radius: 50%; background: transparent; color: var(--bg); display: grid; place-items: center; cursor: pointer; text-decoration: none; transition: background .2s, color .2s, width .3s, opacity .3s; }
.dock > *:hover, .dock > *:focus-visible { background: #fff2; }
.dock > *:active { scale: .92; }
.dock svg { width: 22px; height: 22px; }
.dock .step { overflow: hidden; }
.dock .sep { width: 1px; height: 24px; background: #fff3; margin: 0 4px; pointer-events: none; }
#view .ico-full, #view[aria-pressed="true"] .ico-grid { display: none; }
#view[aria-pressed="true"] .ico-full { display: block; }
.dock .burger[aria-expanded="true"], .dock:has(+ #menu:popover-open) .burger { background: var(--bg); color: var(--ink); }

/* Menu: compact sheet that rises from the dock */
#menu { position: fixed; inset: auto auto calc(max(12px, env(safe-area-inset-bottom)) + 66px) 50%; translate: -50% 0; margin: 0; width: min(92vw, 380px); border: 0; border-radius: 28px; padding: 10px; background: var(--lilac); color: var(--ink); box-shadow: 0 20px 60px #0004; }
#menu::backdrop { background: #0003; }
#menu:popover-open { animation: sheet .35s cubic-bezier(.2, .8, .2, 1); }
@keyframes sheet { from { opacity: 0; transform: translateY(16px) scale(.96); } }
#menu ol { list-style: none; margin: 0; padding: 0; }
#menu li + li { border-top: 1px solid #0002; }
#menu ol a { display: flex; justify-content: space-between; align-items: baseline; padding: .7rem .9rem; font: 400 1.7rem/1.1 var(--serif); text-decoration: none; border-radius: 16px; }
#menu ol a::after { content: '→'; font: 400 1rem var(--sans); opacity: .5; }
#menu ol a:hover { background: #fff4; font-style: italic; }
#menu:popover-open li { animation: lift .4s cubic-bezier(.2, .8, .2, 1) both; }
#menu li:nth-child(2) { animation-delay: .03s; } #menu li:nth-child(3) { animation-delay: .06s; }
#menu li:nth-child(4) { animation-delay: .09s; } #menu li:nth-child(5) { animation-delay: .12s; } #menu li:nth-child(6) { animation-delay: .15s; } #menu li:nth-child(7) { animation-delay: .18s; }

/* ===== Grid view ===== */
.reel.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 12px 8px 96px; min-height: 100svh; align-content: start; }
.reel.grid .trip { min-height: 0; padding: 0; overflow: visible; }
.reel.grid .glow { display: none; }
.reel.grid .poster { animation: none; box-shadow: 0 6px 16px #0003; border-radius: 4px; transition: transform .25s; }
.reel.grid .poster:hover { transform: translateY(-4px) rotate(-1deg); }
.reel.grid .poster img { max-width: 100%; max-height: none; width: 100%; }
.reel.grid .sticker { font-size: 7px; padding: .5em 0; letter-spacing: .08em; outline-width: 2px; border-width: 1px; animation: none; }
@media (min-width: 900px) {
  /* Grid view: 6 across, two rows fit one screen (up to 12 posters) */
  .reel.grid { grid-template-columns: repeat(6, 1fr); padding: 24px 32px 96px; max-width: calc((100svh - 150px) / 2 * 9 / 16 * 6 + 144px); margin: auto; gap: 16px; }
  .reel.grid .sticker { font-size: 10px; }
}

/* ===== One poster per swipe while the reel is on screen ===== */
html.snap { scroll-snap-type: y mandatory; }
.trip { scroll-snap-stop: always; }
/* Grid view snaps row by row (a flick can pass several rows), so it feels as crisp as the single view */
.reel.grid .trip { scroll-snap-align: start; scroll-snap-stop: normal; scroll-margin-top: 12px; }

[hidden] { display: none !important; }

/* Pill links (Guldaar Basera, 404) */
.pill { display: inline-block; background: var(--lime); color: var(--ink); border-radius: 99px; padding: .7rem 1.2rem; font-size: 13px; text-transform: uppercase; letter-spacing: .06em; text-decoration: none; }
.pill.big { font-size: 15px; padding: 1rem 1.6rem; }

/* ===== Press & Praise: two drifting rows of matching image cards ===== */
.press { min-height: 100svh; scroll-snap-align: start; scroll-snap-stop: always; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 20px 0 calc(80px + env(safe-area-inset-bottom)); background: var(--ink); color: var(--bg); overflow: hidden; }
.press-head { padding: 0 16px 4px; display: grid; gap: 12px; }
.press h2 { font-size: clamp(2.2rem, 10.5vw, 6rem); text-transform: uppercase; white-space: nowrap; }
.press h2 em { text-transform: none; color: var(--lime); }
.socials { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.socials a { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; color: var(--bg); background: #ffffff14; border: 1px solid #ffffff2e; transition: color .2s, background .2s, transform .2s; }
.socials a:hover, .socials a:focus-visible { color: var(--ink); background: var(--lime); transform: translateY(-2px); }
.socials svg { width: 20px; height: 20px; }

.row-head { display: flex; justify-content: space-between; align-items: center; padding: 0 16px; }
.row-head h3 { margin: 0; font: 600 12px var(--sans); letter-spacing: .14em; text-transform: uppercase; opacity: .85; }
.row-nav { display: flex; gap: 6px; }
.row-nav button { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #fff4; background: transparent; color: var(--bg); display: grid; place-items: center; cursor: pointer; }
.row-nav button:active { background: var(--lime); color: var(--ink); }
.row-nav svg { width: 16px; height: 16px; }

.strip { display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden; touch-action: pan-x pan-y; padding: 8px 16px; scrollbar-width: none; overscroll-behavior-x: contain; }
.strip::-webkit-scrollbar { display: none; }
.strip:focus-visible { outline: 2px solid var(--lime); outline-offset: -2px; }

/* One card system, two papers: a newspaper clipping (press) and a postcard (guests).
   Same size and grid in both rows: picture/stamp on the left, text on the right. */
.pcard { flex: 0 0 auto; position: relative; width: min(80vw, 330px); height: 146px; display: grid; grid-template-columns: 78px 1fr; gap: 12px; padding: 12px; color: var(--ink); text-decoration: none; border-radius: 4px; box-shadow: 0 12px 28px #0007; transition: transform .3s, rotate .3s; }
.pcard:nth-child(odd) { rotate: -1deg; } .pcard:nth-child(even) { rotate: 1deg; }
.pcard:hover, .pcard:focus-visible { transform: translateY(-3px); rotate: 0deg; }
.pcard:focus-visible { outline: 2px solid var(--lime); outline-offset: 3px; }
.pcard .pic { width: 78px; height: 100%; object-fit: cover; object-position: 50% 0; border: 3px solid #fff; box-shadow: 0 3px 8px #0003; rotate: -2deg; background: #ddd; }
.pcard .txt { min-width: 0; display: flex; flex-direction: column; }
.pcard .chip { font: 600 10px/1.2 var(--sans); letter-spacing: .1em; text-transform: uppercase; padding-bottom: 5px; margin-bottom: 6px; border-bottom: 3px double currentColor; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.pcard h4 { margin: 0; font: 400 1.05rem/1.15 var(--serif); display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.pcard .meta { margin-top: auto; display: flex; justify-content: space-between; gap: 6px; font: 600 10px var(--sans); letter-spacing: .08em; text-transform: uppercase; opacity: .75; }

.pcard.press-item { padding-bottom: 20px; background: #f4efe6; clip-path: polygon(0 0, 100% 0, 100% 94%, 92% 99%, 84% 94%, 75% 100%, 66% 94.5%, 57% 99.5%, 48% 94%, 39% 99%, 30% 94.5%, 21% 100%, 12% 94%, 5% 99%, 0 94.5%); }

.pcard.guest { background: var(--lilac); }
/* Guest cards cycle through the site palette so the rows read as a colourful wall */
.pcard.guest:nth-child(4n+2) { background: var(--lime); }
.pcard.guest:nth-child(4n+3) { background: #ffb38a; }
.pcard.guest:nth-child(4n+4) { background: #f4efe6; }
#strip-praise2 { margin-top: -6px; }
.pcard.guest .stamp { width: 78px; height: 100%; display: grid; place-items: center; background: #f4efe6; border: 2px dashed var(--ink); font: italic 400 2.4rem var(--serif); rotate: -2deg; overflow: hidden; }
.pcard.guest .stamp img { width: 100%; height: 100%; object-fit: cover; }
.pcard.guest h4 { font-style: italic; font-size: .95rem; -webkit-line-clamp: 4; }
.pcard.guest h4::before { content: '\201C'; }
.pcard.guest h4::after { content: '\201D'; }

/* ===== Guldaar Basera: full-screen, her homestay at dusk ===== */
#lost.stay { background: #1f3a2b; }
.stay { position: relative; min-height: 100svh; scroll-snap-align: start; scroll-snap-stop: always; display: flex; flex-direction: column; justify-content: space-between; gap: 24px; padding: 40px 16px calc(84px + env(safe-area-inset-bottom)); color: #f4efe6; text-align: left;
  background: linear-gradient(180deg, #0d1a12d9 0%, #0d1a1233 30%, #0d1a1200 45%, #0d1a12b3 68%, #0d1a12f2 100%), url('/photos/guldaar-basera-dusk.jpg') 50% 50% / cover, #0d1a12; }
.stay h2 { font-size: clamp(3rem, 15vw, 9rem); text-transform: uppercase; text-shadow: 0 4px 30px #0008; }
.stay-sub { margin: 8px 0 0; font-size: 13px; letter-spacing: .12em; text-transform: uppercase; opacity: .9; }
.stay-bottom > p { margin: 0 0 14px; max-width: 34ch; font-size: 15px; }
.stay-facts { list-style: none; margin: 0 0 18px; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stay-facts li { padding: .35rem .75rem; border-radius: 99px; border: 1px solid #f4efe666; background: #0d1a1255; -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px); font-size: 12px; }
/* The footer lives at the bottom of the Guldaar Basera screen, so the last view shows the page has ended */
.stay:has(.foot) { padding-bottom: 0; justify-content: flex-start; }
.stay:has(.foot) .stay-bottom { margin-top: auto; }
.stay .foot { margin: 0 -16px; padding: 14px 16px calc(78px + env(safe-area-inset-bottom)) !important; border-top: 1px solid #f4efe633; color: #f4efe6cc; }
/* Footer: one compact row */
.foot { flex-wrap: nowrap !important; justify-content: space-between; gap: 8px !important; font-size: 11px !important; letter-spacing: .06em !important; white-space: nowrap; }
.stay .foot { padding-top: 12px !important; }

/* ===== About Alka: full-screen group photo, text in the space above their heads ===== */
.about { position: relative; min-height: 100svh; scroll-snap-align: start; scroll-snap-stop: always; display: flex; flex-direction: column; justify-content: space-between; padding: 40px 16px calc(84px + env(safe-area-inset-bottom)); color: #fff;
  background: linear-gradient(180deg, #111111f2 0%, #111111d9 30%, #11111166 46%, #11111100 56%, #11111100 80%, #111111b3 100%), url('/photos/alka-berlin.jpg') 38% 100% / cover, #111; }
.about .eyebrow { margin: 0 0 10px; color: var(--lime); }
.about h2 { font-size: clamp(2.3rem, 10.5vw, 5rem); margin-bottom: 14px; text-shadow: 0 2px 20px #000a; }
.about-top p:last-child { margin: 0; max-width: 34ch; font-size: 15px; line-height: 1.5; opacity: .92; }
.stats { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.stats li { padding: .4rem .85rem; border-radius: 99px; border: 1px solid #ffffff55; background: #11111166; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); font-size: 13px; }
.stats b { color: var(--lime); }

/* QA: comfortable tap targets in the footer; hero fits tablet/desktop screens */
.foot a { padding: 12px 2px; }
.stay .foot { padding-top: 0 !important; }
@media (min-width: 700px) {
  .hero-body { gap: 1rem; padding-block: 1rem; }
  .collage { height: 42svh; }
}
@media (min-width: 900px) { .collage { height: 58svh; } .hero h1 { font-size: 6vw; } }

/* ===== Desktop: three posters per row in the reel ===== */
@media (min-width: 900px) {
  .reel:not(.grid) { display: grid; grid-template-columns: repeat(3, 1fr); }
  .reel:not(.grid) .trip { padding: 24px 12px calc(88px + env(safe-area-inset-bottom)); }
  .reel:not(.grid) .poster img { max-width: calc(33.33vw - 32px); max-height: calc(100svh - 112px); }
  .reel:not(.grid) .sticker { font-size: .9rem; }
}

/* ===== About on wide screens: keep the phone framing in a centre column, blur the sides ===== */
@media (min-width: 700px) {
  .about { --col: min(100vw, 62svh); padding-inline: calc((100vw - var(--col)) / 2 + 24px); isolation: isolate; overflow: hidden; background: #111; }
  .about::before { content: ''; position: absolute; inset: -60px; z-index: -2; background: url('/photos/alka-berlin.jpg') 50% 60% / cover; filter: blur(40px) brightness(.45) saturate(1.2); }
  .about::after { content: ''; position: absolute; top: 0; bottom: 0; left: 50%; width: var(--col); translate: -50% 0; z-index: -1; box-shadow: 0 0 80px #0009;
    background: linear-gradient(180deg, #111111f2 0%, #111111d9 30%, #11111166 46%, #11111100 56%, #11111100 80%, #111111b3 100%), url('/photos/alka-berlin.jpg') 38% 100% / cover; }
}

/* ===== Short screens (small phones, 1024x768 laptops): tighten full-screen sections so each still fits ===== */
@media (max-height: 800px) {
  .collage { height: 40svh; }
  .hero h1 { font-size: clamp(2.2rem, min(11vw, 7svh), 9.5rem); }
  .press { gap: 4px; padding-top: 12px; }
  .press h2 { font-size: clamp(2rem, min(10vw, 6svh), 6rem); }
  .socials a { width: 38px; height: 38px; }
  .pcard { height: 124px; grid-template-columns: 64px 1fr; padding: 10px; }
  .pcard .pic, .pcard.guest .stamp { width: 64px; }
  .pcard.guest .stamp { font-size: 1.8rem; }
  .pcard h4 { font-size: .92rem; -webkit-line-clamp: 3; }
  .pcard.guest h4 { font-size: .85rem; -webkit-line-clamp: 3; }
  .row-nav button { width: 28px; height: 28px; }
  .strip { padding-block: 6px; }
}

/* ===== Landscape phones: too short for one-screen sections, so let content flow and snap loosely ===== */
@media (max-height: 500px) and (orientation: landscape) {
  html.snap { scroll-snap-type: y proximity; }
  .hero, .about, .press, .stay { min-height: auto; scroll-snap-stop: normal; }
  .hero-body { grid-template-columns: 1fr 1fr; align-items: center; }
  .hero h1 { font-size: 8svh; }
  .collage { height: 70svh; }
  .about { padding-top: 24px; }
  .about h2, .stay h2 { font-size: 11svh; }
  .about-top p:last-child { max-width: 60ch; }
  .stay { padding-top: 24px; gap: 40px; }
}
@media (max-height: 500px) and (orientation: landscape) {
  .about { --col: 100vw; padding-inline: 24px; }
  .about::after { background-position: 50% 60%, 38% 30%; }
}
@media (max-height: 500px) and (orientation: landscape) { .about, .stay { min-height: 100svh; } }
