:root {
  --bg-deep: #0c1d2b;
  --bg-card: #0f273a;
  --sand: #f1e4d0;
  --aqua: #11c5c6;
  --coral: #ff6b3d;
  --text-main: #e8f1f7;
  --text-muted: #9fb3c8;
  --border: rgba(255,255,255,0.08);
  --shadow: 0 18px 40px rgba(8, 17, 35, 0.4);
  --shell: 1200px;
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at 20% 20%, rgba(17,197,198,0.08), transparent 25%),
              radial-gradient(circle at 80% 0%, rgba(255,107,61,0.12), transparent 30%),
              var(--bg-deep);
  color: var(--text-main);
  line-height: 1.6;
}

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

.site-header a {
  color: var(--text-main) !important;
}

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

.shell {
  width: min(100%, var(--shell));
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(8px);
  background: rgba(12, 29, 43, 0.9);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: grid;
  grid-auto-flow: column;
  gap: 14px;
  align-items: center;
  padding: 10px 20px;
  color: var(--text-muted);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.topbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
}

.topbadge svg {
  width: 14px;
  height: 14px;
  fill: var(--aqua);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand .brand-mark svg {
  width: 28px;
  height: 28px;
  fill: var(--sand);
}

.brand .brand-name {
  display: grid;
  gap: 4px;
  line-height: 1.1;
}

.brand .brand-name strong {
  font-size: 22px;
  letter-spacing: .12em;
  color: var(--sand);
}

.brand .brand-name small {
  color: var(--text-muted);
  font-weight: 600;
  letter-spacing: .04em;
}

.brand img {
  height: 40px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links .dropdown {
  position: relative;
}

.nav-links .dropdown > a {
  padding-right: 24px;
}

.nav-links .dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 220px;
  background: rgba(12, 29, 43, 0.96);
  border: 1px solid var(--border);
  padding: 10px 0;
  display: none;
  box-shadow: var(--shadow);
  z-index: 20;
}

.nav-links .dropdown-menu a {
  display: block;
  padding: 10px 14px;
  border: none;
  color: var(--text-main) !important;
}

.nav-links .dropdown-menu a:hover,
.nav-links .dropdown-menu a:focus-visible {
  color: var(--aqua) !important;
}

.nav-links .dropdown:hover > .dropdown-menu,
.nav-links .dropdown:focus-within > .dropdown-menu {
  display: block;
}

.nav-links li a {
  padding: 10px 12px;
  font-weight: 600;
  color: var(--text-main);
  border-bottom: 2px solid transparent;
}

.nav-links li a:hover,
.nav-links li a:focus-visible {
  border-color: var(--aqua);
  color: var(--aqua);
}

.nav-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--text-main);
  padding: 10px;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 4px;
  transition: background .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle .bar {
  width: 22px;
  height: 2px;
  background: var(--sand);
  display: block;
  transition: transform .2s ease, opacity .2s ease;
}

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

.nav-toggle.open .bar:nth-child(2) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 60vh;
  display: grid;
  align-items: stretch;
  background: linear-gradient(120deg, rgba(17,197,198,0.15), rgba(241,228,208,0.06));
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(12,29,43,0.9) 0%, rgba(12,29,43,0.6) 60%, rgba(12,29,43,0.4) 100%);
  opacity: 1;
  z-index: 1;
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  transform: scale(1.05);
  filter: saturate(1.1);
  will-change: transform;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(32px, 8vw, 72px) 0;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  justify-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  color: var(--sand);
}

.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: var(--aqua);
}

.hero h1 {
  margin: 0;
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.1;
  text-shadow: 0 18px 30px rgba(0,0,0,0.55);
}

.hero .lede {
  color: var(--text-muted);
  max-width: 720px;
  font-size: 18px;
}

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 20px;
  background: var(--aqua);
  color: #062024;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  border: 1px solid var(--aqua);
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  cursor: pointer;
}

