@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/pxiEyp8kv8JHgFVrJJnecnFHGPezSQ.woff2') format('woff2');
}

.palms-wp-embed-ready .animate-up,
.palms-wp-embed-ready .animate-in,
.palms-wp-embed-ready .animate-scale,
.palms-wp-embed-ready .reveal {
  opacity: 1 !important;
}

.palms-landing-root {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow-x: clip;
  isolation: isolate;
}

.palms-landing-root,
.palms-landing-root * {
  box-sizing: border-box;
}
@font-face {
  font-family: 'Poppins';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/pxiDyp8kv8JHgFVrJJLmr19VFteOYktMqlap.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/pxiGyp8kv8JHgFVrJJLucHtAOvWDSA.woff2') format('woff2');
}

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

:root {
  --navy:        #1e3448;
  --navy-dark:   #172a3a;
  --navy-deeper: #112030;
  --gold:        #b8892a;
  --gold-light:  #cc9e3a;
  --gold-dim:    rgba(184,137,42,0.15);
  --white:       #ffffff;
  --bg-primary:  #f2efe8;
  --bg-secondary:#ffffff;
  --bg-warm:     #ede9e0;
  --bg-section:  #f7f5f0;
  --text-primary:   #1e3448;
  --text-secondary: #4a5e70;
  --text-muted:     #8a9baa;
  --text-dim:       #b0bec8;
  --border-light:   #e2ddd5;
  --border-subtle:  rgba(30,52,72,0.1);
  --radius: 6px;
  --radius-lg: 12px;
  --radius-pill: 100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Poppins', sans-serif; background: var(--bg-primary); color: var(--text-primary); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; padding-bottom: 16rem; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

@keyframes fadeUp { from { opacity:0; transform:translateY(28px); } to { opacity:1; transform:none; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes scaleIn { from { opacity:0; transform:scale(0.96); } to { opacity:1; transform:scale(1); } }
.animate-up { opacity:0; }
.animate-up.visible { animation: fadeUp 0.6s ease forwards; }
.animate-in { opacity:0; }
.animate-in.visible { animation: fadeIn 0.5s ease forwards; }
.animate-scale { opacity:0; }
.animate-scale.visible { animation: scaleIn 0.5s ease forwards; }
.delay-1 { animation-delay:0.1s !important; }
.delay-2 { animation-delay:0.2s !important; }
.delay-3 { animation-delay:0.3s !important; }
.delay-4 { animation-delay:0.4s !important; }

nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 4rem; height: 72px;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border-light), 0 4px 24px rgba(30,52,72,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 1px 0 var(--border-light), 0 8px 32px rgba(30,52,72,0.1); }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; white-space: nowrap; }
.nav-logo-text { font-size: 1rem; font-weight: 600; color: var(--navy); letter-spacing: 0.18em; }
.nav-logo-image,
.nav-logo-svg { height: 32px; width: auto; display: block; }
.nav-logo-svg .nl0, .nav-logo-svg .nl1 { fill: var(--navy); transition: fill 0.2s; }
.nav-logo:hover .nav-logo-svg .nl0,
.nav-logo:hover .nav-logo-svg .nl1 { fill: var(--gold); }
.nav-links { display: flex; align-items: center; justify-content: flex-end; gap: 1.35rem; flex: 1; min-width: 0; }
.nav-links a {
  font-size: 0.625rem; font-weight: 500; color: var(--text-secondary);
  letter-spacing: 0.14em; text-transform: uppercase; white-space: nowrap;
  transition: color 0.2s; position: relative;
}
.nav-links a:hover { color: var(--gold); }

.nav-hamburger {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 4px;
}
.nav-hamburger span {
  display: block; width: 100%; height: 1.5px; background: var(--navy);
  border-radius: 2px; transition: transform 0.3s, opacity 0.3s; transform-origin: center;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-dropdown {
  display: none; position: fixed; top: 72px; left: 0; right: 0;
  background: rgba(255,255,255,0.99); backdrop-filter: blur(14px);
  z-index: 199; border-bottom: 1px solid var(--border-light);
  padding: 1.25rem 1.5rem 1.5rem;
  transform: translateY(-8px); opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  pointer-events: none;
}
.nav-dropdown.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.nav-dropdown a {
  display: block; padding: 0.875rem 0; color: var(--text-secondary);
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  border-bottom: 1px solid var(--border-light); transition: color 0.2s;
}
.nav-dropdown a:last-of-type { border-bottom: none; }
.nav-dropdown a:hover { color: var(--gold); }
.nav-dropdown-social {
  display: flex; gap: 12px; margin-top: 1.25rem; padding-top: 1.25rem;
  border-top: 1px solid var(--border-light);
}
.nav-dropdown-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--bg-section); border: 1px solid var(--border-light);
  color: var(--navy); transition: background 0.2s, color 0.2s, transform 0.2s;
  font-size: 1.1rem;
}
.nav-dropdown-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: scale(1.08); }
.nav-dropdown-social a i { line-height: 1; }

.hero {
  min-height: 100vh; position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: center; overflow: hidden;
  background: linear-gradient(135deg, var(--navy-deeper) 0%, var(--navy) 100%);
  padding-top: 72px;
}
.hero-video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center; opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(23,36,54,0.58) 0%, rgba(23,36,54,0.68) 60%, rgba(23,36,54,0.88) 100%);
}
.hero-content { position: relative; z-index: 2; text-align: center; padding: 0 1.5rem; width: 100%; max-width: 800px; }
.hero-badge {
  display: inline-block; background: var(--gold-dim);
  border: 1px solid rgba(184,137,42,0.35); color: var(--gold);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.5rem 1.25rem; border-radius: var(--radius-pill);
  margin-bottom: 2rem; animation: fadeIn 1s ease 0.2s both;
}
.hero-title-top {
  font-size: clamp(1.35rem, 2.5vw, 2.25rem); font-weight: 400; color: var(--white);
  letter-spacing: 0.06em; text-transform: uppercase; line-height: 1.1;
  animation: fadeUp 0.8s ease 0.4s both;
}
.hero-title-script {
  font-style: normal; font-size: clamp(3.2rem, 6vw, 5.75rem); color: var(--gold);
  font-weight: 500; line-height: 0.95; display: block; margin: 0.2rem 0 0;
  animation: fadeUp 0.8s ease 0.6s both;
}
.hero-subtitle {
  color: rgba(255,255,255,0.72); font-size: 1rem; font-weight: 300;
  line-height: 1.75; max-width: 600px; margin: 0 auto 2.5rem;
  animation: fadeUp 0.8s ease 0.8s both;
}
.hero-subtitle strong { color: var(--white); font-weight: 500; }
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-bottom: 3rem; animation: fadeUp 0.8s ease 1s both; }

