
:root {
  --navy: #071525;
  --navy-2: #0d1d31;
  --charcoal: #161b22;
  --gold: #d9aa4f;
  --gold-dark: #b9892f;
  --cream: #f5efe3;
  --soft: #f7f5f0;
  --white: #ffffff;
  --text: #233044;
  --muted: #6a7280;
  --border: rgba(9, 24, 42, 0.12);
  --shadow: 0 24px 70px rgba(7, 21, 37, 0.16);
  --shadow-soft: 0 18px 45px rgba(7, 21, 37, 0.1);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max: 1180px;
}

* {
  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(--text);
  background: var(--white);
  line-height: 1.65;
}

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

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

ul {
  padding-left: 1.2rem;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(7, 21, 37, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18);
}

.age-ribbon {
  background: linear-gradient(90deg, var(--gold), #f1d592);
  color: #16120a;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.35rem 1rem;
}

.age-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 0, 0, 0.32);
  border-radius: 999px;
  padding: 0.05rem 0.45rem;
  margin-right: 0.35rem;
  font-weight: 900;
}

.navbar {
  width: min(1320px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  white-space: nowrap;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f4dfa0);
  color: #0b1424;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  box-shadow: 0 10px 24px rgba(217, 170, 79, 0.24);
}

.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.1rem;
  padding: 0;
  margin: 0;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.75rem 0.75rem;
  border-radius: 999px;
  transition: 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
}

.header-cta {
  background: var(--gold);
  color: #111827;
  padding: 0.78rem 1.15rem;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.25s ease, background 0.25s ease;
  box-shadow: 0 12px 28px rgba(217, 170, 79, 0.24);
}

.header-cta:hover {
  transform: translateY(-2px);
  background: #f0c76f;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  padding: 0.75rem;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: 0.25s ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  color: var(--white);
}

.page-hero {
  min-height: 430px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 170, 79, 0.32), transparent 32%),
    linear-gradient(90deg, rgba(7, 21, 37, 0.9), rgba(7, 21, 37, 0.56), rgba(7, 21, 37, 0.28));
}

.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(0deg, rgba(7, 21, 37, 0.66), transparent);
}

.hero-content,
.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-content {
  margin-left: max(calc((100vw - var(--max)) / 2), 20px);
}

.page-hero-content {
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.11em;
  font-size: 0.77rem;
  margin-bottom: 0.85rem;
}

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

h1,
h2,
h3 {
  line-height: 1.1;
  margin-top: 0;
  color: var(--navy);
}

.hero h1,
.page-hero h1,
.section-dark h2,
.section-dark h3,
.section-dark p,
.footer-top h3,
.footer-top p,
.site-footer a,
.site-footer {
  color: var(--white);
}

h1 {
  font-size: clamp(3rem, 7vw, 6.7rem);
  letter-spacing: -0.07em;
  margin-bottom: 1rem;
}

.page-hero h1 {
  font-size: clamp(2.7rem, 5vw, 5rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.75rem);
  letter-spacing: -0.055em;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.hero p,
.page-hero p {
  font-size: clamp(1.05rem, 2vw, 1.34rem);
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 2rem 0 1.25rem;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  cursor: pointer;
  font-weight: 900;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  font-family: inherit;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #f2ce7a);
  color: #0d1421;
  box-shadow: 0 16px 35px rgba(217, 170, 79, 0.25);
}

.btn-secondary {
  background: #172338;
  color: var(--white);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border: 1px solid rgba(7, 21, 37, 0.22);
}

.btn-card {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  margin-top: 1rem;
}

.full-width {
  width: 100%;
}

.mini-notice {
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.74) !important;
}

.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background:
    radial-gradient(circle at 15% 12%, rgba(217, 170, 79, 0.18), transparent 35%),
    linear-gradient(135deg, #071525, #111b2c 58%, #221833);
  color: var(--white);
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 5rem);
}

.section-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.section-dark .section-copy p,
.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.76);
}

