:root {
  --bg: #18231f;
  --bg-2: #1d2b26;
  --card: #23342d;
  --card-2: #293c33;
  --text: #f7f3ea;
  --muted: #c8c1b4;
  --accent: #e8e1d4;
  --accent-text: #18231f;
  --line: rgba(247, 243, 234, .16);
  --line-strong: #4a5a51;
  --white-card: #f4efe5;
  --dark-text: #1f211d;
  --dark-muted: #667064;
  --shadow: 0 22px 70px rgba(0, 0, 0, .22);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Helvetica, Arial, sans-serif;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  line-height: 1.5;
}

.logo-reveal {
  position: relative;
  z-index: 1;
  height: 220vh;
  background: var(--bg);
  --reveal-progress: 0;
  --mask-size: clamp(190px, 30vmin, 380px);
  --full-photo-opacity: 0;
  --hint-opacity: 1;
}

.logo-reveal-sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  height: 100svh;
  overflow: hidden;
  background: var(--bg);
}

.logo-reveal-photo {
  position: absolute;
  inset: 0;
  background-image: url("assets/logo-reveal-photo.jpg");
  background-position: 50% 55%;
  background-size: cover;
}

.logo-reveal-photo-full {
  opacity: var(--full-photo-opacity);
  will-change: opacity;
}

.logo-reveal-photo-masked {
  -webkit-mask-image: url("assets/jonathan-logo-mask.svg");
  mask-image: url("assets/jonathan-logo-mask.svg");
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  mask-mode: alpha;
  -webkit-mask-size: var(--mask-size) auto;
  mask-size: var(--mask-size) auto;
  will-change: mask-size, -webkit-mask-size;
}

.logo-reveal-hint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  opacity: var(--hint-opacity);
  text-transform: uppercase;
  transform: translateX(-50%);
  transition: opacity .15s linear;
}

