:root {
  color-scheme: dark;
  --bg: #0f172a;
  --surface: rgba(15, 23, 42, 0.92);
  --surface-strong: rgba(15, 23, 42, 0.99);
  --card: rgba(15, 23, 42, 0.82);
  --border: rgba(148, 163, 184, 0.16);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #ff9f1c;
  --accent-strong: #f59e0b;
  --accent-soft: #fdf2d7;
  --gradient: linear-gradient(120deg, #0f172a 0%, #1e293b 45%, #2d3748 100%);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  background: radial-gradient(circle at top, rgba(59, 130, 246, 0.12), transparent 30%), var(--gradient);
  color: var(--text);

/* Hero tweaks for large titles */
.hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
}

.hero .hero-content h1 {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.05;
  margin: 0 0 8px 0;
}
}

img {
  max-width: 100%;
  display: block;
  border-radius: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(15, 23, 42, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.nav-toggle {
  display: none;
  background: var(--accent);
  color: #0f172a;
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  cursor: pointer;
}

.hero {
  min-height: 82vh;
  display: grid;
  place-items: center;
  position: relative;
  padding: 5rem 0 3rem;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.4), rgba(15, 23, 42, 0.9));
}

.hero-content {
  position: relative;
  text-align: center;
  max-width: 760px;
  z-index: 1;
}

.eyebrow {
  display: inline-flex;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.14);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
  margin: 0;
}

.hero p {
  margin: 1.5rem auto;
  max-width: 640px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.7rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: linear-gradient(135deg, #ff9f1c, #f59e0b);
  color: #091d32;
}

.btn-secondary {
  border: 1px solid rgba(255, 159, 28, 0.28);
  background: rgba(255, 159, 28, 0.1);
  color: var(--text);
}

.section {
  padding: 5rem 0;
}

.section-alt {
  background: rgba(15, 23, 42, 0.72);
}

.section h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
  line-height: 1.85;
}

.grid-2,
.grid-3,
.cards-grid,
.gallery-grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: start;
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.highlight-card,
.feature-card,
.info-box,
.cta-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 2rem;
  padding: 1.75rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.highlight-card {
  overflow: hidden;
}

.highlight-card img {
  width: 100%;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
}

.feature-card ul {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

.feature-card li {
  margin-bottom: 0.85rem;
}

.booking-form {
  display: grid;
  gap: 1.5rem;
  background: rgba(15, 23, 42, 0.94);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 2rem;
  padding: 2rem;
}

.booking-form .grid-2 {
  gap: 1rem;
}

.booking-form label {
  display: grid;
  gap: 0.75rem;
  font-weight: 600;
  color: #f8fafc;
}

.booking-form input,
.booking-form textarea {
  width: 100%;
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 1rem;
  color: var(--text);
  padding: 1rem 1.1rem;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: rgba(255, 159, 28, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 159, 28, 0.12);
}

.booking-form textarea {
  min-height: 140px;
  resize: vertical;
}

.booking-form button {
  width: fit-content;
  padding: 0.95rem 2rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(135deg, #ff9f1c, #f59e0b);
  color: #091d32;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.booking-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.18);
}

.info-box {
  min-height: 220px;
}

.section-header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.lightbox-link {
  display: block;
}

.attachments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.attachment-item {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 159, 28, 0.24);
  background: rgba(255, 159, 28, 0.1);
  color: var(--text);
}

.attachment-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 159, 28, 0.2);
  font-weight: 700;
  font-size: 0.82rem;
}

.attachment-label {
  font-weight: 600;
}

@media (max-width: 900px) {
  .hero {
    min-height: 60vh;
    padding: 3rem 0 2rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .section {
    padding: 3rem 0;
  }

  .cards-grid,
  .grid-3,
  .gallery-grid {
    gap: 1rem;
  }

  .main-nav {
    justify-content: center;
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.92);
  z-index: 1000;
  padding: 1.5rem;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 1.5rem;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: none;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.12);
  color: var(--text);
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5rem;
  height: 3.5rem;
  border: none;
  border-radius: 50%;
  background: rgba(248, 250, 252, 0.16);
  color: var(--text);
  font-size: 2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.lightbox-nav:hover {
  background: rgba(255, 159, 28, 0.24);
  transform: translateY(-50%) scale(1.05);
}

.lightbox-prev {
  left: 1rem;
}

.lightbox-next {
  right: 1rem;
}

.section-cta {
  background: linear-gradient(120deg, rgba(255, 159, 28, 0.18), rgba(15, 23, 42, 0.92));
}

.cta-box {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.site-footer {
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding: 2rem 0 3rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
}

.footer-bottom {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  padding-top: 1rem;
}

.legal {
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  color: var(--muted);
  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--accent);
}

@media (max-width: 960px) {
  .grid-2,
  .grid-3,
  .cards-grid,
  .gallery-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 6rem;
  }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    inset: 70px 0 auto auto;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    background: rgba(15, 23, 42, 0.96);
    padding: 1rem;
    transform: translateY(-240px);
    transition: transform 0.25s ease;
    width: calc(100% - 2rem);
    border-radius: 1.5rem;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .attribution {
    margin-top: 1rem;
    color: var(--muted);
  }

  .attribution a {
    color: var(--accent);
    text-decoration: none;
  }
}
