:root {
  --bg: #0a0a0a;
  --bg-elevated: #12110f;
  --bg-card: #161410;
  --gold: #c2a56a;
  --gold-soft: #dcc9a4;
  --gold-dim: rgba(201, 163, 90, 0.16);
  --ivory: #f4efe6;
  --muted: #c8c0b2;
  --line: rgba(201, 163, 90, 0.28);
  --line-soft: rgba(244, 239, 230, 0.12);
  --cta-text: #14110c;
  --header-h: 72px;
  --hero-pos: center 46%;
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --radius: 6px;
  --max: 1180px;
  --font-serif: "Playfair Display", "Times New Roman", serif;
  --font-sans: Inter, system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: 220ms ease;
  --shadow-gold: 0 10px 30px rgba(0, 0, 0, 0.35);
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

html,
body {
  margin: 0;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ivory);
  font-size: 1.0625rem;
  line-height: 1.7;
  min-height: 100vh;
  padding-bottom: 4.5rem;
}

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

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

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

h1 {
  font-size: clamp(2.35rem, 7vw, 5.1rem);
}

h2 {
  font-size: clamp(1.85rem, 4.2vw, 3.15rem);
}

h3 {
  font-size: 1.2rem;
}

p {
  margin: 0;
  color: var(--muted);
  overflow-wrap: break-word;
}

address {
  font-style: normal;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  z-index: 80;
  background: var(--gold);
  color: var(--cta-text);
  padding: 10px 16px;
  font-weight: 600;
  border-radius: 4px;
}

.skip-link:focus {
  top: 12px;
}

.noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

.section {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 0;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--gold-soft);
  font-weight: 500;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  transition: border-color var(--ease), color var(--ease);
}

.text-link::after {
  content: "→";
}

.text-link:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background-color var(--ease), border-color var(--ease), color var(--ease);
}

.btn-gold {
  background: var(--gold);
  color: var(--cta-text);
}

.btn-gold:hover {
  background: var(--gold-soft);
}

.btn-ghost {
  background: rgba(8, 10, 12, 0.2);
  border-color: rgba(244, 239, 230, 0.38);
  color: var(--ivory);
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-soft);
}

.btn-light {
  background: var(--ivory);
  color: var(--cta-text);
}

.btn-light:hover {
  background: var(--gold-soft);
}

.btn.full {
  width: 100%;
}

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

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

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}

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

.brand-mark {
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  object-fit: contain;
  border-radius: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.34));
}

.brand-text {
  font-family: var(--font-serif);
  font-size: clamp(1.18rem, 1.8vw, 1.52rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: var(--ivory);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-soft);
  border-radius: 4px;
  cursor: pointer;
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
  display: block;
  width: 18px;
  height: 1.5px;
  background: currentColor;
  position: relative;
  transition: transform var(--ease), opacity var(--ease);
}

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

.menu-toggle-icon::before {
  top: -6px;
}

.menu-toggle-icon::after {
  top: 6px;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-toggle-icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav {
  display: none;
}

.nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
  transition: color var(--ease);
}

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

.nav-cta {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: var(--gold);
  color: var(--cta-text) !important;
}

.nav-cta:hover {
  background: var(--gold-soft);
  color: var(--cta-text) !important;
}

.hero {
  position: relative;
  min-height: min(860px, calc(100svh - var(--header-h)));
  display: grid;
  align-items: end;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  isolation: isolate;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: var(--hero-pos);
  filter: saturate(0.94) contrast(1.06) brightness(1);
}

