:root {
  color-scheme: light;
  --paper: #f8f4eb;
  --paper-strong: #fffaf1;
  --ink: #1c1b18;
  --muted: #6f6a60;
  --line: rgba(28, 27, 24, 0.14);
  --forest: #244b3c;
  --forest-dark: #17372d;
  --rust: #a05a37;
  --gold: #d3ad69;
  --sky: #dce8ea;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(33, 29, 22, 0.16);
  --radius: 8px;
  --shell: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

body.lightbox-open {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  transform: translateY(0);
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 108px;
  padding: 10px max(20px, calc((100vw - 1180px) / 2));
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.menu-open {
  color: var(--ink);
  background: rgba(248, 244, 235, 0.94);
  box-shadow: 0 14px 42px rgba(28, 27, 24, 0.08);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand img {
  width: 160px;
  height: 160px;
  border-radius: 6px;
  background: var(--white);
  object-fit: cover;
  padding: 0;
  filter: drop-shadow(0 10px 22px rgba(0, 0, 0, 0.22));
}

.footer-brand img {
  width: 64px;
  height: 64px;
  border-radius: 6px;
  background: var(--white);
  object-fit: cover;
  padding: 0;
}

.brand span {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  clip-path: inset(50%);
}

.header-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-nav a {
  border-radius: 999px;
  padding: 10px 13px;
  transition:
    background 160ms ease,
    transform 160ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a:focus-visible,
.site-header.menu-open .site-nav a:hover,
.site-header.menu-open .site-nav a:focus-visible {
  background: rgba(36, 75, 60, 0.1);
}

.nav-social {
  display: none;
}

.header-social {
  display: flex;
  align-items: center;
  gap: 8px;
}

.header-social a {
  display: flex;
  height: 36px;
  min-width: 36px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  backdrop-filter: blur(12px);
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
}

.site-header.is-scrolled .header-social a,
.site-header.menu-open .header-social a {
  border-color: rgba(36, 75, 60, 0.16);
  background: rgba(255, 255, 255, 0.74);
  color: var(--forest-dark);
}

.header-social a:hover,
.header-social a:focus-visible {
  background: rgba(255, 255, 255, 0.26);
  outline: none;
  transform: translateY(-1px);
}

.site-header.is-scrolled .header-social a:hover,
.site-header.is-scrolled .header-social a:focus-visible,
.site-header.menu-open .header-social a:hover,
.site-header.menu-open .header-social a:focus-visible {
  border-color: rgba(36, 75, 60, 0.3);
  background: var(--white);
}

.header-booking-mark {
  padding: 0 10px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1;
}

.booking-score {
  display: inline-flex;
  min-width: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: #003b95;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 6px 7px;
}

.header-booking-score {
  margin-right: 5px;
  background: var(--white);
  color: #003b95;
}

.site-header.is-scrolled .header-booking-score,
.site-header.menu-open .header-booking-score {
  background: #003b95;
  color: var(--white);
}

.header-facebook-mark {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  background: #0866ff;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 3px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  padding: 2px;
  color: var(--white);
  backdrop-filter: blur(12px);
}

.site-header.is-scrolled .language-switch,
.site-header.menu-open .language-switch {
  border-color: rgba(36, 75, 60, 0.16);
  background: rgba(255, 255, 255, 0.72);
  color: var(--forest-dark);
}

.language-switch button {
  display: inline-flex;
  height: 32px;
  min-width: 48px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  padding: 0 8px;
}

.language-switch button:hover,
.language-switch button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.language-switch button.is-active {
  background: var(--white);
  color: var(--forest-dark);
  box-shadow: 0 8px 18px rgba(33, 29, 22, 0.12);
}

.lang-flag {
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

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

.hero-media {
  z-index: -2;
}

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

.hero-shade {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 16, 13, 0.56), rgba(11, 16, 13, 0.12) 58%, rgba(11, 16, 13, 0.2)),
    linear-gradient(0deg, rgba(11, 16, 13, 0.44), rgba(11, 16, 13, 0.04) 45%);
}

.hero-content {
  padding: 148px 0 72px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 820px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 7rem;
  line-height: 0.9;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 630px;
  margin: 24px 0 0;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.86);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  padding: 13px 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

.button svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 16px 42px rgba(23, 55, 45, 0.3);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--forest-dark);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
}

.button-outline {
  border-color: rgba(36, 75, 60, 0.3);
  color: var(--forest-dark);
  background: var(--white);
}

.inline-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 24px;
  border: 1px solid rgba(36, 75, 60, 0.24);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.56);
  color: var(--forest-dark);
  font-weight: 900;
  padding: 11px 16px;
}

.inline-cta svg {
  width: 18px;
  height: 18px;
  color: var(--rust);
}

.intro-band {
  padding: 72px 0 34px;
  background: var(--paper);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 100px);
  align-items: start;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.04rem;
}

