/* ==========================================================================
   Strategy & Club — Main CSS
   Base styles, fonts, variables, reset, layout helpers
   ========================================================================== */

/* ==========================================================================
   1. Local Fonts
   ========================================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  src:
    url('../fonts/CormorantGaramond-SemiBold.woff2') format('woff2'),
    url('../fonts/CormorantGaramond-SemiBold.woff') format('woff');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src:
    url('../fonts/Manrope-Bold.woff2') format('woff2'),
    url('../fonts/Manrope-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src:
    url('../fonts/Manrope-Medium.woff2') format('woff2'),
    url('../fonts/Manrope-Medium.woff') format('woff');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Manrope';
  src:
    url('../fonts/Manrope-Regular.woff2') format('woff2'),
    url('../fonts/Manrope-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ==========================================================================
   2. Root Variables
   ========================================================================== */

:root {
  /* Fonts */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Manrope', Arial, sans-serif;

  /* Colors — dark Canadian poker bar style */
  --color-bg: #070706;
  --color-bg-soft: #0d0d0b;
  --color-bg-muted: #14130f;
  --color-surface: rgba(18, 18, 16, 0.82);
  --color-surface-solid: #13120f;
  --color-surface-light: #1b1914;

  --color-text: #f6f0e2;
  --color-text-soft: #d6cbb7;
  --color-text-muted: #9c927f;

  --color-gold: #c6a052;
  --color-gold-light: #e0c172;
  --color-gold-dark: #8f7035;

  --color-border: rgba(198, 160, 82, 0.22);
  --color-border-soft: rgba(246, 240, 226, 0.09);

  --color-danger: #b94c4c;
  --color-success: #8ca66b;

  /* Gradients */
  --gradient-hero:
    radial-gradient(
      circle at 72% 22%,
      rgba(198, 160, 82, 0.22),
      transparent 34%
    ),
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.08),
      transparent 32%
    ),
    linear-gradient(180deg, rgba(7, 7, 6, 0.08) 0%, #070706 96%);

  --gradient-section: linear-gradient(
    180deg,
    #070706 0%,
    #0d0d0b 36%,
    #11100d 68%,
    #070706 100%
  );

  --gradient-card: linear-gradient(
    145deg,
    rgba(255, 255, 255, 0.06),
    rgba(255, 255, 255, 0.015)
  );

  --gradient-gold: linear-gradient(
    135deg,
    #e3c476 0%,
    #b99143 48%,
    #76592a 100%
  );

  /* Layout */
  --container: 1180px;
  --container-wide: 1360px;
  --gutter: 20px;

  --section-padding: clamp(76px, 9vw, 140px);
  --section-padding-small: clamp(52px, 6vw, 88px);

  /* Radius */
  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-xl: 42px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-soft: 0 24px 80px rgba(0, 0, 0, 0.38);
  --shadow-card: 0 18px 54px rgba(0, 0, 0, 0.28);
  --shadow-gold: 0 18px 46px rgba(198, 160, 82, 0.16);

  /* Transitions */
  --transition-fast: 180ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 520ms ease;

  /* Header */
  --header-height: 86px;

  /* Z-index */
  --z-header: 100;
  --z-cookie: 200;
  --z-age-gate: 300;
}

/* ==========================================================================
   3. Reset
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--color-text);
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 160, 82, 0.09),
      transparent 30%
    ),
    var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
blockquote {
  margin: 0;
}

address {
  font-style: normal;
}

::selection {
  color: var(--color-bg);
  background: var(--color-gold-light);
}

/* ==========================================================================
   4. Accessibility
   ========================================================================== */

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  padding: 12px 18px;
  border-radius: var(--radius-pill);
  color: var(--color-bg);
  background: var(--color-gold-light);
  font-size: 14px;
  font-weight: 700;
  transition: transform var(--transition-base);
}

.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   5. Base Typography
   ========================================================================== */

h1,
h2,
h3,
h4,
.heading {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.025em;
  color: var(--color-text);
}

h1,
.h1 {
  font-size: clamp(64px, 9vw, 132px);
}

h2,
.h2 {
  font-size: clamp(42px, 6vw, 84px);
}

h3,
.h3 {
  font-size: clamp(30px, 3.8vw, 54px);
}

h4,
.h4 {
  font-size: clamp(22px, 2.4vw, 32px);
}

p {
  color: var(--color-text-soft);
}

.text-large {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.62;
}

.text-small {
  font-size: 14px;
  line-height: 1.55;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-gold {
  color: var(--color-gold-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

/* ==========================================================================
   6. Layout Helpers
   ========================================================================== */

.page {
  overflow: hidden;
  background: var(--color-bg);
}

.container {
  width: min(100% - calc(var(--gutter) * 2), var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - calc(var(--gutter) * 2), var(--container-wide));
  margin-inline: auto;
}

.section {
  position: relative;
  padding-block: var(--section-padding);
}

.section--small {
  padding-block: var(--section-padding-small);
}

.section--soft {
  background: var(--gradient-section);
}

.section-blend-top {
  position: relative;
}

.section-blend-top::before {
  content: '';
  position: absolute;
  inset: -120px 0 auto;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 7, 6, 0), var(--color-bg));
}

.section-blend-bottom {
  position: relative;
}

.section-blend-bottom::after {
  content: '';
  position: absolute;
  inset: auto 0 -120px;
  height: 220px;
  pointer-events: none;
  background: linear-gradient(180deg, var(--color-bg), rgba(7, 7, 6, 0));
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stack {
  display: grid;
  gap: 18px;
}

.stack-lg {
  display: grid;
  gap: 32px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: center;
}

.center {
  text-align: center;
}

.max-text {
  max-width: 680px;
}

.max-text-sm {
  max-width: 520px;
}

/* ==========================================================================
   7. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-xs);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    color var(--transition-base),
    box-shadow var(--transition-base);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #120f08;
  background: var(--gradient-gold);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  box-shadow: 0 22px 58px rgba(198, 160, 82, 0.24);
}

.btn-outline {
  color: var(--color-text);
  border-color: var(--color-border);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline:hover {
  color: var(--color-gold-light);
  border-color: rgba(224, 193, 114, 0.62);
  background: rgba(198, 160, 82, 0.08);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ==========================================================================
   8. Cards & Surfaces
   ========================================================================== */

.surface {
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: var(--gradient-card), rgba(15, 15, 13, 0.78);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.card {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(18, 18, 16, 0.74);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.card::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    circle at top,
    rgba(198, 160, 82, 0.14),
    transparent 42%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 160, 82, 0.34);
}

.card:hover::before {
  opacity: 1;
}

.card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 24px;
  color: var(--color-gold-light);
}

.card-title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.08;
}

.card-text {
  font-size: 15px;
  color: var(--color-text-soft);
}

/* ==========================================================================
   9. Media Blocks
   ========================================================================== */

.media-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface-solid);
  box-shadow: var(--shadow-soft);
}

