:root {
  --ink: #182422;
  --muted: #65706a;
  --paper: #fbfaf4;
  --mist: #edf4ee;
  --leaf: #315f4d;
  --leaf-deep: #193d34;
  --clay: #b86d45;
  --ocean: #2f7188;
  --gold: #d8b66d;
  --line: rgba(24, 36, 34, 0.14);
  --shadow: 0 24px 80px rgba(24, 36, 34, 0.15);
  --font-display: "Cormorant Garamond", "Georgia", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1240px;
  --page-gutter: clamp(20px, 5vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  line-height: 1.55;
}

img {
  display: block;
  height: auto;
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: #fff;
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(251, 250, 244, 0.94);
  box-shadow: 0 12px 40px rgba(24, 36, 34, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-logo {
  width: 42px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.18));
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 500;
}

.brand small {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.8;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.7vw, 26px);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.primary-nav a {
  text-decoration: none;
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switcher button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
}

.language-switcher button.is-active {
  color: var(--leaf-deep);
  background: rgba(255, 255, 255, 0.86);
}

.site-header.is-scrolled .language-switcher button.is-active,
.site-header.is-open .language-switcher button.is-active {
  color: #fff;
  background: var(--leaf);
}

.nav-toggle {
  display: none;
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--leaf-deep);
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(11, 24, 22, 0.72), rgba(11, 24, 22, 0.22) 52%, rgba(11, 24, 22, 0.34)),
    linear-gradient(0deg, rgba(11, 24, 22, 0.46), transparent 44%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(880px, calc(100% - 40px));
  padding: clamp(116px, 15svh, 160px) 0 64px clamp(20px, 8vw, 110px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--clay);
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow {
  font-size: clamp(20px, 1.7vw, 26px);
  line-height: 1.1;
  letter-spacing: 0.1em;
}

.section-kicker {
  margin-bottom: 16px;
  font-size: clamp(21px, 2vw, 28px);
  line-height: 1.1;
  letter-spacing: 0.09em;
}

.hero .eyebrow {
  color: var(--gold);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(46px, 6vw, 82px);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 4.8vw, 60px);
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2vw, 24px);
}

.hero-actions,
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.booking-form > button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-family: var(--font-display);
  font-size: 17px;
  text-decoration: none;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.button-primary,
.booking-form > button {
  color: #fff;
  background: var(--leaf);
}

.button-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.1);
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 360px);
  gap: 22px;
  align-items: center;
  margin: -56px auto 0;
  padding: 22px;
  width: min(1180px, calc(100% - 32px));
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(251, 250, 244, 0.96);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 4;
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.booking-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.date-trigger {
  min-width: 0;
  height: 56px;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0 16px;
  color: var(--ink);
  background: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  color-scheme: light;
}

.booking-form input:focus-visible,
.date-trigger:focus-visible {
  outline: 3px solid rgba(47, 113, 136, 0.24);
  outline-offset: 2px;
  border-color: var(--ocean);
}

.date-trigger {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  cursor: pointer;
}

.date-trigger::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-top-width: 5px;
  opacity: 0.56;
}

.date-popover {
  position: fixed;
  z-index: 30;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(24, 36, 34, 0.28);
}

.date-popover[hidden] {
  display: none;
}

.date-picker {
  width: min(360px, 100%);
  padding: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.date-picker-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  gap: 8px;
  align-items: center;
  margin-bottom: 14px;
}

.date-picker-header strong {
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  text-align: center;
  text-transform: capitalize;
}

.date-nav {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  color: var(--leaf);
  background: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.date-weekdays,
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}

.date-weekdays {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.date-grid button {
  min-height: 42px;
  border: 1px solid transparent;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}

.date-grid button.is-muted {
  color: rgba(101, 112, 106, 0.48);
}

.date-grid button.is-selected {
  color: #fff;
  border-color: var(--leaf);
  background: var(--leaf);
}

.date-grid button:disabled {
  color: rgba(101, 112, 106, 0.34);
  background: rgba(237, 244, 238, 0.7);
  cursor: not-allowed;
}

.booking-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

section {
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-width)) / 2));
}

.intro-section,
.rooms-section,
.experiences-section,
.reviews-section {
  width: 100%;
  margin: 0;
}