.hero-water {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: soft-light;
  opacity: 0.55;
  background:
    radial-gradient(ellipse 180px 46px at 18% 30%, rgba(255, 255, 255, 0.55), transparent 70%),
    radial-gradient(ellipse 220px 56px at 42% 58%, rgba(210, 228, 236, 0.4), transparent 72%),
    radial-gradient(ellipse 140px 38px at 64% 40%, rgba(255, 252, 245, 0.42), transparent 70%),
    radial-gradient(ellipse 200px 50px at 84% 70%, rgba(255, 255, 255, 0.32), transparent 72%),
    radial-gradient(ellipse 110px 32px at 30% 78%, rgba(190, 214, 224, 0.35), transparent 70%);
  background-size: 160% 140%;
  animation: pool-shimmer 28s ease-in-out infinite;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1180'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='.72' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='.78' stop-color='%23fff' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='2000' height='1180' fill='url(%23g)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1180'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='.72' stop-color='%23fff' stop-opacity='0'/%3E%3Cstop offset='.78' stop-color='%23fff' stop-opacity='1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='2000' height='1180' fill='url(%23g)'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: var(--hero-pos);
  mask-position: var(--hero-pos);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-clouds {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  mix-blend-mode: screen;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1180'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23fff' stop-opacity='1'/%3E%3Cstop offset='.30' stop-color='%23fff' stop-opacity='1'/%3E%3Cstop offset='.40' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='2000' height='1180' fill='url(%23g)'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 2000 1180'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='0' y2='1'%3E%3Cstop offset='0' stop-color='%23fff' stop-opacity='1'/%3E%3Cstop offset='.30' stop-color='%23fff' stop-opacity='1'/%3E%3Cstop offset='.40' stop-color='%23fff' stop-opacity='0'/%3E%3C/linearGradient%3E%3C/defs%3E%3Crect width='2000' height='1180' fill='url(%23g)'/%3E%3C/svg%3E");
  -webkit-mask-size: cover;
  mask-size: cover;
  -webkit-mask-position: var(--hero-pos);
  mask-position: var(--hero-pos);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.hero-cloud {
  position: absolute;
  left: -24%;
  width: 148%;
  pointer-events: none;
}

.hero-cloud-a {
  top: -8%;
  height: 42%;
  opacity: 0.34;
  filter: blur(18px);
  background:
    radial-gradient(ellipse 240px 72px at 16% 46%, rgba(255, 250, 240, 0.55) 0%, transparent 70%),
    radial-gradient(ellipse 300px 88px at 42% 28%, rgba(255, 255, 255, 0.28) 0%, transparent 72%),
    radial-gradient(ellipse 260px 80px at 68% 52%, rgba(244, 239, 230, 0.32) 0%, transparent 70%),
    radial-gradient(ellipse 340px 96px at 90% 30%, rgba(255, 252, 245, 0.24) 0%, transparent 74%);
  animation: cloud-drift-a 64s ease-in-out infinite;
}

.hero-cloud-b {
  top: -2%;
  height: 36%;
  opacity: 0.22;
  filter: blur(24px);
  background:
    radial-gradient(ellipse 280px 80px at 12% 58%, rgba(255, 255, 255, 0.4) 0%, transparent 70%),
    radial-gradient(ellipse 220px 68px at 50% 20%, rgba(228, 208, 160, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 320px 88px at 82% 54%, rgba(255, 250, 240, 0.28) 0%, transparent 72%);
  animation: cloud-drift-b 86s ease-in-out infinite;
}

.hero-media.is-still .hero-water,
.hero-media.is-still .hero-clouds {
  display: none;
}

@keyframes cloud-drift-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(6%, 1.6%, 0);
  }
}

@keyframes cloud-drift-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(-7%, 1.8%, 0);
  }
}

@keyframes pool-shimmer {
  0%,
  100% {
    background-position: 8% 28%, 40% 62%, 70% 38%, 88% 72%, 24% 80%;
  }
  50% {
    background-position: 22% 48%, 18% 42%, 56% 66%, 74% 36%, 38% 70%;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(6, 8, 10, 0.14) 0%, rgba(6, 8, 10, 0.06) 40%, rgba(6, 8, 10, 0.58) 100%),
    linear-gradient(90deg, rgba(6, 8, 10, 0.62) 0%, rgba(6, 8, 10, 0.28) 38%, rgba(6, 8, 10, 0.06) 68%, rgba(6, 8, 10, 0.01) 100%);
}