.media-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.05), rgba(7, 7, 6, 0.42)),
    radial-gradient(circle at center, transparent 45%, rgba(0, 0, 0, 0.34));
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--portrait {
  aspect-ratio: 4 / 5;
}

/* ==========================================================================
   10. Header Base
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    backdrop-filter var(--transition-base);
}

.site-header.is-scrolled {
  border-bottom: 1px solid var(--color-border-soft);
  background: rgba(7, 7, 6, 0.74);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-text);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold-light);
}

.logo-text {
  display: grid;
  gap: 2px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.logo-subtitle {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.28em;
  color: var(--color-gold);
}

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding-block: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition: color var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-gold-light);
  transition: transform var(--transition-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-gold-light);
}

.nav-link:hover::after,
.nav-link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* ==========================================================================
   11. Hero Base
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: var(--header-height);
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.52;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(7, 7, 6, 0.92) 0%,
      rgba(7, 7, 6, 0.62) 44%,
      rgba(7, 7, 6, 0.4) 100%
    ),
    linear-gradient(180deg, rgba(7, 7, 6, 0.12) 0%, #070706 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100% - calc(var(--gutter) * 2), var(--container-wide));
  margin-inline: auto;
  padding-block: clamp(120px, 14vw, 220px);
}

.hero-title {
  max-width: 760px;
  margin-bottom: 28px;
}

.hero-title span {
  color: var(--color-gold-light);
}

.hero-lead {
  max-width: 540px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2vw, 22px);
}

/* ==========================================================================
   12. Age Gate
   ========================================================================== */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-age-gate);
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(7, 7, 6, 0.76);
  backdrop-filter: blur(16px);
}

.age-gate[hidden] {
  display: none;
}

.age-gate-panel {
  width: min(100%, 520px);
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(198, 160, 82, 0.16), transparent 46%),
    #11100e;
  box-shadow: var(--shadow-soft);
}

.age-gate-symbol {
  margin-bottom: 18px;
  font-size: 34px;
  color: var(--color-gold-light);
}

.age-gate-title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1;
}

.age-gate-text {
  margin-bottom: 28px;
}

.age-gate-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
}

/* ==========================================================================
   13. Cookie Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: var(--z-cookie);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  width: min(calc(100% - 40px), 980px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: rgba(14, 14, 12, 0.92);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(18px);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-text {
  font-size: 14px;
  color: var(--color-text-soft);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   14. Utility Classes
   ========================================================================== */

.hide {
  display: none !important;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: initial;
}

.visually-hidden {
  position: absolute !important;
  overflow: hidden;
  clip: rect(0 0 0 0);
  width: 1px;
  height: 1px;
  margin: -1px;
  white-space: nowrap;
}

.decor-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(198, 160, 82, 0.42),
    transparent
  );
}

.gold-divider {
  width: 74px;
  height: 1px;
  background: var(--color-gold);
}

/* ==========================================================================
   15. Responsive
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --header-height: 76px;
    --section-padding: clamp(68px, 10vw, 110px);
  }

  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split {
    grid-template-columns: 1fr;
  }

  .site-nav {
    display: none;
  }

  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: initial;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 16px;
  }

  body {
    font-size: 15px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-block: 150px 96px;
  }

  .btn-row {
    width: 100%;
  }

  .btn-row .btn {
    flex: 1 1 100%;
  }

  .age-gate-actions {
    flex-direction: column;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 420px) {
  h1,
  .h1 {
    font-size: 56px;
  }

  .logo-text {
    font-size: 20px;
  }

  .card {
    padding: 24px;
  }

  .cookie-actions {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================================
   Header
   ========================================================================== */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  height: var(--header-height);
  color: var(--color-text);
  background: linear-gradient(
    180deg,
    rgba(7, 7, 6, 0.72) 0%,
    rgba(7, 7, 6, 0.42) 58%,
    rgba(7, 7, 6, 0) 100%
  );
  transition:
    background var(--transition-base),
    border-color var(--transition-base),
    backdrop-filter var(--transition-base),
    box-shadow var(--transition-base);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom: 1px solid var(--color-border-soft);
  background: rgba(7, 7, 6, 0.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  gap: 28px;
}

/* Logo */

.site-logo {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    'main icon'
    'sub sub';
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  min-width: 176px;
  color: var(--color-text);
}

.site-logo__main {
  grid-area: main;
  display: grid;
  gap: 1px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.site-logo__icon {
  grid-area: icon;
  color: var(--color-text);
  font-size: 32px;
  line-height: 1;
  transform: translateY(2px);
}

.site-logo__sub {
  grid-area: sub;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.site-logo__sub::before {
  content: '';
  width: 36px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

/* Desktop nav */

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.45vw, 38px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 4px 0;
  overflow: hidden;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  transition:
    color var(--transition-base),
    text-shadow var(--transition-base);
}

.nav-link::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 6px;
  width: 100%;
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: var(--color-gold-light);
  opacity: 0;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 18px;
  height: 1px;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  background: var(--color-gold-dark);
  opacity: 0;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base);
}

.nav-link:hover,
.nav-link.is-active {
  color: var(--color-gold-light);
  text-shadow: 0 0 24px rgba(198, 160, 82, 0.28);
}

.nav-link:hover::before,
.nav-link:hover::after,
.nav-link.is-active::before,
.nav-link.is-active::after {
  transform: translateX(-50%) scaleX(1);
  opacity: 1;
}

/* Header actions */

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  min-width: 176px;
}

.header-visit {
  min-height: 48px;
  padding-inline: 30px;
  border-color: rgba(198, 160, 82, 0.52);
  background: rgba(7, 7, 6, 0.18);
}

.header-visit:hover {
  background: rgba(198, 160, 82, 0.12);
}

/* Menu toggle */

.menu-toggle {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  color: var(--color-text);
  background: rgba(7, 7, 6, 0.22);
  transition:
    border-color var(--transition-base),
    background var(--transition-base);
}

.menu-toggle:hover {
  border-color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.1);
}

.menu-toggle__line {
  position: absolute;
  left: 13px;
  width: 20px;
  height: 1px;
  background: currentColor;
  transition:
    transform var(--transition-base),
    opacity var(--transition-base),
    top var(--transition-base);
}

.menu-toggle__line:nth-child(1) {
  top: 17px;
}

.menu-toggle__line:nth-child(2) {
  top: 23px;
}

.menu-toggle__line:nth-child(3) {
  top: 29px;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

.menu-toggle.is-active .menu-toggle__line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active .menu-toggle__line:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

/* ==========================================================================
   Mobile Menu
   ========================================================================== */

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: calc(var(--z-header) + 1);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 7, 6, 0.72);
  backdrop-filter: blur(10px);
}

.mobile-menu__panel {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  width: min(100%, 430px);
  min-height: 100%;
  padding: 26px;
  border-left: 1px solid var(--color-border-soft);
  background:
    radial-gradient(
      circle at 80% 12%,
      rgba(198, 160, 82, 0.18),
      transparent 34%
    ),
    linear-gradient(180deg, #11100e 0%, #070706 100%);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.42);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
}

.mobile-menu.is-open .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 46px;
}