.btn-gold {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold); color: var(--white); border: none;
  border-radius: var(--radius-pill); padding: 0.875rem 2rem;
  font-family: 'Poppins', sans-serif; font-size: 0.6875rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  box-shadow: 0 4px 18px rgba(184,137,42,0.22);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  white-space: nowrap;
}
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 6px 24px rgba(184,137,42,0.32); }
.btn-outline-white {
  display: inline-flex; align-items: center; justify-content: center;
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: var(--radius-pill); padding: 0.875rem 2rem;
  font-family: 'Poppins', sans-serif; font-size: 0.6875rem; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.12); transform: translateY(-1px); }

.hero-search {
  position: relative; z-index: 2; width: 100%; max-width: 860px;
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 8px 48px rgba(0,0,0,0.22); display: flex; align-items: stretch;
  overflow: hidden; animation: fadeUp 0.8s ease 1.2s both;
}
.search-field {
  flex: 1; display: flex; flex-direction: column;
  padding: 1.1rem 1.5rem; border-right: 1px solid var(--border-light); min-width: 0;
}
.search-field:last-of-type { border-right: none; }
.search-label {
  font-size: 0.5rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.35rem;
}
.search-field input {
  font-family: 'Poppins', sans-serif; font-size: 0.9375rem; font-weight: 400;
  color: var(--navy); background: transparent; border: none; outline: none; width: 100%;
}
.search-submit {
  flex-shrink: 0; background: var(--gold); color: var(--white); border: none;
  padding: 0 2rem; font-family: 'Poppins', sans-serif; font-size: 0.6875rem;
  font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; cursor: pointer;
  display: flex; align-items: center; gap: 0.6rem;
  transition: background 0.2s; white-space: nowrap;
}
.search-submit:hover { background: var(--gold-light); }

section { padding: 6rem 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 3rem; }

.section-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.5625rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1.5rem;
}
.section-eyebrow::before { content: '-'; font-weight: 300; letter-spacing: 0; color: var(--gold); }
.section-title {
  font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 400;
  color: var(--navy); line-height: 1.15; margin-bottom: 1.25rem; letter-spacing: -0.01em;
}
.section-title .gold, .section-title span { color: var(--gold); font-weight: 500; }
.section-lead {
  font-size: 0.9375rem; font-weight: 300; color: var(--text-secondary);
  max-width: 560px; line-height: 1.75; margin-bottom: 2.5rem; margin-top: 0;
}
.section-cta { text-align: center; padding-top: 3rem; }
.text-center { text-align: center; }
.section-lead.center { text-align: center; margin-left: auto; margin-right: auto; }

.packages-section { background: var(--bg-section); }
.package-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; margin: 2rem 0 3rem; }
.tab-btn {
  font-family: 'Poppins', sans-serif; font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-secondary);
  background: var(--bg-secondary); border: 1px solid var(--border-light);
  border-radius: var(--radius-pill); padding: 0.625rem 1.25rem; cursor: pointer; transition: all 0.2s;
}
.tab-btn:hover { border-color: var(--gold); color: var(--gold); }
.tab-btn.active { background: var(--gold); border-color: var(--gold); color: var(--white); }
.package-content { display: none; }
.package-content.active { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; animation: fadeIn 0.4s ease; }
.pkg-eyebrow {
  display: flex; align-items: center; gap: 0.6rem;
  font-size: 0.5625rem; font-weight: 600; color: var(--gold);
  letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 1rem;
}
.pkg-eyebrow::before { content: '-'; font-weight: 300; color: var(--gold); }
.pkg-title { font-size: clamp(1.625rem, 2.8vw, 2.5rem); font-weight: 300; line-height: 1.15; color: var(--navy); margin-bottom: 0; letter-spacing: -0.01em; }
.pkg-title .gold, .pkg-title span { color: var(--gold); font-weight: 400; }
.pkg-disclaimer { font-size: 0.75rem; font-weight: 300; color: var(--text-muted); font-style: italic; margin-bottom: 1.75rem; }
.pkg-images { display: flex; flex-direction: column; gap: 1rem; }
.pkg-images img { width: 100%; border-radius: var(--radius-lg); object-fit: cover; height: 260px; transition: transform 0.4s ease; border: 1px solid var(--border-light); }
.pkg-images img:hover { transform: scale(1.03); }

.flights-section { background: var(--bg-secondary); }

.rooms-section { background: var(--bg-section); }
.rooms-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.75rem; margin-top: 2rem; }
.rooms-grid-wrap { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; }
.rooms-grid-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.rooms-grid-wrap:hover img { transform: scale(1.06); }

.nightlife-section { background: var(--navy); color: var(--white); }
.nightlife-section .section-title { color: var(--white); }
.nightlife-section .section-lead { color: rgba(255,255,255,0.55); }
.nightlife-section .section-eyebrow { color: rgba(184,137,42,0.9); }
.nightlife-section .section-eyebrow::before { color: rgba(184,137,42,0.6); }
.nightlife-badge {
  display: inline-block; border: 1px solid rgba(184,137,42,0.6); color: var(--gold);
  font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  padding: 0.5rem 1.5rem; border-radius: var(--radius-pill); margin-bottom: 1.5rem;
}
.nightlife-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3.5rem; }
.night-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2.5rem 2rem; text-align: center;
  transition: border-color 0.2s, background 0.2s, transform 0.3s;
}
.night-card:hover { border-color: rgba(184,137,42,0.35); background: rgba(184,137,42,0.05); transform: translateY(-4px); }
.night-card-icon { font-size: 2.5rem; display: block; margin-bottom: 1.25rem; }
.night-card h3 { font-size: 1rem; font-weight: 500; color: var(--white); margin-bottom: 0.75rem; }
.night-card p { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.65; }

.gallery-section { background: var(--bg-section); }
.gallery-section .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.gallery-strip {
  display: flex; gap: 0.75rem; margin-top: 3rem; overflow-x: auto;
  padding-bottom: 0.75rem; scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--gold) transparent;
  cursor: grab;
}
.gallery-strip::-webkit-scrollbar { height: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }
.gallery-strip.grabbing { cursor: grabbing; }
.gallery-strip img {
  flex-shrink: 0; width: 280px; height: 200px; object-fit: cover;
  border-radius: var(--radius); border: 1px solid var(--border-light);
  scroll-snap-align: start; pointer-events: none; transition: transform 0.4s;
}
.gallery-strip img:hover { transform: scale(1.04); }

.virtual-section { background: var(--bg-secondary); }
.virtual-embed { margin-top: 2rem; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-light); box-shadow: 0 8px 40px rgba(30,52,72,0.08); }
.virtual-embed iframe { width: 100%; height: 450px; border: none; display: block; }

