:root {
  --red: #c62828;
  --red-dark: #8e1116;
  --yellow: #f9c300;
  --orange: #f57c00;
  --wine: #7b1e3a;
  --cream: #fff4d6;
  --cream-2: #ffefd0;
  --pool: #1597c9;
  --dark: #1e1e1e;
  --dark-2: #2b2b2b;
  --white: #ffffff;
  --text-soft: rgba(255, 255, 255, 0.92);
  --text-muted: rgba(255, 255, 255, 0.76);
  --glass: rgba(255, 255, 255, 0.1);
  --glass-strong: rgba(255, 255, 255, 0.16);
  --border: rgba(255, 255, 255, 0.16);
  --border-soft: rgba(255, 255, 255, 0.1);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  --shadow-soft: 0 10px 24px rgba(0, 0, 0, 0.16);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 14px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(249, 195, 0, 0.14), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(245, 124, 0, 0.12), transparent 22%),
    linear-gradient(135deg, #76122f 0%, #b8161c 48%, #cf2127 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

.section {
  padding: 92px 0;
}

.centre {
  text-align: center;
}

.narrow {
  max-width: 820px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
}

.section-heading {
  margin-bottom: 18px;
}

.section-heading h2,
.two-col h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.98;
  text-transform: uppercase;
  margin-bottom: 14px;
  letter-spacing: 0.01em;
}

.section-heading p,
.panel-copy,
.card p,
.reason-card p,
.review-card p,
.feature-list p,
.tick-list,
.faq-item p,
.hero-copy,
.hero-lead,
.hero-trust,
.form-note,
.final-cta p {
  color: var(--text-soft);
  line-height: 1.75;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  background: rgba(18, 18, 18, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0.03em;
}

.brand-logo {
  text-decoration: none;
}

.brand-logo span {
  line-height: 1;
  font-size: 1.05rem;
}

.site-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

nav a {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 600;
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.78;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media,
.hero-video,
.hero-overlay,
.hero-sangria-blur {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -4;
  background:
    linear-gradient(135deg, rgba(245, 124, 0, 0.24), rgba(198, 40, 40, 0.38)),
    url('https://images.unsplash.com/photo-1510812431401-41d2bd2722f3?auto=format&fit=crop&w=1600&q=80') center/cover;
}

.hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(18, 18, 18, 0.84) 0%, rgba(18, 18, 18, 0.54) 42%, rgba(18, 18, 18, 0.75) 100%);
}

.hero-sangria-blur {
  z-index: -2;
  background:
    radial-gradient(circle at 74% 14%, rgba(123, 30, 58, 0.48), transparent 21%),
    radial-gradient(circle at 82% 82%, rgba(249, 195, 0, 0.18), transparent 24%);
  filter: blur(14px);
}

.hero-layout {
  position: relative;
  z-index: 2;
  padding: 90px 0 80px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  max-width: 860px;
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5.8rem);
  line-height: 0.93;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  text-shadow: 0 6px 22px rgba(0, 0, 0, 0.34);
}

.hero-lead {
  font-size: 1.15rem;
  font-weight: 600;
  max-width: 720px;
  margin-bottom: 16px;
}

.hero-copy {
  max-width: 720px;
  font-size: 1.03rem;
  margin-bottom: 28px;
}

.hero-actions,
.hero-badges,
.hero-trust,
.footer-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-bottom: 22px;
}

.hero-badges {
  margin-bottom: 18px;
}

.hero-badges span,
.booking-panel,
.card,
.reason-card,
.review-card,
.feature-box,
.faq-item {
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-badges span {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
}

.hero-trust {
  gap: 12px 18px;
  font-size: 0.96rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, opacity 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-primary {
  background: linear-gradient(135deg, var(--yellow), var(--orange));
  color: var(--dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.btn-full {
  width: 100%;
}

.booking-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.14);
}

.panel-topline,
.pill,
.mini-title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249, 195, 0, 0.16);
  color: var(--yellow);
  border: 1px solid rgba(249, 195, 0, 0.3);
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.booking-panel h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 16px 0 12px;
  text-transform: uppercase;
}

