:root {
  --bg: #f7f6f2;
  --surface: #ffffff;
  --surface-soft: #fbfbf8;
  --text: #24313a;
  --heading: #102536;
  --muted: #66737d;
  --line: rgba(36, 49, 58, .12);
  --primary: #bbd3d6;
  --accent: #6f7d5c;
  --accent-hover: #566147;
  --sand: #e9e0ce;
  --water: #dcebed;
  --shadow: 0 20px 50px rgba(16, 37, 54, .08);
  --shadow-soft: 0 10px 28px rgba(16, 37, 54, .06);
  --radius-lg: 30px;
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Montserrat", Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #fbfbf8 0%, #f6f6f2 46%, #eef4f4 100%);
  line-height: 1.62;
}

body.nav-open {
  overflow: hidden;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

.wp-block-shortcode {
  margin: 0;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 54px 0;
}

.section.tight {
  padding-top: 28px;
}

.section.flush-top {
  padding-top: 0;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 26px;
  text-align: center;
}

.section-head.left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  padding: 8px 14px;
  border: 1px solid rgba(36, 49, 58, .09);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #54616c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

h1,
h2,
h3 {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.03;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 820px;
  font-size: 4.7rem;
}

h2 {
  font-size: 3rem;
}

h3 {
  font-size: 1.78rem;
}

h4 {
  color: var(--heading);
  font-size: 1rem;
}

p {
  color: var(--muted);
}

.lead {
  max-width: 720px;
  color: #56636d;
  font-size: 1.05rem;
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: .94rem;
  font-weight: 800;
  line-height: 1;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease, border-color .2s ease;
  white-space: nowrap;
}

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

.btn-primary {
  color: #fff;
  background: var(--accent);
  box-shadow: 0 14px 28px rgba(111, 125, 92, .22);
}

.btn-primary:hover {
  background: var(--accent-hover);
}

.btn-secondary {
  color: #284051;
  border-color: rgba(40, 64, 81, .12);
  background: rgba(255, 255, 255, .9);
}

.btn-secondary:hover {
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 251, 249, .92);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
}

.brand-mark {
  width: 70px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1;
}

.brand-title {
  color: var(--heading);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.95rem;
  font-weight: 700;
  white-space: nowrap;
}

.brand-subtitle {
  margin-top: 6px;
  color: #70808c;
  font-size: .71rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 17px;
}

.desktop-nav a {
  position: relative;
  color: #2b3d4b;
  font-size: .91rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(36, 49, 58, .12);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 8px 18px rgba(16, 37, 54, .07);
  cursor: pointer;
}

.lang-button img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: cover;
}

.lang-button.active {
  border-color: rgba(111, 125, 92, .55);
  box-shadow: 0 0 0 4px rgba(111, 125, 92, .14), 0 8px 18px rgba(16, 37, 54, .08);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--heading);
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-open .nav-toggle span {
  background: transparent;
}

.nav-open .nav-toggle span::before {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  padding: 28px 0 34px;
}

.hero-shell {
  overflow: hidden;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 34px;
  background: linear-gradient(110deg, rgba(255, 255, 255, .95) 0%, rgba(255, 255, 255, .83) 46%, rgba(187, 211, 214, .62) 100%);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 26px;
  align-items: stretch;
  padding: 34px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-copy .lead {
  margin-top: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.quick-facts {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 26px;
}

.quick-fact {
  min-height: 90px;
  padding: 14px 10px;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 18px;
  background: rgba(255, 255, 255, .76);
  text-align: center;
}

.quick-fact strong {
  display: block;
  margin-bottom: 6px;
  color: var(--heading);
  font-size: 1.08rem;
  line-height: 1.1;
}

.quick-fact span {
  color: #5b6774;
  font-size: .84rem;
}

.hero-media {
  display: grid;
  grid-template-rows: minmax(410px, 1fr) auto;
  gap: 14px;
  min-width: 0;
}

.hero-image,
.media-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--water);
  box-shadow: var(--shadow-soft);
}

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

