:root {
  --forest: #123b31;
  --forest-deep: #09271f;
  --forest-soft: #245447;
  --ivory: #f5f0e7;
  --paper: #fbf8f2;
  --ink: #16231f;
  --muted: #64716c;
  --copper: #b48a4a;
  --line: rgba(18, 59, 49, .16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --shell: min(1180px, calc(100% - 64px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
main section[id] { scroll-margin-top: 88px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open,
body.lightbox-opened { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, select, input { font: inherit; }
button { color: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding-block: clamp(88px, 9vw, 140px); }
.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: white;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: 88px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding-inline: clamp(24px, 4vw, 64px);
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.18);
  transition: height .35s var(--ease), background .35s, backdrop-filter .35s;
}
.site-header.scrolled {
  height: 72px;
  background: rgba(9,39,31,.94);
  backdrop-filter: blur(14px);
}
.brand { width: 255px; }
.brand img { width: 100%; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 34px; }
.desktop-nav a,
.header-cta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.desktop-nav a { position: relative; padding-block: 12px; }
.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--copper);
  transform: scaleX(0);
  transition: transform .3s var(--ease);
}
.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after { transform: scaleX(1); }
.header-cta { justify-self: end; display: flex; align-items: center; gap: 12px; }
.header-cta span { color: var(--copper); font-size: 16px; }
.menu-toggle { display: none; }
.mobile-panel { display: none; }

.hero {
  position: relative;
  min-height: 820px;
  height: 100svh;
  display: flex;
  align-items: center;
  color: white;
  background: var(--forest-deep);
  isolation: isolate;
}
.hero-media,
.hero-shade { position: absolute; inset: 0; }
.hero-media { z-index: -3; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  animation: heroDrift 18s ease-in-out infinite alternate;
}
.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5,26,20,.91) 0%, rgba(7,32,25,.72) 46%, rgba(7,30,24,.2) 78%),
    linear-gradient(0deg, rgba(5,28,22,.72), transparent 45%);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: .16;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
}
.hero-content { padding-top: 64px; }
.kicker {
  margin: 0 0 20px;
  color: var(--forest-soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.kicker.light { color: #e0c18d; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: .98; }
h1 {
  max-width: 900px;
  margin-bottom: 28px;
  font-size: clamp(62px, 7.4vw, 118px);
  letter-spacing: -.045em;
}
h1 em, h2 em { color: var(--copper); font-weight: 400; }
.hero-copy {
  max-width: 600px;
  margin-bottom: 34px;
  color: rgba(255,255,255,.78);
  font-size: clamp(17px, 1.45vw, 21px);
}
.hero-actions { display: flex; align-items: center; gap: 34px; }
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 0 26px;
  border: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: transform .25s var(--ease), background .25s, color .25s;
}
.button:hover { transform: translateY(-3px); }
.button-light { background: var(--ivory); color: var(--forest-deep); }
.button-dark { background: var(--forest-deep); color: white; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.text-link.light { color: rgba(255,255,255,.9); }
.text-link span { color: var(--copper); }
.hero-facts {
  position: absolute;
  right: clamp(24px, 4vw, 64px);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  background: var(--ivory);
  color: var(--ink);
}
.hero-facts div { padding: 25px 30px; border-right: 1px solid var(--line); }
.hero-facts div:last-child { border: 0; }
.hero-facts strong { display: block; font-family: var(--serif); font-size: 42px; font-weight: 400; line-height: 1; }
.hero-facts span { display: block; margin-top: 7px; color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: clamp(24px, 4vw, 64px);
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.scroll-cue span { width: 34px; height: 1px; background: var(--copper); animation: cue 2s infinite; }

.section-heading h2,
.rooms-head h2,
.planner-intro h2,
.stay-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(48px, 5.2vw, 78px);
  letter-spacing: -.035em;
}
.essentials-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 52px 9vw;
  align-items: start;
}
.essentials-copy { padding-top: 20px; color: var(--muted); max-width: 550px; }
.essentials-copy .lead { color: var(--ink); font-family: var(--serif); font-size: 27px; line-height: 1.35; }
.occasion-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.occasion-list span {
  position: relative;
  min-height: 92px;
  display: flex;
  align-items: center;
  padding: 22px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 22px;
}
.occasion-list span::after { content: "✦"; position: absolute; right: 24px; color: var(--copper); font-size: 11px; }
.feature-image {
  position: relative;
  min-height: 480px;
  padding: 0;
  overflow: hidden;
  border: 0;
  cursor: pointer;
  background: var(--forest);
}
.feature-image img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; transition: transform .7s var(--ease); }
.feature-image:hover img { transform: scale(1.035); }
.feature-image::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,25,19,.8)); }
.feature-image span { position: absolute; z-index: 2; right: 30px; bottom: 28px; left: 30px; display: flex; justify-content: space-between; color: white; font-family: var(--serif); font-size: 22px; text-align: left; }
.feature-image b { color: var(--copper); font-family: var(--sans); font-weight: 400; }
.host-note {
  align-self: stretch;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(45px, 6vw, 84px);
  background: var(--ivory);
}
.host-note span { color: var(--forest-soft); font-size: 10px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.host-note p { margin: 22px 0 0; font-family: var(--serif); font-size: clamp(30px, 3.2vw, 46px); line-height: 1.2; }

.section-dark { color: white; background: var(--forest-deep); }
.rooms-head { display: grid; grid-template-columns: 1.35fr .65fr; gap: 8vw; align-items: end; margin-bottom: 70px; }
.rooms-head > p { max-width: 420px; margin-bottom: 4px; color: rgba(255,255,255,.6); }
.room-browser { display: grid; grid-template-columns: 250px 1fr; min-height: 620px; border-top: 1px solid rgba(255,255,255,.14); }
.room-tabs { display: flex; flex-direction: column; border-left: 1px solid rgba(255,255,255,.14); }
.room-tabs button {
  flex: 1;
  position: relative;
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
  padding: 20px 24px;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.58);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color .3s, background .3s;
}
.room-tabs button span { color: var(--copper); font-size: 10px; font-weight: 700; letter-spacing: .12em; }
.room-tabs button[aria-selected="true"] { color: var(--forest-deep); background: var(--ivory); }
.room-stage { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .75fr); }
.room-photo { position: relative; padding: 0; overflow: hidden; border: 0; cursor: pointer; background: #0c2e25; }
.room-photo::after { content: ""; position: absolute; inset: 0; box-shadow: inset 0 0 0 1px rgba(255,255,255,.12); pointer-events: none; }
.room-photo img { width: 100%; height: 100%; object-fit: cover; transition: opacity .25s, transform .7s var(--ease); }
.room-photo:hover img { transform: scale(1.025); }
.room-photo.switching img { opacity: .3; }
.room-photo > span { position: absolute; right: 22px; bottom: 20px; padding: 9px 13px; color: white; background: rgba(6,30,23,.76); font-size: 10px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; }
.room-card { padding: clamp(34px, 4vw, 58px); color: var(--ink); background: var(--ivory); }
.room-card > p:first-child { min-height: 44px; margin-bottom: 32px; color: var(--forest-soft); font-size: 10px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.capacity { display: flex; align-items: flex-end; gap: 10px; padding-bottom: 26px; border-bottom: 1px solid var(--line); }
.capacity strong { font-family: var(--serif); font-size: 72px; font-weight: 400; line-height: .8; }
.capacity span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.room-card h3 { margin: 36px 0 16px; font-size: 38px; }
.room-card > p:not(:first-child) { color: var(--muted); }
.room-card ul { margin: 26px 0 0; padding: 0; list-style: none; }
.room-card li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 12px; font-weight: 700; letter-spacing: .05em; }
.room-card li::before { content: "✦"; margin-right: 10px; color: var(--copper); }

.atmosphere { background: var(--ivory); }
.atmosphere-grid { display: grid; grid-template-columns: .65fr 1.35fr; gap: 7vw; align-items: center; }
.atmosphere .section-heading h2 { margin-bottom: 28px; }
.section-copy { max-width: 480px; color: var(--muted); }
.atmosphere .text-link { margin-top: 12px; color: var(--forest); }
.editorial-gallery {
  min-height: 690px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 1fr .8fr;
  gap: 12px;
}
.gallery-tile { position: relative; padding: 0; overflow: hidden; border: 0; cursor: pointer; background: var(--forest); }
.gallery-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s var(--ease), filter .4s; }
.gallery-tile:hover img { transform: scale(1.04); filter: brightness(.82); }
.gallery-tile::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,22,17,.72)); }
.gallery-tile span { position: absolute; z-index: 2; bottom: 18px; left: 20px; color: white; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.tile-food { grid-row: 1 / -1; }
.tile-dj { display: none; }
.tile-buffet { grid-column: 2; grid-row: 1; }
.tile-dance { grid-column: 2; grid-row: 2; }
.editorial-gallery::after {
  content: "Essen · Anstoßen · Tanzen";
  position: absolute;
  pointer-events: none;
}
.editorial-gallery { position: relative; }
.editorial-gallery::after { right: -20px; bottom: -35px; color: var(--copper); font-family: var(--serif); font-size: 18px; font-style: italic; }

.planner { background: #dfe7df; }
.planner-grid { display: grid; grid-template-columns: .8fr 1fr .72fr; gap: 5vw; align-items: start; }
.planner-intro h2 { margin-bottom: 28px; }
.planner-intro > p:last-child { color: var(--muted); }
.planner-form { padding: 36px; background: rgba(255,255,255,.6); border: 1px solid rgba(18,59,49,.12); }
.planner-form label,
.planner-form legend { display: flex; align-items: center; gap: 10px; margin: 0 0 12px; font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.planner-form label span,
.planner-form legend span { color: var(--copper); }
.planner-form output { margin-left: auto; color: var(--forest); font-family: var(--serif); font-size: 25px; font-weight: 400; }
.select-wrap { position: relative; margin-bottom: 34px; }
.select-wrap::after { content: "⌄"; position: absolute; right: 16px; top: 50%; transform: translateY(-55%); color: var(--copper); pointer-events: none; }
.planner-form select {
  width: 100%;
  height: 52px;
  padding: 0 42px 0 16px;
  appearance: none;
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--ink);
  background: white;
}
.planner-form input[type="range"] { width: 100%; margin: 2px 0 35px; accent-color: var(--forest); }
.planner-form fieldset { margin: 0; padding: 0; border: 0; }
.choice-row { display: flex; flex-wrap: wrap; gap: 8px; }
.choice {
  padding: 9px 12px;
  border: 1px solid var(--line);
  color: var(--forest);
  background: transparent;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
}
.choice.active { color: white; background: var(--forest); border-color: var(--forest); }
.planner-result { min-height: 380px; display: flex; flex-direction: column; padding: 42px 36px; color: white; background: var(--forest); }
.planner-result > p { color: #d8bd8d; font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.planner-result h3 { margin: 25px 0 18px; font-size: 43px; }
.planner-result > span { color: rgba(255,255,255,.66); }
.planner-result .button { margin-top: auto; color: var(--forest-deep); background: var(--ivory); }

.stay-contact { display: grid; grid-template-columns: 1fr 1fr; }
.stay-panel { display: grid; grid-template-columns: .95fr 1.05fr; gap: 3.5vw; align-items: center; padding-inline: clamp(30px, 5vw, 80px); background: var(--paper); }
.stay-image { min-height: 500px; }
.stay-image img { width: 100%; height: 100%; object-fit: cover; }
.stay-copy h2 { margin-bottom: 28px; }
.stay-copy > p:not(.kicker) { color: var(--muted); }
.stay-types { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.stay-types span { padding: 8px 11px; border: 1px solid var(--line); color: var(--forest); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.contact-panel { position: relative; min-height: 720px; display: flex; align-items: center; padding-inline: clamp(38px, 6vw, 90px); color: white; isolation: isolate; }
.contact-image, .contact-shade { position: absolute; z-index: -2; inset: 0; }
.contact-image { background: url("assets/images/cta.webp") center/cover no-repeat; }
.contact-shade { z-index: -1; background: linear-gradient(90deg, rgba(6,33,25,.91), rgba(6,33,25,.62)); }
.contact-copy { width: 100%; max-width: 610px; }
.contact-copy h2 { margin-bottom: 50px; }
.contact-copy > a { display: flex; align-items: baseline; justify-content: space-between; gap: 30px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.22); }
.contact-copy > a span { color: #d8bd8d; font-size: 10px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-copy > a strong { font-family: var(--serif); font-size: clamp(17px, 1.5vw, 23px); font-weight: 400; }
.contact-copy address { margin-top: 30px; color: rgba(255,255,255,.63); font-size: 13px; font-style: normal; }

.site-footer {
  min-height: 130px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 30px clamp(24px, 4vw, 64px);
  color: rgba(255,255,255,.65);
  background: var(--forest-deep);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.site-footer img { width: 210px; }
.site-footer p { margin: 0; }
.site-footer > div { justify-self: end; display: flex; gap: 24px; }
.site-footer button { padding: 0; border: 0; color: inherit; background: transparent; cursor: pointer; text-transform: inherit; font: inherit; }
.site-footer a:hover, .site-footer button:hover { color: white; }

.lightbox {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px;
  color: white;
  background: rgba(3,20,15,.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
}
.lightbox[aria-hidden="false"] { opacity: 1; visibility: visible; }
.lightbox figure { width: min(1100px, 100%); height: min(720px, 78vh); margin: 0; }
.lightbox img { width: 100%; height: calc(100% - 40px); object-fit: contain; }
.lightbox figcaption { margin-top: 14px; text-align: center; font-size: 11px; letter-spacing: .1em; text-transform: uppercase; }
.lightbox-close { position: absolute; top: 25px; right: 30px; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.25); color: white; background: transparent; font-size: 28px; cursor: pointer; }
.noscript { position: fixed; z-index: 800; right: 20px; bottom: 20px; max-width: 420px; padding: 15px 18px; color: white; background: var(--forest-deep); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s var(--ease), transform .75s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
@keyframes heroDrift { to { transform: scale(1.045) translate3d(-.6%, -.4%, 0); } }
@keyframes cue { 0%,100% { transform: scaleX(.35); transform-origin: left; } 50% { transform: scaleX(1); transform-origin: left; } }

@media (max-width: 1120px) {
  :root { --shell: min(100% - 48px, 1020px); }
  .brand { width: 210px; }
  .desktop-nav { gap: 22px; }
  .room-stage { grid-template-columns: 1fr 330px; }
  .planner-grid { grid-template-columns: 1fr 1.15fr; }
  .planner-result { grid-column: 2; min-height: 290px; }
  .stay-contact { grid-template-columns: 1fr; }
  .stay-panel { min-height: 650px; }
  .contact-panel { min-height: 680px; }
}

@media (max-width: 820px) {
  :root { --shell: min(100% - 36px, 720px); }
  .section { padding-block: 82px; }
  .site-header { height: 72px; grid-template-columns: 1fr auto; padding-inline: 18px; }
  .brand { width: 188px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: grid; place-items: center; gap: 6px; width: 44px; height: 44px; padding: 12px; border: 1px solid rgba(255,255,255,.28); background: transparent; }
  .menu-toggle span { width: 18px; height: 1px; background: white; transition: transform .25s; }
  .menu-open .menu-toggle span:first-child { transform: translateY(3.5px) rotate(45deg); }
  .menu-open .menu-toggle span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
  .mobile-panel { position: fixed; z-index: 90; inset: 0; display: flex; align-items: center; padding: 100px 26px 40px; color: white; background: var(--forest-deep); opacity: 0; visibility: hidden; transition: opacity .25s, visibility .25s; }
  .mobile-panel[aria-hidden="false"] { opacity: 1; visibility: visible; }
  .mobile-panel nav { width: 100%; }
  .mobile-panel a { display: grid; grid-template-columns: 46px 1fr; align-items: center; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.16); font-family: var(--serif); font-size: 31px; }
  .mobile-panel a span { color: var(--copper); font-family: var(--sans); font-size: 10px; }
  .hero { min-height: 760px; }
  .hero-content { padding-top: 20px; }
  h1 { font-size: clamp(54px, 12vw, 80px); }
  .hero-facts { right: 18px; left: 18px; grid-template-columns: repeat(3, 1fr); }
  .hero-facts div { padding: 18px 14px; }
  .hero-facts strong { font-size: 32px; }
  .scroll-cue { display: none; }
  .essentials-grid, .rooms-head, .atmosphere-grid, .planner-grid { grid-template-columns: 1fr; }
  .essentials-copy { padding-top: 0; }
  .occasion-list { grid-template-columns: 1fr 1fr; }
  .feature-image { min-height: 420px; }
  .rooms-head { gap: 26px; margin-bottom: 48px; }
  .room-browser { grid-template-columns: 1fr; min-height: 0; }
  .room-tabs { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,.14); }
  .room-tabs button { min-height: 72px; }
  .room-stage { grid-template-columns: 1fr; }
  .room-photo { min-height: 430px; }
  .room-card { min-height: 0; }
  .editorial-gallery { min-height: 570px; }
  .planner-result { grid-column: auto; min-height: 300px; }
  .stay-panel { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer p { display: none; }
}

@media (max-width: 560px) {
  :root { --shell: calc(100% - 28px); }
  body { font-size: 15px; }
  .section { padding-block: 70px; }
  .hero { min-height: 740px; height: 100svh; }
  .hero-media img { object-position: 61% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(5,27,21,.93), rgba(5,27,21,.63)); }
  h1 { font-size: clamp(48px, 14vw, 68px); }
  .hero-copy { max-width: 92%; font-size: 16px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 15px; }
  .button { min-height: 50px; padding-inline: 18px; }
  .hero-facts { bottom: 18px; }
  .hero-facts div { padding: 14px 9px; }
  .hero-facts strong { font-size: 27px; }
  .hero-facts span { font-size: 8px; line-height: 1.35; }
  .section-heading h2, .rooms-head h2, .planner-intro h2, .stay-copy h2, .contact-copy h2 { font-size: clamp(43px, 12vw, 58px); }
  .occasion-list { grid-template-columns: 1fr; }
  .occasion-list span { min-height: 72px; }
  .feature-image { min-height: 350px; }
  .host-note { padding: 40px 30px; }
  .host-note p { font-size: 30px; }
  .room-tabs { grid-template-columns: 1fr; }
  .room-tabs button { min-height: 62px; }
  .room-photo { min-height: 300px; }
  .room-card { padding: 34px 25px; }
  .capacity strong { font-size: 62px; }
  .editorial-gallery { min-height: 540px; grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .tile-food, .tile-buffet, .tile-dance { grid-column: auto; grid-row: auto; }
  .editorial-gallery { grid-template-rows: repeat(3, minmax(210px, 1fr)); }
  .editorial-gallery::after { right: 0; }
  .planner-form { padding: 28px 20px; }
  .planner-result { min-height: 320px; padding: 34px 25px; }
  .stay-panel { grid-template-columns: 1fr; min-height: 0; padding-inline: 20px; }
  .stay-image { min-height: 340px; }
  .contact-panel { min-height: 650px; padding-inline: 24px; }
  .contact-copy > a { align-items: flex-start; flex-direction: column; gap: 4px; }
  .contact-copy > a strong { overflow-wrap: anywhere; }
  .site-footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .site-footer > div { justify-self: center; flex-wrap: wrap; justify-content: center; }
  .lightbox { padding: 55px 14px 25px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .site-header, .mobile-panel, .hero-actions, .scroll-cue, .room-tabs, .planner, .lightbox, .site-footer button { display: none !important; }
  .hero { height: 60vh; min-height: 0; }
  .section { padding-block: 40px; }
  .reveal { opacity: 1; transform: none; }
  .stay-contact { grid-template-columns: 1fr; }
}