.intro-copy p {
  margin: 0 0 18px;
}

.highlights {
  padding: 24px 0 84px;
}

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

.highlight-grid article {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  padding: 24px;
}

.highlight-grid span {
  display: block;
  color: var(--rust);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.highlight-grid p {
  margin: 14px 0 0;
  color: var(--muted);
  font-weight: 700;
}

.gallery-section {
  padding: 82px 0;
  background: var(--forest-dark);
  color: var(--white);
}

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

.section-heading h2 {
  max-width: 760px;
}

.gallery-section .section-kicker,
.experience-section .section-kicker {
  color: var(--gold);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-auto-rows: minmax(210px, 22vw);
  gap: 14px;
}

.gallery-groups {
  display: grid;
  gap: 44px;
}

.gallery-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.gallery-group-heading h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
}

.gallery-group-heading span {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  padding: 0;
  background: #111;
  color: var(--white);
  cursor: pointer;
  box-shadow: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 360ms ease,
    filter 360ms ease;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.08));
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.05);
  filter: saturate(1.08);
}

.gallery-item:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.gallery-large {
  grid-row: span 2;
}

.facilities-section {
  padding: 86px 0;
  background:
    linear-gradient(180deg, var(--paper), #f2eadf);
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.facility-card {
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 241, 0.74);
  padding: 26px;
}

.facility-card svg,
.experience-list svg,
.map-link svg {
  width: 23px;
  height: 23px;
  color: var(--rust);
}

.facility-card h3 {
  margin-top: 22px;
}

.facility-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.experience-section {
  padding: 86px 0;
  background:
    linear-gradient(rgba(23, 55, 45, 0.84), rgba(23, 55, 45, 0.88)),
    url("https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1900&q=85") center/cover;
  color: var(--white);
}

.pricing-section {
  padding: 86px 0;
  background: var(--paper-strong);
}

.booking-section {
  padding: 86px 0;
  background:
    linear-gradient(135deg, rgba(36, 75, 60, 0.08), rgba(211, 173, 105, 0.12)),
    var(--paper);
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.booking-copy p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.booking-form {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  padding: 24px;
  box-shadow: var(--shadow);
}

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

.booking-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 48px;
  border: 1px solid rgba(28, 27, 24, 0.16);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  padding: 12px 13px;
  outline: 0;
}

.booking-form textarea {
  min-height: 94px;
  resize: vertical;
}

.booking-form input[type="date"] {
  appearance: none;
  -webkit-appearance: none;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(36, 75, 60, 0.12);
}

.booking-form input.is-invalid,
.booking-form select.is-invalid,
.booking-form textarea.is-invalid {
  border-color: #b3261e;
  box-shadow: 0 0 0 3px rgba(179, 38, 30, 0.11);
}

.form-message {
  margin-top: 14px;
}

.booking-error {
  min-height: 22px;
  margin: 12px 0 0;
  color: #b3261e;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.booking-error:empty {
  margin-top: 0;
}

.booking-submit {
  width: 100%;
  margin-top: 18px;
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
}

.pricing-layout > div:first-child p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.price-card {
  min-height: 150px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
}

.price-card-main {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr repeat(2, minmax(150px, 0.6fr));
  gap: 18px;
  align-items: center;
  background: var(--forest-dark);
  color: var(--white);
}

.price-card span {
  display: block;
  color: var(--rust);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.price-card-main span {
  color: var(--gold);
}

.price-card strong {
  display: block;
  margin-top: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  line-height: 1;
}

.price-card-main strong {
  margin-top: 0;
}

.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-weight: 800;
}

.price-card-main p {
  color: rgba(255, 255, 255, 0.78);
}

.experience-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.65fr);
  gap: clamp(28px, 7vw, 90px);
  align-items: center;
}

.experience-layout p {
  max-width: 640px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.04rem;
}

.experience-list {
  display: grid;
  gap: 12px;
}

.experience-list article {
  display: flex;
  min-height: 92px;
  align-items: flex-start;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  padding: 18px;
  backdrop-filter: blur(8px);
  font-weight: 800;
}

.experience-list svg {
  margin-top: 2px;
  color: var(--gold);
  flex: 0 0 auto;
}

.experience-list small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
}

.trust-section {
  padding: 86px 0;
  background: var(--paper);
}

.trust-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
}

.trust-layout p:not(.section-kicker) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.04rem;
}

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

.trust-card {
  min-height: 210px;
  display: grid;
  grid-template-rows: 58px 1fr auto;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 22px;
  box-shadow: 0 16px 42px rgba(33, 29, 22, 0.09);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.trust-card:hover,
.trust-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 60px rgba(33, 29, 22, 0.14);
}

.trust-card strong {
  color: var(--forest-dark);
  font-size: 1.15rem;
}