.site-logo--mobile {
  min-width: 0;
}

.mobile-menu__close {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.03);
  font-size: 30px;
  line-height: 1;
  transition:
    color var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.mobile-menu__close:hover {
  color: var(--color-gold-light);
  border-color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.1);
}

.mobile-nav__list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--color-border-soft);
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-border-soft);
}

.mobile-nav__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
  transition:
    color var(--transition-base),
    padding-left var(--transition-base);
}

.mobile-nav__link:hover,
.mobile-nav__link.is-active {
  padding-left: 10px;
  color: var(--color-gold-light);
}

.mobile-menu__info {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 42px;
  color: var(--color-text-soft);
}

.mobile-menu__label {
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.mobile-menu__info a {
  width: fit-content;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.5;
  transition: color var(--transition-base);
}

.mobile-menu__info a:hover {
  color: var(--color-gold-light);
}

.mobile-menu__notice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  padding: 16px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.035);
  color: var(--color-text-soft);
}

.mobile-menu__notice strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  color: var(--color-text);
}

/* Header responsive */

@media (max-width: 1120px) {
  .nav-list {
    gap: 22px;
  }

  .header-visit {
    padding-inline: 22px;
  }
}

@media (max-width: 1024px) {
  .site-nav,
  .header-visit {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .header-actions {
    min-width: auto;
  }
}

@media (max-width: 768px) {
  .site-logo {
    min-width: 0;
  }

  .site-logo__main {
    font-size: 24px;
  }

  .site-logo__icon {
    font-size: 28px;
  }

  .site-logo__sub {
    font-size: 9px;
    letter-spacing: 0.28em;
  }
}

@media (max-width: 420px) {
  .mobile-menu__panel {
    padding: 22px 18px;
  }

  .mobile-nav__link {
    font-size: 28px;
  }
}
body.is-menu-locked {
  overflow: hidden;
}
/* ==========================================================================
   Footer
   ========================================================================== */

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid var(--color-border-soft);
  background:
    radial-gradient(
      circle at 16% 0%,
      rgba(198, 160, 82, 0.11),
      transparent 34%
    ),
    linear-gradient(180deg, #0b0b09 0%, #070706 100%);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.035),
      transparent 28%,
      transparent 72%,
      rgba(255, 255, 255, 0.025)
    ),
    radial-gradient(
      circle at 82% 34%,
      rgba(198, 160, 82, 0.08),
      transparent 28%
    );
}

.footer-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.9fr 1fr 0.82fr;
  gap: clamp(34px, 5vw, 82px);
  padding-block: clamp(56px, 7vw, 86px);
}

.footer-brand {
  display: grid;
  align-content: start;
  gap: 24px;
}

.footer-logo {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto auto;
  grid-template-areas:
    'main icon'
    'sub sub';
  align-items: center;
  column-gap: 12px;
  row-gap: 4px;
  width: fit-content;
  color: var(--color-text);
}

.footer-logo__main {
  grid-area: main;
  display: grid;
  gap: 1px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 0.86;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.footer-logo__icon {
  grid-area: icon;
  color: var(--color-text);
  font-size: 34px;
  line-height: 1;
  transform: translateY(2px);
}

.footer-logo__sub {
  grid-area: sub;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 2px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.footer-logo__sub::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.footer-brand__text {
  max-width: 290px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text-muted);
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 18px;
}

.footer-title {
  margin-bottom: 2px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer-list {
  display: grid;
  gap: 9px;
}

.footer-address {
  display: grid;
  gap: 13px;
}

.footer-link {
  position: relative;
  width: fit-content;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-soft);
  transition:
    color var(--transition-base),
    transform var(--transition-base);
}

.footer-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--color-gold-light);
  transition: transform var(--transition-base);
}

.footer-link:hover {
  color: var(--color-gold-light);
  transform: translateX(3px);
}

.footer-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

/* 18+ card */

.footer-safe-card {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 172px;
  padding: 24px 20px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  text-align: center;
  background:
    radial-gradient(circle at top, rgba(198, 160, 82, 0.12), transparent 48%),
    rgba(255, 255, 255, 0.025);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.footer-safe-card__age {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border: 1px solid var(--color-text-soft);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 500;
  color: var(--color-text);
}

.footer-safe-card strong {
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-text);
}

.footer-safe-card p {
  max-width: 150px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-muted);
}

.footer-safe-card a {
  color: var(--color-text-soft);
  text-decoration: underline;
  text-decoration-color: rgba(198, 160, 82, 0.55);
  text-underline-offset: 3px;
  transition: color var(--transition-base);
}

.footer-safe-card a:hover {
  color: var(--color-gold-light);
}

/* Footer bottom */

.footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-block: 20px 26px;
  border-top: 1px solid var(--color-border-soft);
}

.footer-bottom p {
  font-size: 12px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

/* Footer responsive */

@media (max-width: 1180px) {
  .footer-main {
    grid-template-columns: 1.2fr 0.8fr 0.9fr;
  }

  .footer-safe-card {
    grid-column: span 1;
  }
}

@media (max-width: 820px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 42px 34px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-safe-card {
    justify-items: start;
    align-content: start;
    text-align: left;
  }

  .footer-safe-card p {
    max-width: 260px;
  }
}

@media (max-width: 560px) {
  .footer-main {
    grid-template-columns: 1fr;
    padding-block: 54px;
  }

  .footer-logo__main {
    font-size: 30px;
  }

  .footer-safe-card {
    justify-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
/* ==========================================================================
   Cookie Banner
   ========================================================================== */

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: var(--z-cookie);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 72px);
  padding: 18px clamp(18px, 4vw, 42px);
  border-top: 1px solid var(--color-border-soft);
  background:
    radial-gradient(
      circle at 18% 0%,
      rgba(198, 160, 82, 0.08),
      transparent 30%
    ),
    rgba(10, 10, 9, 0.94);
  box-shadow: 0 -18px 64px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(18px);
  transform: translateY(110%);
  opacity: 0;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-base);
}

.cookie-banner.is-visible {
  transform: translateY(0);
  opacity: 1;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner__content {
  min-width: 0;
}

.cookie-banner__text {
  max-width: 690px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  white-space: nowrap;
}

.cookie-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.cookie-banner__btn:hover {
  transform: translateY(-2px);
}

.cookie-banner__btn--accept {
  border: 1px solid rgba(198, 160, 82, 0.72);
  color: #120f08;
  background: var(--gradient-gold);
  box-shadow: 0 14px 34px rgba(198, 160, 82, 0.16);
}

.cookie-banner__btn--accept:hover {
  box-shadow: 0 18px 42px rgba(198, 160, 82, 0.24);
}

.cookie-banner__btn--decline {
  border: 1px solid rgba(246, 240, 226, 0.22);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.025);
}