.contact-section { background: var(--bg-section); }
.contact-section .section-title { text-align: center; margin-left: auto; margin-right: auto; }
.contact-section .section-lead { text-align: center; margin-left: auto; margin-right: auto; }
.contact-form { max-width: 780px; margin: 2.5rem auto 0; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-label { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-secondary); }
.form-input, .form-select, .form-textarea {
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; font-weight: 300;
  color: var(--navy); background: var(--bg-secondary);
  border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 0.75rem 1rem; outline: none; width: 100%; resize: vertical;
  transition: border-color 0.2s, background 0.2s;
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-dim); }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); background: var(--white); box-shadow: 0 0 0 3px var(--gold-dim); }
.form-textarea { min-height: 130px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.75rem; }
.form-checkbox input { margin-top: 0.2rem; accent-color: var(--gold); flex-shrink: 0; width: 1rem; height: 1rem; cursor: pointer; }
.form-checkbox label { font-size: 0.8125rem; font-weight: 300; color: var(--text-secondary); line-height: 1.5; cursor: pointer; }
.btn-submit {
  width: 100%; background: var(--gold); color: var(--white); border: none;
  border-radius: var(--radius); padding: 1rem; font-family: 'Poppins', sans-serif;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; box-shadow: 0 4px 18px rgba(184,137,42,0.22);
  transition: background 0.2s, transform 0.15s;
}
.btn-submit:hover { background: var(--gold-light); transform: translateY(-1px); }

.faq-section { background: var(--bg-section); padding-top: 0; }
.faq-list { max-width: 760px; margin: 2rem auto 0; display: flex; flex-direction: column; gap: 0.5rem; }
.faq-item { border: 1px solid var(--border-light); border-radius: var(--radius); overflow: hidden; background: var(--bg-secondary); transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(184,137,42,0.35); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 1.5rem; cursor: pointer; font-size: 0.9375rem; font-weight: 400;
  color: var(--navy); transition: background 0.2s; gap: 1rem; width: 100%;
  background: transparent; border: none; text-align: left; font-family: 'Poppins', sans-serif;
}
.faq-q:hover { background: var(--bg-warm); }
.faq-item.open .faq-q { background: var(--gold-dim); }
.faq-chevron { font-size: 1.25rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s ease; line-height: 1; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; padding: 0 1.5rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
  font-size: 0.875rem; font-weight: 300; color: var(--text-secondary); line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 1.5rem 1.5rem; }

footer {
  background: var(--navy-deeper); color: rgba(255,255,255,0.5);
  padding: 2.25rem 2rem 1.5rem; border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-inner { max-width: 1160px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.15rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.footer-links a {
  font-size: 0.6875rem; font-weight: 400; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.45); transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.55);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
.footer-social a:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.footer-social a svg { width: 16px; height: 16px; fill: currentColor; }
.footer-contact { font-size: 0.875rem; font-weight: 300; color: rgba(255,255,255,0.55); line-height: 1.9; text-align: center; }
.footer-contact a { transition: color 0.2s; }
.footer-contact a:hover { color: var(--gold); }
.footer-mark { 
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.65rem 1.35rem;
  border-radius: var(--radius-pill);
  margin: 0.5rem 0;
}
.footer-mark:hover {
  color: var(--gold);
  border-color: var(--gold);
}
.footer-disclaimer { max-width: 820px; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-disclaimer p { font-size: 0.6875rem; font-weight: 300; color: rgba(255,255,255,0.28); line-height: 1.65; margin-bottom: 0.5rem; }
.footer-disclaimer a { color: rgba(184,137,42,0.7); text-decoration: underline; }
.footer-disclaimer a:hover { color: var(--gold); }
.footer-credit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: -0.25rem;
}
.footer-credit img {
  width: 138px;
  height: auto;
  display: block;
  opacity: 0.92;
}
.footer-bottom { font-size: 0.6875rem; font-weight: 300; color: rgba(255,255,255,0.28); text-align: center; }

.inline-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.inline-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; }
.form-grid-2   { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.25rem; }
.newsletter-row { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }
.newsletter-input-wrap { display: flex; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-pill); overflow: hidden; max-width: 420px; width: 100%; }
.newsletter-input-wrap input { flex:1; background:transparent; border:none; outline:none; padding:0.875rem 1.5rem; font-family:'Poppins',sans-serif; font-size:0.875rem; font-weight:300; color:var(--white); min-width:0; }

#cookieBanner { position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999; background: var(--navy-deeper); border-top: 1px solid rgba(255,255,255,0.1); padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
#cookieBanner.hidden { display: none; }
body.cookie-accepted .contact-dock { bottom: 1rem; }
body:not(.cookie-accepted) .contact-dock { bottom: 7rem; transition: bottom 0.3s ease; }
#cookieBanner p { font-size: 0.8125rem; font-weight: 300; color: rgba(255,255,255,0.65); line-height: 1.5; flex: 1; min-width: 260px; }
#cookieBanner p a { color: var(--gold); text-decoration: underline; }
.cookie-btns { display: flex; gap: 0.75rem; flex-shrink: 0; flex-wrap: wrap; }
.cookie-accept { background: var(--gold); color: var(--white); border: none; border-radius: var(--radius-pill); padding: 0.625rem 1.5rem; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: background 0.2s; }
.cookie-accept:hover { background: var(--gold-light); }
.cookie-decline { background: transparent; color: rgba(255,255,255,0.5); border: 1px solid rgba(255,255,255,0.2); border-radius: var(--radius-pill); padding: 0.625rem 1.25rem; font-family: 'Poppins', sans-serif; font-size: 0.75rem; font-weight: 400; cursor: pointer; transition: color 0.2s, border-color 0.2s; }
.cookie-decline:hover { color: var(--white); border-color: rgba(255,255,255,0.4); }

.whatsapp-float {
  position: fixed; bottom: 8.25rem; right: 2rem; z-index: 999;
  background: #25D366; color: var(--white); width: 56px; height: 56px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  text-decoration: none; font-size: 1.5rem;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35); transition: transform 0.2s, box-shadow 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 25px rgba(37, 211, 102, 0.45); }

body:not(.cookie-accepted) .whatsapp-float {
  bottom: 14.25rem;
  transition: bottom 0.3s ease;
}

.whatsapp-mobile-cta {
  display: none;
}

@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .container { padding: 0 2rem; }
  .rooms-grid { grid-template-columns: repeat(3, 1fr); }
  .nightlife-cards { grid-template-columns: 1fr 1fr; }
  .package-content.active { gap: 2.5rem; }
}