.pill:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 30px rgba(17,197,198,.3);
  background: transparent;
  color: var(--aqua);
  border-color: var(--aqua);
}

.section {
  padding: clamp(40px, 7vw, 80px) 0;
}

#ads {
  background: #fff;
}

#ads .section-heading h2 {
  color: #0d1f2f;
}

#ads .section-heading p {
  color: #475a70;
}

.section-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
}

.section-heading p {
  margin: 0;
  color: var(--text-muted);
  max-width: 520px;
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cards-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 18px;
  display: grid;
  gap: 12px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
}

.card .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  background: rgba(17,197,198,0.15);
  color: var(--aqua);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.card h3 {
  margin: 0;
  font-size: 20px;
  color: #0d1f2f;
}

.card p {
  margin: 0;
  color: #1f3045;
}

.cta-strip {
  background: linear-gradient(120deg, rgba(17,197,198,0.18), rgba(255,107,61,0.14));
  border: 1px solid var(--border);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-main);
}

.cta-strip small {
  color: var(--text-muted);
}

.list-inline {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ads-grid {
  display: grid;
  gap: 20px;
}

.ad-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 14px;
  padding: 16px;
  background: linear-gradient(120deg, rgba(15,39,58,0.95), rgba(12,29,43,0.9));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.ad-card img {
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.ad-info {
  display: grid;
  gap: 10px;
}

.badge-flag {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  background: var(--sand);
  color: #0d1f2f;
  font-weight: 700;
  letter-spacing: .06em;
}

.price-tag {
  font-size: 22px;
  font-weight: 800;
  color: var(--aqua);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--aqua);
  color: #062024;
  border: 1px solid var(--aqua);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 800;
  transition: all .2s ease;
  cursor: pointer;
}

.btn-ghost:hover {
  background: transparent;
  color: var(--aqua);
  border-color: var(--aqua);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 16px;
  background: var(--sand);
  color: #0d1f2f;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: var(--shadow);
  max-width: 860px;
  margin: 0 auto;
}

.booking-form input,
.booking-form button {
  padding: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: #fff;
  color: #0d1f2f;
  font-weight: 600;
  min-height: 44px;
}

.booking-form button {
  background: var(--aqua);
  color: #062024;
  border: 1px solid var(--aqua);
  cursor: pointer;
  letter-spacing: .06em;
  transition: all .2s ease;
}

.booking-form button:hover {
  background: transparent;
  color: var(--aqua);
}

/* Date placeholders on mobile */
input[type="date"] {
  position: relative;
}

input[type="date"]::-webkit-datetime-edit {
  color: transparent;
}

input[type="date"]:focus::-webkit-datetime-edit,
input[type="date"].has-value::-webkit-datetime-edit {
  color: inherit;
}

input[type="date"]:not(:focus):not(.has-value):invalid::before {
  content: attr(placeholder);
  position: absolute;
  left: 12px;
  color: #7a8aa4;
  pointer-events: none;
}

.content {
  display: grid;
  gap: 18px;
  color: #142535;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 24px;
  width: 100%;
}

.footer {
  background: #08131f;
  border-top: 1px solid var(--border);
  padding: 36px 0 28px;
  color: var(--text-muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.footer small {
  display: block;
  color: var(--text-muted);
}

.footer .links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

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

@media (max-width: 960px) {
  .hero-content {
    padding: 28px 18px 36px;
  }

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

  .main-nav {
    padding: 10px 16px;
  }
  .topbar {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    inset: 100% 0 auto 0;
    flex-direction: column;
    background: rgba(12,29,43,0.96);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }

  .nav-links.open {
    max-height: 80vh;
    overflow-y: auto;
  }

  .nav-links .dropdown-menu {
    position: relative;
    top: auto;
    box-shadow: none;
    border: 1px solid var(--border);
    display: grid;
    gap: 2px;
    background: rgba(12, 29, 43, 0.9);
  }

  .ad-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 75vh;
  }
  .booking-form {
    grid-template-columns: 1fr;
  }
}
