:root {
  --bg: #070b16;
  --bg-soft: #0f1930;
  --surface: rgba(22, 34, 63, 0.72);
  --surface-strong: rgba(28, 45, 79, 0.88);
  --text: #f4f7ff;
  --muted: #b5c5e9;
  --accent: #a9c8ff;
  --accent-2: #ffcfaf;
  --line: rgba(169, 200, 255, 0.28);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 8%, rgba(67, 118, 240, 0.23), transparent 38%),
    radial-gradient(circle at 86% 18%, rgba(224, 130, 181, 0.18), transparent 34%),
    linear-gradient(170deg, #050813 0%, #0b1428 45%, #090d1a 100%);
  line-height: 1.58;
}

img { display: block; width: 100%; height: auto; border-radius: 14px; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }

.container { width: min(1200px, 92vw); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
  background: rgba(7, 11, 22, 0.75);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 0;
}

.logo { width: 216px; max-width: 50vw; }

.main-nav { display: flex; gap: 0.3rem; flex-wrap: wrap; justify-content: flex-end; }

.nav-link {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.93rem;
  border: 1px solid transparent;
}

.nav-link:hover,
.nav-link.is-active {
  border-color: var(--line);
  background: rgba(169, 200, 255, 0.1);
  color: var(--text);
}

.hero {
  position: relative;
  min-height: 74vh;
  display: grid;
  align-items: end;
  isolation: isolate;
}

.hero > figure { position: absolute; inset: 0; }

.hero > figure img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 0;
  filter: contrast(1.08) brightness(0.72) saturate(1.1);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 20, 0.92) 10%, rgba(6, 10, 20, 0.3) 56%, rgba(6, 10, 20, 0.62) 100%);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: 8.3rem 0 4.4rem;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--accent);
  margin-bottom: 0.85rem;
}

h1, h2, h3, h4 { margin-top: 0; line-height: 1.15; }
h1 { font-size: clamp(2.05rem, 4.8vw, 4rem); margin-bottom: 0.8rem; }
h2 { font-size: clamp(1.45rem, 2.7vw, 2.35rem); margin-bottom: 1.1rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
}

.btn-primary {
  background: linear-gradient(110deg, var(--accent), var(--accent-2));
  color: #061028;
}

.btn-outline { border-color: rgba(255, 255, 255, 0.45); }

.cta-row { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.35rem; }
.section-block { padding: 4.2rem 0; }
.intro-copy, .meta-text { color: var(--muted); }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 0.9rem;
}

.stat-card {
  border: 1px solid var(--line);
  background: linear-gradient(155deg, rgba(24, 41, 74, 0.55), rgba(12, 19, 37, 0.84));
  border-radius: 14px;
  padding: 1rem;
}

.stat-card h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
  margin-bottom: 0.25rem;
  color: #dce8ff;
}

.stat-card p { margin: 0; color: var(--muted); }

.feature-split,
.sub-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
}

.feature-split figure,
.panel-image {
  height: 100%;
}

.feature-split figure img,
.panel-image img {
  height: 100%;
  object-fit: cover;
}

.split-copy,
.panel-copy {
  border: 1px solid var(--line);
  background: linear-gradient(160deg, var(--surface), var(--surface-strong));
  border-radius: 16px;
  padding: 1.15rem;
}

.feature-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
  color: var(--muted);
}

.feature-list li + li { margin-top: 0.4rem; }

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1rem;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  background: linear-gradient(160deg, rgba(22, 37, 70, 0.58), rgba(13, 20, 38, 0.86));
}

.info-card p { color: var(--muted); margin-bottom: 0; }

.futuristic-panel {
  position: relative;
  padding: 3rem 0 1rem;
}

.futuristic-panel::after {
  content: '';
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: -0.35rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.image-ribbon {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.8rem;
}

.thumb-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(16, 25, 45, 0.7);
}

.thumb-card img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 0;
}

.card-grid,
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.media-card,
.gallery-card {
  border-radius: 14px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(160deg, var(--surface), var(--surface-strong));
}

.offer-card {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: saturate(1.05) brightness(0.62);
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(6, 10, 20, 0.93), rgba(6, 10, 20, 0.4));
}

.offer-1::before { background-image: url('/images/Stay%20Longer%20%26%20Save.jpg'); }
.offer-2::before { background-image: url('/images/Getaway%20Starcation.jpg'); }
.offer-3::before { background-image: url('/images/Valentine%27s%20Day%20Cinema.jpg'); }

.overlay-copy {
  position: relative;
  z-index: 1;
  padding: 1rem;
}

.text-link { color: var(--accent-2); }

.all-images-grid figure { display: flex; flex-direction: column; gap: 0.65rem; }
figcaption { font-size: 0.82rem; color: var(--muted); word-break: break-word; }

.contact-layout {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.4rem;
}

.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: 14px;
  background: linear-gradient(160deg, var(--surface), var(--surface-strong));
  padding: 1rem;
}

.contact-form { display: grid; gap: 0.7rem; }

input,
textarea {
  width: 100%;
  padding: 0.72rem;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(10, 16, 33, 0.9);
  color: var(--text);
}

.success-message {
  margin: 0;
  background: #183f34;
  border: 1px solid #4ba489;
  color: #ccffe8;
  padding: 0.7rem;
  border-radius: 10px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(5, 9, 18, 0.95);
  margin-top: 2.9rem;
}

.footer-grid {
  padding: 2.25rem 0;
  display: grid;
  gap: 1rem;
  grid-template-columns: 1.2fr 1fr 1fr;
}

.site-footer ul { padding: 0; margin: 0; list-style: none; }
.site-footer li + li { margin-top: 0.45rem; }

@media (max-width: 980px) {
  .feature-split,
  .sub-hero,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-content { padding-top: 6.5rem; }
}