.text-link {
  color: var(--gold-dark);
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.7rem;
}

.image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--navy);
  min-height: 300px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.image-frame:hover img,
.hotel-card:hover img,
.amenity-card:hover img {
  transform: scale(1.04);
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 3rem;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}

.card-grid,
.package-grid,
.values-grid,
.reviews-grid,
.amenity-grid,
.hotel-package-grid,
.highlight-grid,
.checklist-grid,
.benefit-grid {
  display: grid;
  gap: 1.35rem;
}

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

.hotel-card,
.package-card,
.value-card,
.review-card,
.amenity-card,
.hotel-package,
.highlight-card,
.check-card,
.benefit-card,
.contact-form,
.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hotel-card:hover,
.package-card:hover,
.value-card:hover,
.amenity-card:hover,
.hotel-package:hover,
.highlight-card:hover,
.check-card:hover,
.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 170, 79, 0.42);
}

.hotel-card img {
  height: 235px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.card-body,
.package-card,
.value-card,
.review-card,
.hotel-package,
.highlight-card,
.check-card,
.benefit-card {
  padding: 1.45rem;
}

.location {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-dark);
  font-weight: 900;
  font-size: 0.84rem;
  margin-bottom: 0.65rem;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.amenities span {
  background: #f1eadb;
  border: 1px solid rgba(217, 170, 79, 0.22);
  border-radius: 999px;
  padding: 0.38rem 0.65rem;
  color: #42351e;
  font-weight: 800;
  font-size: 0.8rem;
}

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

.package-card > i,
.value-card > i,
.check-card > i,
.benefit-card > i,
.highlight-card > i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 170, 79, 0.16), rgba(217, 170, 79, 0.38));
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.package-card ul,
.hotel-package ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.3rem;
}

.package-card li,
.hotel-package li {
  margin: 0.45rem 0;
  color: var(--muted);
}

.hotel-package li i {
  color: var(--gold-dark);
  margin-right: 0.45rem;
}

.feature-section {
  background: linear-gradient(180deg, #fff, #fbf8f0);
}

.benefit-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.8rem;
}

.benefit-card {
  box-shadow: none;
}

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

.check-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.check-card p {
  color: rgba(255, 255, 255, 0.74);
}