@media (max-width: 768px) {
  nav { padding: 0 1.25rem; height: 64px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-dropdown { display: block; top: 64px; }
  .container { padding: 0 1.25rem; }
  section { padding: 4rem 0; }
  .hero { padding-top: 64px; }
  .hero-content { padding: 0 1.25rem; }
  .hero-title-top { line-height: 1.4; margin-bottom: 0.5rem; }
  .hero-title-script { line-height: 1.1; margin-bottom: 0.75rem; }
  .hero-subtitle { font-size: 0.9rem; margin-bottom: 2rem; line-height: 1.8; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 0.75rem; margin-bottom: 2rem; }
  .hero-buttons .btn-gold, .hero-buttons .btn-outline-white { width: 100%; max-width: 280px; text-align: center; }
  .hero-search { flex-direction: column; border-radius: var(--radius-lg); width: 100%; max-width: 420px; }
  .search-field { border-right: none; border-bottom: 1px solid var(--border-light); flex: none; }
  .search-field:last-of-type { border-bottom: none; }
  .search-submit { padding: 1rem 1.25rem; justify-content: center; }
  .package-content.active { grid-template-columns: 1fr; gap: 2rem; }
  .pkg-images { display: grid; grid-template-columns: 1fr 1fr; }
  .pkg-new-price { font-size: 1.625rem; }
  .rooms-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
  .nightlife-cards { grid-template-columns: 1fr; gap: 1rem; }
  .night-card { padding: 1.75rem 1.25rem; }
  .gallery-strip img { width: 220px; height: 160px; }
  footer { padding: 2.5rem 1.25rem 1.5rem; }
  .footer-links { gap: 1rem; flex-direction: column; align-items: center; }
  .section-cta { padding: 2rem 1rem; }
}

@media (max-width: 480px) {
  .hero-title-script { font-size: clamp(3rem, 14vw, 5rem); }
  .hero-title-top { font-size: clamp(1.25rem, 6.5vw, 2rem); }
  .section-title { font-size: 1.625rem; }
  .rooms-grid { grid-template-columns: 1fr 1fr; }
  .pkg-images { grid-template-columns: 1fr; }
  .pkg-title { font-size: 1.5rem; }
  .gallery-strip img { width: 180px; height: 130px; }
}

@media (max-width: 768px) {
  .inline-grid-3 { grid-template-columns: 1fr; gap: 1rem; }
  .inline-grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .form-grid-2   { grid-template-columns: 1fr; }
  .newsletter-row { flex-direction: column; align-items: center; }
  .newsletter-input-wrap { max-width: 100%; }
  #cookieBanner { padding: 1rem 1.25rem; }
  #cookieBanner p { font-size: 0.75rem; }
}

/* Heading scale override */
.section-title { font-size: clamp(1.45rem, 2vw, 2rem) !important; }
.pkg-title { font-size: clamp(1.2rem, 1.7vw, 1.7rem) !important; }
.hero-panel-title { font-size: 0.98rem !important; }
.newsletter-card-title { font-size: 1rem !important; }
.contact-dock-eyebrow { font-size: 0.68rem !important; }
.night-card h3 { font-size: 0.9rem !important; }
.hero-stat-card strong,
.section-mini-card strong { font-size: 0.82rem !important; }

/* Accommodation block cleanup */
.rooms-section .section-copy {
  max-width: 620px;
}

.rooms-section .section-mini-grid,
.rooms-section .section-mini-grid-light {
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.rooms-section .section-mini-card-light {
  background: rgba(255,255,255,0.94) !important;
  border: 1px solid rgba(19,34,49,0.1) !important;
  box-shadow: 0 12px 30px rgba(19,34,49,0.06) !important;
  padding: 1rem 1rem 0.95rem !important;
}

.rooms-section .section-mini-card-light span {
  display: inline-flex;
  align-items: center;
  min-height: 1.1rem;
  color: var(--gold) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.18em;
  margin-bottom: 0.55rem;
}

.rooms-section .section-mini-card-light strong {
  color: var(--navy) !important;
  font-size: 0.92rem !important;
  margin-bottom: 0.55rem;
}

.rooms-section .section-mini-card-light p {
  color: var(--text-secondary) !important;
  font-size: 0.82rem !important;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .rooms-section .section-mini-grid,
  .rooms-section .section-mini-grid-light {
    grid-template-columns: 1fr !important;
  }
}

/* Gallery override */
.gallery-section {
  background: linear-gradient(180deg, rgba(18,32,48,0.96) 0%, rgba(23,36,54,0.95) 100%) !important;
  color: rgba(255,255,255,0.82) !important;
  padding-top: 4.5rem !important;
  padding-bottom: 4.5rem !important;
}

.gallery-section .section-eyebrow { color: rgba(240,221,176,0.84) !important; }
.gallery-section .section-eyebrow::before { color: rgba(240,221,176,0.62) !important; }
.gallery-section .section-title { color: var(--white) !important; }
.gallery-section .section-lead { color: rgba(255,255,255,0.7) !important; }

.gallery-strip {
  padding-inline: 0 !important;
  margin-top: 2.25rem !important;
  padding-bottom: 0.25rem !important;
  gap: 0.9rem !important;
}

.gallery-strip img {
  border-radius: 18px !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18) !important;
}

/* Refined homepage system */
:root {
  --paper: #f6f1e8;
  --paper-2: #efe6da;
  --ink: #132231;
  --ink-soft: #4b5d6e;
  --panel: rgba(255,255,255,0.78);
  --panel-strong: rgba(8,16,24,0.86);
  --line: rgba(19,34,49,0.11);
  --shadow-soft: 0 18px 50px rgba(19,34,49,0.09);
}

body {
  background:
    radial-gradient(circle at top, rgba(216,181,109,0.15), transparent 34%),
    linear-gradient(180deg, #fbf7f1 0%, var(--paper) 44%, #efe7dc 100%);
  color: var(--ink);
}

h1, h2, h3, .section-title, .pkg-title, .hero-panel-title, .newsletter-card-title, .contact-dock-eyebrow {
  font-family: Georgia, 'Times New Roman', serif;
}

nav {
  border-bottom: 1px solid rgba(19,34,49,0.08);
}

.nav-book {
  padding-inline: 1.25rem;
}

.hero {
  min-height: 100svh;
  padding-top: 72px;
  padding-bottom: 8rem;
  background: linear-gradient(180deg, #0d1824 0%, #132231 100%);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(19,34,49,0.72) 0%, rgba(19,34,49,0.48) 52%, rgba(19,34,49,0.78) 100%),
    radial-gradient(circle at 20% 20%, rgba(216,181,109,0.15), transparent 35%),
    radial-gradient(circle at 80% 15%, rgba(255,255,255,0.06), transparent 25%);
  pointer-events: none;
}

.hero-overlay {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 2.5rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 0;
}

.hero-copy {
  max-width: 680px;
}

.hero-copy h1 {
  display: grid;
  gap: 0.25rem;
  margin: 0 0 1.25rem;
}

.hero-content {
  max-width: none;
}

.hero-badge {
  background: rgba(216,181,109,0.12);
  color: #f0ddb0;
  border-color: rgba(216,181,109,0.28);
}

.hero-title-top,
.hero-title-script,
.section-title,
.pkg-title {
  text-wrap: balance;
}

.hero-title-top {
  font-size: clamp(0.95rem, 1.7vw, 1.35rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.2;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-title-script {
  font-family: Georgia, 'Times New Roman', serif;
  font-style: normal;
  font-size: clamp(2.15rem, 3.8vw, 4rem);
  color: var(--gold);
  font-weight: 400;
  line-height: 1.02;
  display: block;
  margin: 0;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-title-script-secondary {
  color: rgba(216,181,109,0.92);
  margin-top: 0.1rem;
}

.hero-lead {
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto 1.35rem 0;
}

.hero-aside {
  display: grid;
  gap: 1rem;
  align-self: end;
}

.hero-panel {
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 24px;
  background: rgba(13,24,36,0.88);
  backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,0.25);
  padding: 1.25rem;
}

.hero-panel-primary {
  padding: 1.4rem;
}

.hero-panel-kicker,
.newsletter-card-copy,
.contact-dock-copy p,
.section-mini-card span,
.pkg-disclaimer {
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.6875rem;
}

.hero-panel-kicker {
  color: rgba(240,221,176,0.8);
  margin-bottom: 0.75rem;
}

.hero-panel-title {
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1.2;
  margin-bottom: 1.2rem;
}

.hero-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.hero-stat-card,
.section-mini-card,
.dining-card,
.wellness-card,
.event-card,
.newsletter-card,
.whatsapp-card {
  border-radius: 22px;
}

.hero-stat-card {
  padding: 0.9rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-icon,
.hero-list-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  margin-bottom: 0.65rem;
  color: rgba(240,221,176,0.92);
}

.hero-stat-icon i,
.hero-list-icon i {
  font-size: 0.9rem;
  line-height: 1;
}

.hero-stat-card strong,
.section-mini-card strong {
  display: block;
  color: var(--white);
  font-size: 0.92rem;
  margin-bottom: 0.4rem;
}

.hero-stat-card span,
.section-mini-card p,
.hero-list span,
.pkg-body,
.contact-details {
  color: rgba(255,255,255,0.74);
  font-size: 0.8rem;
  line-height: 1.55;
}

.hero-panel-secondary {
  padding: 1rem 1.2rem;
  background: rgba(255,255,255,0.04);
}

.hero-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.hero-list li {
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.hero-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-list strong {
  display: block;
  color: #fff;
  margin-bottom: 0.25rem;
  font-size: 0.88rem;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  align-items: start;
}

.section-copy {
  max-width: 560px;
}

.section-grid-dark .section-copy,
.section-grid-dark .section-title,
.section-grid-dark .section-lead,
.section-grid-dark .pkg-disclaimer,
.section-grid-dark .section-mini-card span,
.section-grid-dark .section-mini-card strong,
.section-grid-dark .section-mini-card p {
  color: #fff;
}

.section-grid-dark .section-lead {
  color: rgba(255,255,255,0.72);
}

.section-grid-light {
  align-items: center;
}

.section-grid-light .section-copy {
  max-width: 560px;
}

.section-mini-card-light {
  background: rgba(255,255,255,0.72);
  border-color: rgba(19,34,49,0.09);
  color: var(--ink);
}

.section-mini-card-light span {
  color: var(--gold);
}

.section-mini-card-light strong,
.section-mini-card-light p {
  color: var(--ink);
}

.section-title-light {
  color: #fff;
}

.section-lead-light {
  color: rgba(255,255,255,0.72);
}

.section-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.6rem;
}

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

.section-mini-card {
  padding: 1rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
}

.section-mini-card span {
  display: block;
  color: rgba(240,221,176,0.78);
  margin-bottom: 0.45rem;
}

.section-mini-card strong {
  margin-bottom: 0.35rem;
}

.section-media {
  display: grid;
  gap: 0.9rem;
  align-self: start;
  justify-self: end;
  width: min(100%, 560px);
}

.media-frame {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(19,34,49,0.1);
  background: rgba(255,255,255,0.5);
  box-shadow: var(--shadow-soft);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame-large {
  aspect-ratio: 16 / 10;
}

.media-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.media-grid-2 .media-frame {
  aspect-ratio: 16 / 11;
}

.media-grid-2-equal .media-frame {
  aspect-ratio: 1 / 1;
}

.packages-section {
  background: linear-gradient(180deg, var(--paper-2), #f6f0e6);
}

.package-tabs {
  justify-content: center;
  margin-bottom: 2rem;
}

.tab-btn {
  background: rgba(255,255,255,0.75);
  border-color: rgba(19,34,49,0.1);
}

.package-content.active {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 2rem;
}

.pkg-copy {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.pkg-title {
  color: var(--ink);
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.pkg-body {
  color: var(--ink-soft);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.98rem;
  max-width: 42rem;
}

.event-card-body .pkg-disclaimer {
  color: var(--ink-soft);
  text-transform: uppercase;
}

.pkg-disclaimer {
  color: var(--gold);
  text-transform: uppercase;
}

.dining-card,
.wellness-card,
.event-card,
.newsletter-card,
.whatsapp-card {
  background: rgba(255,255,255,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
}

.dining-card,
.wellness-card {
  min-height: 100%;
}

.dining-grid,
.wellness-grid,
.events-grid,
.contacts-grid {
  margin-top: 1.6rem;
}

.dining-grid,
.wellness-grid {
  gap: 1rem;
}

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

.wellness-grid .wellness-card:last-child {
  grid-column: 1 / -1;
}

.events-grid,
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.event-card {
  padding: 0;
  overflow: hidden;
}

.event-card-image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 1.2rem 1.25rem 1.35rem;
}

.gallery-section {
  background: linear-gradient(180deg, #efe7db, #f7f3ed);
}

.gallery-section-alt {
  padding-top: 0;
}

.gallery-strip {
  padding-inline: 3rem;
}

.contacts-grid {
  align-items: start;
}

.newsletter-card,
.whatsapp-card {
  text-align: left;
}

.newsletter-card-title {
  color: var(--ink);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.newsletter-card-title,
.contact-dock-toggle,
.contact-details a,
.contact-details span,
.btn-gold,
.footer-social a,
.whatsapp-float {
  gap: 0.5rem;
}

.newsletter-card-title,
.contact-dock-toggle,
.btn-gold {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.newsletter-card-title i,
.contact-dock-toggle i,
.btn-gold i,
.contact-details i,
.footer-social i,
.whatsapp-float i {
  line-height: 1;
  font-size: 0.95em;
}

.footer-social i,
.whatsapp-float i {
  font-size: 1rem;
}

.contact-details a,
.contact-details span {
  display: inline-flex;
  align-items: center;
}

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


.newsletter-card-copy {
  color: var(--ink-soft);
  margin-bottom: 1rem;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

.newsletter-row {
  margin-top: 0;
  flex-direction: row;
  align-items: stretch;
}

.newsletter-row input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  padding: 0.9rem 1rem;
  background: #fff;
  font-family: 'Poppins', sans-serif;
}

.newsletter-row .btn-gold {
  flex-shrink: 0;
}

.whatsapp-card {
  display: grid;
  gap: 1rem;
}

.contact-details {
  color: var(--ink-soft);
  display: grid;
  gap: 0.35rem;
}

.contact-details a {
  color: var(--ink);
  font-weight: 500;
}

.footer-mark {
  color: rgba(255,255,255,0.78);
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
}

.contact-dock {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1rem;
  width: min(1040px, calc(100vw - 1.5rem));
  z-index: 998;
  border-radius: 28px;
  background: rgba(13,24,36,0.92);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 60px rgba(0,0,0,0.24);
  color: #fff;
  backdrop-filter: blur(18px);
  height: auto;
}

.contact-dock::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), transparent 30%);
  pointer-events: none;
}

.contact-dock-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
}

.contact-dock-copy p {
  margin-top: 0.35rem;
  color: rgba(255,255,255,0.74);
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.9rem;
}

.contact-dock-eyebrow {
  color: #f0ddb0;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.dock-actions-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.contact-dock-close {
  background: transparent;
  color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}

.contact-dock-close:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.contact-dock-close i {
  font-size: 1.1rem;
}

.contact-dock[data-state='collapsed'] .contact-dock-close {
  display: none;
}

.contact-dock-toggle {
  background: var(--gold);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-dock-form {
  display: grid;
  gap: 0.75rem;
  padding: 0 1.25rem 1.25rem;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  transition: max-height 0.5s ease, opacity 0.35s ease, transform 0.35s ease, padding 0.35s ease;
}

.contact-dock .form-grid-2,
.contact-dock .form-grid-3 {
  gap: 0.9rem;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 0.8fr;
  gap: 0.9rem;
}

.phone-row {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 0.75rem;
}

.phone-code {
  min-width: 0;
}

.dock-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.dock-message {
  color: rgba(255,255,255,0.8);
}

.selected-tour-summary {
  display: grid;
  gap: 0.28rem;
  margin-bottom: 0.25rem;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(240,221,176,0.24);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(240,221,176,0.16), rgba(255,255,255,0.06));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.selected-tour-summary[hidden] {
  display: none;
}

.selected-tour-label {
  color: rgba(240,221,176,0.82);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.selected-tour-summary strong {
  color: #fff;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.08rem;
  line-height: 1.25;
}

.selected-tour-summary span:last-child {
  color: rgba(255,255,255,0.74);
  font-size: 0.82rem;
  line-height: 1.5;
}

.contact-dock[data-state='expanded'] .contact-dock-form {
  max-height: 760px;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  padding: 0 1.25rem 1.25rem;
}

.contact-dock[data-state='expanded'] {
  height: min(86vh, calc(100vh - 2rem));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.contact-dock[data-state='expanded'] .contact-dock-form {
  flex: 1;
  min-height: 0;
  max-height: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-bottom: 1rem;
}

.contact-dock[data-state='expanded'] .dock-actions {
  position: sticky;
  bottom: 0;
  z-index: 2;
  margin-top: 0.25rem;
  padding-top: 0.55rem;
  padding-bottom: 0.25rem;
  background: linear-gradient(180deg, rgba(13,24,36,0) 0%, rgba(13,24,36,0.94) 34%);
}

.contact-dock[data-state='success'] .contact-dock-form {
  max-height: 0;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
}

.contact-dock[data-state='collapsed'] .contact-dock-form {
  padding: 0;
}

.contact-dock[data-state='success'] .contact-dock-toggle {
  background: rgba(240,221,176,0.18);
  border: 1px solid rgba(240,221,176,0.25);
  color: #f0ddb0;
}

.contact-dock[data-state='success'] .contact-dock-copy p {
  color: rgba(255,255,255,0.88);
}

.contact-dock[data-state='success'] .contact-dock-toggle {
  pointer-events: none;
}

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

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (max-width: 1024px) {
  .hero-grid,
  .section-grid,
  .package-content.active,
  .events-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .section-copy {
    max-width: none;
  }

  .section-mini-grid {
    grid-template-columns: 1fr;
  }

  .hero-stat-grid {
    grid-template-columns: 1fr 1fr;
  }

  .media-grid-2,
  .media-grid-2-equal {
    grid-template-columns: 1fr 1fr;
  }

  .section-media {
    width: 100%;
    justify-self: stretch;
  }

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

  .contact-dock {
    width: min(1040px, calc(100vw - 1rem));
    bottom: 1rem;
  }

  body { padding-bottom: 19rem; }
}

@media (max-width: 768px) {
  .hero-grid {
    gap: 1.25rem;
    padding-top: 1rem;
    padding-bottom: 6rem;
  }

  .hero-stat-grid,
  .media-grid-2,
  .media-grid-2-equal,
  .form-grid-3,
  .phone-row {
    grid-template-columns: 1fr;
  }

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

  .wellness-grid .wellness-card:last-child {
    grid-column: auto;
  }

  .hero-panel,
  .contact-dock,
  .newsletter-card,
  .whatsapp-card,
  .event-card {
    border-radius: 20px;
  }

  .hero-buttons {
    width: 100%;
  }

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

  .contact-dock {
    left: 0.5rem;
    transform: none;
    width: calc(100vw - 0.75rem);
    bottom: 0.35rem;
    border-radius: 24px;
  }

  .contact-dock[data-state='expanded'] {
    height: min(72vh, calc(100vh - 0.7rem));
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  body { padding-bottom: 19rem; }

  .contact-dock-bar {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.8rem 0.9rem;
  }

  .contact-dock-toggle {
    width: 100%;
    justify-content: center;
  }

  .whatsapp-float {
    display: none;
  }

  .whatsapp-mobile-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: absolute;
    right: 0.9rem;
    top: -3.5rem;
    z-index: 999;
    width: 48px;
    height: 48px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #25D366;
    color: var(--white);
    font-size: 0;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
  }

  .whatsapp-mobile-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  }

  .whatsapp-mobile-cta i {
    font-size: 1.35rem;
    line-height: 1;
  }

  body:not(.cookie-accepted) .whatsapp-mobile-cta {
    top: -9.5rem;
  }

  .contact-dock-copy p {
    font-size: 0.85rem;
  }

  .contact-dock-form {
    gap: 0.7rem;
    overscroll-behavior: contain;
  }

  .contact-dock[data-state='expanded'] .contact-dock-form {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    max-height: none;
    padding: 0 0.9rem 0.9rem;
  }

  .contact-dock .form-grid-2,
  .contact-dock .form-grid-3,
  .contact-dock .phone-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .contact-dock .form-input[type="date"] {
    min-width: 0;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
  }

  .contact-dock .form-group {
    margin-bottom: 0.5rem;
  }

  .contact-dock .form-input,
  .contact-dock .form-select,
  .contact-dock .form-textarea {
    padding: 0.68rem 0.85rem;
    font-size: 0.84rem;
  }

  .contact-dock .form-textarea {
    min-height: 84px;
  }

  .contact-dock .btn-submit,
  .contact-dock .contact-dock-toggle {
    width: 100%;
    justify-content: center;
  }

  .contact-dock[data-state='expanded'] .dock-actions {
    position: sticky;
    bottom: 0;
    z-index: 2;
    margin-top: 0.25rem;
    padding-top: 0.35rem;
    padding-bottom: calc(0.35rem + env(safe-area-inset-bottom));
    background: linear-gradient(180deg, rgba(13,24,36,0) 0%, rgba(13,24,36,0.9) 28%);
  }

  .newsletter-row {
    flex-direction: column;
  }

  .newsletter-row .btn-gold,
  .newsletter-row input {
    width: 100%;
  }

  .gallery-strip {
    padding-inline: 1.25rem;
  }

  .events-grid,
  .contacts-grid {
    gap: 0.9rem;
  }

  .section-grid {
    gap: 1.25rem;
  }
}

@media (max-width: 480px) {
  .hero-title-top {
    font-size: clamp(0.9rem, 4.5vw, 1.15rem);
  }

  .hero-title-script {
    font-size: clamp(1.85rem, 9.5vw, 3rem);
  }

  .contact-dock-copy {
    max-width: 100%;
  }

  .footer-mark {
    letter-spacing: 0.12em;
  }
}

@media (min-width: 769px) {
  .whatsapp-mobile-cta {
    display: none !important;
  }
}

/* Visual color correction layer */
:root {
  --navy: #132231;
  --navy-dark: #0f1c29;
  --navy-deeper: #09131e;
  --gold: #b8892a;
  --gold-light: #d0a344;
  --gold-soft: #efe1c2;
  --cream: #f7f1e7;
  --cream-2: #efe6d8;
  --surface: #fffaf3;
  --surface-strong: #ffffff;
  --ink: #132231;
  --ink-soft: #526475;
  --muted: #83909c;
  --line: rgba(19,34,49,0.12);
  --line-dark: rgba(255,255,255,0.12);
  --shadow-soft: 0 18px 46px rgba(19,34,49,0.08);
  --shadow-card: 0 16px 38px rgba(19,34,49,0.1);
}

body {
  background: linear-gradient(180deg, #fbf7f0 0%, var(--cream) 45%, var(--cream-2) 100%);
  color: var(--ink);
}

nav,
.nav-dropdown {
  background: rgba(255,250,243,0.97);
  border-color: var(--line);
}

.nav-links a,
.nav-dropdown a {
  color: var(--ink-soft);
}

.nav-logo-svg .nl0,
.nav-logo-svg .nl1,
.nav-logo-text,
.nav-hamburger span {
  fill: var(--navy);
  color: var(--navy);
  background: var(--navy);
}

.hero {
  background: linear-gradient(145deg, var(--navy-deeper) 0%, var(--navy) 58%, #1a3043 100%);
}

.hero::before {
  background:
    linear-gradient(135deg, rgba(9,19,30,0.78) 0%, rgba(19,34,49,0.48) 48%, rgba(9,19,30,0.82) 100%),
    radial-gradient(circle at 18% 20%, rgba(184,137,42,0.22), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(255,255,255,0.08), transparent 26%);
}

.hero-badge,
.nightlife-badge {
  background: rgba(184,137,42,0.16);
  border-color: rgba(184,137,42,0.38);
  color: var(--gold-soft);
}

.hero-title-script,
.hero-title-script-secondary,
.section-title .gold,
.section-title span,
.pkg-title .gold,
.pkg-title span,
.section-eyebrow,
.pkg-eyebrow,
.contact-details i {
  color: var(--gold);
}

.hero-lead,
.hero-subtitle,
.section-lead-light,
.section-grid-dark .section-lead,
.nightlife-section .section-lead {
  color: rgba(255,255,255,0.78);
}

.btn-gold,
.btn-submit,
.search-submit,
.contact-dock-toggle,
.cookie-accept {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(184,137,42,0.24);
}

.btn-gold:hover,
.btn-submit:hover,
.search-submit:hover,
.contact-dock-toggle:hover,
.cookie-accept:hover {
  background: linear-gradient(135deg, var(--gold-light) 0%, #d8b15a 100%);
}

.btn-outline-white {
  border-color: rgba(255,255,255,0.58);
  color: rgba(255,255,255,0.92);
}

.packages-section,
.rooms-section,
.gallery-section,
.gallery-section-alt,
.faq-section,
.contact-section {
  background: var(--cream);
}

.flights-section,
.virtual-section {
  background: var(--surface);
}

.nightlife-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deeper) 100%);
}

.section-title,
.pkg-title,
.newsletter-card-title {
  color: var(--ink);
}

.section-lead,
.pkg-body,
.newsletter-card-copy,
.contact-details {
  color: var(--ink-soft);
}

.dining-card,
.wellness-card,
.event-card,
.newsletter-card,
.whatsapp-card,
.faq-item,
.hero-search,
.media-frame,
.section-mini-card-light,
.rooms-section .section-mini-card-light {
  background: var(--surface-strong) !important;
  border-color: var(--line) !important;
  box-shadow: var(--shadow-card) !important;
}

.night-card,
.section-mini-card,
.hero-stat-card,
.hero-panel {
  background: rgba(255,255,255,0.07);
  border-color: var(--line-dark);
}

.section-grid-dark .section-mini-card,
.night-card {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.12);
}

.section-grid-dark .section-mini-card:hover,
.night-card:hover {
  background: rgba(184,137,42,0.1);
  border-color: rgba(184,137,42,0.36);
}

.gallery-section {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deeper) 100%) !important;
  color: rgba(255,255,255,0.84) !important;
}

.gallery-section .section-title,
.nightlife-section .section-title,
.section-title-light,
.section-grid-dark .section-title {
  color: #fff !important;
}

.form-input,
.form-select,
.form-textarea,
.newsletter-row input {
  background: #fff;
  border-color: var(--line);
  color: var(--ink);
}

.form-label,
.search-label,
.pkg-disclaimer {
  color: var(--muted);
}

.contact-dock,
#cookieBanner,
footer {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deeper) 100%);
  border-color: var(--line-dark);
}

.footer-links a,
.footer-contact,
.footer-mark,
.footer-bottom,
.footer-disclaimer p {
  color: rgba(255,255,255,0.62);
}

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

/* DATA2 package polish */
.packages-section {
  overflow: hidden;
}

.packages-section .container > .section-title,
.packages-section .container > .section-lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.package-tabs {
  gap: 0.75rem;
}

.tab-btn {
  border-radius: 999px;
  padding: 0.78rem 1.15rem;
  background: rgba(255,255,255,0.86);
  box-shadow: 0 10px 26px rgba(19,34,49,0.06);
}

.package-content.active {
  position: relative;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  gap: 1.5rem;
  padding: clamp(1rem, 2.2vw, 1.6rem);
  border: 1px solid rgba(19,34,49,0.1);
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255,255,255,0.86) 0%, rgba(255,250,243,0.72) 100%);
  box-shadow: 0 24px 60px rgba(19,34,49,0.1);
}

.package-content.active::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at 14% 0%, rgba(184,137,42,0.13), transparent 34%);
  pointer-events: none;
}

.pkg-copy,
.pkg-images {
  position: relative;
  z-index: 1;
}

.pkg-copy {
  gap: 0.85rem;
}

.pkg-eyebrow {
  margin-bottom: 0;
}

.pkg-title {
  max-width: 720px;
  font-size: clamp(1.45rem, 2.4vw, 2.35rem) !important;
}

.pkg-disclaimer {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 68ch;
  margin: 0;
  color: var(--ink-soft) !important;
  font-size: 0.9rem;
  font-style: normal;
  line-height: 1.68;
  letter-spacing: 0;
  text-transform: none;
}

.pkg-body {
  margin: 0;
  max-width: 62ch;
  font-size: 0.95rem;
  line-height: 1.72;
}

.package-builder {
  margin-top: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(19,34,49,0.1);
  border-radius: 24px;
  background: rgba(255,255,255,0.82);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.75), 0 14px 34px rgba(19,34,49,0.07);
}