.hero-shell {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding-top: clamp(96px, 13vh, 148px);
  padding-bottom: 28px;
}

.hero-content {
  max-width: 720px;
  padding: 8px 0 28px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.28);
}

.hero-content h1 {
  font-size: clamp(2.7rem, 5.6vw, 5.05rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero-content h1 em {
  color: #cbb485;
  font-weight: 500;
}

.hero-lead {
  max-width: 38rem;
  margin: 18px 0 28px;
  color: rgba(244, 239, 230, 0.86);
  font-size: clamp(0.98rem, 1.2vw, 1.08rem);
  letter-spacing: 0.01em;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.42);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.hero-actions .btn {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 50px;
  padding-inline: 26px;
  box-shadow: none;
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  width: fit-content;
  max-width: 100%;
  margin: 0 0 8px;
  padding: 14px 8px 4px;
  list-style: none;
  border-top: 1px solid rgba(244, 239, 230, 0.14);
}

.hero-strip li {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.72);
}

.intro-grid {
  display: grid;
  gap: 28px;
}

.intro-copy p {
  max-width: 38rem;
}

.section-head {
  display: grid;
  gap: 16px;
  margin-bottom: clamp(32px, 5vw, 56px);
}

.section-head p {
  max-width: 34rem;
}

.destination-grid {
  display: grid;
  gap: 16px;
}

.destination-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
}

.destination-card a {
  display: block;
  height: 100%;
  min-height: 320px;
  cursor: pointer;
  color: var(--ivory);
}

.destination-card img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04) brightness(0.96);
}

.destination-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 88px 22px 22px;
  background: linear-gradient(180deg, transparent, rgba(10, 10, 10, 0.88));
}

.destination-copy span {
  display: block;
  margin-bottom: 6px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-soft);
}

.destination-copy h3 {
  margin-bottom: 6px;
}

.destination-copy p {
  color: #ddd6c8;
}

.destination-card a:hover img {
  filter: saturate(0.9) contrast(1.05) brightness(1);
}

.service-grid,
.why-grid {
  display: grid;
  gap: 16px;
}

.service,
.why-item {
  padding: 28px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
}

.service-index {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.service h3,
.why-item h3 {
  margin-bottom: 10px;
}

.feature-banner {
  display: grid;
  min-height: 520px;
  background: #0d0c0b;
}

.feature-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}

.feature-content {
  padding: 40px 20px 48px;
}

.feature-content p:not(.eyebrow) {
  max-width: 36rem;
  margin: 16px 0 28px;
}

.why-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  color: var(--gold);
}

.why-icon svg {
  width: 28px;
  height: 28px;
}

.inquiry {
  display: grid;
  gap: 40px;
}

.inquiry-copy p {
  max-width: 36rem;
  margin-top: 16px;
}

.contact-mini {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 28px;
}

.contact-mini a {
  color: var(--gold-soft);
  font-weight: 500;
  cursor: pointer;
}

.contact-mini a:hover {
  color: var(--gold);
}

.travel-form {
  display: grid;
  gap: 18px;
  padding: 24px 20px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.form-row {
  display: grid;
  gap: 18px;
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--ivory);
}

.field input,
.field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ivory);
  background: #0e0d0b;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}

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

.field input:hover,
.field textarea:hover,
.field input:focus,
.field textarea:focus {
  border-color: var(--gold);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #8f877b;
}

.form-note {
  font-size: 0.86rem;
  color: var(--muted);
}

.form-note.is-error {
  color: #f0c7b0;
}

.contact-card {
  display: grid;
  gap: 24px;
  padding: 32px 24px;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.contact-card img {
  width: 56px;
  height: 56px;
}

.tagline {
  margin-top: 8px;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold-soft);
}

.contact-details {
  display: grid;
  gap: 18px;
}

