@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url(/fonts/cormorant-600.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url(/fonts/cormorant-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url(/fonts/mulish-400.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 600;
  font-display: optional;
  src: url(/fonts/mulish-600.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Mulish';
  font-style: normal;
  font-weight: 700;
  font-display: optional;
  src: url(/fonts/mulish-700.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-display: "Cormorant Garamond", "Times New Roman", Times, serif;
  --font-body: "Mulish", Arial, Helvetica, sans-serif;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --section-pad-y: 96px;
  --content-max: 1200px;
  --radius-md: 14px;
  --radius-pill: 999px;
  --radius-card: 20px;
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ink: #0b1016;
  --navy: #1d364f;
  --muted: rgba(11, 16, 22, 0.68);
  --muted-soft: rgba(11, 16, 22, 0.62);
  --line: rgba(11, 16, 22, 0.08);
  --wash: #f5f6f8;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: #fff;
  color: var(--ink);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--ink);
}

.topbar {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.brand {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 20px;
  color: var(--navy);
}

.menu-btn {
  background: transparent;
  border: 1px solid rgba(11, 16, 22, 0.15);
  border-radius: var(--radius-md);
  width: 44px;
  height: 44px;
  color: var(--ink);
  font-size: 20px;
  cursor: pointer;
}

.menu-btn:hover {
  background: rgba(11, 16, 22, 0.05);
}

.nav-drawer {
  display: none;
  position: sticky;
  top: 76px;
  z-index: 49;
  flex-direction: column;
  background: #fff;
  border-bottom: 1px solid var(--line);
  animation: menuSlide 220ms var(--ease-out) both;
}

.nav-drawer.is-open {
  display: flex;
}

.nav-drawer a {
  padding: 16px 20px;
  color: var(--ink);
  font-weight: 600;
  border-bottom: 1px solid rgba(11, 16, 22, 0.06);
}

.nav-drawer a:last-child {
  border-bottom: 0;
}

.nav-drawer a:hover {
  color: var(--navy);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes menuSlide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 32px 20px clamp(48px, 8vw, 96px);
  background:
    linear-gradient(180deg, rgba(11, 16, 22, 0.15) 0%, rgba(11, 16, 22, 0.45) 55%, rgba(11, 16, 22, 0.88) 100%),
    url("/uploads/hero-block-background.webp") center / cover no-repeat;
}

.hero-inner {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeUp 700ms var(--ease-out) both;
}

.eyebrow {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}

.hero .eyebrow {
  color: #fff;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(34px, 8vw, 64px);
  margin: 0;
  color: #fff;
  line-height: 1.1;
}

.hero p {
  max-width: 46ch;
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 16px;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(11, 16, 22, 0.35);
  transition: transform 140ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.btn:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(11, 16, 22, 0.45);
}

.btn-sm {
  padding: 12px 26px;
  font-size: 14px;
  box-shadow: 0 8px 20px rgba(29, 54, 79, 0.28);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
  box-shadow: none;
  padding: 10px 22px;
  font-size: 13px;
}

.btn-outline:hover {
  background: var(--navy);
  color: #fff;
}

.section {
  padding: var(--section-pad-y) 20px;
}

.section-inner {
  max-width: var(--content-max);
  margin: 0 auto;
}

.section-narrow {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-7);
}

.about-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
  align-items: center;
  margin-bottom: var(--space-8);
}

.about-media {
  flex: 1 1 320px;
  min-width: 280px;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(11, 16, 22, 0.14);
}

.about-media img {
  width: 100%;
  aspect-ratio: 568 / 541;
  object-fit: cover;
  display: block;
  transition: transform 420ms var(--ease-soft);
}

.about-media:hover img {
  transform: scale(1.04);
}

.about-copy {
  flex: 1 1 320px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.about-copy h2,
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(26px, 4vw, 36px);
  margin: 0;
  color: var(--ink);
}

.about-copy h3 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(20px, 3vw, 26px);
  margin: 0;
  color: var(--ink);
}

.about-copy p {
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: var(--muted);
}

.trust-title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(24px, 4vw, 32px);
  margin: 0 0 var(--space-6);
  color: var(--ink);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-5);
}

