@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --color-midnight-caviar: #0b1220;
  --color-smoked-burgundy: #111c2e;
  --color-velvet-charcoal: #17243a;
  --color-warm-silk-champagne: #f4f7fb;
  --color-muted-slate-linen: #aab8cd;
  --color-imperial-saffron-gold: #5eead4;
  --color-aged-gold: #2dd4bf;
  --color-deep-velvet-crimson: #0f766e;
  --color-crimson-hover: #14b8a6;
  --color-focus-gold: #67e8f9;

  --color-canvas: var(--color-midnight-caviar);
  --color-surface: var(--color-velvet-charcoal);
  --color-surface-accent: var(--color-smoked-burgundy);
  --color-text: var(--color-warm-silk-champagne);
  --color-text-muted: var(--color-muted-slate-linen);
  --color-border: rgba(94, 234, 212, 0.55);
  --color-divider: rgba(244, 247, 251, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.5rem;
  --text-2xl: 2rem;
  --text-display: clamp(2.375rem, 5.3vw, 4.25rem);

  --leading-tight: 0.98;
  --leading-heading: 1.15;
  --leading-body: 1.6;
  --leading-small: 1.45;

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
  --space-10: 8rem;

  --container-max: 75rem;
  --gutter: 2rem;
  --section-space: 6rem;

  --radius-none: 0;
  --radius-sm: 0.125rem;
  --radius-lg: 0.375rem;
  --radius-pill: 999px;

  --shadow-elevated: 0 18px 50px rgba(0, 0, 0, 0.42);
  --transition-fast: 180ms ease-out;
}

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

html {
  min-width: 320px;
  background: var(--color-canvas);
  color-scheme: dark;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--color-canvas);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 400;
  line-height: var(--leading-body);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main,
header,
footer,
section,
article,
aside,
nav,
figure,
form {
  min-width: 0;
}

img,
picture,
svg,
video,
canvas,
iframe {
  display: block;
  max-width: 100%;
}

img,
video {
  height: auto;
}

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

button,
select {
  cursor: pointer;
}

button {
  border: 0;
}

textarea {
  min-height: 7rem;
  resize: vertical;
}

a {
  color: var(--color-warm-silk-champagne);
  text-decoration-color: rgba(94, 234, 212, 0.72);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}

a:hover {
  color: var(--color-imperial-saffron-gold);
  text-decoration-color: currentColor;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--color-focus-gold);
  outline-offset: 3px;
}

::selection {
  background: var(--color-deep-velvet-crimson);
  color: var(--color-warm-silk-champagne);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-block: 0 var(--space-4);
  color: var(--color-warm-silk-champagne);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h1 {
  font-size: var(--text-display);
  line-height: var(--leading-tight);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3.5rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: var(--leading-heading);
}

h4 {
  font-size: var(--text-xl);
  line-height: 1.2;
}

h5,
h6 {
  font-size: var(--text-lg);
  line-height: 1.25;
}

h1 em,
h2 em,
h3 em,
h4 em,
h5 em,
h6 em {
  font-style: italic;
  font-weight: 500;
}

p {
  margin-block: 0 var(--space-4);
}

small {
  font-size: var(--text-xs);
  line-height: 1.35;
}

strong {
  color: var(--color-warm-silk-champagne);
  font-weight: 600;
}

em {
  font-family: var(--font-display);
}

blockquote {
  margin: 0 0 var(--space-5);
  padding: var(--space-4) 0 var(--space-4) var(--space-5);
  border-inline-start: 2px solid var(--color-imperial-saffron-gold);
  color: var(--color-warm-silk-champagne);
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.2;
}

hr {
  height: 1px;
  margin: var(--space-7) 0;
  border: 0;
  background: var(--color-border);
}

ul,
ol {
  margin-block: 0 var(--space-4);
  padding-inline-start: 1.35rem;
}

ol {
  list-style: decimal;
}

.content-list {
  display: grid;
  gap: var(--space-2);
}

.content-list,
.content-list ul,
.content-list ol {
  margin-block-end: var(--space-5);
}

.content-list li {
  min-width: 0;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
  text-align: start;
  vertical-align: top;
}

th {
  color: var(--color-warm-silk-champagne);
  font-size: var(--text-sm);
  font-weight: 600;
}

caption {
  margin-bottom: var(--space-2);
  color: var(--color-text-muted);
  caption-side: bottom;
  font-size: var(--text-xs);
  text-align: start;
}

label {
  display: inline-block;
  margin-bottom: var(--space-2);
  color: var(--color-warm-silk-champagne);
  font-size: var(--text-sm);
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(244, 247, 251, 0.24);
  border-radius: var(--radius-sm);
  background: var(--color-velvet-charcoal);
  color: var(--color-warm-silk-champagne);
  line-height: 1.4;
  padding: 0.75rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast);
}