.check-card i {
  color: #15110a;
  background: linear-gradient(135deg, var(--gold), #f1d592);
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(var(--gold), rgba(217, 170, 79, 0.1));
}

.timeline-item {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
  padding: 1.4rem 1.4rem 1.4rem 5.8rem;
}

.timeline-item span {
  position: absolute;
  left: 0;
  top: 1.35rem;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: #0a1320;
  font-weight: 900;
  border: 6px solid var(--soft);
}

.values-grid,
.reviews-grid,
.amenity-grid,
.hotel-package-grid,
.highlight-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.review-card p,
.review-card span {
  color: rgba(255, 255, 255, 0.75);
}

.stars {
  color: var(--gold);
  margin-bottom: 1rem;
}

.hotel-hero {
  min-height: 650px;
}

.amenity-card {
  display: flex;
  flex-direction: column;
}

.amenity-card img {
  height: 220px;
  width: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.amenity-card div {
  padding: 1.35rem;
}

.notice-box {
  background: #fff7e6;
  border: 1px solid rgba(217, 170, 79, 0.42);
  border-left: 5px solid var(--gold);
  border-radius: var(--radius-sm);
  padding: 1rem;
  color: #443315;
  margin-top: 1.4rem;
}

.price-label {
  display: inline-flex;
  background: #f1eadb;
  color: var(--gold-dark);
  font-weight: 900;
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.6rem;
  align-items: start;
}

.contact-info,
.contact-form {
  padding: 2rem;
}

.contact-list {
  display: grid;
  gap: 1rem;
  margin: 1.7rem 0;
}

.contact-list div {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list i {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f1eadb;
  color: var(--gold-dark);
}

.contact-list strong {
  display: block;
  color: var(--navy);
}

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

.form-row {
  margin-bottom: 1rem;
}

.form-row label,
.checkbox-row label {
  display: block;
  font-weight: 900;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid rgba(7, 21, 37, 0.18);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  font: inherit;
  outline: none;
  background: #fcfbf8;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(217, 170, 79, 0.16);
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: #b42318;
}

.error-message,
.checkbox-error {
  color: #b42318;
  min-height: 1.15rem;
  display: block;
  font-weight: 700;
  font-size: 0.82rem;
  margin-top: 0.25rem;
}

.checkbox-row {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0.6rem 0 0;
}

.checkbox-row input {
  margin-top: 0.35rem;
  width: 18px;
  height: 18px;
  accent-color: var(--gold-dark);
}

.form-success {
  display: none;
  background: #e8f8ef;
  border: 1px solid #8fd4aa;
  color: #13552b;
  border-radius: 14px;
  padding: 0.9rem;
  margin-top: 1rem;
  font-weight: 800;
}

.form-success.show {
  display: block;
}

.site-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(217, 170, 79, 0.13), transparent 26%),
    linear-gradient(135deg, #071525, #0d1625 62%, #18121f);
}

.footer-top {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: 1.45fr 0.7fr 0.85fr 0.9fr 0.75fr;
  gap: 2rem;
}

.footer-brand p,
.footer-links a,
.footer-contact p,
.footer-age p {
  color: rgba(255, 255, 255, 0.72);
}

.footer-logo {
  margin-bottom: 1.2rem;
}

.domain-text {
  color: var(--gold) !important;
  font-weight: 900;
}

.footer-links ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.footer-links a:hover,
.footer-contact a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

.footer-contact i {
  color: var(--gold);
  margin-right: 0.45rem;
}

.social-icons {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.2rem;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.big-age {
  width: 126px;
  height: 126px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #f3d790);
  color: #0b1424;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  font-weight: 1000;
  margin-bottom: 1rem;
  box-shadow: 0 20px 50px rgba(217, 170, 79, 0.26);
}

.responsible-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1rem max(calc((100vw - 1320px) / 2), 20px);
  color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.04);
}

.responsible-strip strong {
  color: var(--gold);
}

.footer-bottom {
  width: min(1320px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0 2rem;
  color: rgba(255, 255, 255, 0.64);
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%) translateY(130%);
  width: min(1080px, calc(100% - 32px));
  background: rgba(7, 21, 37, 0.96);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  border-radius: 24px;
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: center;
  z-index: 1200;
  transition: transform 0.35s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-banner h3 {
  color: var(--white);
  margin-bottom: 0.2rem;
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: flex-end;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 37, 0.74);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  z-index: 1300;
}

.modal-backdrop.show {
  display: flex;
}

.cookie-modal {
  background: var(--white);
  color: var(--text);
  width: min(560px, 100%);
  border-radius: 28px;
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #f1eadb;
  cursor: pointer;
  color: var(--navy);
}

.cookie-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.cookie-option span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.switch input {
  display: none;
}

.switch span {
  width: 58px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  background: #c7ccd5;
  padding: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.switch span::after {
  content: "";
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 5px 12px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease;
}

.switch input:checked + span {
  background: var(--gold-dark);
}

.switch input:checked + span::after {
  transform: translateX(26px);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hotel contact details and external travel links */
.card-details {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.card-details p {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.card-details i {
  color: var(--gold-dark);
  margin-top: 0.18rem;
}

.card-details strong {
  color: var(--navy);
}

.card-details a,
.hotel-contact-card a:not(.btn) {
  color: var(--gold-dark);
  font-weight: 900;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.1rem;
}

.card-actions .btn {
  flex: 1 1 140px;
  padding: 0.75rem 0.85rem;
  font-size: 0.84rem;
}

.hotel-contact-section {
  background: linear-gradient(180deg, #fff, #fbf8f0);
}

.hotel-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}

.hotel-contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1.55rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.hotel-contact-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(217, 170, 79, 0.42);
}

.hotel-contact-card > i {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(217, 170, 79, 0.16), rgba(217, 170, 79, 0.38));
  color: var(--gold-dark);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}

.hotel-contact-card p {
  color: var(--muted);
  margin: 0 0 1rem;
}

.hotel-contact-card span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: -0.5rem;
}

.hotel-contact-card .btn {
  margin-top: 0.35rem;
}

@media (max-width: 1180px) {
  .navbar {
    min-height: 70px;
  }

  .menu-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    margin-left: auto;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 21, 37, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 0.8rem;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu a {
    display: block;
    border-radius: 14px;
  }

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

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

@media (max-width: 900px) {
  .section {
    padding: 78px 0;
  }

  .hero {
    min-height: 620px;
  }

  .split-grid,
  .contact-grid,
  .hotel-contact-grid {
    grid-template-columns: 1fr;
  }

  .reverse-mobile .image-frame {
    order: -1;
  }

  .three-cards,
  .package-grid,
  .values-grid,
  .reviews-grid,
  .amenity-grid,
  .hotel-package-grid,
  .highlight-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    justify-content: flex-start;
  }
}

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

  .age-ribbon {
    font-size: 0.75rem;
  }

  .navbar {
    width: calc(100% - 24px);
  }

  .logo span:last-child {
    font-size: 0.98rem;
  }

  .logo-mark {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .header-cta {
    display: none;
  }

  .hero-content,
  .page-hero-content {
    width: calc(100% - 28px);
  }

  .hero-buttons,
  .cookie-actions,
  .footer-bottom {
    flex-direction: column;
  }

  .btn,
  .hero-buttons .btn {
    width: 100%;
  }

  .three-cards,
  .package-grid,
  .values-grid,
  .reviews-grid,
  .amenity-grid,
  .hotel-package-grid,
  .highlight-grid,
  .benefit-grid,
  .checklist-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 24px;
  }

  .timeline-item {
    padding-left: 4.8rem;
  }

  .timeline-item span {
    width: 52px;
    height: 52px;
    font-size: 0.85rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    align-items: flex-start;
  }

  .cookie-banner {
    bottom: 12px;
    width: calc(100% - 20px);
    border-radius: 18px;
  }

  .cookie-modal {
    padding: 1.5rem;
  }
}


/* Legal pages */
.legal-section {
  position: relative;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.36fr) minmax(0, 1fr);
  gap: clamp(1.4rem, 4vw, 3rem);
  align-items: start;
}