.feature-card {
  background: var(--wash);
  border: 1px solid rgba(11, 16, 22, 0.06);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--space-3);
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 16, 22, 0.1);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #a3ccec8e;
}

.feature-card h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--ink);
  font-size: 19px;
}

.feature-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-soft);
}

.hotels {
  background: var(--wash);
}

.section-head {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 40px);
}

.hotel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
  gap: var(--space-6);
}

.hotel-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(11, 16, 22, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.hotel-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 44px rgba(11, 16, 22, 0.16);
}

.gallery {
  position: relative;
  height: 260px;
  overflow: hidden;
  background: #ddd;
}

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

.rating-pill {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--navy);
  border-radius: var(--radius-pill);
  padding: 6px 12px;
  font-weight: 700;
  font-size: 13px;
  color: #fff;
}

.rating-pill span {
  color: #ffd27a;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-nav:hover {
  background: #fff;
}

.gallery-nav.prev {
  left: 10px;
}

.gallery-nav.next {
  right: 10px;
}

.gallery-dots {
  position: absolute;
  bottom: 10px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
}

.gallery-dots button {
  height: 7px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  padding: 0;
  background: rgba(255, 255, 255, 0.7);
  width: 7px;
  transition: background 200ms var(--ease-soft), width 200ms var(--ease-soft);
}

.gallery-dots button.is-active {
  background: var(--navy);
  width: 18px;
}

.thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3px;
  background: var(--wash);
}

.thumbs button {
  border: none;
  padding: 0;
  cursor: pointer;
  height: 56px;
  overflow: hidden;
  opacity: 0.55;
  transition: opacity 200ms var(--ease-soft);
}

.thumbs button.is-active {
  opacity: 1;
}

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

.hotel-body {
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  flex: 1;
}

.hotel-body h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 22px;
  color: var(--ink);
}

.hotel-body .blurb {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted-soft);
}

.meta {
  margin: 0;
  font-size: 13px;
  color: rgba(11, 16, 22, 0.55);
}

.facts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}

.facts p {
  margin: 0;
  font-size: 14px;
  color: var(--muted-soft);
  line-height: 1.5;
}

.facts strong {
  color: var(--navy);
  font-weight: 700;
}

.hotel-body .btn {
  margin-top: auto;
  align-self: flex-start;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-5);
}

.deal-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 10px 26px rgba(11, 16, 22, 0.08);
  display: flex;
  flex-direction: column;
  transition: transform 240ms var(--ease-soft), box-shadow 240ms var(--ease-soft);
}

.deal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(11, 16, 22, 0.14);
}

.deal-card .media {
  height: 160px;
  overflow: hidden;
}

.deal-card .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms var(--ease-soft);
}

.deal-card:hover .media img {
  transform: scale(1.06);
}