input::placeholder,
textarea::placeholder {
  color: rgba(170, 184, 205, 0.76);
}

input:hover,
select:hover,
textarea:hover {
  border-color: var(--color-border);
}

input:disabled,
select:disabled,
textarea:disabled,
button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

fieldset {
  min-width: 0;
  margin: 0 0 var(--space-5);
  padding: var(--space-4);
  border: 1px solid var(--color-divider);
}

legend {
  padding-inline: var(--space-2);
  color: var(--color-warm-silk-champagne);
  font-weight: 500;
}

.container {
  width: min(100%, calc(var(--container-max) + (var(--gutter) * 2)));
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-space);
}

.surface {
  background: var(--color-surface);
}

.surface-burgundy {
  background: var(--color-surface-accent);
}

.eyebrow {
  margin-bottom: var(--space-3);
  color: var(--color-imperial-saffron-gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.35;
  text-transform: uppercase;
}

.lead {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.55;
}

.gold-rule {
  width: min(7rem, 100%);
  height: 1px;
  margin-block: var(--space-5);
  border: 0;
  background: var(--color-imperial-saffron-gold);
}

.card {
  min-width: 0;
  padding: var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
}

.card > :last-child,
.panel > :last-child,
.compact-group > :last-child,
.home-facts > :last-child {
  margin-bottom: 0;
}

.panel {
  min-width: 0;
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-none);
  background: var(--color-surface);
}

.stack {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: var(--space-4);
}

.cluster {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.cluster > * {
  min-width: 0;
}

.button-group {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-3);
}

.button-group > * {
  min-width: 0;
}

.button,
button[type="submit"],
button[type="button"],
button[type="reset"] {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-deep-velvet-crimson);
  border-radius: var(--radius-sm);
  background: var(--color-deep-velvet-crimson);
  color: var(--color-warm-silk-champagne);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.2;
  padding: 0.7rem 1rem;
  text-align: center;
  text-decoration: none;
  transition: background-color var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.button:hover,
button[type="submit"]:hover,
button[type="button"]:hover,
button[type="reset"]:hover {
  border-color: var(--color-crimson-hover);
  background: var(--color-crimson-hover);
  color: var(--color-warm-silk-champagne);
  transform: translateY(-1px);
}

.button:active,
button[type="submit"]:active,
button[type="button"]:active,
button[type="reset"]:active {
  transform: translateY(0);
}

.button-secondary {
  border: 1px solid var(--color-imperial-saffron-gold);
  background: transparent;
  color: var(--color-warm-silk-champagne);
}

.button-secondary:hover {
  border-color: var(--color-aged-gold);
  background: rgba(94, 234, 212, 0.1);
  color: var(--color-warm-silk-champagne);
}

.rt-ribbon {
  position: relative;
  z-index: 50;
  display: flex;
  min-height: 2.75rem;
  align-items: center;
  justify-content: center;
  border-block: 1px solid var(--color-imperial-saffron-gold);
  background: var(--color-smoked-burgundy);
  color: var(--color-warm-silk-champagne);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.35;
  padding: var(--space-2) var(--gutter);
  text-align: center;
}

.rt-brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-warm-silk-champagne);
  text-decoration: none;
}

.rt-brand:hover {
  color: var(--color-warm-silk-champagne);
}

.rt-brand__mark,
.rt-brand img {
  width: clamp(2.25rem, 4vw, 3.25rem);
  height: clamp(2.25rem, 4vw, 3.25rem);
  flex: 0 0 auto;
  border: 1px solid var(--color-imperial-saffron-gold);
  object-fit: cover;
}

.rt-brand__copy {
  display: grid;
  min-width: 0;
  gap: var(--space-1);
}