.contact-details small {
  display: block;
  margin-bottom: 4px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.68rem;
  color: var(--gold);
}

.contact-details a,
.contact-details strong,
.contact-details address {
  color: var(--ivory);
}

.contact-details a {
  cursor: pointer;
}

.contact-details a:hover {
  color: var(--gold-soft);
}

.footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 32px;
  border-top: 1px solid var(--line-soft);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

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

.footer-brand strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.1rem;
}

.footer-brand span {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}

.footer-links a {
  color: var(--muted);
  cursor: pointer;
}

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

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
}

.whatsapp {
  position: fixed;
  right: max(16px, env(safe-area-inset-right));
  bottom: max(16px, env(safe-area-inset-bottom));
  z-index: 40;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #12110f;
  color: var(--gold);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-gold);
  cursor: pointer;
  transition: background-color var(--ease), color var(--ease);
}

.whatsapp:hover {
  background: var(--gold);
  color: var(--cta-text);
}

.nav.is-open {
  display: flex;
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 45;
  flex-direction: column;
  gap: 8px;
  padding: 28px 24px 40px;
  background: rgba(10, 10, 10, 0.97);
}

.nav.is-open a {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--ivory);
  min-height: 48px;
  display: flex;
  align-items: center;
}

.nav.is-open .nav-cta {
  margin-top: 12px;
  width: fit-content;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0 22px;
}

body.menu-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 759px) {
  :root {
    --hero-pos: 55% 46%;
  }

  .hero {
    min-height: 760px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(6, 8, 10, 0.22) 0%, rgba(6, 8, 10, 0.18) 42%, rgba(6, 8, 10, 0.78) 100%),
      linear-gradient(90deg, rgba(6, 8, 10, 0.52), rgba(6, 8, 10, 0.08));
  }

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

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .hero-actions .btn {
    width: auto;
  }
}

@media (min-width: 768px) {
  :root {
    --header-h: 80px;
  }

  body {
    padding-bottom: 0;
  }

  .section,
  .hero-shell,
  .footer {
    width: min(var(--max), calc(100% - 64px));
  }

  .site-header {
    padding: 12px 32px;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

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

  .hero-shell {
    padding-top: clamp(96px, 13vh, 148px);
  }

  .hero-content {
    max-width: 760px;
    padding-bottom: 40px;
  }

  .hero-strip {
    gap: 10px 28px;
    padding: 20px 0 26px;
  }

  .hero-strip li {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .intro-grid,
  .section-head,
  .inquiry {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
  }

  .feature-banner {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }

  .destination-grid,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-media img {
    height: 100%;
    min-height: 520px;
  }

  .feature-content {
    padding: 56px 40px;
  }

  .travel-form {
    padding: 32px;
  }

  .form-row {
    grid-template-columns: 1.4fr 0.8fr;
  }

  .contact-details {
    grid-template-columns: 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 960px) {
  .menu-toggle {
    display: none;
  }

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

@media (min-width: 1024px) {
  .site-header {
    padding: 14px 48px;
  }

  .nav {
    gap: 28px;
  }

  .section,
  .hero-shell,
  .footer {
    width: min(var(--max), calc(100% - 96px));
  }

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

  .destination-card,
  .destination-card a,
  .destination-card img {
    min-height: 420px;
  }

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

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

  .inquiry {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

@media (min-width: 1440px) {
  .site-header {
    padding-left: max(48px, calc((100% - var(--max)) / 2));
    padding-right: max(48px, calc((100% - var(--max)) / 2));
  }

  .section,
  .hero-shell,
  .footer {
    width: var(--max);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero-fx,
  .hero-water,
  .hero-clouds {
    display: none;
  }
}

.section[id],
#inquiry {
  scroll-margin-top: calc(var(--header-h) + 10px);
}

.js .reveal,
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .js .reveal,
  .js .reveal.is-visible {
    opacity: 1;
    transform: none;
  }
}