.intro-grid,
.location-section,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.proof-strip {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid rgba(216, 182, 109, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 92% -20%, rgba(216, 182, 109, 0.2), transparent 35%),
    linear-gradient(135deg, #123b32 0%, #1b4a3d 52%, #285b4b 100%);
  box-shadow: 0 24px 70px rgba(25, 61, 52, 0.22);
  counter-reset: proof-card;
  isolation: isolate;
  overflow: hidden;
}

.proof-strip article {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(78px, 1fr);
  gap: 24px;
  min-height: 218px;
  padding: clamp(24px, 2.6vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.13);
  color: #fff;
  counter-increment: proof-card;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.proof-strip article:last-child {
  border-right: 0;
}

.proof-strip article::before {
  position: absolute;
  top: 30px;
  right: 30px;
  color: rgba(255, 255, 255, 0.27);
  content: "0" counter(proof-card);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

@media (hover: hover) {
  .proof-strip article:hover {
    z-index: 2;
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 18px 34px rgba(8, 28, 23, 0.18);
    transform: translateY(-4px);
  }
}

.proof-icon {
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(216, 182, 109, 0.42);
  border-radius: 14px;
  color: var(--gold);
  background: linear-gradient(145deg, rgba(216, 182, 109, 0.16), rgba(216, 182, 109, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  place-items: center;
}

.proof-icon svg {
  width: 21px;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.proof-copy {
  display: grid;
  grid-template-rows: 60px auto;
  align-self: end;
  align-items: end;
}

.proof-strip strong {
  display: flex;
  gap: 1px;
  align-items: baseline;
  margin: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(42px, 4vw, 58px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  white-space: nowrap;
}

.proof-strip strong small {
  margin-left: 2px;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.3em;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.proof-copy > span {
  display: block;
  max-width: 190px;
  padding-top: 10px;
  border-top: 1px solid rgba(216, 182, 109, 0.26);
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.45;
}

.image-story {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(320px, 0.72fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: center;
  background: var(--mist);
}

.wide-photo {
  margin: 0;
  min-height: 520px;
}

.wide-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.story-panel {
  max-width: 470px;
  padding-right: clamp(0px, 3vw, 42px);
}

.story-panel p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 360px);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  width: 100%;
  margin: 0;
}

.video-copy {
  max-width: 620px;
}

.video-copy p:not(.section-kicker) {
  color: var(--muted);
  font-size: 18px;
}

.shorts-frame {
  width: min(100%, 360px);
  justify-self: center;
  padding: 10px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 20px 70px rgba(24, 36, 34, 0.12);
}

.shorts-frame iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: var(--leaf-deep);
}

.section-heading {
  max-width: 860px;
  margin-bottom: 32px;
}

.audience-section {
  background: var(--leaf-deep);
  color: #fff;
}

.audience-section .section-heading {
  width: 100%;
  margin-inline: 0;
}

.audience-section .section-kicker {
  color: var(--gold);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  width: 100%;
  margin: 0;
}

.audience-grid article {
  min-height: 420px;
  background: rgba(255, 255, 255, 0.08);
}

.audience-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.audience-grid h3,
.audience-grid p {
  padding-inline: 22px;
}

.audience-grid h3 {
  margin-top: 22px;
}

.audience-grid p {
  color: rgba(255, 255, 255, 0.72);
}

.rooms-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.room-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.room-gallery img {
  grid-column: 1 / -1;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: opacity 180ms ease;
}

.gallery-control {
  min-height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  cursor: pointer;
}

.gallery-control.is-active {
  color: #fff;
  border-color: var(--leaf);
  background: var(--leaf);
}

.room-details {
  padding: clamp(28px, 4vw, 48px);
  background: #fff;
  box-shadow: 0 18px 70px rgba(24, 36, 34, 0.08);
}

.room-details p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.text-link {
  color: var(--leaf);
  font-weight: 800;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.amenities-band {
  padding-block: 34px;
  color: #fff;
  background: var(--ocean);
  overflow: hidden;
}

.amenities-band div {
  display: flex;
  gap: clamp(28px, 6vw, 78px);
  width: max-content;
  min-width: 100%;
  animation: drift 34s linear infinite;
}

.amenities-band span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 54px);
  white-space: nowrap;
}

.breakfast-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(30px, 6vw, 86px);
  align-items: center;
}

.breakfast-copy {
  max-width: 530px;
  justify-self: end;
}

.breakfast-copy p:last-child {
  color: var(--muted);
  font-size: 18px;
}

.breakfast-images {
  display: block;
}

.breakfast-images img {
  width: 100%;
  aspect-ratio: 1 / 0.72;
  object-fit: cover;
}

.experiences-section {
  background: #fff;
}

.experience-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.experience-list article {
  display: grid;
  grid-template-columns: minmax(220px, 0.36fr) minmax(0, 1fr);
  gap: clamp(22px, 4vw, 48px);
  align-items: center;
  padding: clamp(18px, 3vw, 34px);
  background: #fff;
}

.experience-list img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.experience-list p,
.reviews-grid p,
.location-copy p,
.contact-section p {
  color: var(--muted);
  font-size: 18px;
}

.reviews-section {
  overflow: hidden;
  background: var(--mist);
}

.reviews-heading {
  display: flex;
  gap: 32px;
  align-items: end;
  justify-content: space-between;
}

.reviews-score {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 14px;
  align-items: center;
  min-width: 230px;
  padding: 18px 22px;
  color: var(--ink);
  background: #fff;
  text-decoration: none;
}

.reviews-score strong {
  grid-row: 1 / 3;
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 600;
  line-height: 1;
}

.review-stars {
  color: var(--gold);
  font-size: 18px;
  letter-spacing: 0.1em;
}

.reviews-score small {
  color: var(--muted);
}

.reviews-carousel {
  margin-top: 12px;
}

.reviews-viewport {
  margin-inline: calc(var(--page-gutter) * -1);
  padding-inline: var(--page-gutter);
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.reviews-viewport::-webkit-scrollbar {
  display: none;
}

.reviews-viewport:focus-visible {
  outline: 2px solid var(--leaf);
  outline-offset: 5px;
}

.reviews-track {
  display: flex;
  gap: 18px;
  width: max-content;
  padding-block: 20px;
}

.review-card {
  display: flex;
  flex-direction: column;
  width: min(560px, calc((100vw - (var(--page-gutter) * 2) - 18px) / 2));
  min-height: 330px;
  padding: clamp(26px, 3vw, 38px);
  background: #fff;
  box-shadow: 0 14px 40px rgba(24, 36, 34, 0.06);
  scroll-snap-align: start;
}

.review-card blockquote {
  flex: 1;
  margin: 24px 0 34px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(23px, 2.1vw, 30px);
  line-height: 1.3;
}

.review-card footer {
  display: flex;
  gap: 14px;
  align-items: center;
}

.review-card footer img {
  width: 56px;
  height: 56px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--mist);
  box-shadow: 0 0 0 1px var(--line);
  object-fit: cover;
}

.review-card footer strong,
.review-card footer span {
  display: block;
}

.review-card footer span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 13px;
}

.reviews-footer {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dots span {
  width: 28px;
  height: 3px;
  background: rgba(25, 61, 52, 0.18);
  transition: background 180ms ease, width 180ms ease;
}

.reviews-dots span.is-active {
  width: 48px;
  background: var(--leaf);
}

.reviews-controls {
  display: flex;
  gap: 10px;
}

.reviews-controls button {
  width: 48px;
  height: 48px;
  border: 1px solid var(--leaf);
  border-radius: 50%;
  color: var(--leaf);
  background: transparent;
  font-size: 22px;
  cursor: pointer;
}

.reviews-controls button:hover,
.reviews-controls button:focus-visible {
  color: #fff;
  background: var(--leaf);
}

.reviews-google-link {
  display: inline-block;
  margin-top: 24px;
}

.location-section {
  width: 100%;
  margin: 0;
  align-items: center;
}

.nearby-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px 20px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.nearby-grid span {
  color: var(--muted);
}

.nearby-grid strong {
  color: var(--leaf);
}

.location-map {
  display: grid;
  gap: 14px;
}

.location-map iframe {
  width: 100%;
  aspect-ratio: 4 / 5;
  border: 0;
  background: var(--mist);
}

.map-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--leaf);
  border-radius: 999px;
  padding: 14px 22px;
  color: var(--leaf);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
}

.contact-section {
  width: auto;
  margin: 0 max(var(--page-gutter), calc((100vw - var(--content-width)) / 2)) 48px;
  padding: clamp(34px, 6vw, 64px);
  color: #fff;
  background: var(--leaf-deep);
}

.contact-section .section-kicker {
  color: var(--gold);
}

.contact-section h2 {
  margin-bottom: 18px;
}

.contact-section p {
  color: rgba(255, 255, 255, 0.72);
}

.contact-card {
  flex-direction: column;
  align-items: flex-start;
}

.contact-card a:not(.button) {
  color: #fff;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-underline-offset: 5px;
}

.contact-card .button-primary {
  margin-top: 12px;
  background: var(--clay);
}

.button-ghost-dark {
  color: var(--leaf);
  border-color: var(--leaf);
  background: transparent;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(20px, 5vw, 72px);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.photo-credit {
  font-size: 12px;
}

@keyframes drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-34%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1120px) {
  .nav-toggle {
    display: grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    color: inherit;
    background: transparent;
  }

  .nav-toggle span {
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .primary-nav {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: none;
    align-items: stretch;
    padding: 18px;
    color: var(--ink);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
  }

  .nav-cta {
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
  }
}

@media (max-width: 980px) {
  .booking-panel,
  .intro-grid,
  .image-story,
  .video-section,
  .rooms-layout,
  .breakfast-section,
  .location-section,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .booking-panel {
    margin-top: -48px;
  }

  .booking-form {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-form > button {
    grid-column: 1 / -1;
  }

  .audience-grid,
  .proof-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .proof-strip article:nth-child(2) {
    border-right: 0;
  }

  .proof-strip article:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .breakfast-copy {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand strong {
    font-size: 15px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 72svh;
  }

  .hero-content {
    width: calc(100% - 32px);
    padding: 15svh 0 48px 16px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-copy {
    margin-bottom: 24px;
    font-size: 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .button {
    min-height: 44px;
    padding: 12px 20px;
  }

  h2 {
    font-size: 34px;
  }

  section {
    padding-inline: 16px;
  }

  .booking-panel {
    width: calc(100% - 20px);
    margin-top: -34px;
    padding: 16px;
  }

  .booking-form label {
    gap: 7px;
  }

  .booking-form input {
    height: 58px;
  }

  .booking-form,
  .audience-grid,
  .experience-list article,
  .room-gallery,
  .breakfast-images {
    grid-template-columns: 1fr;
  }

  .room-gallery img {
    grid-row: 1;
  }

  .wide-photo,
  .wide-photo img {
    min-height: 360px;
  }

  .audience-grid article {
    min-height: auto;
  }

  .proof-strip {
    margin-top: 36px;
    border-radius: 14px;
  }

  .proof-strip article {
    gap: 18px;
    min-height: 184px;
    padding: 20px;
  }

  .proof-strip article::before {
    top: 20px;
    right: 18px;
  }

  .proof-icon {
    width: 40px;
    height: 40px;
    border-radius: 11px;
  }

  .proof-icon svg {
    width: 18px;
    height: 18px;
  }

  .proof-copy {
    grid-template-rows: 48px auto;
  }

  .proof-strip strong {
    font-size: clamp(36px, 11vw, 44px);
  }

  .proof-copy > span {
    padding-top: 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .proof-strip {
    margin-top: 34px;
    border-radius: 14px;
  }

  .proof-strip article {
    min-height: 185px;
    padding: 20px;
  }

  .proof-strip strong {
    font-size: 40px;
  }

  .proof-copy > span {
    font-size: 13px;
  }

  .proof-strip article::after {
    display: none;
  }

  .reviews-heading {
    display: grid;
  }

  .reviews-score {
    width: 100%;
  }

  .review-card {
    width: calc(100vw - 48px);
    min-height: 360px;
  }

  .reviews-dots span {
    width: 16px;
  }

  .reviews-dots span.is-active {
    width: 30px;
  }

  .experience-list article {
    align-items: start;
  }

  .contact-section {
    margin-bottom: 34px;
  }

  .site-footer {
    display: grid;
  }
}