.rt-brand__title {
  color: var(--color-warm-silk-champagne);
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  font-weight: 600;
  line-height: 0.95;
  white-space: nowrap;
}

.rt-brand__subtitle {
  color: var(--color-muted-slate-linen);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--color-border);
  background: var(--color-velvet-charcoal);
}

.home-facts > * {
  min-width: 0;
  padding: var(--space-4);
}

.home-facts > * + * {
  border-inline-start: 1px solid var(--color-divider);
}

.home-facts dt,
.home-facts__label {
  margin-bottom: var(--space-2);
  color: var(--color-imperial-saffron-gold);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.home-facts dd,
.home-facts__value {
  margin: 0;
  color: var(--color-warm-silk-champagne);
  font-size: var(--text-sm);
  line-height: var(--leading-small);
}

.nav-toggle {
  display: inline-flex;
  width: 2.75rem;
  min-height: 2.75rem;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  border: 1px solid var(--color-imperial-saffron-gold);
  border-radius: var(--radius-sm);
  background: var(--color-velvet-charcoal);
  color: var(--color-warm-silk-champagne);
  padding: 0.5rem;
}

.nav-toggle:hover {
  background: var(--color-smoked-burgundy);
}

.nav-toggle span,
.nav-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 1px;
  background: currentColor;
}

.age-gate-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  overflow-y: auto;
  place-items: center;
  padding: var(--space-4);
  background: rgba(11, 18, 32, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.age-gate-modal[hidden] {
  display: none;
}

.age-gate-modal__panel {
  width: min(100%, 34rem);
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  padding: var(--space-6);
  border: 1px solid var(--color-imperial-saffron-gold);
  border-top: 3px solid var(--color-smoked-burgundy);
  border-radius: var(--radius-lg);
  background: var(--color-velvet-charcoal);
  box-shadow: var(--shadow-elevated);
}

.age-gate-modal__panel > :last-child {
  margin-bottom: 0;
}

.age-gate-modal__title {
  margin-bottom: var(--space-3);
}

.age-gate-modal__actions {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.age-gate-modal__actions > * {
  min-width: 0;
}

@media (max-width: 56.25rem) {
  :root {
    --gutter: 1.5rem;
    --section-space: 4.5rem;
  }

  h1 {
    font-size: clamp(2.875rem, 7vw, 3.5rem);
    line-height: 1.02;
  }

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

  .home-facts > * + * {
    border-inline-start: 1px solid var(--color-divider);
  }

  .home-facts > :nth-child(odd):not(:first-child) {
    border-inline-start: 0;
  }

  .home-facts > :nth-child(n + 3) {
    border-top: 1px solid var(--color-divider);
  }
}

@media (max-width: 43.75rem) {
  :root {
    --gutter: 1.125rem;
    --section-space: 3.25rem;
  }

  html {
    scroll-padding-top: 6.5rem;
  }

  h1 {
    font-size: clamp(2.375rem, 10vw, 2.875rem);
    line-height: 1.05;
  }

  h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .rt-ribbon {
    min-height: 2.75rem;
    justify-content: flex-start;
    padding-inline: 0.75rem;
    text-align: start;
  }

  .rt-brand__subtitle {
    font-size: 0.625rem;
  }

  .card,
  .panel {
    padding: var(--space-5);
  }

  .button-group,
  .age-gate-modal__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button-group > .button,
  .button-group > button,
  .age-gate-modal__actions > .button,
  .age-gate-modal__actions > button {
    width: 100%;
  }

  .age-gate-modal {
    padding: 1rem;
  }

  .age-gate-modal__panel {
    width: calc(100% - 2rem);
    padding: var(--space-5);
  }
}

@media (max-width: 30rem) {
  .home-facts {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-facts > * + * {
    border-inline-start: 0;
    border-top: 1px solid var(--color-divider);
  }

  .home-facts > :nth-child(n + 3) {
    border-top: 1px solid var(--color-divider);
  }

  .rt-brand {
    gap: var(--space-2);
  }

  .rt-brand__title {
    font-size: 1.3rem;
  }

  .rt-brand__subtitle {
    letter-spacing: 0.09em;
    white-space: normal;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
  }
}

ul { list-style: none !important; }
.nav-toggle { flex-direction: column; }
