/* Root variables */
:root {
  --color-bg: #0B0D10;
  --color-bg-alt: #0A1613;
  --color-surface: #13171B;
  --color-text: #F4EEDD;
  --color-text-muted: #B4ACA0;
  --color-primary: #10B981;
  --color-primary-deep: #0F5944;
  --color-danger: #B91C1C;
  --color-success: #16A34A;
  --color-warning: #F59E0B;
  --color-border-soft: #2A3037;
  --color-border-gold: #D8B874;
  --color-shadow-soft: rgba(0, 0, 0, 0.55);
  --color-focus: #D8B874;

  --font-heading: "Playfair Display", "Bodoni Moda", "Prata", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Manrope", "Outfit", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.0625rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 1.875rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: 3rem;

  --line-height-tight: 1.15;
  --line-height-snug: 1.3;
  --line-height-base: 1.5;
  --line-height-relaxed: 1.7;

  --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-7: 1.75rem;
  --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-pill: 999px;

  --shadow-sm: 0 8px 20px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.7);
  --shadow-soft-gold: 0 0 0 1px rgba(216, 184, 116, 0.18), 0 16px 35px rgba(0, 0, 0, 0.85);

  --transition-fast: 0.15s ease-out;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

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

body {
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-base);
  background: radial-gradient(circle at top left, #141922 0, #050608 45%, #030406 100%);
  color: var(--color-text);
  -webkit-font-smoothing: antialiased;
}

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

picture {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
  background: transparent;
  border-radius: 0;
}

button {
  cursor: pointer;
}

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

p,
figure,
blockquote,
ul,
ol,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 500;
  color: var(--color-text);
}

h1 {
  font-size: clamp(2.5rem, 3.2vw, 3.3rem);
  line-height: var(--line-height-tight);
}

h2 {
  font-size: clamp(2rem, 2.6vw, 2.6rem);
  line-height: var(--line-height-snug);
}

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

h4 {
  font-size: 1.25rem;
}

h5 {
  font-size: 1.1rem;
}

h6 {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

p {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

strong {
  font-weight: 600;
}

em {
  font-style: italic;
}

code,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

pre {
  margin: 0;
  white-space: pre-wrap;
}

:focus {
  outline: none;
}

:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 2px;
}

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

.container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: var(--space-4);
}

@media (min-width: 1024px) {
  .container {
    padding-inline: var(--space-6);
  }
}

.flex {
  display: flex;
}

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

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.grid {
  display: grid;
}

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

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

.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;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top, #161A23 0, #05070B 55%, #020309 100%);
}

.page-main {
  flex: 1 0 auto;
}

.site-footer {
  flex-shrink: 0;
}

.rt-ribbon {
  position: relative;
  z-index: 40;
  width: 100%;
  background: linear-gradient(90deg, rgba(16, 185, 129, 0.2), rgba(216, 184, 116, 0.32), rgba(16, 185, 129, 0.2));
  color: var(--color-text);
  font-size: var(--font-size-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.rt-ribbon-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding-block: 0.45rem;
  padding-inline: var(--space-4);
}

.rt-ribbon-status {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.rt-ribbon-status-pill {
  padding: 0.18rem 0.5rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(244, 238, 221, 0.25);
  background: rgba(3, 5, 9, 0.55);
  font-size: 0.65rem;
}

.rt-ribbon-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  opacity: 0.86;
}

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

.rt-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  border: 1px solid rgba(216, 184, 116, 0.7);
  background: radial-gradient(circle at 20% 0, rgba(216, 184, 116, 0.4) 0, rgba(3, 6, 10, 0.98) 48%, #020308 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.75);
}

.rt-brand-mark span {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.14em;
}

.rt-brand-text {
  display: flex;
  flex-direction: column;
}

.rt-brand-name {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

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

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 1.35rem;
  padding-block: 0.7rem;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1;
  transition: background-color var(--transition-base), color var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, #10B981, #0F5944);
  color: #020308;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.75);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #22C68B, #0F7A55);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.9);
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.85);
}