.hero-note {
  padding: 18px;
  border: 1px solid rgba(16, 37, 54, .08);
  border-radius: 20px;
  background: rgba(255, 255, 255, .88);
  box-shadow: var(--shadow-soft);
}

.hero-note h3 {
  margin-bottom: 7px;
  font-size: 1.45rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: center;
}

.split.top {
  align-items: start;
}

.panel,
.card,
.contact-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.panel {
  padding: 24px;
}

.panel h2,
.panel h3 {
  margin-bottom: 12px;
}

.panel p + p {
  margin-top: 12px;
}

.panel ul,
.panel ol,
.info-list,
[data-list] ul,
[data-list] ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.panel li,
.info-list li,
[data-list] li {
  position: relative;
  padding: 11px 0 11px 22px;
  border-bottom: 1px solid rgba(36, 49, 58, .08);
  color: #45535f;
}

.panel li:last-child,
.info-list li:last-child,
[data-list] li:last-child {
  border-bottom: 0;
}

.panel li::before,
.info-list li::before,
[data-list] li::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

.cards-3,
.cards-4 {
  display: grid;
  gap: 18px;
}

.cards-3 {
  grid-template-columns: repeat(3, 1fr);
}

.cards-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  min-height: 100%;
  padding: 22px;
}

.card h3 {
  margin-bottom: 9px;
  font-size: 1.55rem;
}

.card-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin-bottom: 13px;
  border-radius: 16px;
  background: linear-gradient(180deg, #eef4f4, #dbe8e9);
  color: var(--heading);
  font-size: 1.35rem;
}

.mini-cta,
.cta-block {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, #eef5f3, #fff);
  box-shadow: var(--shadow-soft);
}

.mini-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
}

.mini-cta p {
  max-width: 780px;
  color: #42515c;
}

.cta-block {
  padding: 34px 26px;
  text-align: center;
}

.cta-block p {
  max-width: 780px;
  margin: 10px auto 20px;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr;
  grid-template-rows: 245px 245px;
  gap: 14px;
}

.gallery-strip .gallery-item:first-child {
  grid-row: span 2;
}

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

.gallery-item {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #dce8e9;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  isolation: isolate;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 45%;
  background: linear-gradient(180deg, rgba(16, 37, 54, 0), rgba(16, 37, 54, .54));
  opacity: .78;
  transition: opacity .2s ease;
  z-index: 1;
}

.gallery-item:hover::after {
  opacity: .95;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-item:hover img {
  transform: scale(1.035);
}

.gallery-caption {
  position: absolute;
  right: 14px;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  color: #fff;
  font-size: .9rem;
  font-weight: 800;
  text-align: left;
}

.inner-hero {
  padding: 34px 0 18px;
}

.inner-hero-box {
  padding: 30px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #dce8e9 0%, #eef4f5 100%);
  box-shadow: var(--shadow-soft);
}

.inner-hero-box p {
  max-width: 880px;
  margin-top: 12px;
}

.details-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 22px;
  align-items: start;
}

.media-stack {
  display: grid;
  gap: 14px;
}

.media-stack .media-card {
  min-height: 260px;
}

.price-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 20px 0 0;
}

.price-tile {
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.price-tile span {
  display: block;
  margin-bottom: 4px;
  color: #72808d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.price-tile strong {
  color: var(--heading);
  font-size: 1.08rem;
}

.booking-widget {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9));
  box-shadow: var(--shadow);
  min-width: 0;
}

.booking-widget-head {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(238, 245, 243, .96), rgba(255, 255, 255, .75));
}

.booking-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-content: center;
}

.booking-summary-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, .82);
}

.booking-summary-item span {
  display: block;
  margin-bottom: 4px;
  color: #72808d;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.booking-summary-item strong {
  color: var(--heading);
  font-size: 1.06rem;
}

.booking-widget-body {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 22px;
  padding: 26px;
}

