/* Forest Lodge Kromlau · V42
   A shared editorial system for every page. No third-party fonts or UI dependencies. */
:root {
  --ink: #23382f;
  --pine: #23382f;
  --pine2: #31483c;
  --paper: #f8f7f3;
  --sand: #efeee7;
  --sand2: #e8e7df;
  --muted: #5e685f;
  --line: #d5d9d0;
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --max: 1440px;
  --gutter: clamp(24px, 5vw, 80px);
  --space: clamp(76px, 8vw, 124px);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 106px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 16px/1.65 var(--sans); -webkit-font-smoothing: antialiased; }
body.modal-open, body.menu-open { overflow: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
button, summary, a { -webkit-tap-highlight-color: transparent; }
button { font: inherit; cursor: pointer; }
button, input { accent-color: var(--ink); }
button:disabled { opacity: .35; cursor: default; }
h1, h2, h3, p { margin: 0; }
:focus-visible { outline: 2px solid #997342; outline-offset: 6px; }
::selection { background: #dbe4d4; color: #162a22; }
.wrap { max-width: var(--max); width: 100%; margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow { font: 500 .75rem/1.5 var(--sans); letter-spacing: .16em; text-transform: uppercase; margin-bottom: 22px; }
.title, .display, .subhead, h3 { font-family: var(--serif); font-weight: 400; letter-spacing: -.035em; text-wrap: balance; }
.display { font-size: clamp(3.5rem, 5.5vw, 5.9rem); line-height: 1.06; }
.title { font-size: clamp(2.5rem, 4.1vw, 4.5rem); line-height: 1.12; }
.subhead { font-size: clamp(2rem, 3vw, 3.5rem); line-height: 1.16; }
.copy { color: var(--muted); font-size: 1rem; line-height: 1.85; max-width: 58ch; }
.copy-readmore {
  margin-top: 8px;
}
.copy-readmore button {
  border: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  color: #6f7d6f;
  font-size: .85rem;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.copy-readmore button:hover { color: var(--ink); }
.copy.copy--collapsed { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.btn, .book { display: inline-flex; justify-content: center; align-items: center; gap: 22px; min-height: 50px; padding: 13px 24px; border: 1px solid var(--ink); font-size: .875rem; line-height: 1.5; font-weight: 500; transition: background .2s, color .2s; }
.btn:hover, .book:hover { color: var(--paper); background: var(--pine); }
.primary, .book { color: var(--paper); background: var(--pine); }
.primary:hover, .book:hover { background: #405444; }
.text-link { display: inline-block; width: fit-content; padding: 10px 0 7px; border-bottom: 1px solid currentColor; font-size: .875rem; line-height: 1.5; transition: color .2s; }
.text-link:hover { color: #797a54; }
.skip-link { position: fixed; left: 20px; top: -100px; padding: 12px 24px; z-index: 100; background: var(--paper); border: 1px solid; }
.skip-link:focus { top: 10px; }
/* Navigation remains legible on photographs and always exposes booking. */
.header { position: sticky; top: 0; z-index: 50; width: 100%; min-height: 94px; display: flex; align-items: center; justify-content: space-between; gap: 28px; padding: 14px var(--gutter); background: var(--paper); border-bottom: 1px solid var(--line); }
.header.scrolled { box-shadow: 0 1px 0 var(--line); }
.brand { display: block; flex: 0 0 auto; text-align: center; }
.brand span { font: 400 1.8rem/1.1 var(--serif); letter-spacing: -.04em; }
.brand small { display: block; font-size: .625rem; line-height: 1.6; margin-top: 7px; letter-spacing: .16em; }
.nav { display: flex; align-items: center; gap: clamp(18px, 2.2vw, 34px); font-size: .875rem; }
.nav > a, .nav summary { min-height: 44px; display: flex; align-items: center; position: relative; cursor: pointer; }
.nav > a[aria-current], .nav > a:hover { text-decoration: underline; text-underline-offset: 8px; text-decoration-thickness: 1px; }
.nav-group { position: relative; }
.nav summary { list-style: none; gap: 9px; }
.nav summary::-webkit-details-marker { display: none; }
.dropdown { position: absolute; left: -24px; top: 100%; min-width: 205px; padding: 12px 24px; background: var(--paper); border: 1px solid var(--line); }
.dropdown a { display: block; padding: 12px 0; white-space: nowrap; }
.dropdown a:hover, .dropdown a[aria-current] { text-decoration: underline; text-underline-offset: 6px; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.menu { display: none; border: 0; background: none; width: 44px; height: 44px; padding: 10px; color: var(--ink); }
.menu span { display: block; width: 24px; height: 1px; background: currentColor; margin: 6px 0; transition: transform .2s; }
.menu[aria-expanded=true] span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu[aria-expanded=true] span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
/* Hero: light editorial text beside an unobstructed photograph. */
.hero { display: grid; grid-template-columns: .84fr 1.16fr; min-height: min(700px, calc(100svh - 94px)); max-width: 1800px; margin-inline: auto; }
.hero-content { grid-column: 1; grid-row: 1; padding: clamp(52px, 5.5vw, 88px) clamp(28px, 4.2vw, 68px) clamp(48px, 5vw, 76px) var(--gutter); display: flex; flex-direction: column; justify-content: center; align-items: flex-start; }
.hero-content .eyebrow { color: #5d705e; margin-bottom: 28px; }
.hero h1 { max-width: 10ch; }
.hero-description { margin-top: 26px; max-width: 36ch; color: var(--muted); font-size: 1rem; line-height: 1.8; }
.hero-content > .btn { margin-top: 30px; }
.hero-content > .text-link { margin-top: 12px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px 25px; margin-top: 30px; align-items: center; }
.hero-bg { grid-column: 2; grid-row: 1; position: relative; min-height: 540px; overflow: hidden; background: var(--sand2); }
.hero-bg img { position: absolute; inset: 0; object-position: 47% center; }
.hero-caption { position: absolute; bottom: 20px; left: 24px; right: 24px; width: fit-content; max-width: calc(100% - 48px); padding: 8px 12px; color: #fff; background: #18271fd9; font-size: .75rem; line-height: 1.5; }
.hero.short { min-height: 440px; }
.hero.short .hero-bg { min-height: 440px; }
.hero.short .display { font-size: clamp(3rem, 4.7vw, 5rem); }
.hero.short .hero-content { padding-block: 62px; }
.facts { border-block: 1px solid var(--line); }
.facts-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; padding-block: 23px; font-size: .875rem; color: #4a5b4f; }
.facts-inner > span { padding-block: 5px; }
.lodge-subnav { display: flex; gap: 32px; flex-wrap: wrap; padding-block: 20px; border-bottom: 1px solid var(--line); font-size: .875rem; }
.lodge-subnav a { padding: 6px 0; border-bottom: 1px solid transparent; }
.lodge-subnav a:hover { border-color: var(--ink); }
/* Rooms and overview share the same baseline and spacing. */
.intro { padding-block: var(--space); }
.intro-grid, .inside-top, .lodges-head, .region-head, .gallery-head, .booking-grid, .floor-grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(32px, 7vw, 112px); align-items: center; }
.intro-copy .btn { margin-top: 26px; }
.cinema { position: relative; height: clamp(380px, 45vw, 660px); background: var(--sand2); }
.cinema-label { position: absolute; bottom: 22px; left: var(--gutter); background: #18271fdd; color: #fff; padding: 7px 12px; font-size: .75rem; }
.home .intro { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: auto; padding-inline: var(--gutter); gap: clamp(36px, 6vw, 96px); align-items: center; }
.home .intro-grid { display: block; padding: 0; grid-column: 2; grid-row: 1; }
.home .intro .title { max-width: 13ch; }
.home .intro-copy { margin-top: 28px; }
.home .intro-copy .btn { border: 0; border-bottom: 1px solid; padding: 5px 0; min-height: 44px; }
.home .intro-copy .btn:hover { background: transparent; color: #747758; }
.home .cinema { grid-column: 1; grid-row: 1; height: 570px; }
.home .cinema img { object-position: 47% center; }
.home .cinema-label { left: 20px; }
.lodges { padding-block: var(--space); background: var(--sand); }
.lodges-head { margin-bottom: 54px; }
.lodges-head .title { max-width: 13ch; }
.lodge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 80px); align-items: start; }
.lodge-card { display: block; min-width: 0; }
.lodge-card:nth-child(2) { margin-top: 100px; }
.lodge-photo { aspect-ratio: 5/4; overflow: hidden; }
.lodge-photo img { transition: transform .65s ease; }
.lodge-card:hover .lodge-photo img { transform: scale(1.025); }
.lodge-card-content { padding-top: 28px; border-bottom: 1px solid #bdc5b9; padding-bottom: 28px; }
.lodge-card .eyebrow { margin-bottom: 10px; }
.lodge-card h3 { font-size: clamp(2.4rem, 3.3vw, 3.6rem); line-height: 1.2; margin-bottom: 15px; }
.lodge-card p { max-width: 45ch; color: var(--muted); font-size: 1rem; }
.lodge-meta { margin-top: 19px; font-size: .875rem; color: var(--ink); }
.lodge-card .text-link { margin-top: 18px; }
.inside { padding-block: var(--space); background: var(--pine); color: var(--paper); }
.inside-top { margin-bottom: 60px; }
.inside .copy { color: #c8d0c4; }
.mosaic { display: grid; grid-template-columns: 1.1fr .9fr; gap: 30px; align-items: start; }
.mosaic-main { aspect-ratio: 4/5; }
.mosaic-side { display: grid; gap: 30px; padding-top: 68px; }
.mosaic-side figure { aspect-ratio: 4/3; }
.mosaic figure { position: relative; }
.cap { position: absolute; bottom: 14px; left: 14px; color: #fff; background: #14231fd9; font-size: .875rem; padding: 6px 12px; }
.inside-facts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 58px; padding-top: 30px; border-top: 1px solid #6b7a69; }
.inside-fact b { display: block; font-weight: 500; font-size: 1.125rem; margin-bottom: 12px; }
.inside-fact span { display: block; color: #c8d0c4; font-size: 1rem; line-height: 1.75; }
/* Gallery has visible navigation, native scrolling and a native modal dialog. */
.gallery { padding-block: var(--space); }
.gallery-head { margin-bottom: 44px; }
.track { display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-padding-left: var(--gutter); padding: 0 var(--gutter) 18px; scrollbar-width: thin; scrollbar-color: #85907d transparent; }
.card { flex: 0 0 min(56vw, 730px); border: 0; padding: 0; color: var(--ink); background: transparent; text-align: left; scroll-snap-align: start; }
.card.small { flex-basis: min(35vw, 450px); }
.card img { height: clamp(300px, 35vw, 490px); object-fit: cover; }
.card span { display: block; margin-top: 15px; font-size: .875rem; }
.card:hover span { text-decoration: underline; text-underline-offset: 5px; }
.gallery-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 20px; }
.gallery-bottom p { font-size: .875rem; color: var(--muted); }
.gallery-controls-right { justify-content: flex-end; }
.gallery-controls { display: flex; gap: 10px; }
.gallery-controls button { background: transparent; border: 1px solid var(--line); width: 48px; height: 48px; color: var(--ink); font-size: 1.25rem; }
.gallery-controls button:hover { background: var(--sand2); }
.outside-hero { display: grid; grid-template-columns: 1.15fr .85fr; background: var(--sand); }
.outside-hero > img { min-height: 520px; max-height: 680px; }
.outside-hero-content { padding: 60px var(--gutter); align-self: center; }
.outside-hero-content .title { margin-bottom: 28px; }
/* The region is a sequence of photographs and editorial captions, without cards. */
.outside { padding-block: var(--space); background: var(--paper); }
.region-head { margin-bottom: 54px; }
.region-head .title { max-width: 14ch; }
.region-cards { display: grid; grid-template-columns: 1.18fr 1fr 1fr; gap: 32px; align-items: start; }
.region-card { min-width: 0; }
.region-card figure { aspect-ratio: 1/1.08; overflow: hidden; }
.region-card:nth-child(2) { padding-top: 70px; }
.region-card:nth-child(3) { padding-top: 140px; }
.region-card:nth-child(2) figure, .region-card:nth-child(3) figure { aspect-ratio: 1.12; }
.region-card img { transition: transform .65s; }
.region-card:hover img { transform: scale(1.03); }
.region-card-body { padding-top: 23px; }
.region-card-title .eyebrow { font-size: .75rem; letter-spacing: .1em; margin-bottom: 8px; }
.region-card-title h3 { font-size: clamp(1.75rem, 2.25vw, 2.7rem); line-height: 1.2; margin-bottom: 14px; }
.region-card-body p { color: var(--muted); font-size: 1rem; line-height: 1.75; }
.region-card-more { display: inline-block; margin-top: 22px; padding-block: 7px; border-bottom: 1px solid #9daa97; font-size: .875rem; }
.outside-intro { display: grid; grid-template-columns: .8fr 1fr; gap: 10vw; align-items: center; margin-bottom: 70px; }
.place-grid { display: grid; gap: 80px; }
.place { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(30px, 6vw, 96px); align-items: center; }
.place:nth-child(2) { grid-template-columns: .8fr 1.2fr; }
.place:nth-child(2) img { grid-column: 2; grid-row: 1; }
.place:nth-child(2) .place-txt { grid-column: 1; grid-row: 1; }
.place > img { aspect-ratio: 4/3; }
.place-number { display: block; font: 400 2.5rem/1.2 var(--serif); color: #899580; padding-bottom: 25px; }
.place-txt .eyebrow { margin-bottom: 12px; }
.place h3 { font-size: clamp(2.2rem, 3vw, 3.5rem); line-height: 1.12; margin-bottom: 20px; }
/* Renovation photos remain side by side; mobile supports the same truthful comparison. */
.story { padding-block: var(--space); background: var(--sand); }
.story-head { display: grid; grid-template-columns: .8fr 1fr; gap: 8vw; margin-bottom: 60px; align-items: center; }
.story-heading {
  text-align: center;
  margin: 0 auto 54px;
  max-width: 70ch;
}
.story-heading .title {
  max-width: 100%;
}
.story-heading .copy {
  max-width: 56ch;
  margin: 18px auto 0;
}
.story-pairs { display: grid; gap: 54px; }
.story-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pair-title { grid-column: 1 / -1; display: flex; gap: 22px; align-items: baseline; font-size: 2rem; padding-top: 20px; border-top: 1px solid #bdc5b9; }
.pair-title span { font: 400 .875rem var(--sans); letter-spacing: .08em; }
.story-pair figure { position: relative; aspect-ratio: 4/3; }
.story-pair img { object-fit: contain; background: #dddfd6; }
.story-pair .cap { bottom: 12px; left: 12px; }
.story-teaser { padding-block: var(--space); display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: center; border-top: 1px solid var(--line); }
.teaser-image { height: 510px; }
.teaser-copy .copy { margin-top: 28px; }
.teaser-copy .text-link { margin-top: 23px; }
.compare, .info-panels, .floorplan { padding-block: var(--space); }
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; margin-top: 50px; }
.compare-photo { aspect-ratio: 16/10; height: auto; margin-bottom: 26px; }
.compare-col { min-width: 0; }
.compare-col h3 { font-size: 2.7rem; margin-bottom: 20px; }
.spec { display: grid; grid-template-columns: 100px 1fr; gap: 18px; border-top: 1px solid var(--line); padding-block: 20px; }
.spec b { font-size: .875rem; font-weight: 500; }
.spec span { color: var(--muted); }
.compare-col .btn { margin-top: 20px; }
.floorplan { background: var(--sand); }
.floor-copy .copy { margin-top: 24px; }
.floor-img { padding: 20px; background: #fff; }
.floor-img img { height: auto; object-fit: contain; }
.info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px 70px; }
.info-panel { min-width: 0; }
.info-panel .booking-photo { aspect-ratio: 16/9; height: auto; margin-bottom: 26px; }
.info-panel .eyebrow { margin-bottom: 12px; }
.info-panel .subhead { margin-bottom: 20px; }
.info-panel .btn { margin-top: 26px; }
.info-panel:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line); padding-top: 40px; }
.info-panel:last-child .copy { max-width: 65ch; }
.booking { padding-block: var(--space); background: var(--pine); color: var(--paper); }
.booking-grid { grid-template-columns: 1.2fr .8fr; align-items: end; }
.booking .display { font-size: clamp(3rem, 5.5vw, 5.8rem); }
.booking-side .copy { color: #c8d0c4; margin-bottom: 30px; }
.booking .btn { color: var(--pine); background: var(--paper); border-color: var(--paper); }
.booking .btn:hover { background: #dce3d6; border-color: #dce3d6; }
.site-footer { background: var(--pine); color: var(--paper); border-top: 1px solid #536553; }
.footer-main { display: flex; align-items: center; justify-content: space-between; gap: 60px; padding-block: 50px; }
.footer-brand strong { display: block; font: 400 clamp(2rem, 3.4vw, 3.5rem)/1.1 var(--serif); letter-spacing: -.04em; }
.footer-brand span { display: block; font-size: .75rem; letter-spacing: .15em; text-transform: uppercase; margin-top: 14px; color: #c8d0c4; }
.footer-links { display: grid; grid-template-columns: repeat(3, auto); gap: 12px 40px; font-size: .875rem; }
.footer-links a { padding-block: 5px; }
.footer-links a:hover { text-decoration: underline; text-underline-offset: 5px; }
.footer-meta { display: flex; gap: 30px; align-items: center; padding-block: 23px; border-top: 1px solid #536553; font-size: .75rem; color: #c8d0c4; }
.footer-meta span { margin-right: auto; }
.credit-page { padding: 80px 0 var(--space); }
.credit-page > .wrap > .copy { margin-top: 30px; }
.credit-list { margin-top: 50px; }
.credit { padding-block: 28px; border-top: 1px solid var(--line); }
.credit h2 { font: 400 2rem var(--serif); margin-bottom: 14px; }
.credit p { margin-block: 10px; max-width: 85ch; overflow-wrap: anywhere; }
.credit a { text-decoration: underline; text-underline-offset: 4px; }
.credit-page .back { margin-top: 24px; }
.lightbox { border: 0; padding: 0; width: min(96vw, 1600px); height: 94svh; max-height: 1000px; max-width: none; background: #111b16; color: #fff; }
.lightbox::backdrop { background: #07140de8; }
.lb-stage { position: relative; height: 100%; padding: 60px 58px; display: grid; place-items: center; }
.lb-img { object-fit: contain; max-height: 100%; }
.lb-close, .lb-prev, .lb-next { position: absolute; width: 46px; height: 46px; color: #fff; background: #23382fe6; border: 1px solid #708475; font-size: 1.8rem; line-height: 1; z-index: 2; }
.lb-close { right: 12px; top: 12px; }
.lb-prev { left: 10px; top: calc(50% - 23px); }
.lb-next { right: 10px; top: calc(50% - 23px); }
.lb-count { position: absolute; bottom: 16px; font-size: .875rem; }
/* Animation is enhancement only: all content stays visible if scripting fails. */
@keyframes arrive { from { opacity: .3; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.reveal.show { animation: arrive .7s ease both; }
@media (min-width: 1600px) { .hero-content { padding-left: max(var(--gutter), calc((100vw - 1320px)/2)); } }
@media (max-width: 1120px) {
  .header { gap: 18px; padding-inline: 28px; }
  .nav { gap: 18px; }
  .nav > a:first-child { display: none; }
  .hero { grid-template-columns: .9fr 1.1fr; }
  .hero-content { padding-inline: 36px; }
  .display { font-size: clamp(3.3rem, 6vw, 4.4rem); }
  .hero h1 { max-width: 11ch; }
  .inside-facts { grid-template-columns: repeat(2,1fr); }
  .region-cards { gap: 23px; }
  .region-card:nth-child(3) { padding-top: 110px; }
}
@media (max-width: 980px) {
  .header { min-height: 80px; padding: 12px 28px; }
  .menu { display: block; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 22px 28px 32px; background: var(--paper); border-bottom: 1px solid var(--line); flex-direction: column; align-items: stretch; gap: 0; max-height: calc(100dvh - 80px); overflow-y: auto; font-size: 1.125rem; }
  .nav.open { display: flex; }
  .nav > a, .nav summary, .nav > a:first-child { display: flex; padding: 10px 0; min-height: 48px; }
  .dropdown { position: static; border: 0; border-left: 1px solid var(--line); background: transparent; font-size: 1rem; padding-block: 0; margin-block: 0 12px; }
  .hero-content { padding: 40px 28px; }
  .hero-content .eyebrow { letter-spacing: .1em; }
  .hero-bg { min-height: 600px; }
  .hero-actions { gap: 12px; }
  .home .intro { gap: 35px; }
  .home .cinema { height: 510px; }
  .intro-grid, .inside-top, .gallery-head, .lodges-head, .region-head { gap: 35px; }
  .region-cards { grid-template-columns: 1fr 1fr; gap: 40px 28px; }
  .region-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: 1.2fr .8fr; gap: 30px; align-items: center; }
  .region-card:first-child figure { aspect-ratio: 4/3; }
  .region-card:nth-child(2), .region-card:nth-child(3) { padding-top: 0; }
  .outside-hero-content { padding: 40px 30px; }
  .compare-grid { gap: 32px; }
  .spec { grid-template-columns: 1fr; gap: 8px; }
  .footer-links { grid-template-columns: repeat(2,auto); gap: 10px 25px; }
  .booking-grid { grid-template-columns: 1fr; gap: 35px; }
  .booking-side { max-width: 60ch; }
}
@media (max-width: 760px) {
  :root { --gutter: 24px; --space: 72px; }
  html { scroll-padding-top: 94px; }
  .header { min-height: 76px; padding: 11px 20px; gap: 12px; }
  .brand span { font-size: 1.5rem; }
  .brand small { margin-top: 5px; font-size: .625rem; letter-spacing: .08em; }
  .header .book { min-height: 44px; padding: 9px 14px; gap: 9px; }
  .header-actions { gap: 8px; }
  .hero, .hero.short { display: flex; flex-direction: column; min-height: 0; }
  .hero-content, .hero.short .hero-content { padding: 34px var(--gutter) 36px; }
  .hero-content .eyebrow { margin-bottom: 17px; font-size: .75rem; }
  .hero h1, .hero.short .display { font-size: clamp(2.9rem, 10.7vw, 4.4rem); max-width: 14ch; line-height: 1.08; }
  .hero-description { max-width: 46ch; margin-top: 18px; font-size: 1rem; line-height: 1.7; }
  .hero-actions { margin-top: 23px; gap: 14px 22px; }
  .hero-content > .btn { margin-top: 23px; }
  .hero-content > .text-link { margin-top: 10px; }
  .hero-bg, .hero.short .hero-bg { order: 2; width: 100%; height: clamp(290px, 75vw, 460px); min-height: 0; }
  .hero-bg img { object-position: 47% center; }
  .hero-caption { bottom: 16px; left: 20px; max-width: calc(100% - 40px); }
  .title { font-size: clamp(2.35rem, 8.7vw, 3.3rem); line-height: 1.13; }
  .eyebrow { margin-bottom: 16px; }
  .facts-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 0 16px; padding-block: 16px; align-items: start; font-size: .875rem; }
  .facts-inner > span { padding-block: 10px; border-bottom: 1px solid var(--line); }
  .lodge-subnav { gap: 6px 24px; padding-block: 15px; }
  .intro-grid, .inside-top, .gallery-head, .lodges-head, .region-head, .floor-grid, .outside-intro, .story-head { grid-template-columns: 1fr; gap: 25px; }
  .home .intro { display: flex; flex-direction: column; gap: 35px; }
  .home .intro-grid { order: 0; }
  .home .intro .title { max-width: 16ch; }
  .home .intro-copy { margin-top: 24px; }
  .home .cinema { order: 1; width: 100%; height: 390px; }
  .cinema { height: 360px; }
  .lodge-grid { grid-template-columns: 1fr; gap: 48px; }
  .lodge-card:nth-child(2) { margin-top: 0; }
  .lodge-photo { aspect-ratio: 4/3; }
  .lodge-card h3 { font-size: 2.7rem; }
  .lodge-card-content { padding-top: 22px; }
  .lodges-head { margin-bottom: 34px; }
  .inside-top { margin-bottom: 34px; }
  .mosaic { grid-template-columns: 1fr; gap: 24px; }
  .mosaic-main { aspect-ratio: 4/3; }
  .mosaic-side { grid-template-columns: 1fr 1fr; padding-top: 0; gap: 16px; }
  .mosaic-side figure { aspect-ratio: 3/4; }
  .inside-facts { gap: 26px 24px; margin-top: 35px; }
  .inside-fact b { font-size: 1rem; }
  .inside-fact span { font-size: .9375rem; }
  .cap { left: 8px; bottom: 8px; padding: 5px 8px; font-size: .8125rem; }
  .gallery-head { margin-bottom: 30px; }
  .track { gap: 16px; }
  .card, .card.small { flex-basis: 82vw; }
  .card img { height: 390px; }
  .gallery-bottom { align-items: start; }
  .gallery-bottom p { max-width: 23ch; }
  .outside-hero { grid-template-columns: 1fr; }
  .outside-hero > img { min-height: 0; height: 340px; }
  .outside-hero-content { padding: 44px var(--gutter); }
  .region-head { margin-bottom: 34px; }
  .region-cards { display: grid; grid-template-columns: 1fr; gap: 40px; }
  .region-card:first-child { grid-column: auto; display: block; }
  .region-card figure, .region-card:first-child figure, .region-card:nth-child(2) figure, .region-card:nth-child(3) figure { aspect-ratio: 4/3; }
  .region-card-title h3 { font-size: 2.1rem; }
  .region-card-more { margin-top: 12px; }
  .outside-intro { margin-bottom: 40px; }
  .place-grid { gap: 50px; }
  .place, .place:nth-child(2) { display: flex; flex-direction: column; gap: 24px; align-items: stretch; }
  .place > img { height: auto; aspect-ratio: 4/3; }
  .place-number { font-size: 1.8rem; padding-bottom: 14px; }
  .place h3 { font-size: 2.4rem; }
  .story-head { margin-bottom: 35px; }
  .story-head .title { grid-row: 1; }
  .story-pair { gap: 12px; }
  .story-pair figure { aspect-ratio: 3/4; }
  .story-pair .cap { left: 7px; bottom: 7px; padding: 4px 7px; }
  .pair-title { font-size: 1.8rem; }
  .story-teaser { grid-template-columns: 1fr; gap: 32px; }
  .teaser-image { height: 330px; }
  .compare-grid, .info-grid { grid-template-columns: 1fr; gap: 48px; }
  .compare-grid { margin-top: 34px; }
  .spec { grid-template-columns: 85px 1fr; gap: 16px; padding-block: 17px; }
  .floor-img { padding: 10px; }
  .info-panel:last-child { grid-column: auto; }
  .copy.copy--collapsed { -webkit-line-clamp: 2; }
  .booking .display { font-size: clamp(2.6rem, 9.5vw, 3.8rem); }
  .footer-main { flex-direction: column; align-items: flex-start; gap: 32px; padding-block: 40px; }
  .footer-links { width: 100%; grid-template-columns: 1fr 1fr; }
  .footer-meta { flex-wrap: wrap; gap: 12px 24px; }
  .footer-meta span { flex-basis: 100%; }
  .lightbox {
    width: 100vw;
    height: 100svh;
    max-height: none;
    max-width: none;
  }

  .lb-stage {
    padding: 58px 12px 60px;
    align-content: center;
  }

  .lb-img {
    width: min(100%, calc(100vw - 24px));
    height: auto;
    max-height: calc(100svh - 152px);
  }

  .lb-prev,
  .lb-next {
    top: auto;
    bottom: 14px;
  }

  .lb-prev { left: calc(50% - 72px); }
  .lb-next { left: calc(50% + 24px); }
  .lb-count { bottom: 24px; }
}
@media (max-width: 370px) {
  .header { padding-inline: 14px; gap: 8px; }
  .header .book { padding-inline: 12px; }
  .book span { display: none; }
  .hero-actions { gap: 12px 20px; }
  .inside-facts { grid-template-columns: 1fr; }
  .spec { grid-template-columns: 1fr; gap: 6px; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
