:root {
  color-scheme: light;
  --accent: #ff355d;
  --accent-dark: #b70f31;
  --ink: #10080d;
  --paper: #fff6ed;
  --white: #ffffff;
  --muted: color-mix(in srgb, var(--ink) 64%, var(--paper));
  --line: color-mix(in srgb, var(--ink) 16%, transparent);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
  --header-height: 74px;
  --gold: #f7c86a;
  --plum: #35101f;
  --night: #10080d;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #14080e 0, #211018 520px, var(--paper) 521px);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: color-mix(in srgb, var(--accent) 22%, transparent);
}

body::selection { background: color-mix(in srgb, var(--accent) 28%, var(--paper)); }

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

a { color: inherit; }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 72%, var(--white));
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  transform: translateY(-160%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
}

.skip-link:focus-visible { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px max(20px, env(safe-area-inset-left)) 12px max(20px, env(safe-area-inset-right));
  padding-left: clamp(20px, 4vw, 58px);
  padding-right: clamp(20px, 4vw, 58px);
  background: rgba(16, 8, 13, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
}

.brand img {
  width: auto;
  max-width: min(210px, 44vw);
  height: auto;
  max-height: 46px;
  object-fit: contain;
}

.brand span {
  max-width: 180px;
  overflow-wrap: break-word;
  line-height: 1.05;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  font-size: 14px;
  font-weight: 800;
}

.nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.nav a:hover { color: var(--white); }

.nav .button-link {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 14px 34px rgba(255, 53, 93, 0.26);
}

.nav .button-link:hover {
  color: var(--white);
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 8px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--night);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.02);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 20%, rgba(255, 53, 93, 0.35), transparent 30%),
    linear-gradient(90deg, rgba(10,3,8,0.92), rgba(16,6,12,0.6) 58%, rgba(10,3,8,0.26)),
    linear-gradient(0deg, rgba(10,3,8,0.94), rgba(10,3,8,0.08) 64%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(112px, 15vw, 172px) 0 clamp(66px, 9vw, 96px);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow { color: color-mix(in srgb, var(--white) 82%, var(--accent)); }

h1,
h2,
h3,
p { margin-top: 0; }

h1,
h2 {
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h2 { text-wrap: balance; }

h1 {
  max-width: min(940px, 100%);
  margin-bottom: 20px;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 0.93;
}

h2 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
}

.hero-copy,
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-copy {
  color: rgba(255,255,255,0.84);
  max-width: min(720px, 100%);
  font-size: clamp(18px, 2.4vw, 25px);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  text-decoration: none;
  font-weight: 900;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }
.button.primary { background: var(--accent); color: var(--white); }
.button.primary:hover { background: var(--accent-dark); }
.button.secondary {
  border-color: rgba(255,255,255,0.7);
  color: var(--white);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(14px);
}
.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 16px 42px rgba(255, 53, 93, 0.28);
}
.button.secondary:hover { border-color: var(--white); background: rgba(255,255,255,0.16); }

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero-metrics span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  padding: 9px 13px;
  color: rgba(255,255,255,0.82);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
  font-size: 13px;
  font-weight: 800;
}

.hero-metrics strong {
  color: var(--gold);
  font-size: 15px;
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(20px, 4vw, 58px);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.section-inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.intro-layout,
.feature-layout,
.reserve-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
}

.highlight-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.highlight-row span {
  border: 1px solid color-mix(in srgb, var(--accent) 28%, var(--line));
  border-radius: 999px;
  padding: 8px 12px;
  background: color-mix(in srgb, var(--accent) 8%, var(--white));
  font-size: 13px;
  font-weight: 850;
}

.info-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.info-card,
.detail-panel,
details {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--white) 82%, transparent);
  box-shadow: 0 18px 52px rgba(44, 8, 18, 0.1);
}

.info-card {
  position: relative;
  overflow: hidden;
  padding: 26px;
}

.info-card::before {
  content: "";
  display: block;
  width: 38px;
  height: 4px;
  margin-bottom: 24px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
}

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

