@charset "UTF-8";

:root {
  --color-bg: #071416;
  --color-bg-alt: #0d2224;
  --color-bg-elevated: #123034;
  --color-bg-bordeaux: #082423;
  --color-text: #f5f1e8;
  --color-text-muted: #a9bab7;
  --color-primary: #0f766e;
  --color-primary-soft: #14a99c;
  --color-gold: #dab359;
  --color-gold-soft: #d6b775;
  --color-success: #26a269;
  --color-warning: #e5a50a;
  --color-danger: #c01c28;
  --color-border-subtle: #1d3f40;
  --color-border-strong: #305b5b;
  --gray-50: #f7f7fb;
  --gray-100: #e3e5f0;
  --gray-200: #c6cadb;
  --gray-300: #a9bab7;
  --gray-400: #7f9996;
  --gray-500: #496e6d;
  --gray-600: #305b5b;
  --gray-700: #204849;
  --gray-800: #102f32;
  --gray-900: #071a1d;
  --font-heading: "Playfair Display", "Bodoni Moda", "Cinzel", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", "Plus Jakarta Sans", "Outfit", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --leading-tight: 1.2;
  --leading-snug: 1.35;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-28: 7rem;
  --space-32: 8rem;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-56: 14rem;
  --space-64: 16rem;
  --space-72: 18rem;
  --space-80: 20rem;
  --space-96: 24rem;
  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.55);
  --shadow-elevated: 0 26px 70px rgba(0, 0, 0, 0.7);
  --shadow-gold-glow: 0 0 0 1px rgba(218, 179, 89, 0.32), 0 18px 45px rgba(0, 0, 0, 0.8);
  --shadow-subtle: 0 8px 24px rgba(0, 0, 0, 0.5);
  --transition-fast: 150ms ease-out;
  --transition-base: 220ms ease-out;
  --transition-slow: 320ms ease-out;
  --header-height: 76px;
  --container-max: 1120px;
  --border-width-hairline: 1px;
  --blur-glass: 18px;
  --ring-width: 2px;
  --ring-color-focus: rgba(214, 183, 117, 0.95);
}

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

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

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-text-muted);
  background: radial-gradient(circle at top left, #0c3735 0, #071416 42%, #030a0c 100%);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

main {
  display: block;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 var(--space-3);
  color: var(--color-text);
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: var(--leading-tight);
}

h1 {
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  letter-spacing: 0.04em;
}

h2 {
  font-size: clamp(1.9rem, 2.4vw, 2.4rem);
}

h3 {
  font-size: clamp(1.5rem, 2vw, 2rem);
}

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

p {
  margin: 0 0 var(--space-4);
  font-size: var(--text-base);
}

strong, b {
  font-weight: 600;
  color: var(--color-text);
}

em, i {
  font-style: italic;
}

a {
  color: var(--color-primary-soft);
  text-decoration: none;
  transition: color var(--transition-base), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-gold-soft);
}

a:focus-visible {
  outline: none;
}

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

img {
  height: auto;
}

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

button {
  border: none;
  padding: 0;
  background: none;
}

ul, ol {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-5);
}

li {
  margin-bottom: var(--space-2);
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

textarea {
  resize: vertical;
}

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

th, td {
  padding: var(--space-3) var(--space-4);
}

hr {
  border: 0;
  border-top: 1px solid var(--color-border-subtle);
  margin: var(--space-6) 0;
}

:focus-visible {
  outline: none;
  box-shadow: 0 0 0 var(--ring-width) var(--ring-color-focus);
  border-radius: var(--radius-sm);
}

[tabindex="-1"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

body.is-lock-scroll {
  overflow: hidden;
}

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-5);
  padding-right: var(--space-5);
}

@media (min-width: 1200px) {
  .container {
    padding-left: var(--space-6);
    padding-right: var(--space-6);
  }
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.flex-col {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

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

.gap-3 {
  gap: var(--space-3);
}

.gap-4 {
  gap: var(--space-4);
}

.gap-6 {
  gap: var(--space-6);
}

.grid {
  display: grid;
}

.grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: var(--space-10);
}

@media (max-width: 960px) {
  .grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.mt-0 {
  margin-top: 0;
}

.mt-4 {
  margin-top: var(--space-4);
}

.mt-6 {
  margin-top: var(--space-6);
}

.mt-8 {
  margin-top: var(--space-8);
}

.mb-0 {
  margin-bottom: 0;
}

.mb-4 {
  margin-bottom: var(--space-4);
}

.mb-6 {
  margin-bottom: var(--space-6);
}

.pb-0 {
  padding-bottom: 0;
}

.py-8 {
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
}

.py-12 {
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  font-size: var(--text-sm);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  cursor: pointer;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast), opacity var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #0f766e 0%, #0c5f59 48%, #083c3a 100%);
  color: var(--color-text);
  border-color: rgba(218, 179, 89, 0.52);
  box-shadow: var(--shadow-elevated);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-gold-glow);
  border-color: rgba(218, 179, 89, 0.92);
}

