:root {
  --bg: #08090b;
  --bg-elevated: rgba(17, 18, 22, 0.82);
  --bg-panel: rgba(8, 9, 11, 0.92);
  --text: #f6f7fb;
  --muted: #aeb2bd;
  --chrome: #dfe4eb;
  --chrome-soft: rgba(223, 228, 235, 0.18);
  --red: #de2127;
  --red-deep: #8c0f15;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.48);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --max-width: 1200px;
  --header-height: 96px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Barlow Condensed", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(222, 33, 39, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(223, 228, 235, 0.14), transparent 24%),
    linear-gradient(145deg, #040507 0%, #0a0b0d 45%, #111317 100%);
  line-height: 1.45;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.035) 50%, transparent 80%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 20%);
  opacity: 0.8;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.section {
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 4.75rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.1rem 1rem 1rem;
  min-height: var(--header-height);
  border-radius: 0 0 22px 22px;
  overflow: clip;
  backdrop-filter: blur(18px);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 0 0 22px 22px;
  background: linear-gradient(180deg, rgba(8, 9, 11, 0.92), rgba(8, 9, 11, 0.74));
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong,
h1,
h2,
h3,
.button,
.metric-value,
.product-kicker,
.product-status {
  font-family: "Orbitron", sans-serif;
}

.brand-text strong {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand-text span:last-child {
  font-size: 0.96rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding-right: 0.35rem;
  font-size: 1.05rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.28rem;
  width: 52px;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - var(--header-height));
  padding-top: 2.5rem;
}

.hero-copy h1,
.section-heading h2,
.showcase-copy h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5.2vw, 4.9rem);
  line-height: 0.98;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.merch-hero .hero-copy h1 {
  font-size: clamp(2.3rem, 4.6vw, 4.3rem);
}

.eyebrow,
.product-kicker {
  margin: 0 0 1rem;
  font-size: 0.95rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #ff7c82;
}

.lead,
.section-heading p,
.showcase-copy p {
  font-size: 1.28rem;
  color: var(--muted);
}

.hero-actions,
.reserve-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 2rem 0 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0.9rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, #f4313a, #b80f17 70%);
  color: #fff;
  box-shadow: 0 18px 38px rgba(184, 15, 23, 0.32);
}

.button-ghost {
  border-color: rgba(223, 228, 235, 0.24);
  background: rgba(223, 228, 235, 0.03);
}

.hero-highlights,
.reserve-list {
  display: grid;
  gap: 0.85rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.hero-highlights li,
.reserve-list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.1rem;
  color: var(--chrome);
}

.hero-highlights li::before,
.reserve-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fff, #d9dde4 45%, #bfc6cf 80%);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.28);
}

.hero-visual,
.merch-preview,
.contact-layout,
.split-showcase {
  display: grid;
  gap: 1.25rem;
}

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

.hero-card,
.metric-card,
.service-card,
.social-card,
.contact-panel,
.contact-card,
.product-card,
.showcase-copy {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 20, 24, 0.82), rgba(8, 9, 11, 0.95));
  box-shadow: var(--shadow);
}

.hero-card::before,
.metric-card::before,
.service-card::before,
.social-card::before,
.contact-panel::before,
.contact-card::before,
.product-card::before,
.showcase-copy::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(180deg, transparent 50%, rgba(222, 33, 39, 0.09) 100%);
  pointer-events: none;
}

.hero-card-main img,
.gallery-item img,
.social-card img,
.contact-card img,
.product-card img,
.showcase-image img,
.merch-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card-main {
  min-height: 620px;
}

.hero-card-main img {
  min-height: 620px;
  object-position: center;
}

.hero-card-panel {
  display: grid;
  gap: 1rem;
  padding: 1.4rem;
}