.booking-calendar-card,
.booking-form-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow-soft);
  min-width: 0;
}

.calendar-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.calendar-month {
  font-size: 2rem;
}

.calendar-nav {
  display: flex;
  gap: 8px;
}

.calendar-nav button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: #213746;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.calendar-jump {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.calendar-jump label,
.booking-field label {
  color: #223544;
  font-size: .9rem;
  font-weight: 800;
}

.calendar-jump select,
.booking-field input,
.booking-field select,
.booking-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 15px;
  outline: none;
  background: #f8fbfb;
  color: var(--text);
}

.calendar-jump select {
  margin-top: 6px;
  padding: 11px 12px;
}

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

.calendar-weekdays {
  margin-bottom: 8px;
}

.calendar-weekdays span {
  text-align: center;
  color: #74808a;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.calendar-day {
  min-height: 48px;
  border: 1px solid rgba(36, 49, 58, .09);
  border-radius: 13px;
  background: #eaf5ef;
  color: #1f6b44;
  cursor: pointer;
  font-weight: 800;
}

.calendar-day:hover:not(:disabled) {
  box-shadow: 0 8px 18px rgba(16, 37, 54, .09);
}

.calendar-day.is-muted {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.calendar-day.is-disabled {
  background: #edf0f0;
  color: #a0a8ad;
  cursor: not-allowed;
}

.calendar-day.is-booked {
  background: #767d80;
  color: #fff;
  cursor: not-allowed;
}

.calendar-day.is-pending {
  background: #d8c586;
  color: #fff;
  cursor: not-allowed;
}

.calendar-day.is-selected {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.calendar-day.is-range {
  border-color: #aac9b5;
  background: #cfe4d7;
  color: #1e5939;
}

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 15px;
}

.calendar-legend span {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5d6973;
  font-size: .84rem;
}

.calendar-legend i {
  width: 13px;
  height: 13px;
  display: block;
  border-radius: 4px;
}

.calendar-legend .free i {
  background: #2ecc71;
}

.calendar-legend .chosen i {
  background: var(--accent);
}

.calendar-legend .pending i {
  background: #d8c586;
}

.calendar-legend .booked i {
  background: #767d80;
}

.selected-date-box {
  margin-top: 16px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: linear-gradient(135deg, #f0f7f7, #fff);
}

.selected-date-box span {
  display: block;
  margin-bottom: 4px;
  color: #74808a;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.selected-date-box strong {
  color: var(--heading);
}

.booking-form-grid {
  display: grid;
  gap: 13px;
}

.booking-field {
  display: grid;
  gap: 7px;
}

.booking-field input,
.booking-field select,
.booking-field textarea {
  padding: 12px 13px;
  font-size: 1rem;
}

.booking-field textarea {
  min-height: 110px;
  resize: vertical;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  border-color: rgba(111, 125, 92, .48);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(111, 125, 92, .1);
}

.booking-total {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fbfcfb;
}

.booking-total-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
}

.booking-total-row:last-child {
  border-bottom: 0;
}

.booking-total-row strong {
  color: var(--heading);
  text-align: right;
}

.booking-check {
  display: flex;
  gap: 10px;
  color: #45535f;
  font-size: .92rem;
}

.booking-check input {
  width: 20px;
  height: 20px;
  margin-top: 3px;
  accent-color: var(--accent);
  flex: 0 0 auto;
}

.booking-submit {
  width: 100%;
}

.booking-feedback {
  display: none;
  padding: 12px 14px;
  border-radius: 14px;
  background: #edf7ef;
  color: #315f3b;
  font-weight: 800;
}

.booking-feedback.show {
  display: block;
}

.booking-feedback.error {
  background: #fff1f1;
  color: #8a2c2c;
}

.booking-small-note {
  color: #72808d;
  font-size: .88rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 24px;
  align-items: stretch;
}

.contact-box {
  padding: 24px;
}

.contact-meta {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.contact-meta-item {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.meta-label {
  display: block;
  margin-bottom: 4px;
  color: #72808d;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.site-footer {
  margin-top: 18px;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, .78);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 22px;
  padding: 25px 0 20px;
}

.footer-inner h3 {
  margin-bottom: 8px;
  font-size: 1.85rem;
}

.footer-links {
  display: grid;
  gap: 6px;
}

.footer-links a:hover {
  color: var(--accent-hover);
}

.footer-copy {
  padding: 12px 0 20px;
  border-top: 1px solid var(--line);
  color: #7a8691;
  font-size: .9rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(16, 37, 54, .84);
}

.lightbox.is-open {
  display: flex;
}

.lightbox-inner {
  width: min(1080px, 100%);
  max-height: calc(100vh - 48px);
  display: grid;
  gap: 10px;
}

.lightbox img {
  width: 100%;
  max-height: calc(100vh - 120px);
  border-radius: 20px;
  object-fit: contain;
  background: #fff;
}

.lightbox-caption {
  color: #fff;
  font-weight: 800;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .32);
  border-radius: 50%;
  background: rgba(255, 255, 255, .12);
  color: #fff;
  cursor: pointer;
  font-size: 1.7rem;
}

@media (max-width: 1120px) {
  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 74px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-right {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    align-items: stretch;
    flex-direction: column-reverse;
    padding: 18px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: rgba(250, 251, 249, .98);
    box-shadow: var(--shadow);
  }

  .nav-open .header-right {
    display: flex;
  }

  .desktop-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .desktop-nav a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .desktop-nav a::after {
    display: none;
  }

  .hero-grid,
  .split,
  .details-grid,
  .booking-widget-head,
  .booking-widget-body,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-media {
    grid-template-rows: auto auto;
  }

  .hero-image {
    min-height: 390px;
  }

  .quick-facts,
  .cards-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards-3,
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-strip {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px 240px;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section {
    padding: 42px 0;
  }

  h1 {
    font-size: 2.42rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.42rem;
  }

  .brand-mark {
    width: 56px;
    height: 42px;
  }

  .brand-title {
    font-size: 1.38rem;
  }

  .brand-subtitle {
    font-size: .62rem;
    letter-spacing: .12em;
  }

  .brand {
    max-width: calc(100% - 58px);
  }

  .desktop-nav,
  .quick-facts,
  .cards-3,
  .cards-4,
  .gallery-grid,
  .price-board,
  .booking-summary-strip,
  .calendar-jump,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 18px;
  }

  .hero-grid {
    padding: 20px;
  }

  .hero-actions .btn,
  .mini-cta .btn,
  .cta-block .btn {
    width: 100%;
  }

  .hero-image {
    min-height: 300px;
  }

  .quick-fact {
    min-height: auto;
    text-align: left;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 220px);
  }

  .gallery-strip .gallery-item:first-child {
    grid-row: auto;
  }

  .gallery-item {
    min-height: 220px;
  }

  .mini-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .booking-widget-head,
  .booking-widget-body {
    padding: 18px;
  }

  .booking-calendar-card,
  .booking-form-card,
  .panel,
  .contact-box {
    padding: 18px;
  }

  .calendar-day {
    min-height: 42px;
    border-radius: 11px;
  }

  .calendar-month {
    font-size: 1.55rem;
  }

  .cookieadmin_law_container {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
    width: auto !important;
    max-width: calc(100% - 28px) !important;
  }

  .cookieadmin_consent_inside {
    width: 100% !important;
    max-width: none !important;
  }

  .cookieadmin_consent_btns {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }

  .cookieadmin_btn {
    width: 100% !important;
    min-height: 44px !important;
    white-space: normal !important;
  }
}

@media (max-width: 410px) {
  .brand-title {
    font-size: 1.28rem;
  }

  .brand-subtitle {
    display: none;
  }

  h1 {
    font-size: 2.25rem;
  }

  .calendar-weekdays,
  .calendar-grid {
    gap: 5px;
  }
}