.feature-band {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 53, 93, 0.28), transparent 28%),
    linear-gradient(135deg, var(--night), var(--plum));
  color: var(--white);
}

.feature-band .section-kicker { color: var(--gold); }
.feature-band .lead { color: rgba(255,255,255,0.74); }

.feature-photo {
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  aspect-ratio: 4 / 3;
  background: rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.feature-photo img,
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.detail {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
}

.detail strong {
  display: block;
  margin-bottom: 6px;
}

.detail span,
.detail a {
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 16px;
  margin-top: 34px;
}

.gallery > img,
.gallery-stack img {
  min-height: 260px;
  border-radius: 8px;
  background: color-mix(in srgb, var(--ink) 12%, var(--paper));
  box-shadow: 0 18px 50px rgba(44, 8, 18, 0.12);
}

.gallery-stack {
  display: grid;
  gap: 16px;
}

.menu-downloads {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 14px;
  margin-top: 28px;
}

.menu-download {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: color-mix(in srgb, var(--white) 78%, transparent);
  box-shadow: 0 14px 42px rgba(44, 8, 18, 0.08);
  text-decoration: none;
  overflow-wrap: anywhere;
}

.menu-download span {
  min-width: 0;
  font-weight: 900;
}

.menu-download small {
  flex: 0 0 auto;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.menu-download:hover {
  border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
  color: var(--accent);
}

.reserve {
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, var(--paper)), var(--paper));
}

.detail-panel {
  padding: 26px;
}

.detail-panel dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.detail-panel div {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.detail-panel div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.detail-panel dt {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.detail-panel dd {
  margin: 0;
  font-weight: 750;
  overflow-wrap: anywhere;
}

.detail-panel a { text-decoration: none; }
.detail-panel a:hover { color: var(--accent); }

details {
  padding: 20px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

.mobile-cta {
  position: fixed;
  left: 0;
  right: auto;
  bottom: 0;
  z-index: 40;
  display: none;
  width: 100vw;
  max-width: 100vw;
  gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--paper) 92%, var(--white));
  border-top: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.mobile-cta a {
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 900;
}

.mobile-cta a:first-child { background: var(--accent); color: var(--white); }
.mobile-cta a:last-child { border: 1px solid var(--line); background: var(--white); }

footer {
  padding: 34px clamp(20px, 4vw, 58px) calc(34px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

footer .section-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
}

.footer-socials {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
}

footer a { text-decoration: none; }
footer a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
    gap: 8px;
    font-size: 13px;
  }

  .nav a:not(.button-link) { display: none; }

  .hero { min-height: 690px; }

  .intro-layout,
  .feature-layout,
  .reserve-layout,
  .info-grid,
  .faq-grid,
  .details,
  .gallery,
  .menu-downloads {
    grid-template-columns: 1fr;
  }

  .mobile-cta {
    display: block;
  }

  body { padding-bottom: calc(68px + env(safe-area-inset-bottom)); }
  .mobile-cta a:last-child { display: none; }
}

@media (max-width: 540px) {
  .brand img { max-width: min(168px, 62vw); }
  .brand span { font-size: 14px; }
  .hero-content {
    width: auto;
    max-width: none;
    margin-left: 20px;
    margin-right: 20px;
  }
  h1 {
    max-width: min(320px, calc(100vw - 48px));
    font-size: clamp(34px, 10vw, 42px);
    line-height: 1.06;
    text-wrap: auto;
    overflow-wrap: anywhere;
    word-break: break-word;
  }
  h2 { font-size: clamp(27px, 8vw, 34px); }
  .hero-copy {
    max-width: min(320px, calc(100vw - 48px));
    font-size: 16px;
    overflow-wrap: anywhere;
  }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-metrics { display: none; }
  .button { width: 100%; }
  .section { padding-left: 24px; padding-right: 24px; }
  .info-card, .detail-panel, details { padding: 20px; }
  footer .section-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero::before { transform: none; }
  .hero-video { display: none; }
}