.package-builder-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(19,34,49,0.08);
}

.package-builder-label {
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-builder-total {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  padding: 0.48rem 0.78rem;
  border-radius: 999px;
  background: rgba(184,137,42,0.13);
  color: var(--gold);
  font-size: 0.95rem;
}

.package-builder-options {
  display: grid;
  gap: 0.65rem;
}

.package-addon {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem;
  border: 1px solid rgba(19,34,49,0.08);
  border-radius: 18px;
  background: rgba(247,241,231,0.58);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}

.package-addon:hover {
  transform: translateY(-1px);
  border-color: rgba(184,137,42,0.35);
  background: rgba(255,250,243,0.95);
}

.package-addon:has(input:checked),
.package-addon.is-selected {
  border-color: rgba(184,137,42,0.56);
  background: rgba(184,137,42,0.12);
  box-shadow: 0 12px 26px rgba(184,137,42,0.12);
}

.package-addon.is-selected .package-addon-copy strong {
  color: var(--gold);
}

.package-addon input {
  width: 18px;
  height: 18px;
  margin-top: 0.18rem;
  accent-color: var(--gold);
}

.package-addon-copy {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.22rem 0.75rem;
}

.package-addon-copy strong {
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.35;
}

.package-addon-copy em {
  align-self: start;
  padding: 0.18rem 0.48rem;
  border-radius: 999px;
  background: #fff;
  color: var(--gold);
  font-size: 0.74rem;
  font-style: normal;
  font-weight: 700;
  white-space: nowrap;
}

.package-addon-copy small {
  grid-column: 1 / -1;
  color: var(--ink-soft);
  font-size: 0.78rem;
  line-height: 1.48;
}

.package-builder-btn {
  width: 100%;
  margin-top: 0.9rem;
}

.pkg-images {
  align-self: stretch;
}

.pkg-images .media-frame,
.pkg-images .media-frame-large {
  height: 100%;
  min-height: 420px;
  border-radius: 26px;
}

.pkg-images img {
  height: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .package-content.active {
    grid-template-columns: 1fr;
  }

  .pkg-images .media-frame,
  .pkg-images .media-frame-large,
  .pkg-images img {
    min-height: 320px;
  }
}

@media (max-width: 768px) {
  .package-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }

  .tab-btn {
    flex: 0 0 auto;
    font-size: 0.62rem;
  }

  .package-content.active {
    border-radius: 24px;
    padding: 0.85rem;
  }

  .package-builder-head,
  .package-addon-copy {
    grid-template-columns: 1fr;
  }

  .package-builder-head {
    display: grid;
  }

  .package-builder-total,
  .package-addon-copy em {
    justify-self: start;
  }

  .pkg-images .media-frame,
  .pkg-images .media-frame-large,
  .pkg-images img {
    min-height: 240px;
  }
}

/* Category-first tour picker */
.package-picker {
  display: grid;
  gap: 0.9rem;
  margin: 2.2rem 0 2rem;
}

.package-picker-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.package-picker-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 50%;
  background: rgba(184,137,42,0.14);
  color: var(--gold);
  letter-spacing: 0;
}

.package-picker-step-secondary {
  margin-top: 0.45rem;
}

.package-category-tabs,
.package-tabs {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  justify-content: center;
}

.package-category-tabs {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
  padding: 0.55rem;
  border: 1px solid rgba(19,34,49,0.09);
  border-radius: 999px;
  background: rgba(255,255,255,0.62);
  box-shadow: 0 14px 34px rgba(19,34,49,0.06);
}

.category-tab {
  border: 0;
  border-radius: 999px;
  padding: 0.78rem 1.2rem;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}

.category-tab:hover,
.category-tab.active {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: #fff;
  box-shadow: 0 10px 22px rgba(184,137,42,0.22);
}

.tab-btn[hidden] {
  display: none;
}

@media (max-width: 768px) {
  .package-picker {
    margin-top: 1.6rem;
  }

  .package-category-tabs {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    border-radius: 22px;
  }

  .category-tab {
    flex: 0 0 auto;
    font-size: 0.62rem;
  }
}