.deal-body {
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.deal-body h3 {
  margin: 0;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 18px;
  color: var(--ink);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-was {
  color: #b3261e;
  text-decoration: line-through;
  font-size: 15px;
}

.price-now {
  color: #1a7a4c;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
}

.contact {
  background:
    linear-gradient(180deg, rgba(11, 16, 22, 0.82) 0%, rgba(11, 16, 22, 0.9) 100%),
    url("/uploads/contact-us.webp") center / cover no-repeat;
}

.contact-grid {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-7);
}

.contact-form-card {
  flex: 1 1 320px;
  min-width: 280px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: var(--space-6);
  box-shadow: 0 10px 30px rgba(11, 16, 22, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-form-card h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 26px;
  margin: 0;
  color: var(--ink);
}

.contact-form-card > p {
  margin: 0;
  font-size: 14px;
  color: rgba(11, 16, 22, 0.6);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  background: var(--wash);
  border: 1.5px solid rgba(11, 16, 22, 0.12);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-ok {
  margin: 0;
  color: #1a7a4c;
  font-size: 14px;
  display: none;
}

.form-ok.is-visible {
  display: block;
}

.contact-details {
  flex: 1 1 240px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.contact-details .label {
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ffd27a;
}

.contact-details p {
  margin: 4px 0 0;
  color: #fff;
  font-size: 16px;
}

.contact-details a {
  color: #fff;
}

.site-footer {
  background: var(--ink);
  padding: var(--space-7) 20px var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  align-items: center;
  text-align: center;
}

.age-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.site-footer > p {
  max-width: 560px;
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

.site-footer > p a {
  color: #fff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.socials {
  display: flex;
  gap: var(--space-4);
}

.socials a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 13px;
}

.socials a:hover {
  border-color: #fff;
}

.disclaimer {
  max-width: 560px;
  margin: 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.6;
}

.overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 16, 22, 0.85);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

html.age-ok .overlay,
.overlay.is-closed {
  display: none;
}

.modal {
  background: #fff;
  border-radius: var(--radius-card);
  padding: var(--space-7);
  max-width: 420px;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.modal .age-badge {
  align-self: center;
  border-color: var(--navy);
  color: var(--navy);
}

.modal h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 24px;
  color: var(--ink);
}

.modal p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 16, 22, 0.65);
}

.modal-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ghost {
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  border: 1.5px solid rgba(11, 16, 22, 0.2);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 14px;
  background: transparent;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 190;
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid rgba(11, 16, 22, 0.1);
  border-radius: var(--radius-card);
  padding: var(--space-5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  display: none;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-4);
}

html.age-ok:not(.cookie-ok) .cookie-banner,
.cookie-banner.is-open {
  display: flex;
}

html.cookie-ok .cookie-banner {
  display: none !important;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 260px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(11, 16, 22, 0.7);
}

.cookie-banner a {
  color: var(--navy);
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 13px;
  cursor: pointer;
}

.cookie-actions .decline {
  border: 1.5px solid rgba(11, 16, 22, 0.2);
  background: transparent;
  color: var(--ink);
}

.cookie-actions .accept {
  border: none;
  background: var(--navy);
  color: #fff;
}

/* Legal pages */
.legal-header {
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
}

.legal-header a {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 18px;
  color: var(--navy);
}

.legal-main {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-8) 20px;
}

.legal-main h1 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(28px, 5vw, 42px);
  margin: 0 0 8px;
  color: var(--ink);
}

.legal-updated {
  font-size: 13px;
  color: rgba(11, 16, 22, 0.5);
  margin: 0 0 40px;
}

.legal-main section {
  margin-bottom: 28px;
}

.legal-main h2 {
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
}

.legal-main p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(11, 16, 22, 0.72);
  margin: 0 0 10px;
}

.legal-main ul {
  margin: 0 0 10px;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-main li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(11, 16, 22, 0.72);
}

.legal-footer {
  background: var(--ink);
  padding: 24px 20px;
  text-align: center;
}

.legal-footer a {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 768px) {
  .hero {
    padding-left: 80px;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 520px;
  }

  .gallery {
    height: 220px;
  }
}


/* CLS guards */
.hero-inner { min-height: 280px; }
.feature-grid { min-height: 220px; }
.hotel-grid { min-height: 720px; }
.deals-grid { min-height: 320px; }
.gallery { height: 260px; }
.about-media img { aspect-ratio: 720 / 1078; height: auto; width: 100%; }
.thumbs button { height: 56px; }
.deal-card .media { height: 160px; }
.site-header { min-height: 76px; }
.topbar { min-height: 36px; box-sizing: border-box; }
@media (max-width: 640px) {
  .gallery { height: 220px; }
}