.cookie-banner__btn--decline:hover {
  border-color: rgba(224, 193, 114, 0.54);
  color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.08);
}

.cookie-banner__link {
  position: relative;
  font-size: 13px;
  line-height: 1.45;
  color: var(--color-text-soft);
  transition: color var(--transition-base);
}

.cookie-banner__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: rgba(198, 160, 82, 0.72);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.cookie-banner__link:hover {
  color: var(--color-gold-light);
}

.cookie-banner__link:hover::after {
  transform: scaleX(0.68);
}

/* Cookie responsive */

@media (max-width: 920px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .cookie-banner__actions {
    justify-content: flex-start;
    flex-wrap: wrap;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .cookie-banner {
    padding: 18px 16px;
  }

  .cookie-banner__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .cookie-banner__btn {
    min-width: 0;
    width: 100%;
  }

  .cookie-banner__link {
    grid-column: 1 / -1;
  }
}
/* ==========================================================================
   Age Gate
   ========================================================================== */

.age-gate {
  position: fixed;
  inset: 0;
  z-index: var(--z-age-gate);
  display: grid;
  place-items: center;
  padding: 20px;
}

.age-gate[hidden] {
  display: none;
}

.age-gate__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 50% 34%,
      rgba(198, 160, 82, 0.14),
      transparent 34%
    ),
    rgba(7, 7, 6, 0.72);
  backdrop-filter: blur(10px);
}

.age-gate__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: clamp(34px, 5vw, 52px);
  border: 1px solid rgba(246, 240, 226, 0.12);
  border-radius: 18px;
  text-align: center;
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(198, 160, 82, 0.12),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(25, 25, 22, 0.96) 0%,
      rgba(13, 13, 11, 0.96) 100%
    );
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: translateY(18px) scale(0.98);
  opacity: 0;
  transition:
    transform var(--transition-slow),
    opacity var(--transition-base);
}

.age-gate.is-visible .age-gate__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.age-gate__symbol {
  margin-bottom: 22px;
  color: var(--color-gold-light);
  font-size: 44px;
  line-height: 1;
  text-shadow: 0 0 34px rgba(198, 160, 82, 0.28);
}

.age-gate__title {
  margin-bottom: 14px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 5vw, 42px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.age-gate__text {
  max-width: 390px;
  margin-inline: auto;
  margin-bottom: 28px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--color-text-soft);
}

.age-gate__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 26px;
}

.age-gate__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: var(--radius-xs);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    color var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.age-gate__btn:hover {
  transform: translateY(-2px);
}

.age-gate__btn--confirm {
  border: 1px solid rgba(198, 160, 82, 0.78);
  color: #120f08;
  background: var(--gradient-gold);
  box-shadow: 0 16px 42px rgba(198, 160, 82, 0.18);
}

.age-gate__btn--confirm:hover {
  box-shadow: 0 20px 52px rgba(198, 160, 82, 0.28);
}

.age-gate__btn--deny {
  border: 1px solid rgba(246, 240, 226, 0.28);
  color: var(--color-text);
  background: rgba(255, 255, 255, 0.025);
}

.age-gate__btn--deny:hover {
  border-color: rgba(224, 193, 114, 0.56);
  color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.08);
}

.age-gate__note {
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.age-gate__restricted {
  display: grid;
  justify-items: center;
}

.age-gate__restricted[hidden] {
  display: none;
}

.age-gate__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xs);
  color: var(--color-gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  transition:
    border-color var(--transition-base),
    background var(--transition-base),
    transform var(--transition-base);
}

.age-gate__link:hover {
  transform: translateY(-2px);
  border-color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.08);
}

body.is-age-locked {
  overflow: hidden;
}

/* Age gate responsive */

@media (max-width: 560px) {
  .age-gate {
    padding: 16px;
  }

  .age-gate__panel {
    padding: 34px 22px;
  }

  .age-gate__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .age-gate__btn {
    width: 100%;
    min-width: 0;
  }
}
/* ==========================================================================
   Home Hero
   ========================================================================== */

.home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: start;
  overflow: hidden;
  padding-top: var(--header-height);
  background: var(--color-bg);
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 72% 20%,
      rgba(198, 160, 82, 0.13),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(7, 7, 6, 0.9) 0%,
      rgba(7, 7, 6, 0.64) 42%,
      rgba(7, 7, 6, 0.36) 100%
    ),
    linear-gradient(
      180deg,
      rgba(7, 7, 6, 0.32) 0%,
      rgba(7, 7, 6, 0.28) 48%,
      #070706 100%
    );
}

.home-hero__content {
  position: relative;
  z-index: 2;
  max-width: 960px;
  padding-block: clamp(40px, 18vw, 20px) clamp(150px, 16vw, 230px);
}

.home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.home-hero__eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.home-hero__title {
  display: grid;
  gap: 4px;
  margin-bottom: 26px;
  font-family: var(--font-heading);
  font-size: clamp(62px, 8.6vw, 102px);
  font-weight: 600;
  line-height: 0.82;
  letter-spacing: -0.035em;
  text-transform: uppercase;
  color: var(--color-text);
  text-wrap: balance;
}

.home-hero__title span:nth-child(3) {
  color: var(--color-gold-light);
}

.home-hero__lead {
  max-width: 480px;
  margin-bottom: 34px;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.55;
  color: var(--color-text-soft);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Hero curve */

.home-hero__curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 3;
  height: clamp(110px, 13vw, 180px);
  pointer-events: none;
}

.home-hero__curve svg {
  width: 100%;
  height: 100%;
  display: block;
}

.home-hero__curve-fill {
  fill: #070706;
}

.home-hero__curve-line {
  fill: none;
  stroke: rgba(198, 160, 82, 0.42);
  stroke-width: 1.2;
}

/* ==========================================================================
   Home Benefits
   ========================================================================== */

.home-benefits {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  padding-block: clamp(18px, 3vw, 36px) clamp(70px, 8vw, 118px);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(198, 160, 82, 0.08),
      transparent 38%
    ),
    linear-gradient(180deg, #070706 0%, #0b0b09 52%, #070706 100%);
}

.home-benefits::before {
  content: '';
  position: absolute;
  inset: -80px 0 auto;
  height: 160px;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(7, 7, 6, 0), #070706 72%);
}

.home-benefits__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(198, 160, 82, 0.16);
  border-bottom: 1px solid rgba(246, 240, 226, 0.06);
}

.benefit-card {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  min-height: 188px;
  padding: clamp(32px, 4vw, 54px) clamp(18px, 2.4vw, 34px);
  text-align: center;
}

.benefit-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 28px;
  right: 0;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(246, 240, 226, 0.12),
    transparent
  );
}

.benefit-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  color: var(--color-gold-light);
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 28px rgba(198, 160, 82, 0.22);
}

.benefit-card__title {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--color-text);
}

.benefit-card__text {
  max-width: 230px;
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.65;
  color: var(--color-text-soft);
}

/* Hero + benefits responsive */