.btn-secondary {
  background: rgba(13, 31, 34, 0.9);
  color: var(--color-text);
  border-color: rgba(169, 186, 183, 0.5);
  box-shadow: var(--shadow-subtle);
}

.btn-secondary:hover {
  background: rgba(18, 48, 52, 0.95);
  border-color: rgba(214, 183, 117, 0.6);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text-muted);
  border-color: rgba(73, 110, 109, 0.4);
}

.btn-ghost:hover {
  color: var(--color-text);
  border-color: rgba(214, 183, 117, 0.7);
}

.btn:disabled,
.btn[aria-disabled="true"] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-subtle);
  background-color: rgba(6, 16, 19, 0.96);
  color: var(--color-text);
  font-size: var(--text-sm);
  line-height: 1.4;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(169, 186, 183, 0.7);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: none;
  border-color: rgba(214, 183, 117, 0.95);
  box-shadow: 0 0 0 1px rgba(214, 183, 117, 0.9), 0 18px 40px rgba(0, 0, 0, 0.9);
}

input[disabled],
textarea[disabled],
select[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}

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

.card {
  position: relative;
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(13, 45, 43, 0.9), rgba(6, 16, 19, 0.98));
  border: 1px solid rgba(73, 110, 109, 0.6);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, rgba(218, 179, 89, 0.085), transparent 60%);
  pointer-events: none;
}

.card-header {
  margin-bottom: var(--space-4);
}

.card-title {
  margin: 0;
  font-size: var(--text-xl);
}

.card-meta {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.card-body {
  position: relative;
  z-index: 1;
}

.rt-ribbon {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.4rem 1rem;
  background: linear-gradient(90deg, rgba(7, 20, 22, 0.96), rgba(8, 36, 35, 0.96));
  border-bottom: 1px solid rgba(214, 183, 117, 0.45);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.75);
  font-size: var(--text-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.85);
}

.rt-ribbon__inner {
  width: 100%;
  max-width: var(--container-max);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.rt-ribbon__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.15rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(214, 183, 117, 0.6);
  background: radial-gradient(circle at 0 0, rgba(218, 179, 89, 0.25), rgba(7, 20, 22, 0.9));
  font-size: 0.65rem;
}

.rt-ribbon__geo {
  opacity: 0.9;
}

.rt-brand {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
}

.rt-brand__crest {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 18px;
  background: radial-gradient(circle at 30% 0, rgba(218, 179, 89, 0.5), rgba(8, 36, 35, 0.75));
  border: 1px solid rgba(214, 183, 117, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.85);
}

.rt-brand__crest span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.11em;
  color: var(--color-bg);
}

.rt-brand__text {
  display: flex;
  flex-direction: column;
}

.rt-brand__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text);
}

.rt-brand__subtitle {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.rt-agegate-backdrop {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at top, rgba(8, 36, 35, 0.7), rgba(3, 10, 12, 0.94));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  z-index: 70;
}

.rt-agegate {
  position: relative;
  width: 100%;
  max-width: 520px;
  padding: var(--space-6) var(--space-6) var(--space-5);
  border-radius: 26px;
  background: linear-gradient(145deg, rgba(11, 34, 37, 0.96), rgba(4, 18, 19, 0.96));
  border: 1px solid rgba(214, 183, 117, 0.6);
  box-shadow: var(--shadow-gold-glow);
  backdrop-filter: blur(var(--blur-glass));
  -webkit-backdrop-filter: blur(var(--blur-glass));
  color: var(--color-text-muted);
}

.rt-agegate::before {
  content: "21+";
  position: absolute;
  inset-inline: 24px;
  top: -14px;
  margin-inline: auto;
  width: 72px;
  padding: 0.18rem 0.1rem;
  border-radius: var(--radius-full);
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #e0bd69, #c99b47);
  color: #071416;
  border: 1px solid rgba(10, 10, 12, 0.9);
}

.rt-agegate__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.rt-agegate__title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rt-agegate__badge {
  border-radius: 999px;
  padding: 0.2rem 0.8rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(214, 183, 117, 0.7);
  color: rgba(245, 241, 232, 0.9);
}

.rt-agegate__body {
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
}

.rt-agegate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-5);
}

.rt-agegate__confirm {
  flex: 1 1 160px;
}

.rt-agegate__decline {
  flex: 0 0 auto;
}

.rt-agegate__note {
  margin-top: var(--space-3);
  font-size: 0.75rem;
  color: rgba(169, 186, 183, 0.9);
}

.home-hero {
  padding-top: calc(var(--space-12) + var(--header-height));
  padding-bottom: var(--space-16);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: var(--space-12);
  align-items: center;
}

@media (max-width: 960px) {
  .home-hero__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-8);
  }
}