.booking-form {
  margin-top: 22px;
  display: grid;
  gap: 14px;
}

.booking-form label {
  display: grid;
  gap: 8px;
}

.booking-form span {
  font-size: 0.92rem;
  font-weight: 700;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  color: var(--dark);
  padding: 0 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 4px rgba(249, 195, 0, 0.18);
}

.form-note {
  text-align: center;
  font-size: 0.92rem;
  margin-top: 2px;
}

.ticker-bar {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(20, 20, 20, 0.24);
}

.ticker-track {
  display: flex;
  gap: 30px;
  width: max-content;
  padding: 15px 0;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  animation: marquee 24s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.offer-grid,
.reasons-grid,
.reviews-grid,
.faq-list {
  display: grid;
  gap: 20px;
  margin-top: 34px;
}

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

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

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

.card,
.reason-card,
.review-card,
.feature-box,
.faq-item {
  border-radius: var(--radius-xl);
}

.card,
.reason-card,
.review-card,
.feature-box,
.faq-item {
  padding: 24px;
}

.card-icon,
.reason-card span {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 20px;
  font-size: 1.9rem;
  margin: 16px 0;
  background: rgba(255, 255, 255, 0.12);
}

.card h3,
.reason-card h3,
.review-card strong,
.faq-item h3 {
  margin-bottom: 10px;
}

.card h3,
.reason-card h3,
.faq-item h3 {
  font-size: 1.28rem;
}

.review-card strong {
  display: inline-block;
  margin-top: 12px;
}

.stars {
  color: var(--yellow);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.tick-list {
  list-style: none;
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.tick-list li::before {
  content: '✓';
  color: var(--yellow);
  font-weight: 800;
  margin-right: 10px;
}

.feature-list {
  display: grid;
  gap: 18px;
}

.feature-list-column {
  display: grid;
  gap: 18px;
}

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

.reason-card span {
  font-size: 1.6rem;
}

.faq-list {
  grid-template-columns: 1fr;
}

.faq-item h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.01em;
}

.final-cta {
  padding-top: 72px;
  padding-bottom: 110px;
}

.final-cta .btn {
  margin-top: 22px;
}

.site-footer {
  padding: 24px 0 36px;
}

.footer-wrap {
  justify-content: space-between;
  gap: 16px;
  color: rgba(255, 255, 255, 0.82);
}

code {
  background: rgba(0, 0, 0, 0.18);
  padding: 2px 8px;
  border-radius: 8px;
}

.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(118, 18, 47, 0.96), rgba(190, 22, 28, 0.96));
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.loading-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-card {
  max-width: 720px;
  padding: 32px;
  border-radius: 28px;
  text-align: center;
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.loading-kicker {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
  margin-bottom: 12px;
}

.loading-card h2 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.beer-progress {
  display: flex;
  justify-content: center;
  gap: 12px;
  font-size: 2rem;
  margin-bottom: 14px;
}

.simple-page {
  min-height: calc(100vh - 90px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.simple-box {
  width: min(760px, 100%);
  padding: 34px;
  border-radius: 28px;
  backdrop-filter: blur(12px);
  background: var(--glass);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.simple-box h1 {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.simple-box ul {
  margin: 18px 0 22px 20px;
}

@media (max-width: 1024px) {
  .hero-layout,
  .two-col,
  .offer-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .reasons-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content h1 {
    max-width: 100%;
  }
}

@media (max-width: 680px) {
  nav {
    display: none;
  }

  .section {
    padding: 74px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    padding: 74px 0 58px;
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-badges,
  .hero-trust,
  .footer-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions .btn {
    width: 100%;
  }

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

  .booking-panel,
  .card,
  .reason-card,
  .review-card,
  .feature-box,
  .faq-item,
  .loading-card,
  .simple-box {
    padding: 22px;
    border-radius: 22px;
  }

  .ticker-track {
    gap: 22px;
    font-size: 0.85rem;
  }
}

@media (max-width: 680px) {
  .site-logo {
    width: 48px;
    height: 48px;
  }

  .brand-logo span {
    font-size: 0.95rem;
  }
}