@media (max-width: 1024px) {
  .home-hero__content {
    max-width: 600px;
  }

  .home-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefit-card:nth-child(2)::after {
    display: none;
  }

  .benefit-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(246, 240, 226, 0.07);
  }
}

@media (max-width: 768px) {
  .home-hero {
    min-height: auto;
  }

  .home-hero__overlay {
    background:
      radial-gradient(
        circle at 70% 18%,
        rgba(198, 160, 82, 0.12),
        transparent 32%
      ),
      linear-gradient(90deg, rgba(7, 7, 6, 0.92) 0%, rgba(7, 7, 6, 0.74) 100%),
      linear-gradient(180deg, rgba(7, 7, 6, 0.16) 0%, #070706 100%);
  }

  .home-hero__content {
    padding-block: 148px 170px;
  }

  .home-hero__title {
    font-size: clamp(56px, 16vw, 86px);
  }

  .home-hero__actions {
    width: 100%;
  }

  .home-hero__actions .btn {
    flex: 1 1 100%;
  }

  .home-benefits {
    padding-block: 8px 76px;
  }
}

@media (max-width: 620px) {
  .home-benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    min-height: auto;
    padding-block: 34px;
  }

  .benefit-card:not(:last-child)::after {
    display: none;
  }

  .benefit-card:not(:last-child) {
    border-bottom: 1px solid rgba(246, 240, 226, 0.07);
  }
}
/* ==========================================================================
   Poker Section
   ========================================================================== */

.poker-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(40px, 6vw, 84px) clamp(76px, 9vw, 124px);
  background:
    radial-gradient(
      circle at 82% 34%,
      rgba(198, 160, 82, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #090907 0%, #0c0c0a 52%, #070706 100%);
}

.poker-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.025),
    transparent 24%,
    transparent 76%,
    rgba(255, 255, 255, 0.02)
  );
}

.poker-section__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr);
  gap: clamp(30px, 4.5vw, 64px);
  align-items: stretch;
}

.poker-section__media {
  position: relative;
  min-width: 0;
}

.poker-section__picture {
  position: relative;
  display: block;
  overflow: hidden;
  height: 100%;
  min-height: 420px;
  border-radius: 0;
  background: #11100e;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
}

.poker-section__picture::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.06), rgba(7, 7, 6, 0.28)),
    radial-gradient(circle at center, transparent 56%, rgba(0, 0, 0, 0.24));
}

.poker-section__picture img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.poker-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 20px) 0;
}

.poker-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.poker-section__title {
  max-width: 560px;
  margin-bottom: 22px;
  font-family: var(--font-heading);
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--color-text);
  text-wrap: balance;
}

.poker-section__text {
  max-width: 560px;
  margin-bottom: 34px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.poker-section__features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 18px;
}

.poker-feature {
  display: grid;
  gap: 14px;
  align-content: start;
}

.poker-feature__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-gold-light);
  font-size: 26px;
  line-height: 1;
  text-shadow: 0 0 24px rgba(198, 160, 82, 0.22);
}

.poker-feature__body {
  display: grid;
  gap: 4px;
}

.poker-feature__title {
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--color-text);
}

.poker-feature__text {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-soft);
}

/* Responsive */

@media (max-width: 1024px) {
  .poker-section__grid {
    grid-template-columns: 1fr;
  }

  .poker-section__picture,
  .poker-section__picture img {
    min-height: 360px;
  }

  .poker-section__features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .poker-section {
    padding-block: 54px 78px;
  }

  .poker-section__title {
    font-size: clamp(34px, 10vw, 52px);
  }

  .poker-section__text {
    font-size: 16px;
    line-height: 1.7;
  }
}

@media (max-width: 520px) {
  .poker-section__picture,
  .poker-section__picture img {
    min-height: 280px;
  }

  .poker-section__features {
    grid-template-columns: 1fr 1fr;
    gap: 20px 14px;
  }

  .poker-feature__title,
  .poker-feature__text {
    font-size: 13px;
  }
}
/* ==========================================================================
   The Club Section
   ========================================================================== */

.club-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(84px, 10vw, 150px);
  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(198, 160, 82, 0.1),
      transparent 28%
    ),
    radial-gradient(
      circle at 82% 48%,
      rgba(255, 255, 255, 0.045),
      transparent 24%
    ),
    linear-gradient(180deg, #070706 0%, #10100d 46%, #070706 100%);
}

.club-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025),
      transparent 22%,
      transparent 78%,
      rgba(255, 255, 255, 0.018)
    ),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.018) 0,
      rgba(255, 255, 255, 0.018) 1px,
      transparent 1px,
      transparent 140px
    );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 20%,
    #000 78%,
    transparent 100%
  );
}

.club-section::after {
  content: '♠';
  position: absolute;
  right: clamp(20px, 6vw, 90px);
  bottom: clamp(30px, 8vw, 120px);
  color: rgba(198, 160, 82, 0.035);
  font-family: var(--font-heading);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  pointer-events: none;
}

.club-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.club-section__content {
  max-width: 760px;
}

.club-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.club-section__eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.club-section__title {
  max-width: 680px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--color-text);
  text-wrap: balance;
}

.club-section__copy {
  display: grid;
  gap: 18px;
  max-width: 720px;
  margin-bottom: 34px;
}

.club-section__copy p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.club-section__features {
  display: grid;
  gap: 14px;
  max-width: 720px;
  margin-bottom: 38px;
}

.club-section__features li {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.65;
}

.club-section__features span {
  color: var(--color-gold-light);
  font-size: 18px;
  line-height: 1.45;
}

.club-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Visual side */

.club-section__visual {
  position: relative;
  min-width: 0;
}

.club-section__picture {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 620px;
  border-radius: var(--radius-xl);
  background: var(--color-surface-solid);
  box-shadow: var(--shadow-soft);
}

.club-section__picture::before {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(198, 160, 82, 0.18);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.club-section__picture::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.04), rgba(7, 7, 6, 0.38)),
    radial-gradient(circle at center, transparent 50%, rgba(0, 0, 0, 0.34));
}

.club-section__picture img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.club-section__info-card {
  position: absolute;
  left: clamp(-26px, -3vw, -42px);
  bottom: clamp(28px, 4vw, 58px);
  z-index: 3;
  width: min(88%, 360px);
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 160, 82, 0.14),
      transparent 42%
    ),
    rgba(13, 13, 11, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.club-section__info-icon {
  display: block;
  margin-bottom: 16px;
  color: var(--color-gold-light);
  font-size: 32px;
  line-height: 1;
}

.club-section__info-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text);
}

.club-section__info-card p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--color-text-soft);
}

/* Stats */

.club-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(46px, 6vw, 84px);
  border-top: 1px solid rgba(198, 160, 82, 0.18);
  border-bottom: 1px solid rgba(246, 240, 226, 0.07);
}

.club-stat {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: clamp(24px, 3vw, 38px);
  text-align: center;
}

.club-stat:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 24px;
  right: 0;
  bottom: 24px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(246, 240, 226, 0.13),
    transparent
  );
}