.logo-reveal-hint::after {
  display: block;
  width: 1px;
  height: 34px;
  margin: 13px auto 0;
  background: currentColor;
  content: "";
  opacity: .7;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 16px;
  left: 50%;
  display: grid;
  grid-template-columns: 280px 1fr auto;
  gap: 30px;
  align-items: center;
  width: min(1180px, calc(100% - 32px));
  padding: 14px 22px;
  border: 1px solid rgba(31, 33, 29, .12);
  border-radius: 14px;
  background: #f7f3ea;
  backdrop-filter: blur(20px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, .18);
  transform: translateX(-50%);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  width: 280px;
  height: 104px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.brand img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.main-nav a,
.lang a {
  border-radius: 8px;
  color: #435047;
  font-size: 14px;
  letter-spacing: .03em;
  text-transform: uppercase;
  transition: background .2s ease, color .2s ease;
}

.main-nav a {
  padding: 12px 16px;
}

.main-nav a:hover,
.lang a:hover,
.lang a[aria-current="true"] {
  background: rgba(24, 35, 31, .10);
  color: #18231f;
}

.site-header .lang a[aria-current="true"] {
  background: #18231f;
  color: #f7f3ea;
}

.site-header .button {
  background: #18231f;
  color: #f7f3ea;
}

.header-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.lang {
  display: flex;
  gap: 4px;
}

.lang a {
  padding: 11px 10px;
}

.menu-toggle {
  display: none;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 15px 24px;
  background: var(--accent);
  color: var(--accent-text);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  transition: transform .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-small {
  min-height: 48px;
  padding: 13px 20px;
  font-size: 15px;
}

.button-ghost {
  border-color: var(--line-strong);
  background: transparent;
  color: var(--text);
}

.button-ghost-dark {
  border-color: rgba(31, 33, 29, .18);
  background: transparent;
  color: var(--dark-text);
}

.section,
.section-dark,
.hero {
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: start;
  min-height: auto;
  padding-right: max(24px, calc((100vw - 1480px) / 2));
  padding-left: max(24px, calc((100vw - 1480px) / 2));
  padding-top: 204px;
  padding-bottom: 12px;
  background:
    radial-gradient(circle at 82% 18%, rgba(232, 225, 212, .11), transparent 30%),
    linear-gradient(145deg, #101713 0%, var(--bg) 44%, #22342c 100%);
}

.hero-copy {
  max-width: 920px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.hero .eyebrow {
  margin-bottom: 20px;
  color: var(--text);
  font-size: clamp(20px, 1.6vw, 28px);
  letter-spacing: .14em;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(58px, 6.2vw, 104px);
  line-height: .9;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3.4vw, 58px);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 30px;
  line-height: 1.05;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.62;
}

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

.facts {
  display: grid;
  grid-template-columns: repeat(6, max-content);
  gap: 10px;
  margin-top: 30px;
}

.facts span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 18px;
  color: var(--muted);
  font-size: 17px;
  text-align: center;
}

.facts .fact-stars {
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.hero-media {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(220px, .65fr);
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 14px;
  min-height: 520px;
}

.media-card,
.room-photo,
.experience-photo,
.story-photo {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: #24342d;
  box-shadow: none;
}

.media-card span {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 14px;
  color: rgba(247, 243, 234, .72);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.media-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-main {
  grid-row: span 2;
  min-height: 520px;
}

.media-spa {
  background:
    radial-gradient(circle at 30% 25%, rgba(232, 225, 212, .36), transparent 30%),
    linear-gradient(135deg, #3f5248, #18231f);
}

.media-water {
  background:
    radial-gradient(circle at 62% 28%, rgba(247, 243, 234, .24), transparent 26%),
    linear-gradient(135deg, #28423d, #0f1918);
}

.hotel-gallery {
  padding: 0 max(24px, calc((100vw - 1480px) / 2)) 94px;
}

.hotel-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: clamp(145px, 14vw, 210px);
  gap: 10px;
  max-width: 1480px;
  margin: 0 auto;
}

.hotel-gallery figure {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.hotel-gallery .gallery-main {
  grid-column: span 2;
  grid-row: span 2;
}

.hotel-gallery .gallery-wide {
  grid-column: span 2;
}

.hotel-gallery img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signature {
  margin-top: 72px;
  background: #f1ede4;
}

.signature .section-heading h2 {
  max-width: 980px;
  margin-bottom: 0;
  color: var(--dark-text);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 500;
  line-height: 1.08;
}

.signature .section-heading p:not(.eyebrow) {
  color: var(--dark-muted);
}

.signature .section-heading .eyebrow {
  color: #607449;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 34px;
}

.signature-item {
  display: grid;
  align-items: stretch;
  min-height: 260px;
  padding: 28px 0;
  border-top: 1px solid rgba(31, 33, 29, .18);
}

.signature-with-image {
  grid-template-columns: minmax(150px, .62fr) minmax(0, 1fr);
  gap: 24px;
}

.signature-image-right {
  grid-template-columns: minmax(0, 1fr) minmax(150px, .62fr);
}

.signature-image-right img {
  order: 2;
}

.signature-image-wide {
  grid-template-columns: minmax(0, 1fr) minmax(190px, .82fr);
}

.signature-item:nth-child(2),
.signature-item:nth-child(5) {
  padding-top: 48px;
}

.signature-item:nth-child(4),
.signature-item:nth-child(8) {
  padding-bottom: 46px;
}

.signature-small-image {
  grid-template-columns: 120px minmax(0, 1fr);
}

.signature-small-image img {
  min-height: 0;
  height: 180px;
  object-fit: contain;
}

.signature-item img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 210px;
  border-radius: 8px;
  object-fit: cover;
}

.signature-number {
  display: block;
  margin-bottom: 24px;
  color: #607449;
  font-size: 13px;
  font-weight: 800;
}

.signature-item h3 {
  margin-bottom: 12px;
  color: var(--dark-text);
  font-size: clamp(28px, 3vw, 38px);
}

.signature-item p {
  margin: 0;
  color: var(--dark-muted);
  font-size: 17px;
  line-height: 1.55;
}

.quick-booking {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .62fr 1.38fr;
  gap: 28px;
  align-items: end;
  width: min(1420px, calc(100% - 48px));
  margin: -44px auto 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(35, 52, 45, .96);
  box-shadow: 0 22px 70px rgba(0, 0, 0, .32);
}

.quick-booking h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)) minmax(220px, auto);
  gap: 10px;
  align-items: end;
}

.booking-date-field {
  min-width: 0;
}

.booking-field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

.booking-date-trigger {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(247, 243, 234, .08);
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.booking-date-trigger:hover,
.booking-date-trigger:focus-visible {
  border-color: rgba(244, 240, 229, .55);
  outline: none;
}

.booking-date-trigger .is-placeholder {
  color: var(--muted);
}

.booking-date-icon {
  flex: 0 0 auto;
  font-family: Arial, sans-serif;
  font-size: 18px;
}

.booking-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-contact-hint,
.booking-status {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
}

.booking-contact-hint {
  color: var(--muted);
}

.booking-contact-hint.is-error,
.booking-status.is-error {
  color: #ffd0c8;
}

.booking-status.is-success {
  color: #cfe58b;
}

.booking-form button:disabled {
  cursor: wait;
  opacity: .7;
}

body.calendar-open {
  overflow: hidden;
}

.booking-calendar-overlay {
  position: fixed;
  z-index: 4000;
  inset: 0;
  display: grid;
  padding: 20px;
  place-items: center;
  background: rgba(8, 17, 14, .72);
  backdrop-filter: blur(8px);
}

.booking-calendar-overlay[hidden] {
  display: none;
}

.booking-calendar {
  width: min(430px, 100%);
  border: 1px solid rgba(31, 33, 29, .14);
  border-radius: 18px;
  padding: 22px;
  background: #f4f0e6;
  color: #1f211d;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.booking-calendar-heading,
.booking-calendar-month-row,
.booking-calendar-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.booking-calendar-heading h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.1;
  text-align: center;
}

.booking-calendar-month-row {
  margin-top: 22px;
}

.booking-calendar-month-row strong {
  font: 600 22px/1.2 var(--serif);
  text-transform: capitalize;
}

.booking-calendar-nav,
.booking-calendar-close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  place-items: center;
  border: 1px solid rgba(31, 33, 29, .16);
  border-radius: 50%;
  background: transparent;
  color: inherit;
  font-size: 21px;
  cursor: pointer;
}

.booking-calendar-nav:hover,
.booking-calendar-close:hover {
  background: rgba(31, 33, 29, .08);
}

.booking-calendar-nav:disabled {
  cursor: default;
  opacity: .25;
}

.booking-calendar-weekdays,
.booking-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 5px;
}

.booking-calendar-weekdays {
  margin: 18px 0 7px;
}

.booking-calendar-weekdays span {
  color: #687068;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  text-transform: capitalize;
}

.booking-calendar-day {
  aspect-ratio: 1;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: inherit;
  font: 600 14px/1 Arial, sans-serif;
  cursor: pointer;
}

.booking-calendar-day:hover:not(:disabled) {
  background: rgba(53, 77, 66, .12);
}

.booking-calendar-day.is-outside {
  color: #969b96;
}

.booking-calendar-day.is-today {
  box-shadow: inset 0 0 0 1px #627568;
}

.booking-calendar-day.is-selected {
  background: #23342d;
  color: #f4f0e6;
  box-shadow: none;
}

.booking-calendar-day:disabled {
  cursor: default;
  opacity: .25;
}

.booking-calendar-actions {
  justify-content: flex-end;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(31, 33, 29, .12);
}

.booking-calendar-actions .text-button {
  color: #23342d;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 12px;
}

input,
select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 0 12px;
  background: rgba(247, 243, 234, .08);
  color: var(--text);
}

