:root {
  --orange: #f59e0b;
  --orange-2: #ffb323;
  --orange-dark: #c86c00;
  --ink: #111318;
  --ink-2: #1c2027;
  --muted: #69707d;
  --line: rgba(17, 19, 24, .11);
  --paper: #ffffff;
  --soft: #f5f6f8;
  --soft-2: #eef0f3;
  --radius: 24px;
  --shadow: 0 22px 80px rgba(14, 17, 23, .12);
  --shadow-sm: 0 12px 40px rgba(14, 17, 23, .08);
  --max: 1220px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
::selection { color: #111; background: rgba(245,158,11,.35); }

.skip-link {
  position: fixed; left: 16px; top: -60px; z-index: 9999;
  padding: 12px 16px; border-radius: 12px; background: #fff; box-shadow: var(--shadow-sm);
}
.skip-link:focus { top: 16px; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 860px); margin-inline: auto; }
.section { padding: 104px 0; position: relative; }
.section.soft { background: var(--soft); }
.section.dark { color: #fff; background: var(--ink); overflow: hidden; }
.section.dark::before {
  content: ""; position: absolute; inset: auto -15% -55% 35%; height: 620px;
  background: radial-gradient(circle, rgba(245,158,11,.24), transparent 68%);
  pointer-events: none;
}
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 46px; }
.section-head > div:first-child { max-width: 760px; }
.dark h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: -.035em; }
h1 { font-size: clamp(2.65rem, 6vw, 5.85rem); }
h2 { font-size: clamp(2rem, 4.3vw, 3.7rem); }
h3 { font-size: clamp(1.17rem, 2vw, 1.55rem); }
p { margin: 0 0 1rem; }
.lead { color: var(--muted); font-size: clamp(1.08rem, 1.6vw, 1.28rem); max-width: 760px; }
.dark .lead { color: rgba(255,255,255,.72); }
.muted { color: var(--muted); }
.kicker { font-size: .88rem; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 23px; border: 1px solid transparent; border-radius: 999px;
  font-weight: 800; transition: transform .24s ease, box-shadow .24s ease, background .24s ease, color .24s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #111; background: linear-gradient(135deg, var(--orange-2), var(--orange)); box-shadow: 0 12px 32px rgba(245,158,11,.26); }
.btn-primary:hover { box-shadow: 0 16px 38px rgba(245,158,11,.36); }
.btn-dark { color: #fff; background: var(--ink); }
.btn-ghost { border-color: rgba(255,255,255,.25); color: #fff; background: rgba(255,255,255,.08); backdrop-filter: blur(12px); }
.btn-outline { border-color: var(--line); background: #fff; }
.btn svg { width: 18px; height: 18px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 1000; height: 82px;
  background: rgba(255,255,255,.91); border-bottom: 1px solid rgba(17,19,24,.08); backdrop-filter: blur(18px);
}
.header-inner { height: 100%; display: flex; align-items: center; gap: 26px; }
.brand { display: flex; align-items: center; gap: 12px; min-width: 194px; }
.brand img { width: 58px; height: 58px; object-fit: contain; border-radius: 50%; }
.brand-text { display: grid; line-height: 1; }
.brand-text strong { font-size: .98rem; letter-spacing: -.02em; }
.brand-text span { margin-top: 7px; color: var(--orange-dark); font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.nav { display: flex; align-items: center; gap: 25px; margin-left: auto; }
.nav a { position: relative; padding: 30px 0; font-size: .9rem; font-weight: 700; }
.nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 21px; height: 2px; border-radius: 99px; background: var(--orange); transition: right .22s ease; }
.nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
.header-tools { display: flex; align-items: center; gap: 10px; }
.lang { position: relative; }
.lang-button {
  display: flex; align-items: center; gap: 7px; height: 42px; padding: 0 13px;
  border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 800;
}
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 165px; padding: 8px;
  border: 1px solid var(--line); border-radius: 18px; background: #fff; box-shadow: var(--shadow-sm);
  opacity: 0; pointer-events: none; transform: translateY(-8px); transition: .2s ease;
}
.lang.open .lang-menu { opacity: 1; pointer-events: auto; transform: none; }
.lang-menu a { display: flex; justify-content: space-between; padding: 10px 12px; border-radius: 11px; font-size: .9rem; font-weight: 700; }
.lang-menu a:hover, .lang-menu a.active { background: var(--soft); color: var(--orange-dark); }
.menu-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 14px; background: #fff; }
.menu-toggle span { display: block; width: 20px; height: 2px; margin: 4px auto; background: var(--ink); transition: .2s ease; }

.hero {
  position: relative; min-height: calc(100svh - 82px); display: grid; align-items: center; color: #fff; overflow: hidden;
  background: #15171a;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(7,9,12,.86) 0%, rgba(7,9,12,.62) 40%, rgba(7,9,12,.12) 75%), linear-gradient(0deg, rgba(7,9,12,.62), transparent 45%); }
.hero-content { position: relative; z-index: 2; max-width: 850px; padding: 94px 0 130px; }
.hero h1 span { color: var(--orange-2); }
.hero p { max-width: 720px; margin: 24px 0 32px; color: rgba(255,255,255,.78); font-size: clamp(1.08rem,1.8vw,1.35rem); }
.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(255,255,255,.17); border-radius: 999px; background: rgba(8,10,13,.28); backdrop-filter: blur(10px); font-size: .87rem; font-weight: 700; }
.hero-badge::before { content: "✓"; display: grid; place-items: center; width: 20px; height: 20px; color: #111; background: var(--orange); border-radius: 50%; font-size: .72rem; }
.hero-scroll { position: absolute; bottom: 27px; left: 50%; z-index: 3; transform: translateX(-50%); display: grid; justify-items: center; gap: 8px; color: rgba(255,255,255,.65); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.hero-scroll span { width: 1px; height: 36px; background: linear-gradient(var(--orange), transparent); animation: scrollPulse 1.7s infinite; }
@keyframes scrollPulse { 0%,100% { transform: scaleY(.5); transform-origin: top; } 50% { transform: scaleY(1); } }

.subhero { position: relative; min-height: 610px; display: grid; align-items: end; color: #fff; overflow: hidden; background: var(--ink); }
.subhero-media { position: absolute; inset: 0; }
.subhero-media img { width: 100%; height: 100%; object-fit: cover; }
.subhero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,10,13,.85), rgba(8,10,13,.35)), linear-gradient(0deg, rgba(8,10,13,.85), transparent 65%); }
.subhero-content { position: relative; z-index: 2; max-width: 900px; padding: 96px 0 84px; }
.subhero h1 { font-size: clamp(2.65rem,5vw,5rem); }
.subhero p { max-width: 760px; margin: 22px 0 28px; color: rgba(255,255,255,.76); font-size: 1.18rem; }

.booking-wrap { position: relative; z-index: 6; margin-top: -70px; }
.booking-card { padding: 30px; border: 1px solid rgba(17,19,24,.08); border-radius: 30px; background: rgba(255,255,255,.96); box-shadow: var(--shadow); backdrop-filter: blur(16px); }
.booking-card-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.booking-card-head p { margin: 0; color: var(--muted); font-size: .92rem; }
.booking-form { display: grid; grid-template-columns: repeat(12,1fr); gap: 14px; }
.field { grid-column: span 3; }
.field.wide { grid-column: span 6; }
.field.full { grid-column: 1/-1; }
.field label { display: block; margin: 0 0 7px; color: #343a43; font-size: .75rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase; }
.field input, .field select, .field textarea {
  width: 100%; min-height: 52px; padding: 12px 14px; border: 1px solid rgba(17,19,24,.13); border-radius: 14px; outline: 0; background: #fff; transition: border-color .2s, box-shadow .2s;
}
.field textarea { min-height: 118px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(245,158,11,.13); }
.form-submit { grid-column: span 3; align-self: end; min-height: 52px; border: 0; }
.form-submit.full { grid-column: 1/-1; }
.form-note { grid-column: 1/-1; margin: 2px 0 0; color: var(--muted); font-size: .78rem; }
.form-status { display: none; grid-column: 1/-1; padding: 12px 14px; border-radius: 12px; font-size: .9rem; font-weight: 700; }
.form-status.show { display: block; }
.form-status.success { color: #175f36; background: #eaf8f0; }
.form-status.error { color: #8a2a22; background: #fff0ed; }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2,minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3,minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4,minmax(0,1fr)); }
.card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; box-shadow: 0 1px 0 rgba(17,19,24,.02); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.card:hover { transform: translateY(-5px); border-color: rgba(245,158,11,.36); box-shadow: var(--shadow-sm); }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 23px; border-radius: 16px; color: var(--orange-dark); background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.06)); }
.card-icon svg { width: 25px; height: 25px; }
.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); }
.card-link { display: inline-flex; align-items: center; gap: 8px; margin-top: 8px; color: var(--orange-dark); font-weight: 800; }
.card-link span { transition: transform .2s ease; }
.card:hover .card-link span { transform: translateX(4px); }

.image-card { min-height: 410px; overflow: hidden; padding: 0; color: #fff; border: 0; }
.image-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.image-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,13,.88), rgba(8,10,13,.06) 72%); }
.image-card:hover img { transform: scale(1.045); }
.image-card-content { position: absolute; inset: auto 0 0; z-index: 2; padding: 28px; }
.image-card-content p { color: rgba(255,255,255,.72); }