.home-hero__kicker {
  font-size: 0.8rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.home-hero__title {
  margin-bottom: var(--space-4);
}

.home-hero__title em {
  font-style: italic;
  color: var(--color-gold-soft);
}

.home-hero__lead {
  font-size: var(--text-lg);
  color: rgba(245, 241, 232, 0.88);
  margin-bottom: var(--space-5);
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-bottom: var(--space-4);
}

.home-hero__fineprint {
  font-size: 0.75rem;
  color: rgba(169, 186, 183, 0.9);
}

.home-hero__media {
  position: relative;
}

.home-hero__image-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(214, 183, 117, 0.6);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.95);
  background: radial-gradient(circle at top left, rgba(218, 179, 89, 0.2), rgba(7, 20, 22, 0.96));
}

.home-hero__image-frame img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.home-hero__seal {
  position: absolute;
  right: 10%;
  bottom: 8%;
  transform: translateY(12%);
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 20% 0, rgba(245, 241, 232, 0.96), rgba(214, 183, 117, 0.96));
  border: 2px solid rgba(7, 20, 22, 0.96);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__seal-inner {
  width: 84%;
  height: 84%;
  border-radius: inherit;
  border: 1px dashed rgba(15, 118, 110, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #123a38;
}

.home-hero__caption {
  margin-top: var(--space-3);
  font-size: 0.75rem;
  color: rgba(169, 186, 183, 0.85);
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.section-index__line {
  width: 32px;
  height: 1px;
  background: linear-gradient(90deg, rgba(214, 183, 117, 0.8), transparent);
}

.home-facts {
  margin-top: var(--space-4);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.3rem;
  background: radial-gradient(circle at 0 50%, rgba(8, 36, 35, 0.96), rgba(7, 20, 22, 0.98));
  border: 1px solid rgba(73, 110, 109, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.9);
  overflow: hidden;
}

.home-facts__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
  white-space: nowrap;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 241, 232, 0.86);
}

.home-facts__dot {
  width: 3px;
  height: 3px;
  border-radius: 999px;
  background-color: rgba(214, 183, 117, 0.9);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: 1px solid rgba(73, 110, 109, 0.7);
  color: rgba(245, 241, 232, 0.9);
}

.badge--ruby {
  background: rgba(15, 118, 110, 0.8);
  border-color: rgba(214, 183, 117, 0.7);
}

.badge--outline-gold {
  background: transparent;
  border-color: rgba(214, 183, 117, 0.7);
  color: rgba(214, 183, 117, 0.9);
}

.page-shell {
  padding-top: calc(var(--header-height) + var(--space-10));
  padding-bottom: var(--space-16);
}

.page-shell--compact {
  padding-top: calc(var(--header-height) + var(--space-6));
  padding-bottom: var(--space-12);
}

.section {
  padding-top: var(--space-10);
  padding-bottom: var(--space-10);
}

.section--bordered {
  border-top: 1px solid rgba(29, 63, 64, 0.85);
}

.section-header {
  margin-bottom: var(--space-6);
  max-width: 640px;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-2);
}

.section-title {
  margin-bottom: var(--space-3);
}

.section-lead {
  font-size: var(--text-lg);
  color: rgba(245, 241, 232, 0.9);
}

.header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 20, 22, 0.98), rgba(7, 20, 22, 0.9) 40%, rgba(7, 20, 22, 0.72));
  border-bottom: 1px solid rgba(26, 56, 58, 0.92);
}

.header__inner {
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav a {
  color: var(--color-text-muted);
}

.nav a[data-active="true"],
.nav a:hover {
  color: var(--color-text);
}

.nav-toggle {
  display: none;
}

@media (max-width: 960px) {
  .nav {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(73, 110, 109, 0.8);
    background: radial-gradient(circle at 0 0, rgba(214, 183, 117, 0.2), rgba(7, 20, 22, 0.96));
    gap: 3px;
    padding: 0;
  }
  .nav-toggle span {
    display: block;
    width: 15px;
    height: 1px;
    border-radius: 999px;
    background-color: rgba(245, 241, 232, 0.92);
  }
}

.footer {
  border-top: 1px solid rgba(26, 56, 58, 0.9);
  padding-top: var(--space-8);
  padding-bottom: var(--space-8);
  background: radial-gradient(circle at top, rgba(8, 36, 35, 0.6), transparent 55%);
}

.footer__meta {
  margin-top: var(--space-4);
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.tagline-italic {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--color-gold-soft);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-gold {
  color: var(--color-gold-soft);
}

.bg-elevated {
  background-color: var(--color-bg-elevated);
}

.bg-bordeaux {
  background-color: var(--color-bg-bordeaux);
}

.border-gold {
  border-color: var(--color-gold-soft);
}

.shadow-elevated {
  box-shadow: var(--shadow-elevated);
}

ul {
  list-style: none !important;
}

.nav-toggle {
  flex-direction: column;
}