select option {
  background: var(--bg);
}

.section {
  padding-top: 110px;
  padding-bottom: 110px;
}

.section-dark {
  background: var(--bg);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 19px;
  line-height: 1.55;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.feature {
  min-height: 250px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--card);
}

.feature span,
.room-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.feature p,
.room-card p,
.experience-grid p,
.story-copy p {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--bg-2);
}

.sticky-heading {
  position: static;
  max-width: 1120px;
  overflow-wrap: anywhere;
}

.sticky-heading h2 {
  font-size: clamp(42px, 4.2vw, 68px);
  line-height: 1;
}

.sticky-heading p:not(.eyebrow) {
  max-width: 760px;
  font-size: 18px;
  line-height: 1.58;
}

.room-list {
  display: grid;
  gap: 14px;
}

.room-card {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
  min-height: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

.room-card > div:last-child {
  display: grid;
  order: 2;
  align-content: start;
  padding: 12px 10px 2px;
}

.room-card h3 {
  max-width: 760px;
  font-size: clamp(28px, 2.5vw, 36px);
}

.room-card p:not(.room-kicker) {
  max-width: 760px;
  font-size: 17px;
  line-height: 1.55;
}

.room-card a,
.experience-grid a,
.text-button {
  color: var(--accent);
  font-size: 15px;
  font-weight: 700;
}

.text-button {
  justify-self: start;
  border: 0;
  min-height: 44px;
  padding: 9px 0;
  background: transparent;
  cursor: pointer;
  font-size: 18px;
  text-align: left;
}

.text-button::after {
  display: inline-block;
  margin-left: 10px;
  content: "→";
  transition: transform .2s ease;
}

.text-button:hover::after {
  transform: translateX(4px);
}

.text-button:hover {
  color: var(--text);
}

.room-photo {
  order: 1;
  min-height: 300px;
  height: 100%;
  border-radius: 12px;
  box-shadow: none;
}

.room-classic {
  background: url("assets/rooms/36-1.JPG") center / cover no-repeat;
}

.room-superior {
  background: url("assets/rooms/63-3.JPG") center / cover no-repeat;
}

.room-attic {
  background: url("assets/rooms/93-1.JPG") center / cover no-repeat;
}

.room-apartment {
  background: url("assets/rooms/9-1.jpg") center / cover no-repeat;
}

.experience {
  background: #111a16;
}

.wide {
  max-width: 900px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.experience-grid article {
  display: grid;
  grid-template-columns: minmax(280px, .46fr) minmax(0, 1fr);
  grid-template-areas:
    "photo title"
    "photo text"
    "photo action";
  gap: 0 28px;
  align-items: center;
  min-height: 320px;
  padding: 14px 14px 24px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}

.experience-grid h3,
.experience-grid p,
.experience-grid a,
.experience-grid .text-button {
  margin-right: 10px;
  margin-left: 10px;
}

.experience-grid h3 {
  grid-area: title;
  align-self: end;
}

.experience-grid p {
  grid-area: text;
}

.experience-grid .text-button {
  grid-area: action;
  align-self: start;
}

.experience-photo {
  grid-area: photo;
  height: 100%;
  min-height: 292px;
  margin-bottom: 0;
  box-shadow: none;
}

.spa-photo {
  background-image: url("assets/experience-spa.jpg");
  background-position: center;
  background-size: cover;
}

.restaurant-photo {
  background-color: #555754;
  background-image: url("assets/experience-restaurant-horizontal.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.leisure-photo {
  background-image: url("assets/experience-leisure.jpg");
  background-position: center;
  background-size: cover;
}

.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
  background: var(--bg);
}

.story-photo {
  display: block;
  width: 100%;
  height: 540px;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
}

.story-copy {
  max-width: 560px;
}

.contact {
  display: block;
  background: var(--white-card);
  color: var(--dark-text);
}

.contact .eyebrow {
  color: #53665c;
}

.contact-card,
.contact-details {
  border: 1px solid rgba(31, 33, 29, .12);
  border-radius: 16px;
  background: rgba(255, 255, 255, .28);
}

.contact-card {
  display: none;
  padding: clamp(28px, 5vw, 58px);
}

.contact-card p {
  max-width: 620px;
  color: var(--dark-muted);
  font-size: 18px;
}

.contact-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  align-items: center;
  gap: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
}

.contact-details a,
.contact-details span {
  display: block;
  min-width: 0;
  padding: clamp(38px, 4vw, 58px) clamp(20px, 3vw, 46px);
  border-right: 1px solid rgba(31, 33, 29, .12);
  color: var(--dark-text);
  text-align: center;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font: 600 clamp(22px, 2vw, 32px)/1.15 var(--serif);
}

.contact-details a[href^="mailto:"] {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: normal;
  font-size: clamp(18px, 1.75vw, 29px);
  letter-spacing: -.02em;
}

.contact-details > :nth-child(2) {
  border-right: 0;
}

.contact-details > :last-child {
  grid-column: 1 / -1;
  padding-top: clamp(26px, 3vw, 38px);
  padding-bottom: clamp(26px, 3vw, 38px);
  border-top: 1px solid rgba(31, 33, 29, .12);
  border-right: 0;
}

.footer {
  display: flex;
  justify-content: space-between;
  padding: 28px max(24px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--line);
  color: var(--muted);
  background: var(--bg);
  font-size: 13px;
}

.modal[hidden] {
  display: none;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 22px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 14, 12, .72);
  backdrop-filter: blur(12px);
}

.modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(86vh, 900px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f7f3ea;
  color: var(--dark-text);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .44);
}

.modal-close {
  position: sticky;
  z-index: 3;
  top: 14px;
  float: right;
  display: grid;
  width: 42px;
  height: 42px;
  margin: 14px 14px 0 0;
  place-items: center;
  border: 1px solid rgba(31, 33, 29, .16);
  border-radius: 50%;
  background: rgba(255, 255, 255, .82);
  color: var(--dark-text);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

.modal-body {
  padding: clamp(24px, 4vw, 48px);
}

.modal-kicker {
  margin: 0 0 10px;
  color: #607449;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.modal-body h2 {
  max-width: 780px;
  color: var(--dark-text);
  font-size: clamp(38px, 5vw, 66px);
}

.modal-body p {
  color: var(--dark-muted);
}

.leisure-modal > h2 {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(32px, 3.4vw, 42px);
  line-height: 1.02;
}

.leisure-hotel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, .95fr);
  overflow: hidden;
  border: 1px solid rgba(31, 33, 29, .13);
  border-radius: 14px;
  background: #ebe7dc;
}

.leisure-hotel-copy {
  padding: clamp(24px, 4vw, 44px);
}

.leisure-hotel-eyebrow {
  margin: 0 0 10px;
  color: #607449 !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.leisure-hotel h3 {
  margin: 0 0 14px;
  color: var(--dark-text);
  font-family: var(--serif);
  font-size: clamp(38px, 4.4vw, 52px);
  line-height: 1;
}

