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

:root {
  --bg: #0b1220;
  --bg-soft: #020617;
  --card: #ffffff;
  --text: #020617;
  --muted: #4b5563;
  --accent: #fbbf24;
  --accent-dark: #f59e0b;
  --accent-soft: #fef3c7;
  --border: #e5e7eb;
  --radius-lg: 18px;
  --radius-xl: 26px;
  --shadow-soft: 0 22px 45px rgba(15, 23, 42, 0.35);
  --shadow-card: 0 18px 32px rgba(15, 23, 42, 0.18);
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;
  background: radial-gradient(circle at top, #1e293b 0, #020617 42%, #020617 100%);
  color: #f9fafb;
  min-height: 100vh;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(26px);
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.78));
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.brand-logo {
  height: 42px;
  width: auto;
  border-radius: 999px;
  background: #fff;
  padding: 0.18rem 0.4rem;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
}

.brand-title {
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brand-tagline {
  font-size: 0.75rem;
  color: #9ca3af;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 1.35rem;
  font-size: 0.9rem;
}

.main-nav a {
  position: relative;
  color: #e5e7eb;
  padding-bottom: 0.12rem;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fbbf24, #f97316);
  transition: width 0.18s ease-out;
}

.main-nav a:hover {
  color: #ffffff;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Hero */

.hero {
  padding: 2.4rem 0 3.3rem;
}

.hero-inner {
  display: grid;
  gap: 2.2rem;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #9ca3af;
  margin-bottom: 0.4rem;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 2.7rem);
  line-height: 1.08;
  margin-bottom: 0.75rem;
}

.hero-title span {
  background: linear-gradient(135deg, #fbbf24, #f97316);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  font-size: 0.98rem;
  color: #cbd5f5;
  max-width: 32rem;
  margin-bottom: 1rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.1rem;
}

.hero-badges span {
  font-size: 0.8rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: linear-gradient(120deg, rgba(15, 23, 42, 0.96), rgba(15, 23, 42, 0.86));
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: radial-gradient(circle at top left, rgba(248, 250, 252, 0.12), rgba(15, 23, 42, 0.98));
  border: 1px solid rgba(148, 163, 184, 0.55);
}

.strip-block p {
  margin: 0;
}

.strip-label {
  font-size: 0.76rem;
  color: #9ca3af;
}

.strip-value {
  font-size: 0.98rem;
  font-weight: 600;
}

/* Booking card */

.hero-card {
  background: #f9fafb;
  border-radius: var(--radius-xl);
  color: var(--text);
  padding: 1.4rem 1.5rem 1.6rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid #e5e7eb;
}

.hero-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  gap: 0.75rem;
}

.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.24rem 0.7rem;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.72rem;
  color: #92400e;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.35);
}

.hero-card h2 {
  font-size: 1.2rem;
  margin: 0 0 0.15rem;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: var(--muted);
}

form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.65rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.22rem;
}

label {
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
}

input,
select,
textarea {
  border-radius: 999px;
  border: 1px solid #d1d5db;
  padding: 0.58rem 0.8rem;
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: #ffffff;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

textarea {
  border-radius: 14px;
  min-height: 70px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: #9ca3af;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent-dark);
  box-shadow: 0 0 0 1px rgba(245, 158, 11, 0.28);
}

.btn-primary {
  margin-top: 0.25rem;
  border-radius: 999px;
  border: none;
  padding: 0.75rem 1rem;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #78350f;
  box-shadow: 0 18px 32px rgba(245, 158, 11, 0.45);
  transition: transform 0.1s ease-out, box-shadow 0.1s ease-out, filter 0.1s ease-out;
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
  box-shadow: 0 22px 40px rgba(245, 158, 11, 0.6);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.4);
}

.form-message {
  min-height: 1.1rem;
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.form-message.success {
  color: #16a34a;
}

.form-message.error {
  color: #b91c1c;
}

.hero-card-foot {
  margin-top: 0.55rem;
  font-size: 0.78rem;
  color: #6b7280;
}

/* booked dates info */
.booked-info {
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Sections */

.section {
  padding: 2.6rem 0;
  background: #020617;
}

.section.alt {
  background: #ffffff;
  color: #020617;
}

.section-header {
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.45rem;
  margin-bottom: 0.3rem;
}

.section-sub {
  font-size: 0.94rem;
  color: #9ca3af;
  max-width: 34rem;
}

.section.alt .section-sub {
  color: #6b7280;
}

/* Cards / grids */

.cards-grid {
  display: grid;
  gap: 1rem;
}

.card {
  background: #0b1220;
  border-radius: var(--radius-lg);
  padding: 1.1rem 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  box-shadow: var(--shadow-card);
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.card p {
  font-size: 0.9rem;
  color: #9ca3af;
}

.section.alt .card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  box-shadow: var(--shadow-card);
}

.section.alt .card p {
  color: #6b7280;
}

/* Contact */

.contact-grid {
  display: grid;
  gap: 1.3rem;
  alignItems: flex-start;
}

contact-list {
  list-style: none;
  font-size: 0.92rem;
  padding-left: 0;
}

.contact-list li + li {
  margin-top: 0.3rem;
}

.contact-highlight {
  border-radius: var(--radius-lg);
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, rgba(15, 23, 42, 1), rgba(30, 64, 175, 0.96));
  border: 1px solid rgba(191, 219, 254, 0.65);
  font-size: 0.9rem;
  color: #e0f2fe;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.65);
}

/* Footer */

.site-footer {
  background: #020617;
  border-top: 1px solid rgba(148, 163, 184, 0.35);
  padding: 1rem 0 1.4rem;
  font-size: 0.8rem;
  color: #9ca3af;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.footer-inner span {
  opacity: 0.9;
}

/* Responsive */

@media (min-width: 720px) {
  .cards-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  }

  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 1.7rem;
  }

  .hero-card {
    padding: 1.15rem 1.1rem 1.3rem;
  }

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