.club-stat strong {
  font-family: var(--font-heading);
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 600;
  line-height: 0.95;
  color: var(--color-gold-light);
}

.club-stat span {
  max-width: 220px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-soft);
}

/* Responsive */

@media (max-width: 1080px) {
  .club-section__inner {
    grid-template-columns: 1fr;
  }

  .club-section__content {
    max-width: 840px;
  }

  .club-section__picture,
  .club-section__picture img {
    min-height: 520px;
  }

  .club-section__info-card {
    left: 28px;
  }
}

@media (max-width: 768px) {
  .club-section {
    padding-block: 72px 88px;
  }

  .club-section__title {
    font-size: clamp(40px, 12vw, 62px);
  }

  .club-section__copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .club-section__actions {
    width: 100%;
  }

  .club-section__actions .btn {
    flex: 1 1 100%;
  }

  .club-section__picture,
  .club-section__picture img {
    min-height: 430px;
  }

  .club-section__info-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
  }

  .club-stats {
    grid-template-columns: 1fr;
  }

  .club-stat:not(:last-child) {
    border-bottom: 1px solid rgba(246, 240, 226, 0.07);
  }

  .club-stat:not(:last-child)::after {
    display: none;
  }
}

@media (max-width: 520px) {
  .club-section__picture,
  .club-section__picture img {
    min-height: 340px;
  }

  .club-section__info-card {
    padding: 22px;
  }
}
/* ==========================================================================
   Food & Drinks Section
   ========================================================================== */

.food-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 154px);
  background:
    radial-gradient(
      circle at 76% 18%,
      rgba(198, 160, 82, 0.14),
      transparent 28%
    ),
    radial-gradient(
      circle at 18% 76%,
      rgba(255, 255, 255, 0.045),
      transparent 26%
    ),
    linear-gradient(180deg, #070706 0%, #11100d 48%, #070706 100%);
}

.food-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.024),
      transparent 26%,
      transparent 74%,
      rgba(255, 255, 255, 0.018)
    ),
    radial-gradient(circle at 50% 0%, rgba(198, 160, 82, 0.06), transparent 34%);
}

.food-section::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 8%;
  width: min(86vw, 1180px);
  height: min(86vw, 1180px);
  transform: translateX(-50%);
  border: 1px solid rgba(198, 160, 82, 0.055);
  border-radius: 50%;
  pointer-events: none;
}

.food-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

/* Visual */

.food-section__visual {
  position: relative;
  min-width: 0;
}

.food-section__picture {
  position: relative;
  display: block;
  overflow: hidden;
  min-height: 680px;
  border-radius: var(--radius-xl);
  background: var(--color-surface-solid);
  box-shadow: var(--shadow-soft);
}

.food-section__picture::before {
  content: '';
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid rgba(198, 160, 82, 0.2);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.food-section__picture::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(7, 7, 6, 0.03), rgba(7, 7, 6, 0.34)),
    radial-gradient(circle at center, transparent 52%, rgba(0, 0, 0, 0.38));
}

.food-section__picture img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
}

.food-section__floating-card {
  position: absolute;
  right: clamp(-20px, -2.2vw, -34px);
  bottom: clamp(34px, 4vw, 62px);
  z-index: 3;
  width: min(86%, 350px);
  padding: 26px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background:
    radial-gradient(
      circle at top left,
      rgba(198, 160, 82, 0.16),
      transparent 42%
    ),
    rgba(13, 13, 11, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(18px);
}

.food-section__floating-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--color-gold-light);
  font-size: 32px;
  line-height: 1;
}

.food-section__floating-card strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text);
}

.food-section__floating-card p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--color-text-soft);
}

/* Content */

.food-section__content {
  min-width: 0;
}

.food-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.food-section__eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.food-section__title {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--color-text);
  text-wrap: balance;
}

.food-section__copy {
  display: grid;
  gap: 18px;
  max-width: 780px;
  margin-bottom: 34px;
}

.food-section__copy p {
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

/* Cards */

.food-section__cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 28px;
}

.food-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(18, 18, 16, 0.72);
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base);
}

.food-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(198, 160, 82, 0.14),
    transparent 42%
  );
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.food-card:hover {
  transform: translateY(-4px);
  border-color: rgba(198, 160, 82, 0.34);
  background:
    linear-gradient(
      180deg,
      rgba(198, 160, 82, 0.06),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(18, 18, 16, 0.78);
}

.food-card:hover::before {
  opacity: 1;
}

.food-card h3 {
  position: relative;
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text);
}

.food-card p {
  position: relative;
  font-size: 14px;
  line-height: 1.62;
  color: var(--color-text-soft);
}

/* Hours */

.food-section__hours {
  margin-bottom: 34px;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(198, 160, 82, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 160, 82, 0.12),
      transparent 38%
    ),
    rgba(255, 255, 255, 0.026);
  box-shadow: var(--shadow-card);
}

.food-section__hours-head {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 22px;
}

.food-section__hours-head span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-size: 25px;
  line-height: 1;
}

.food-section__hours-head h3 {
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.food-section__hours-head p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.hours-list {
  display: grid;
  gap: 0;
}

.hours-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding-block: 14px;
  border-top: 1px solid rgba(246, 240, 226, 0.08);
}

.hours-list__row dt {
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-text-soft);
}

.hours-list__row dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-gold-light);
  text-align: right;
}

.food-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Responsive */

@media (max-width: 1120px) {
  .food-section__layout {
    grid-template-columns: 1fr;
  }

  .food-section__visual {
    order: 2;
  }

  .food-section__content {
    order: 1;
  }

  .food-section__picture,
  .food-section__picture img {
    min-height: 520px;
  }

  .food-section__floating-card {
    right: 28px;
  }
}

@media (max-width: 768px) {
  .food-section {
    padding-block: 72px 88px;
  }

  .food-section__title {
    font-size: clamp(40px, 12vw, 62px);
  }

  .food-section__copy p {
    font-size: 16px;
    line-height: 1.72;
  }

  .food-section__cards {
    grid-template-columns: 1fr;
  }

  .food-card {
    min-height: auto;
  }

  .food-section__picture,
  .food-section__picture img {
    min-height: 420px;
  }

  .food-section__floating-card {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    margin-top: -42px;
  }

  .food-section__actions {
    width: 100%;
  }

  .food-section__actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 520px) {
  .food-section__picture,
  .food-section__picture img {
    min-height: 330px;
  }

  .food-section__hours {
    padding: 22px;
  }

  .food-section__hours-head {
    flex-direction: column;
  }

  .hours-list__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .hours-list__row dd {
    text-align: left;
  }
}
/* ==========================================================================
   Events Section
   ========================================================================== */

.events-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(86px, 10vw, 150px);
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(198, 160, 82, 0.11),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 54%,
      rgba(255, 255, 255, 0.045),
      transparent 24%
    ),
    linear-gradient(180deg, #070706 0%, #10100d 50%, #070706 100%);
}