.mini-stat {
  padding: 1.1rem 1.15rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.mini-stat span,
.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  color: #ff8d92;
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mini-stat strong,
.contact-row strong {
  font-size: 1.2rem;
}

.metrics,
.service-grid,
.social-grid,
.product-grid {
  display: grid;
  gap: 1.2rem;
}

.metrics {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.metric-card,
.service-card {
  padding: 1.6rem;
}

.metric-value {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: clamp(0.92rem, 1.2vw, 1.15rem);
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--chrome);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2rem;
}

.section-heading h2,
.showcase-copy h2 {
  font-size: clamp(2rem, 4vw, 3.6rem);
  margin-bottom: 1rem;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card h3,
.social-copy h3,
.product-copy h3 {
  margin-top: 0;
  margin-bottom: 0.8rem;
  font-size: 1.35rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.service-card p,
.social-copy p,
.product-copy p,
.metric-card p,
.contact-section p,
.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.gallery-layout {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.embed-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.gallery-item {
  min-height: 290px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.embed-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(19, 20, 24, 0.82), rgba(8, 9, 11, 0.95));
  box-shadow: var(--shadow);
}

.embed-card iframe {
  display: block;
  width: 100%;
  min-height: 740px;
  border: 0;
  background: #000;
}

.gallery-item-large {
  grid-column: span 6;
  min-height: 640px;
}

.gallery-item-small {
  grid-column: span 4;
  min-height: 320px;
}

.social-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-card {
  display: grid;
  grid-template-rows: 420px 1fr;
}

.social-copy,
.product-copy {
  padding: 1.35rem;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--chrome);
}

.merch-teaser {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.5rem;
  align-items: center;
}

.merch-preview {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.merch-preview img {
  min-height: 420px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.contact-layout,
.split-showcase {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-panel {
  display: grid;
  gap: 0.9rem;
  padding: 1.25rem;
}

.contact-row {
  display: block;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.contact-row:hover,
.contact-row:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.14);
}

.contact-card,
.showcase-image,
.product-card {
  min-height: 100%;
}

.product-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
  display: grid;
  grid-template-rows: 360px 1fr;
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-gallery {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 280ms ease;
}

.product-gallery img {
  flex: 0 0 100%;
  width: 100%;
  height: 360px;
  object-fit: cover;
}

.product-gallery-contain {
  background: radial-gradient(circle at center, rgba(223, 228, 235, 0.08), transparent 58%);
}

.product-gallery-contain img {
  object-fit: contain;
  padding: 2rem;
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(8, 9, 11, 0.78);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.gallery-arrow:hover,
.gallery-arrow:focus-visible {
  transform: translateY(-50%) scale(1.04);
  background: rgba(20, 21, 26, 0.94);
}

.gallery-arrow-prev {
  left: 0.9rem;
}

.gallery-arrow-next {
  right: 0.9rem;
}

.gallery-arrow.is-disabled {
  opacity: 0.4;
}

.product-status {
  display: inline-flex;
  margin-top: 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #ffc2c5;
}

.showcase-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.showcase-copy {
  padding: 2rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max-width));
  margin: 0 auto;
  padding: 1.5rem 0 2.5rem;
  border-top: 1px solid var(--line);
}

.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .button,
  .contact-row,
  .product-gallery,
  .gallery-arrow {
    transition: none;
  }
}

@media (max-width: 1080px) {
  .hero,
  .merch-teaser,
  .contact-layout,
  .split-showcase {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .social-grid,
  .product-grid,
  .embed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item-large,
  .gallery-item-small {
    grid-column: span 6;
  }

  .metrics {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .section {
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding: 3.5rem 0;
  }

  .site-header {
    width: min(calc(100% - 1.25rem), var(--max-width));
    padding: 0.9rem 0.8rem 0.8rem;
  }

  .js .site-nav {
    position: absolute;
    top: calc(100% + 0.6rem);
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(9, 10, 12, 0.96);
    box-shadow: var(--shadow);
  }

  .js .site-nav.is-open {
    display: flex;
  }

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

  .brand-text span:last-child {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 1rem;
  }

  .hero-copy h1,
  .merch-hero .hero-copy h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .lead,
  .section-heading p,
  .showcase-copy p {
    font-size: 1.12rem;
  }

  .hero-card-main,
  .hero-card-main img {
    min-height: 420px;
  }

  .service-grid,
  .social-grid,
  .product-grid,
  .merch-preview,
  .embed-grid {
    grid-template-columns: 1fr;
  }

  .gallery-layout {
    grid-template-columns: 1fr;
  }

  .gallery-item-large,
  .gallery-item-small {
    grid-column: auto;
    min-height: 340px;
  }

  .social-card,
  .product-card {
    grid-template-rows: auto 1fr;
  }

  .gallery-arrow {
    width: 40px;
    height: 40px;
  }

  .social-card img {
    max-height: 520px;
    object-fit: cover;
    object-position: top;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}