.btn-ghost {
  background: rgba(6, 9, 14, 0.7);
  border-color: rgba(216, 184, 116, 0.55);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(216, 184, 116, 0.07);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.8);
}

.btn-danger {
  background: linear-gradient(135deg, #B91C1C, #7F1D1D);
  color: #FDF2F2;
}

.btn-danger:hover {
  background: linear-gradient(135deg, #DC2626, #7F1D1D);
}

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

.link-inline {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
}

.link-inline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 184, 116, 0.7), transparent);
  transform-origin: left;
  transform: scaleX(0.4);
  opacity: 0.8;
  transition: transform var(--transition-base);
}

.link-inline:hover::after {
  transform: scaleX(1);
}

.btn-arrow,
.link-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-arrow svg,
.link-arrow svg {
  width: 18px;
  height: 18px;
  stroke: #D8B874;
  filter: drop-shadow(0 0 6px rgba(216, 184, 116, 0.35));
}

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

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

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="date"],
select,
textarea {
  width: 100%;
  padding: 0.72rem 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border-soft);
  background: radial-gradient(circle at top, rgba(24, 36, 39, 0.85), rgba(4, 8, 10, 0.96));
  color: var(--color-text);
  font-size: 0.92rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background-color var(--transition-base);
}

input::placeholder,
textarea::placeholder {
  color: rgba(180, 172, 160, 0.7);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(216, 184, 116, 0.9);
  box-shadow: 0 0 0 1px rgba(216, 184, 116, 0.9), 0 16px 36px rgba(0, 0, 0, 0.9);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.form-hint {
  font-size: 0.8rem;
  color: rgba(180, 172, 160, 0.7);
}

.form-error {
  font-size: 0.8rem;
  color: #FECACA;
}

.card {
  position: relative;
  border-radius: var(--radius-xl);
  background: radial-gradient(circle at top left, rgba(216, 184, 116, 0.12) 0, rgba(19, 23, 27, 0.9) 35%, rgba(5, 7, 11, 0.98) 100%);
  border: 1px solid rgba(216, 184, 116, 0.22);
  box-shadow: var(--shadow-soft-gold);
  padding: var(--space-6);
  color: var(--color-text);
}

.card-soft {
  border-radius: var(--radius-lg);
  background: rgba(10, 22, 19, 0.92);
  border: 1px solid rgba(42, 48, 55, 0.9);
  box-shadow: var(--shadow-sm);
}

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

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

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

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

.section-lede {
  font-size: 1.02rem;
}

.section-index {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.92rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(216, 184, 116, 0.9);
}

.section-index span:nth-child(1) {
  opacity: 0.9;
}

.section-index span:nth-child(2) {
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, rgba(216, 184, 116, 0.9), transparent);
}

.home-facts {
  margin-top: var(--space-6);
  padding-block: 0.8rem;
  padding-inline: 1.1rem;
  border-radius: var(--radius-pill);
  background: radial-gradient(circle at 0 0, rgba(216, 184, 116, 0.18) 0, rgba(5, 7, 11, 0.98) 48%, rgba(5, 7, 11, 1) 100%);
  border: 1px solid rgba(216, 184, 116, 0.4);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  gap: 1.25rem;
  white-space: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.home-facts-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-text-muted);
}

.home-facts-dot {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: rgba(216, 184, 116, 0.8);
}

.home-hero {
  padding-block: var(--space-16);
}

.home-hero-layout {
  display: grid;
  gap: var(--space-10);
}

@media (min-width: 960px) {
  .home-hero-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    align-items: center;
  }
}

.home-hero-left {
  max-width: 620px;
}

.home-hero-kicker {
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(180, 172, 160, 0.9);
  margin-bottom: var(--space-3);
}

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

.home-hero-title em {
  color: rgba(216, 184, 116, 0.9);
}

.home-hero-lede {
  font-size: 1.02rem;
  margin-bottom: var(--space-6);
}

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

.home-hero-fineprint {
  font-size: 0.78rem;
  color: rgba(180, 172, 160, 0.7);
}

.home-hero-right {
  position: relative;
}