.events-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.018) 0,
    rgba(255, 255, 255, 0.018) 1px,
    transparent 1px,
    transparent 132px
  );
  mask-image: linear-gradient(
    180deg,
    transparent 0%,
    #000 22%,
    #000 78%,
    transparent 100%
  );
}

.events-section::after {
  content: '♠';
  position: absolute;
  left: clamp(12px, 5vw, 80px);
  bottom: clamp(24px, 8vw, 120px);
  color: rgba(198, 160, 82, 0.035);
  font-family: var(--font-heading);
  font-size: clamp(180px, 22vw, 360px);
  line-height: 1;
  pointer-events: none;
}

.events-section__header {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
  margin-bottom: clamp(42px, 6vw, 76px);
}

.events-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.events-section__eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.events-section__title {
  max-width: 760px;
  font-family: var(--font-heading);
  font-size: clamp(46px, 6vw, 86px);
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--color-text);
  text-wrap: balance;
}

.events-section__intro {
  max-width: 720px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.events-section__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.8fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: start;
}

.events-section__content {
  display: grid;
  gap: 24px;
}

/* Copy card */

.events-copy-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 46px);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 160, 82, 0.1),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(18, 18, 16, 0.72);
  box-shadow: var(--shadow-card);
}

.events-copy-card__mark {
  display: block;
  margin-bottom: 20px;
  color: var(--color-gold-light);
  font-size: 42px;
  line-height: 1;
  text-shadow: 0 0 32px rgba(198, 160, 82, 0.24);
}

.events-copy-card h3 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.events-copy-card p {
  max-width: 850px;
  margin-bottom: 26px;
  font-size: 16px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.events-details-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
}

.events-details-list li {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.events-details-list span {
  color: var(--color-gold-light);
}

/* Table */

.events-table-wrap {
  overflow: hidden;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background: rgba(13, 13, 11, 0.72);
  box-shadow: var(--shadow-card);
}

.events-table {
  width: 100%;
  border-collapse: collapse;
}

.events-table caption {
  padding: 20px 24px;
  border-bottom: 1px solid var(--color-border-soft);
  text-align: left;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.events-table th,
.events-table td {
  padding: 18px 24px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid rgba(246, 240, 226, 0.07);
}

.events-table tr:last-child td {
  border-bottom: 0;
}

.events-table th {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.045);
}

.events-table td {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-soft);
}

.events-table td:first-child {
  width: 120px;
  color: var(--color-text);
  font-weight: 700;
}

.events-table td:nth-child(2) {
  width: 210px;
  color: var(--color-text);
}

/* Next event card */

.next-event-card {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(198, 160, 82, 0.28);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(198, 160, 82, 0.18),
      transparent 42%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(13, 13, 11, 0.9);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.next-event-card::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 160, 82, 0.12);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.next-event-card__top {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 28px;
}

.next-event-card__label {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.next-event-card__age {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 240, 226, 0.38);
  border-radius: 50%;
  font-size: 15px;
  color: var(--color-text);
}

.next-event-card__date {
  position: relative;
  display: grid;
  justify-items: center;
  width: 148px;
  height: 148px;
  margin: 0 auto 28px;
  border: 1px solid rgba(198, 160, 82, 0.42);
  border-radius: 50%;
  background:
    radial-gradient(
      circle at center,
      rgba(198, 160, 82, 0.12),
      transparent 58%
    ),
    rgba(255, 255, 255, 0.026);
}

.next-event-card__date span {
  align-self: end;
  margin-bottom: 4px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.next-event-card__date strong {
  align-self: start;
  font-family: var(--font-heading);
  font-size: 72px;
  font-weight: 600;
  line-height: 0.92;
  color: var(--color-text);
}

.next-event-card__title {
  position: relative;
  max-width: 360px;
  margin: 0 auto 26px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 600;
  line-height: 0.98;
  color: var(--color-text);
}

.next-event-card__meta {
  position: relative;
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.next-event-card__meta div {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 16px;
  padding-block: 15px;
  border-top: 1px solid rgba(246, 240, 226, 0.08);
}

.next-event-card__meta div:last-child {
  border-bottom: 1px solid rgba(246, 240, 226, 0.08);
}

.next-event-card__meta dt {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.next-event-card__meta dd {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.next-event-card__actions {
  position: relative;
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.next-event-card__note {
  position: relative;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
  color: var(--color-text-muted);
}

/* Responsive */

@media (max-width: 1080px) {
  .events-section__header,
  .events-section__layout {
    grid-template-columns: 1fr;
  }

  .next-event-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding-block: 72px 88px;
  }

  .events-section__title {
    font-size: clamp(40px, 12vw, 62px);
  }

  .events-section__intro {
    font-size: 16px;
    line-height: 1.72;
  }

  .events-details-list {
    grid-template-columns: 1fr;
  }

  .events-table-wrap {
    overflow-x: auto;
  }

  .events-table {
    min-width: 720px;
  }
}

@media (max-width: 520px) {
  .events-copy-card {
    padding: 26px 22px;
  }

  .next-event-card {
    padding: 28px 22px;
  }

  .next-event-card__meta div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .next-event-card__date {
    width: 128px;
    height: 128px;
  }

  .next-event-card__date strong {
    font-size: 62px;
  }
}
/* ==========================================================================
   Contact Section
   ========================================================================== */

.contact-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(90px, 11vw, 160px);
  background: #070706;
}

.contact-section__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.contact-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  opacity: 0.58;
}

.contact-section__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(
      circle at 18% 28%,
      rgba(198, 160, 82, 0.12),
      transparent 28%
    ),
    linear-gradient(
      90deg,
      rgba(7, 7, 6, 0.92) 0%,
      rgba(7, 7, 6, 0.72) 44%,
      rgba(7, 7, 6, 0.54) 100%
    ),
    linear-gradient(180deg, #070706 0%, rgba(7, 7, 6, 0.42) 36%, #070706 100%);
}

.contact-section__grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 0.78fr);
  gap: clamp(42px, 7vw, 112px);
  align-items: center;
}

.contact-section__content {
  max-width: 760px;
}

.contact-section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.contact-section__eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.contact-section__title {
  max-width: 760px;
  margin-bottom: 28px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6.6vw, 92px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--color-text);
  text-wrap: balance;
}

.contact-section__text {
  max-width: 700px;
  margin-bottom: 34px;
  font-size: 17px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.contact-section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Contact panel */

.contact-section__panel {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid rgba(198, 160, 82, 0.26);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 160, 82, 0.14),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.052),
      rgba(255, 255, 255, 0.018)
    ),
    rgba(13, 13, 11, 0.88);
  box-shadow:
    0 26px 80px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.contact-section__panel::before {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(198, 160, 82, 0.1);
  border-radius: calc(var(--radius-xl) - 14px);
  pointer-events: none;
}

.contact-panel__top {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
}

.contact-panel__icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-size: 30px;
  line-height: 1;
}