.route-list { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.route { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 17px 18px; border: 1px solid var(--line); border-radius: 16px; background: #fff; transition: .2s ease; }
.route:hover { border-color: rgba(245,158,11,.45); transform: translateX(3px); }
.route strong { font-size: .96rem; }
.route span { color: var(--orange-dark); font-size: .82rem; font-weight: 800; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: clamp(42px,7vw,90px); }
.split.reverse > :first-child { order: 2; }
.split-media { position: relative; }
.split-media img { width: 100%; min-height: 540px; object-fit: cover; border-radius: 32px; box-shadow: var(--shadow); }
.split-media::before { content: ""; position: absolute; right: -22px; bottom: -22px; z-index: -1; width: 65%; height: 65%; border-radius: 32px; background: linear-gradient(135deg, var(--orange), transparent 70%); opacity: .4; }
.check-list { display: grid; gap: 13px; margin: 27px 0 30px; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 11px; }
.check-list li::before { content: "✓"; flex: 0 0 24px; display: grid; place-items: center; width: 24px; height: 24px; margin-top: 1px; border-radius: 50%; color: #111; background: var(--orange); font-size: .72rem; font-weight: 900; }

.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; margin-top: 40px; }
.stat { padding: 24px; border: 1px solid rgba(255,255,255,.12); border-radius: 20px; background: rgba(255,255,255,.06); }
.stat strong { display: block; color: var(--orange-2); font-size: 2rem; line-height: 1; }
.stat span { display: block; margin-top: 10px; color: rgba(255,255,255,.65); font-size: .86rem; }

.destination-grid { display: grid; grid-template-columns: repeat(12,1fr); gap: 18px; }
.destination-card { position: relative; min-height: 280px; overflow: hidden; border-radius: 24px; background: var(--ink); }
.destination-card:nth-child(1), .destination-card:nth-child(6) { grid-column: span 7; }
.destination-card:nth-child(2), .destination-card:nth-child(5) { grid-column: span 5; }
.destination-card:nth-child(3), .destination-card:nth-child(4) { grid-column: span 6; }
.destination-card img { width: 100%; height: 100%; object-fit: cover; opacity: .76; transition: .4s ease; }
.destination-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,10,13,.92), transparent 72%); }
.destination-card:hover img { transform: scale(1.05); opacity: .9; }
.destination-card div { position: absolute; left: 24px; right: 24px; bottom: 22px; z-index: 2; color: #fff; }
.destination-card span { color: var(--orange-2); font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.destination-card h3 { margin-top: 6px; }

.faq { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-question { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 23px 0; border: 0; color: var(--ink); background: transparent; text-align: left; font-weight: 800; }
.faq-question span:last-child { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--soft); transition: transform .25s ease; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-answer p { padding: 0 48px 22px 0; color: var(--muted); }
.faq-item.open .faq-question span:last-child { transform: rotate(45deg); }

.content-prose { color: #373d46; font-size: 1.06rem; }
.content-prose h2 { margin: 52px 0 20px; font-size: clamp(1.8rem,3vw,2.65rem); }
.content-prose h3 { margin: 35px 0 13px; }
.content-prose ul { padding-left: 1.25rem; }
.content-prose li { margin-bottom: .5rem; }
.pill-list { display: flex; flex-wrap: wrap; gap: 10px; padding: 0; list-style: none; }
.pill-list li { padding: 10px 14px; border: 1px solid var(--line); border-radius: 999px; background: #fff; font-weight: 700; font-size: .88rem; }

.cta-band { position: relative; overflow: hidden; padding: 66px; border-radius: 34px; color: #fff; background: var(--ink); }
.cta-band::after { content: ""; position: absolute; inset: -100% -10% -100% 50%; background: radial-gradient(circle, rgba(245,158,11,.33), transparent 55%); }
.cta-band-inner { position: relative; z-index: 2; display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-band p { max-width: 640px; margin: 13px 0 0; color: rgba(255,255,255,.7); }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 28px; }
.contact-panel { padding: 34px; border-radius: 28px; color: #fff; background: var(--ink); }
.contact-method { display: flex; gap: 14px; align-items: center; padding: 19px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.contact-method:last-child { border-bottom: 0; }
.contact-method .icon { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 14px; color: #111; background: var(--orange); }
.contact-method small { display: block; color: rgba(255,255,255,.58); }
.contact-method strong { display: block; margin-top: 3px; }
.contact-form-card { padding: 34px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }

.site-footer { padding: 76px 0 30px; color: rgba(255,255,255,.72); background: #0d0f12; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr 1fr; gap: 50px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: #fff; margin-bottom: 20px; }
.footer-brand .brand img { background: #fff; }
.footer-title { margin: 0 0 18px; color: #fff; font-size: .92rem; font-weight: 800; text-transform: uppercase; letter-spacing: .09em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a:hover { color: var(--orange-2); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 55px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .8rem; }

.floating-contact { position: fixed; right: 22px; bottom: 22px; z-index: 999; display: flex; flex-direction: column; gap: 10px; }
.float-btn { display: grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; color: #111; background: var(--orange); box-shadow: 0 14px 35px rgba(0,0,0,.24); transition: .2s ease; }
.float-btn:hover { transform: translateY(-3px) scale(1.03); }
.float-btn svg { width: 25px; height: 25px; }
.mobile-book { display: none; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }

.lang-chooser { min-height: 100svh; display: grid; place-items: center; padding: 40px; background: radial-gradient(circle at 75% 10%, rgba(245,158,11,.22), transparent 35%), var(--ink); }
.lang-box { width: min(100%, 780px); padding: 48px; border: 1px solid rgba(255,255,255,.12); border-radius: 32px; color: #fff; background: rgba(255,255,255,.06); box-shadow: var(--shadow); backdrop-filter: blur(20px); text-align: center; }
.lang-box img { width: 170px; margin: 0 auto 28px; border-radius: 50%; }
.lang-options { display: grid; grid-template-columns: repeat(5,1fr); gap: 10px; margin-top: 30px; }
.lang-options a { padding: 14px 8px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; font-weight: 800; }
.lang-options a:hover { color: #111; background: var(--orange); border-color: var(--orange); }

@media (max-width: 1100px) {
  .nav { gap: 16px; }
  .nav a { font-size: .82rem; }
  .header-cta { display: none; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 900px) {
  .site-header { height: 74px; }
  .brand img { width: 50px; height: 50px; }
  .brand-text { display: none; }
  .nav {
    position: fixed; inset: 74px 0 0; display: block; padding: 25px 24px 120px; overflow-y: auto;
    background: rgba(255,255,255,.98); transform: translateX(100%); transition: transform .3s ease;
  }
  .menu-open .nav { transform: none; }
  .nav a { display: block; padding: 17px 6px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a::after { display: none; }
  .menu-toggle { display: block; }
  .menu-open .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-open .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: calc(100svh - 74px); }
  .hero-media::after { background: linear-gradient(0deg, rgba(7,9,12,.88), rgba(7,9,12,.32)), linear-gradient(90deg, rgba(7,9,12,.65), transparent); }
  .hero-content { padding: 80px 0 120px; }
  .booking-wrap { margin-top: -48px; }
  .field { grid-column: span 6; }
  .form-submit { grid-column: span 6; }
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .split-media img { min-height: 430px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .cta-band-inner { align-items: flex-start; flex-direction: column; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .lang-options { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 620px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--max)); }
  .section { padding: 76px 0; }
  .hero h1 { font-size: clamp(2.45rem,12vw,3.75rem); }
  .hero p { font-size: 1.04rem; }
  .hero-actions .btn { width: 100%; }
  .hero-badges { gap: 7px; }
  .hero-badge { font-size: .75rem; }
  .subhero { min-height: 540px; }
  .subhero-content { padding: 80px 0 58px; }
  .booking-card { padding: 20px; border-radius: 22px; }
  .booking-card-head { align-items: flex-start; flex-direction: column; }
  .field, .field.wide, .form-submit { grid-column: 1/-1; }
  .grid-2, .grid-3, .grid-4, .route-list { grid-template-columns: 1fr; }
  .card { padding: 24px; }
  .destination-grid { grid-template-columns: 1fr; }
  .destination-card, .destination-card:nth-child(n) { grid-column: 1/-1; min-height: 250px; }
  .split-media img { min-height: 320px; border-radius: 23px; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat { padding: 18px; }
  .cta-band { padding: 36px 24px; border-radius: 25px; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; }
  .floating-contact { display: none; }
  .mobile-book { position: fixed; z-index: 998; left: 12px; right: 12px; bottom: 10px; display: flex; gap: 8px; padding: 8px; border: 1px solid rgba(17,19,24,.08); border-radius: 18px; background: rgba(255,255,255,.93); box-shadow: 0 15px 45px rgba(0,0,0,.18); backdrop-filter: blur(15px); }
  .mobile-book .btn { flex: 1; min-height: 48px; padding: 0 13px; font-size: .84rem; }
  .site-footer { padding-bottom: 100px; }
  .lang-box { padding: 30px 20px; }
  .lang-options { grid-template-columns: 1fr 1fr; }
}

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

/* Mobile layout refinements */
html, body { max-width: 100%; overflow-x: clip; }
main, .hero, .subhero, .booking-wrap, .section, .site-footer { width: 100%; max-width: 100%; }

@media (max-width: 900px) {
  .site-header {
    height: 72px;
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header-inner {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
    gap: 10px;
  }
  .brand {
    min-width: 0;
    flex: 0 0 auto;
    margin-right: auto;
  }
  .brand img { width: 46px; height: 46px; }
  .header-tools { margin-left: auto; gap: 8px; }
  .lang-button { height: 42px; padding-inline: 12px; }
  .menu-toggle {
    position: relative;
    z-index: 1002;
    flex: 0 0 44px;
    display: block;
  }
  .nav {
    position: fixed;
    z-index: 1001;
    top: 72px;
    left: 0;
    right: auto;
    bottom: auto;
    width: 100vw;
    height: calc(100dvh - 72px);
    margin: 0;
    padding: 18px 20px 110px;
    overflow-y: auto;
    overscroll-behavior: contain;
    background: #fff;
    box-shadow: 0 22px 55px rgba(0,0,0,.12);
    transform: translate3d(100%,0,0);
    transition: transform .28s ease;
  }
  .menu-open .nav { transform: translate3d(0,0,0); }
  .nav a {
    width: 100%;
    padding: 16px 4px;
    font-size: 1rem;
    line-height: 1.3;
  }
  body.menu-open { overflow: hidden; touch-action: none; }

  .hero {
    display: block;
    min-height: auto;
  }
  .hero-media img { object-position: 62% center; }
  .hero-content {
    max-width: none;
    padding: 64px 0 116px;
  }
  .hero-scroll { display: none; }
  .booking-wrap { margin-top: -42px; }
  .booking-card, .contact-form-card, .contact-panel { min-width: 0; }
  .booking-form, .field, .field input, .field select, .field textarea { min-width: 0; }
}

@media (max-width: 620px) {
  .container, .narrow {
    width: 100%;
    max-width: none;
    padding-inline: 16px;
  }
  .section { padding: 64px 0; }
  .hero-content { padding: 58px 0 110px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.3rem, 11.5vw, 3.15rem);
    line-height: 1.04;
    letter-spacing: -.045em;
    overflow-wrap: normal;
    word-break: normal;
  }
  .hero p {
    margin: 20px 0 24px;
    font-size: .98rem;
    line-height: 1.58;
  }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { min-height: 50px; }
  .hero-badges {
    display: grid;
    justify-items: start;
    margin-top: 26px;
  }
  .hero-badge { padding: 8px 11px; }

  .booking-wrap { margin-top: -34px; }
  .booking-card {
    padding: 22px 16px;
    border-radius: 20px;
    box-shadow: 0 18px 45px rgba(14,17,23,.15);
  }
  .booking-card-head { gap: 8px; margin-bottom: 18px; }
  .booking-card-head h3 { font-size: 1.12rem; }
  .booking-card-head p { font-size: .84rem; line-height: 1.5; }
  .booking-form { gap: 12px; }
  .field input, .field select, .field textarea { min-height: 50px; border-radius: 13px; }
  .form-submit { width: 100%; }

  .subhero { min-height: 470px; }
  .subhero-content { padding: 64px 0 52px; }
  .subhero h1 { font-size: clamp(2.2rem, 10.5vw, 3rem); }
  .subhero p { font-size: 1rem; line-height: 1.6; }

  .section-head { margin-bottom: 30px; }
  .section-head h2 { font-size: clamp(1.85rem, 8vw, 2.5rem); }
  .card { border-radius: 20px; }
  .split { gap: 34px; }
  .split-media::before { right: -8px; bottom: -8px; }
  .contact-form-card, .contact-panel { padding: 24px 18px; border-radius: 22px; }

  .mobile-book {
    left: 8px;
    right: 8px;
    bottom: max(8px, env(safe-area-inset-bottom));
  }
}

@media (max-width: 380px) {
  .header-inner { padding-inline: 12px; }
  .brand img { width: 42px; height: 42px; }
  .lang-button { padding-inline: 10px; }
  .menu-toggle { flex-basis: 42px; width: 42px; height: 42px; }
  .container, .narrow { padding-inline: 13px; }
  .hero h1 { font-size: 2.22rem; }
}

/* Premium centered mobile hero */
@media (max-width: 620px) {
  .hero-media::after {
    background:
      linear-gradient(180deg, rgba(7,9,12,.50) 0%, rgba(7,9,12,.68) 48%, rgba(7,9,12,.84) 100%),
      linear-gradient(90deg, rgba(7,9,12,.22), rgba(7,9,12,.22));
  }
  .hero-content {
    width: min(100%, 390px);
    max-width: 390px;
    margin-inline: auto;
    padding: 64px 18px 116px;
    text-align: center;
  }
  .hero h1 {
    max-width: 355px;
    margin-inline: auto;
    text-wrap: balance;
  }
  .hero p {
    max-width: 345px;
    margin: 22px auto 26px;
    text-wrap: pretty;
  }
  .hero-actions {
    width: min(100%, 360px);
    margin-inline: auto;
  }
  .hero-badges {
    width: min(100%, 315px);
    margin: 28px auto 0;
    justify-items: center;
  }
  .hero-badge {
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .hero-content {
    padding-inline: 16px;
  }
  .hero h1 {
    max-width: 330px;
    font-size: 2.14rem;
  }
  .hero p {
    max-width: 320px;
  }
}

/* Premium centered mobile layout for all inner-page heroes */
@media (max-width: 620px) {
  .subhero {
    min-height: 500px;
    align-items: center;
  }
  .subhero-media::after {
    background:
      linear-gradient(180deg, rgba(7,9,12,.48) 0%, rgba(7,9,12,.66) 48%, rgba(7,9,12,.88) 100%),
      linear-gradient(90deg, rgba(7,9,12,.20), rgba(7,9,12,.20));
  }
  .subhero-content {
    width: min(100%, 390px);
    max-width: 390px;
    margin-inline: auto;
    padding: 70px 18px 64px;
    text-align: center;
  }
  .subhero h1 {
    max-width: 355px;
    margin-inline: auto;
    font-size: clamp(2.15rem, 10vw, 2.9rem);
    line-height: 1.08;
    letter-spacing: -.035em;
    text-wrap: balance;
  }
  .subhero p {
    max-width: 345px;
    margin: 22px auto 28px;
    font-size: .98rem;
    line-height: 1.62;
    text-wrap: pretty;
  }
  .subhero .actions {
    width: min(100%, 360px);
    margin-inline: auto;
    justify-content: center;
  }
  .subhero .actions .btn {
    flex: 1 1 150px;
    min-height: 50px;
  }
}

@media (max-width: 380px) {
  .subhero-content {
    padding-inline: 16px;
  }
  .subhero h1 {
    max-width: 330px;
    font-size: 2.08rem;
  }
  .subhero p {
    max-width: 320px;
  }
}

/* iPhone / iOS Safari: prevent native date and time controls from exceeding the form width */
@supports (-webkit-touch-callout: none) {
  @media (max-width: 620px) {
    .booking-form {
      width: 100%;
      max-width: 100%;
      overflow: hidden;
    }

    .booking-form .field {
      width: 100%;
      max-width: 100%;
      min-width: 0 !important;
      overflow: hidden;
    }

    .booking-form input[type="date"],
    .booking-form input[type="time"],
    .booking-form input[type="datetime-local"] {
      display: block;
      box-sizing: border-box;
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0 !important;
      inline-size: 100% !important;
      max-inline-size: 100% !important;
      min-inline-size: 0 !important;
      font-size: 16px;
      text-align: left;
    }

    .booking-form input[type="date"]::-webkit-date-and-time-value,
    .booking-form input[type="time"]::-webkit-date-and-time-value,
    .booking-form input[type="datetime-local"]::-webkit-date-and-time-value {
      width: 100%;
      min-width: 0;
      text-align: left;
    }

    .booking-form input[type="date"]::-webkit-datetime-edit,
    .booking-form input[type="time"]::-webkit-datetime-edit,
    .booking-form input[type="datetime-local"]::-webkit-datetime-edit {
      min-width: 0;
      padding: 0;
    }
  }
}

/* Floating glass navigation — premium desktop and mobile */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  height: 96px;
  border: 0;
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  pointer-events: none;
}

.site-header .header-inner {
  width: min(calc(100% - 40px), var(--max));
  height: 70px;
  margin-top: 13px;
  padding: 0 14px 0 12px;
  gap: 22px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 24px;
  background: rgba(12,15,19,.78);
  box-shadow: 0 16px 46px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(22px) saturate(145%);
  backdrop-filter: blur(22px) saturate(145%);
  pointer-events: auto;
  transition: height .28s ease, margin .28s ease, color .28s ease, background .28s ease,
              border-color .28s ease, box-shadow .28s ease, transform .28s ease;
}

.site-header.is-scrolled .header-inner {
  height: 66px;
  margin-top: 10px;
  color: var(--ink);
  border-color: rgba(17,19,24,.09);
  background: rgba(255,255,255,.91);
  box-shadow: 0 14px 42px rgba(14,17,23,.16), inset 0 1px 0 rgba(255,255,255,.86);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  backdrop-filter: blur(24px) saturate(150%);
}

.site-header .brand {
  min-width: 178px;
}

.site-header .brand img {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  background: #fff;
  box-shadow: 0 5px 18px rgba(0,0,0,.16);
}

.site-header .brand-text strong { color: inherit; }
.site-header .brand-text span { color: var(--orange-2); }
.site-header.is-scrolled .brand-text span { color: var(--orange-dark); }

.site-header .nav {
  gap: 20px;
}

.site-header .nav a {
  padding: 24px 0;
  color: inherit;
  font-size: .84rem;
}

.site-header .nav a::after {
  bottom: 16px;
  height: 2px;
  background: var(--orange-2);
}

.site-header .lang-button,
.site-header .menu-toggle {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.09);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.site-header .menu-toggle span { background: currentColor; }

.site-header.is-scrolled .lang-button,
.site-header.is-scrolled .menu-toggle {
  color: var(--ink);
  border-color: rgba(17,19,24,.10);
  background: rgba(255,255,255,.78);
  box-shadow: none;
}

.site-header .lang-menu {
  top: calc(100% + 14px);
  border-color: rgba(17,19,24,.09);
  box-shadow: 0 20px 55px rgba(14,17,23,.18);
}

.site-header .header-cta {
  min-height: 44px;
  padding-inline: 18px;
}

/* Header now overlays the first visual section instead of occupying a rigid bar. */
.hero {
  min-height: 100svh;
  padding-top: 96px;
}

.subhero {
  min-height: 650px;
  padding-top: 96px;
}

@media (max-width: 1100px) {
  .site-header .header-inner { gap: 14px; }
  .site-header .brand { min-width: 155px; }
  .site-header .nav { gap: 14px; }
  .site-header .nav a { font-size: .78rem; }
}

@media (max-width: 900px) {
  .site-header {
    height: 84px;
  }

  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    width: calc(100% - 20px);
    height: 64px;
    margin-top: 10px;
    padding: 7px 8px;
    gap: 8px;
    color: #fff;
    border-color: rgba(255,255,255,.15);
    border-radius: 20px;
    background: rgba(12,15,19,.86);
    box-shadow: 0 15px 42px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.08);
    -webkit-backdrop-filter: blur(22px) saturate(145%);
    backdrop-filter: blur(22px) saturate(145%);
  }

  .site-header .brand {
    min-width: 0;
    margin-right: auto;
  }

  .site-header .brand img {
    width: 48px;
    height: 48px;
    flex-basis: 48px;
  }

  .site-header .header-tools {
    margin-left: auto;
    gap: 7px;
  }

  .site-header .lang-button,
  .site-header.is-scrolled .lang-button {
    height: 44px;
    padding-inline: 12px;
    color: #fff;
    border-color: rgba(255,255,255,.16);
    background: rgba(255,255,255,.09);
  }

  .site-header .menu-toggle,
  .site-header.is-scrolled .menu-toggle {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    color: #fff;
    border-color: rgba(255,255,255,.16);
    border-radius: 14px;
    background: rgba(255,255,255,.09);
  }

  .site-header .nav {
    position: fixed;
    z-index: 1001;
    top: 84px;
    right: 10px;
    bottom: auto;
    left: 10px;
    width: auto;
    height: calc(100dvh - 94px);
    margin: 0;
    padding: 18px 18px max(110px, calc(90px + env(safe-area-inset-bottom)));
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 24px;
    background: rgba(12,15,19,.97);
    box-shadow: 0 24px 70px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
    -webkit-backdrop-filter: blur(24px) saturate(135%);
    backdrop-filter: blur(24px) saturate(135%);
    transform: translate3d(0,-18px,0) scale(.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .28s ease, opacity .24s ease, visibility .24s ease;
  }

  .menu-open .site-header .nav {
    transform: translate3d(0,0,0) scale(1);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .site-header .nav a {
    padding: 16px 8px;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,.10);
    font-size: 1.02rem;
  }

  .site-header .nav a[aria-current="page"] {
    color: var(--orange-2);
  }

  .site-header .lang-menu {
    top: calc(100% + 12px);
    right: -52px;
  }

  .menu-open .site-header .header-inner {
    background: rgba(12,15,19,.98);
  }

  .hero {
    min-height: 100svh;
    padding-top: 84px;
  }

  .subhero {
    padding-top: 84px;
  }
}

@media (max-width: 620px) {
  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    width: calc(100% - 16px);
    margin-top: 8px;
    border-radius: 19px;
  }

  .site-header { height: 80px; }

  .site-header .nav {
    top: 80px;
    right: 8px;
    left: 8px;
    height: calc(100dvh - 88px);
    border-radius: 22px;
  }

  .hero { padding-top: 80px; }
  .subhero { padding-top: 80px; }
}

@media (max-width: 380px) {
  .site-header .header-inner,
  .site-header.is-scrolled .header-inner {
    padding-inline: 7px;
  }
  .site-header .brand img {
    width: 45px;
    height: 45px;
    flex-basis: 45px;
  }
  .site-header .lang-button { padding-inline: 10px; }
  .site-header .menu-toggle,
  .site-header.is-scrolled .menu-toggle {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }
}


/* Premium feature cards */
.feature-head { justify-content: center; text-align: center; margin-bottom: 34px; }
.feature-head .section-copy, .feature-head > div { max-width: 820px; margin-inline: auto; }
.feature-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.feature-card { padding: 28px; min-height: 100%; border: 1px solid rgba(17,19,24,.08); border-radius: 28px; background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,255,255,.93)); box-shadow: 0 18px 45px rgba(8,10,13,.08); }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 24px 54px rgba(8,10,13,.12); }
.feature-card .card-icon { width: 60px; height: 60px; border-radius: 18px; margin-bottom: 18px; color: var(--orange-dark); background: linear-gradient(135deg, rgba(245,158,11,.18), rgba(245,158,11,.05)); box-shadow: inset 0 1px 0 rgba(255,255,255,.55); }
.feature-copy { display: flex; flex-direction: column; gap: 10px; }
.feature-label { display: inline-flex; align-items: center; width: fit-content; padding: 7px 12px; border: 1px solid rgba(245,158,11,.18); border-radius: 999px; background: rgba(245,158,11,.08); color: var(--orange-dark); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.feature-card h3 { margin: 0; font-size: 1.22rem; line-height: 1.32; }
.feature-card p { margin: 0; color: #616a78; line-height: 1.72; }
.feature-strip { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 22px; }
.feature-strip span { display: inline-flex; align-items: center; padding: 12px 16px; border: 1px solid rgba(17,19,24,.08); border-radius: 999px; background: rgba(255,255,255,.94); color: #2d3440; font-weight: 700; font-size: .95rem; box-shadow: 0 8px 24px rgba(8,10,13,.06); }
@media (max-width: 1100px) { .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 700px) { .feature-grid { grid-template-columns: 1fr; } .feature-card { padding: 24px; border-radius: 24px; } .feature-strip { justify-content: flex-start; } .feature-strip span { width: 100%; justify-content: center; text-align: center; } }

/* Premium destination cards inside dark sections */
.section.dark .grid.grid-2 > .card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  color: #111318;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fb 100%);
  box-shadow: 0 22px 54px rgba(0,0,0,.24);
}
.section.dark .grid.grid-2 > .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--orange), #ffc14d);
}
.section.dark .grid.grid-2 > .card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,158,11,.32);
  box-shadow: 0 28px 64px rgba(0,0,0,.3);
}
.section.dark .grid.grid-2 > .card h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: #111318;
  font-size: clamp(1.22rem, 1.8vw, 1.5rem);
  line-height: 1.25;
}
.section.dark .grid.grid-2 > .card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 7px rgba(245,158,11,.13);
}
.section.dark .grid.grid-2 > .card .pill-list {
  gap: 11px;
}
.section.dark .grid.grid-2 > .card .pill-list li {
  padding: 10px 14px;
  border-color: rgba(17,19,24,.1);
  color: #343b47;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(17,19,24,.05);
  font-weight: 750;
}
.section.dark .grid.grid-2 > .card .pill-list li:hover {
  border-color: rgba(245,158,11,.42);
  color: #111318;
  background: rgba(245,158,11,.08);
}
@media (max-width: 700px) {
  .section.dark .grid.grid-2 > .card {
    padding: 24px;
    border-radius: 24px;
  }
  .section.dark .grid.grid-2 > .card .pill-list li {
    padding: 9px 12px;
    font-size: .84rem;
  }
}