.leisure-hotel-intro {
  max-width: 570px;
  margin: 0 0 24px;
  font-size: 18px;
  line-height: 1.55;
}

.leisure-activities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.leisure-activities li {
  display: grid;
  gap: 3px;
  padding: 13px 0;
  border-top: 1px solid rgba(31, 33, 29, .15);
}

.leisure-activities strong {
  color: var(--dark-text);
  font-size: 18px;
}

.leisure-activities span {
  color: var(--dark-muted);
  font-size: 14px;
  line-height: 1.35;
}

.leisure-hotel-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center 58%;
}

.leisure-nearby-heading {
  margin: 44px 0 20px;
}

.leisure-nearby-heading h3 {
  max-width: 760px;
  margin: 0;
  color: var(--dark-text);
  font-family: var(--serif);
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1.05;
}

.modal-grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: start;
}

.room-modal-grid {
  grid-template-columns: 1fr;
}

.modal-photo {
  min-height: 360px;
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgba(247, 243, 234, .18), rgba(247, 243, 234, 0) 46%),
    linear-gradient(135deg, #50665a, #18231f);
}

.modal-photo-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.room-option-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 12px 0 16px;
}

.room-option-gallery img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  object-fit: cover;
}

.room-option-gallery img:first-child:nth-last-child(3),
.room-option-gallery img:first-child:nth-last-child(5) {
  grid-column: span 2;
  aspect-ratio: 16 / 8;
}