.legal-sidebar,
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.legal-sidebar {
  padding: 1.5rem;
  position: sticky;
  top: 126px;
}

.legal-sidebar .big-age {
  width: 96px;
  height: 96px;
  font-size: 2rem;
}

.legal-card {
  padding: clamp(1.5rem, 4vw, 3rem);
}

.legal-card h2 {
  margin-bottom: 1.3rem;
}

.legal-card h3 {
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-card p,
.legal-sidebar p {
  color: var(--muted);
}

.legal-card a {
  color: var(--gold-dark);
  font-weight: 900;
}

.legal-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.legal-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 750;
}

.legal-list i {
  color: var(--gold-dark);
  margin-top: 0.22rem;
}

.responsible-checks .check-card {
  background: var(--white);
  border: 1px solid var(--border);
}

.responsible-checks .check-card h3 {
  color: var(--navy);
}

.responsible-checks .check-card p {
  color: var(--muted);
}

@media (max-width: 900px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}


/* Expanded legal content helpers */
.small-notice {
  margin-top: 1.4rem;
  font-size: 0.92rem;
}

.legal-card ol,
.legal-card ul:not(.legal-list) {
  color: var(--muted);
  padding-left: 1.35rem;
}

.legal-card li + li {
  margin-top: 0.45rem;
}

.legal-card .notice-box {
  margin-top: 2rem;
}