.contact-panel__top h3 {
  margin-bottom: 8px;
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.contact-panel__top p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-muted);
}

/* Contact cards */

.contact-cards {
  position: relative;
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-card {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(246, 240, 226, 0.08);
}

.contact-card:last-child {
  border-bottom: 1px solid rgba(246, 240, 226, 0.08);
}

.contact-card__icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--color-gold-light);
  font-size: 24px;
  line-height: 1;
}

.contact-card__body h4 {
  margin-bottom: 6px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.contact-card__body p {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

.contact-card__body a {
  position: relative;
  width: fit-content;
  font-size: 13px;
  line-height: 1.4;
  color: var(--color-text);
  transition: color var(--transition-base);
}

.contact-card__body a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  transform: scaleX(1);
  transform-origin: left;
  background: rgba(198, 160, 82, 0.72);
  transition: transform var(--transition-base);
}

.contact-card__body a:hover {
  color: var(--color-gold-light);
}

.contact-card__body a:hover::after {
  transform: scaleX(0.68);
}

/* Hours */

.contact-hours {
  position: relative;
  margin-bottom: 24px;
  padding: 22px;
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.026);
}

.contact-hours__head {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
}

.contact-hours__head span {
  color: var(--color-gold-light);
  font-size: 26px;
  line-height: 1;
}

.contact-hours__head h4 {
  margin-bottom: 5px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.contact-hours__head p {
  font-size: 13px;
  line-height: 1.5;
  color: var(--color-text-muted);
}

.contact-hours__list {
  display: grid;
}

.contact-hours__list div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 12px;
  border-top: 1px solid rgba(246, 240, 226, 0.07);
}

.contact-hours__list dt {
  font-size: 14px;
  line-height: 1.45;
  color: var(--color-text-soft);
}

.contact-hours__list dd {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-gold-light);
  text-align: right;
}

/* Notice */

.contact-section__notice {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(198, 160, 82, 0.22);
  border-radius: var(--radius-md);
  background: rgba(198, 160, 82, 0.06);
}

.contact-section__notice strong {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(246, 240, 226, 0.38);
  border-radius: 50%;
  color: var(--color-text);
  font-size: 15px;
}

.contact-section__notice span {
  font-size: 13px;
  line-height: 1.55;
  color: var(--color-text-soft);
}

/* Responsive */

@media (max-width: 1080px) {
  .contact-section__grid {
    grid-template-columns: 1fr;
  }

  .contact-section__content {
    max-width: 820px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding-block: 76px 92px;
  }

  .contact-section__title {
    font-size: clamp(42px, 13vw, 64px);
  }

  .contact-section__text {
    font-size: 16px;
    line-height: 1.72;
  }

  .contact-section__actions {
    width: 100%;
  }

  .contact-section__actions .btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 520px) {
  .contact-section__panel {
    padding: 26px 20px;
  }

  .contact-panel__top {
    flex-direction: column;
  }

  .contact-card {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 12px;
  }

  .contact-card__icon {
    width: 34px;
    height: 34px;
  }

  .contact-hours__list div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-hours__list dd {
    text-align: left;
  }

  .contact-section__notice {
    align-items: flex-start;
  }
}
/* ==========================================================================
   Legal Pages
   ========================================================================== */

.legal-page {
  background:
    radial-gradient(
      circle at 18% 12%,
      rgba(198, 160, 82, 0.1),
      transparent 28%
    ),
    linear-gradient(180deg, #070706 0%, #10100d 48%, #070706 100%);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding-block: calc(var(--header-height) + clamp(70px, 9vw, 130px))
    clamp(54px, 7vw, 90px);
  border-bottom: 1px solid var(--color-border-soft);
}

.legal-hero::before {
  content: '♠';
  position: absolute;
  right: clamp(20px, 8vw, 140px);
  bottom: -0.18em;
  color: rgba(198, 160, 82, 0.045);
  font-family: var(--font-heading);
  font-size: clamp(180px, 24vw, 420px);
  line-height: 1;
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.legal-eyebrow::before {
  content: '';
  width: 46px;
  height: 1px;
  background: currentColor;
  opacity: 0.72;
}

.legal-title {
  margin-bottom: 24px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: -0.035em;
  color: var(--color-text);
}

.legal-lead {
  max-width: 780px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--color-text-soft);
}

.legal-updated {
  display: inline-flex;
  margin-top: 24px;
  padding: 10px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-gold-light);
  background: rgba(198, 160, 82, 0.06);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-section {
  padding-block: clamp(64px, 8vw, 110px);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 380px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.legal-content {
  display: grid;
  gap: 22px;
}

.legal-block {
  padding: clamp(26px, 4vw, 42px);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 160, 82, 0.08),
      transparent 38%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.045),
      rgba(255, 255, 255, 0.015)
    ),
    rgba(18, 18, 16, 0.72);
  box-shadow: var(--shadow-card);
}

.legal-block h2 {
  margin-bottom: 18px;
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.legal-block h3 {
  margin: 24px 0 12px;
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.05;
  color: var(--color-text);
}

.legal-block p {
  font-size: 16px;
  line-height: 1.78;
  color: var(--color-text-soft);
}

.legal-block p + p {
  margin-top: 14px;
}

.legal-list {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.legal-list li {
  position: relative;
  padding-left: 26px;
  color: var(--color-text-soft);
  font-size: 15px;
  line-height: 1.68;
}

.legal-list li::before {
  content: '♠';
  position: absolute;
  left: 0;
  top: 0.1em;
  color: var(--color-gold-light);
  font-size: 14px;
}

.legal-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  display: grid;
  gap: 20px;
}

.legal-side-card,
.legal-contact-card {
  padding: 26px;
  border: 1px solid rgba(198, 160, 82, 0.22);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(
      circle at top right,
      rgba(198, 160, 82, 0.12),
      transparent 40%
    ),
    rgba(13, 13, 11, 0.88);
  box-shadow: var(--shadow-card);
}

.legal-side-card h2,
.legal-contact-card h2 {
  margin-bottom: 10px;
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  color: var(--color-text);
}

.legal-side-card p,
.legal-contact-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-text-muted);
}

.legal-contact-card__top {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.legal-contact-card__top > span {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-gold-light);
  font-size: 26px;
}

.legal-contact-card__body {
  display: grid;
  gap: 18px;
}

.legal-contact-card__body div {
  display: grid;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid rgba(246, 240, 226, 0.08);
}

.legal-contact-card__body strong {
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold-light);
}

.legal-contact-card__body a {
  width: fit-content;
  color: var(--color-text-soft);
  font-size: 14px;
  line-height: 1.55;
  transition: color var(--transition-base);
}

.legal-contact-card__body a:hover {
  color: var(--color-gold-light);
}

@media (max-width: 1024px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-sidebar {
    position: static;
  }
}

@media (max-width: 640px) {
  .legal-block,
  .legal-side-card,
  .legal-contact-card {
    padding: 24px 20px;
  }
}