.panel-image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 22px 0 24px;
  border-radius: 14px;
  object-fit: cover;
}

.room-options,
.leisure-list,
.service-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.room-option,
.service-item,
.leisure-item {
  border: 1px solid rgba(31, 33, 29, .12);
  border-radius: 12px;
  padding: 16px;
  background: rgba(255, 255, 255, .45);
}

.room-option h3,
.service-item h3,
.leisure-item h3 {
  margin-bottom: 7px;
  color: var(--dark-text);
  font-size: 28px;
}

.room-card-price {
  margin: 14px 0 0;
  color: var(--text);
  font-family: var(--serif);
  font-size: clamp(20px, 1.8vw, 27px);
  font-weight: 700;
  line-height: 1.15;
}

.room-option-heading-price {
  font-size: .82em;
  font-weight: 600;
  white-space: nowrap;
}

.room-option-price-details {
  margin: 0 0 14px;
  color: #526158;
  font-size: 15px;
  line-height: 1.35;
}

.room-option p,
.service-item p,
.leisure-item p {
  margin-bottom: 0;
}

.leisure-item {
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.leisure-thumb {
  width: 100%;
  height: 100%;
  min-height: 130px;
  border-radius: 10px;
  object-fit: cover;
}

.leisure-copy {
  display: grid;
  align-content: center;
  gap: 9px;
}

.leisure-link {
  justify-self: start;
  color: #5f7541;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

.leisure-link:hover {
  text-decoration: underline;
}

.room-option p {
  white-space: pre-line;
}

.service-meta {
  display: inline-block;
  margin-left: 8px;
  color: #607449;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 700;
}

.menu-pages {
  display: grid;
  gap: 18px;
}

.menu-page {
  width: 100%;
  height: auto;
  display: block;
  border: 0;
  border-radius: 0;
  background: #f7f3ea;
}

@media (max-width: 1050px) {
  .facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .site-header {
    grid-template-columns: 224px auto;
  }

  .brand {
    width: 224px;
    height: 82px;
  }

  .main-nav,
  .header-actions {
    display: none;
  }

  .main-nav.is-open,
  .header-actions.is-open {
    display: flex;
    grid-column: 1 / -1;
  }

  .main-nav.is-open {
    flex-wrap: wrap;
    justify-content: flex-start;
    padding-top: 8px;
  }

  .header-actions.is-open {
    justify-content: space-between;
    padding-top: 4px;
  }

  .menu-toggle {
    display: grid;
    justify-self: end;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: transparent;
    color: #18231f;
  }

  .menu-toggle span {
    display: block;
    width: 18px;
    height: 1px;
    background: currentColor;
  }

  .hero,
  .quick-booking,
  .split,
  .story,
  .contact,
  .experience-grid article,
  .modal-grid {
    grid-template-columns: 1fr;
  }

  .experience-grid article {
    grid-template-areas:
      "photo"
      "title"
      "text"
      "action";
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    grid-template-columns: 1fr 1fr;
    min-height: 440px;
  }

  .hotel-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
    grid-auto-rows: minmax(180px, 26vw);
  }

  .hotel-gallery .gallery-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .hotel-gallery .gallery-wide {
    grid-column: span 2;
  }

  .signature-grid {
    grid-template-columns: 1fr;
  }

  .media-main {
    grid-column: 1 / -1;
    min-height: 340px;
  }

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

  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .experience-grid {
    grid-template-columns: 1fr;
  }

  .sticky-heading {
    position: static;
  }
}

@media (max-width: 680px) {
  .facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .facts span {
    padding: 11px 12px;
    font-size: 15px;
  }

  .facts .fact-stars {
    font-size: 17px;
  }

  .site-header {
    top: 10px;
    width: calc(100% - 20px);
    padding: 8px;
  }

  .brand {
    width: min(190px, calc(100vw - 96px));
    height: 72px;
    padding: 6px;
  }

  .brand img {
    width: 100%;
    max-height: none;
  }

  .section,
  .section-dark,
  .hero {
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero {
    padding-top: 132px;
    padding-bottom: 54px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .lead {
    font-size: 17px;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hotel-gallery {
    padding: 0 18px 64px;
  }

  .hotel-gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 8px;
  }

  .hotel-gallery figure {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
  }

  .hotel-gallery .gallery-main {
    grid-row: auto;
    grid-column: 1 / -1;
    aspect-ratio: 16 / 10;
  }

  .hotel-gallery .gallery-wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .signature {
    margin-top: 48px;
  }

  .signature-with-image {
    grid-template-columns: 1fr;
  }

  .signature-image-right,
  .signature-image-wide {
    grid-template-columns: 1fr;
  }

  .signature-image-right img {
    order: 0;
  }

  .signature-item:nth-child(2),
  .signature-item:nth-child(5) {
    padding-top: 28px;
  }

  .signature-item:nth-child(4),
  .signature-item:nth-child(8) {
    padding-bottom: 28px;
  }

  .signature-item img {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .signature-small-image {
    grid-template-columns: 100px minmax(0, 1fr);
  }

  .signature-small-image img {
    height: 140px;
    aspect-ratio: auto;
  }

  .media-main,
  .media-card {
    min-height: 230px;
  }

  .quick-booking {
    width: calc(100% - 24px);
    margin-top: -22px;
    padding: 18px;
  }

  .booking-form,
  .feature-grid,
  .experience-grid,
  .room-card {
    grid-template-columns: 1fr;
  }

  .section,
  .split,
  .story {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .feature {
    min-height: auto;
  }

  .room-photo,
  .experience-photo,
  .story-photo {
    min-height: 230px;
    height: 230px;
  }

  .contact-details a,
  .contact-details span {
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(31, 33, 29, .12);
    text-align: left;
    font-size: 23px;
  }

  .contact-details a[href^="mailto:"] {
    font-size: clamp(16px, 5.2vw, 23px);
  }

  .contact {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .contact-card {
    display: block;
  }

  .contact-details {
    grid-template-columns: 1fr;
    gap: 18px;
    min-height: 0;
    padding: clamp(28px, 4vw, 44px);
    overflow: visible;
  }

  .contact-details > :last-child {
    grid-column: auto;
    padding-top: 0;
    border-top: 0;
  }

  .footer {
    gap: 16px;
    flex-direction: column;
    padding-right: 18px;
    padding-left: 18px;
  }

  .modal {
    padding: 10px;
  }

  .modal-body {
    padding: 24px 18px 30px;
  }

  .modal-photo {
    min-height: 230px;
  }

  .leisure-item {
    grid-template-columns: 1fr;
  }

  .leisure-modal > h2 {
    margin-bottom: 20px;
    font-size: 30px;
  }

  .leisure-hotel {
    grid-template-columns: 1fr;
  }

  .leisure-hotel-image {
    grid-row: 1;
    min-height: 330px;
    max-height: 430px;
  }

  .leisure-hotel-copy {
    padding: 24px 20px 28px;
  }

  .leisure-hotel h3 {
    font-size: 38px;
  }

  .leisure-hotel-intro {
    font-size: 17px;
  }

  .leisure-activities {
    grid-template-columns: 1fr;
  }

  .leisure-nearby-heading {
    margin-top: 34px;
  }

  .leisure-thumb {
    aspect-ratio: 16 / 9;
    height: auto;
  }
}