.home-hero-media {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(216, 184, 116, 0.4);
  background: radial-gradient(circle at top, rgba(216, 184, 116, 0.2) 0, rgba(12, 15, 18, 0.98) 40%, #03050A 100%);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.95);
}

.home-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-media-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 10% 0, rgba(216, 184, 116, 0.2) 0, transparent 50%), radial-gradient(circle at 100% 100%, rgba(16, 185, 129, 0.25) 0, transparent 55%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.home-hero-caption {
  position: absolute;
  left: 1.5rem;
  bottom: 1.35rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(5, 7, 10, 0.85);
  border: 1px solid rgba(216, 184, 116, 0.5);
  backdrop-filter: blur(14px);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.home-hero__seal {
  position: absolute;
  right: -10px;
  top: -18px;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, rgba(216, 184, 116, 0.4) 0, rgba(5, 7, 10, 1) 58%, rgba(5, 7, 10, 1) 100%);
  border: 1px solid rgba(216, 184, 116, 0.8);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.home-hero__seal-inner {
  width: 86%;
  height: 86%;
  border-radius: 999px;
  border: 1px dashed rgba(216, 184, 116, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0.75rem;
}

.home-hero__seal-text {
  font-family: var(--font-heading);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  html, body {
    overflow-x: hidden;
  }

  .home-hero-title {
    font-size: 1.85rem;
    line-height: 1.25;
  }

  .home-hero-lede {
    font-size: 0.95rem;
  }

  .home-facts {
    flex-wrap: wrap;
    white-space: normal;
    border-radius: 20px;
    padding: 0.75rem 1rem;
    gap: 0.5rem 0.85rem;
    justify-content: center;
  }

  .home-facts-item {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
  }

  .home-facts-dot {
    display: none;
  }

  .home-hero__seal {
    width: 90px;
    height: 90px;
    right: 0.75rem;
    top: 0.75rem;
  }

  .home-hero__seal-text {
    font-size: 0.55rem;
    letter-spacing: 0.16em;
  }

  .home-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-hero-actions .btn,
  .home-hero-actions .link-inline {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: radial-gradient(circle at 10% 0, rgba(10, 22, 19, 0.95) 0, rgba(3, 4, 6, 0.98) 40%, rgba(0, 0, 0, 0.98) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

.modal-age {
  width: 100%;
  max-width: 480px;
  border-radius: 28px;
  padding: var(--space-6);
  background: radial-gradient(circle at top left, rgba(216, 184, 116, 0.18) 0, rgba(13, 18, 21, 0.96) 45%, rgba(5, 7, 11, 0.99) 100%);
  border: 1px solid rgba(216, 184, 116, 0.65);
  box-shadow: 0 30px 75px rgba(0, 0, 0, 0.98);
  color: var(--color-text);
}

.modal-age-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  margin-bottom: var(--space-4);
}

.modal-age-title {
  font-size: 1.35rem;
}

.modal-age-badge {
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(185, 28, 28, 0.7);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.modal-age-body {
  font-size: 0.96rem;
  color: var(--color-text-muted);
  margin-bottom: var(--space-5);
}

.modal-age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.modal-age .btn-primary {
  flex: 1 1 45%;
}

.modal-age .btn-ghost {
  flex: 1 1 45%;
}

.badge-outline-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.12rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(216, 184, 116, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.badge-outline-gold-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 0, #FACC6B 0, #D8B874 45%, #7C5B1A 100%);
}

.nav-toggle {
  display: inline-flex;
  gap: 4px;
}

.nav-toggle-bar {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(244, 238, 221, 0.9);
}

.nav-primary {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.nav-primary a {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.nav-primary a[aria-current="page"] {
  color: var(--color-text);
}

.nav-primary a:hover {
  color: rgba(216, 184, 116, 0.95);
}

ul {
  list-style: none !important;
}

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

.btn-arrow svg,
.link-arrow svg {
  display: inline-block;
  vertical-align: middle;
  transition: transform 0.3s ease, stroke 0.3s ease;
}

.btn:hover .btn-arrow svg,
a:hover .link-arrow svg {
  transform: translate(3px, -3px);
}