.trust-card-main {
  display: grid;
  align-content: start;
  gap: 22px;
}

.trust-card-title {
  display: block;
  font-size: 1.22rem;
  line-height: 1.18;
}

.trust-card small {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.35;
}

.trust-booking-mark {
  color: #003b95;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.08rem;
  font-weight: 900;
}

.trust-rating {
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust-rating .booking-score {
  min-width: 48px;
  min-height: 42px;
  color: var(--white);
  font-size: 1.05rem;
}

.trust-rating span:last-child {
  color: var(--forest-dark);
  font-weight: 900;
  line-height: 1.25;
}

.trust-facebook-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  background: #0866ff;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.3rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 6px;
}

.nav-booking-score,
.footer-booking-score {
  background: #003b95;
  color: var(--white);
  font-size: 0.72rem;
  padding: 5px 6px;
}

.contact-section {
  padding: 90px 0;
  background: var(--paper-strong);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: stretch;
}

.contact-info > p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.04rem;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 34px 0 0;
}

.contact-list div {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.contact-list dt {
  color: var(--forest-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.contact-list dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.contact-list a {
  color: var(--forest-dark);
  font-weight: 800;
}

.map-panel {
  min-height: 460px;
  display: grid;
  grid-template-rows: 1fr auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
}

.map-link {
  display: flex;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  color: var(--forest-dark);
  font-weight: 900;
}

.site-footer {
  padding: 26px 0;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.footer-brand img {
  width: 46px;
  height: 46px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.footer-social a {
  display: inline-flex;
  min-width: 42px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 0 11px;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(33, 29, 22, 0.06);
  transition:
    border-color 160ms ease,
    transform 160ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  border-color: rgba(36, 75, 60, 0.32);
  outline: none;
  transform: translateY(-2px);
}

.footer-booking-mark {
  color: #003b95;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
}

.footer-facebook-mark {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: #0866ff;
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
  padding-top: 3px;
}

.footer-social-label {
  display: none;
}

.footer-inner p {
  margin: 0;
  font-size: 0.92rem;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 72px 84px;
  background: rgba(12, 13, 12, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-figure {
  width: min(1080px, 100%);
  margin: 0;
}

.lightbox-figure img {
  width: 100%;
  max-height: 74vh;
  object-fit: contain;
  border-radius: var(--radius);
  background: #111;
}

.lightbox-figure figcaption {
  margin-top: 12px;
  color: var(--white);
  font-weight: 800;
  text-align: center;
}

.lightbox button {
  position: absolute;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  cursor: pointer;
}

.lightbox button:hover,
.lightbox button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  outline: none;
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-prev {
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-next {
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 980px) {
  :root {
    --shell: min(100vw - 28px, 760px);
  }

  .site-header {
    min-height: 88px;
    padding-inline: 14px;
  }

  .brand img {
    width: 108px;
    height: 108px;
  }

  .brand span {
    max-width: 160px;
    line-height: 1.1;
  }

  .header-controls {
    gap: 8px;
  }

  .header-social a {
    height: 40px;
    min-width: 40px;
  }

  .language-switch button {
    min-width: 42px;
    padding-inline: 6px;
  }

  .header-booking-mark {
    width: 18px;
    overflow: hidden;
    padding: 0;
    font-size: 0;
  }

  .header-booking-mark::before {
    content: "B.";
    color: currentColor;
    font-size: 0.9rem;
    font-weight: 900;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(248, 244, 235, 0.98);
    color: var(--ink);
    padding: 10px;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition:
      opacity 160ms ease,
      transform 160ms ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    border-radius: var(--radius);
    padding: 13px;
  }

  .hero {
    min-height: 84svh;
  }

  .hero-content {
    padding: 118px 0 52px;
  }

  .hero h1 {
    font-size: 5.2rem;
  }

  h2 {
    font-size: 2.85rem;
  }

  .highlight-grid span {
    font-size: 2.5rem;
  }

  .intro-grid,
  .experience-layout,
  .contact-layout,
  .pricing-layout,
  .booking-layout,
  .trust-layout {
    grid-template-columns: 1fr;
  }

  .highlight-grid,
  .facilities-grid,
  .pricing-table {
    grid-template-columns: repeat(2, 1fr);
  }

  .price-card-main {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 260px;
  }
}

@media (max-width: 680px) {
  :root {
    --shell: min(100vw - 24px, 440px);
  }

  body {
    font-size: 0.98rem;
  }

  .site-header {
    min-height: 74px;
    padding: 8px 12px;
  }

  .brand img {
    width: 76px;
    height: 76px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.16);
  }

  .header-controls {
    gap: 6px;
  }

  .header-social {
    gap: 6px;
  }

  .header-social a {
    height: 38px;
    min-width: 38px;
  }

  .header-social {
    display: none;
  }

  .language-switch {
    padding: 2px;
  }

  .language-switch button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    padding: 0;
  }

  .lang-code {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    clip-path: inset(50%);
  }

  .header-facebook-mark {
    width: 24px;
    height: 24px;
    font-size: 1.38rem;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.18);
  }

  .site-nav {
    top: calc(100% + 6px);
    left: 12px;
    right: 12px;
    max-height: calc(100svh - 92px);
    overflow: auto;
    padding: 8px;
  }

  .site-nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-social {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--line);
  }

  .nav-social a {
    min-height: 42px;
    justify-content: center;
    gap: 8px;
    border: 1px solid rgba(36, 75, 60, 0.14);
    background: var(--white);
    padding: 10px;
    font-weight: 900;
  }

  .nav-booking-mark {
    color: #003b95;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    font-weight: 900;
    line-height: 1;
  }

  .nav-facebook-mark {
    display: grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 50%;
    background: #0866ff;
    color: var(--white);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.38rem;
    font-weight: 900;
    line-height: 1;
    padding-top: 3px;
  }

  .section-heading {
    display: block;
    margin-bottom: 24px;
  }

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

  .hero {
    min-height: 92svh;
  }

  .hero-media img {
    object-position: center bottom;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(11, 16, 13, 0.26), rgba(11, 16, 13, 0.06) 38%, rgba(11, 16, 13, 0.82)),
      linear-gradient(90deg, rgba(11, 16, 13, 0.58), rgba(11, 16, 13, 0.14));
  }

  .hero-content {
    padding: 124px 0 34px;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 10px;
    font-size: 0.74rem;
  }

  .hero h1 {
    max-width: 330px;
    font-size: 3rem;
    line-height: 0.95;
  }

  .hero-copy {
    margin-top: 18px;
    font-size: 1.04rem;
    line-height: 1.5;
  }

  h2 {
    font-size: 2rem;
    line-height: 1.08;
  }

  .highlight-grid span {
    font-size: 2rem;
  }

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 14px;
  }

  .intro-band,
  .gallery-section,
  .facilities-section,
  .pricing-section,
  .booking-section,
  .experience-section,
  .trust-section,
  .contact-section {
    padding-block: 54px;
  }

  .highlights {
    padding: 10px 0 54px;
  }

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

  .highlight-grid article {
    min-height: 118px;
    padding: 16px;
  }

  .highlight-grid p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .facilities-grid,
  .pricing-table,
  .form-grid,
  .trust-cards,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .intro-copy {
    font-size: 1rem;
  }

  .gallery-groups {
    gap: 34px;
  }

  .gallery-group-heading {
    align-items: baseline;
    margin-bottom: 12px;
  }

  .gallery-group-heading h3 {
    font-size: 1.55rem;
  }

  .gallery-group-heading span {
    font-size: 0.88rem;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    gap: 10px;
  }

  .gallery-large {
    grid-row: auto;
  }

  .facility-card,
  .price-card {
    min-height: auto;
    padding: 20px;
  }

  .facility-card h3 {
    margin-top: 16px;
  }

  .pricing-layout > div:first-child p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .price-card strong {
    font-size: 2rem;
  }

  .price-card-main {
    gap: 14px;
  }

  .booking-form {
    padding: 18px;
    box-shadow: 0 16px 42px rgba(33, 29, 22, 0.12);
  }

  .booking-form input,
  .booking-form select,
  .booking-form textarea {
    font-size: 0.96rem;
    padding-inline: 10px;
  }

  .booking-copy p:not(.section-kicker),
  .trust-layout p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 1rem;
  }

  .experience-list article {
    min-height: 64px;
    padding: 15px;
  }

  .trust-card {
    min-height: 170px;
    padding: 20px;
  }

  .contact-list {
    margin-top: 26px;
  }

  .map-panel {
    min-height: 360px;
    box-shadow: 0 16px 42px rgba(33, 29, 22, 0.12);
  }

  .map-panel iframe {
    min-height: 300px;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .footer-brand img {
    width: 54px;
    height: 54px;
  }

  .footer-social {
    display: grid;
    width: min(100%, 260px);
    grid-template-columns: 1fr;
    gap: 8px;
    margin-left: 0;
  }

  .footer-social a {
    display: flex;
    height: auto;
    min-width: 0;
    min-height: 46px;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
  }

  .footer-booking-mark {
    font-size: 0.9rem;
  }

  .footer-social-label {
    display: inline;
    color: var(--forest-dark);
    font-size: 0.9rem;
    font-weight: 900;
    line-height: 1;
  }

  .lightbox {
    padding: 72px 14px;
  }

  .lightbox-prev {
    left: 14px;
    bottom: 24px;
    top: auto;
    transform: none;
  }

  .lightbox-next {
    right: 14px;
    bottom: 24px;
    top: auto;
    transform: none;
  }
}

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