:root {
  --bg: #05060A;
  --surface: #0E1020;
  --text: #EDE9FE;
  --muted: #A1A1AA;
  --primary: #22D3EE;
  --secondary: #A3E635;
  --accent: #F472B6;
  --border: rgba(237, 233, 254, 0.12);
  --fashion-serif: Georgia, "Times New Roman", Times, serif;
  --runway-sans: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --editorial-gap: clamp(1.5rem, 4vw, 3rem);
  --visual-max: 1200px;
  --aesthetic-radius: 8px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--runway-sans);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% -10%, rgba(34, 211, 238, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 100%, rgba(244, 114, 182, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #0a0b14 50%, var(--bg) 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 120px,
    rgba(237, 233, 254, 0.015) 120px,
    rgba(237, 233, 254, 0.015) 121px
  );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--fashion-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

a:hover {
  color: var(--secondary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-wrap {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100%;
  overflow-x: hidden;
}

.page-wrap > main {
  flex: 1;
}

.disclosure {
  max-width: 900px;
  margin: 8px auto;
  padding: 10px 20px;
  background: rgba(237, 233, 254, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--aesthetic-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.marquee-row {
  height: 20px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid var(--border);
}

.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: runway-marquee 30s linear infinite;
}

.marquee-item {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 40px;
  flex-shrink: 0;
}

@keyframes runway-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.nav-row {
  height: 56px;
  display: flex;
  align-items: center;
}

.nav-inner {
  max-width: var(--visual-max);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo img {
  height: 36px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 4px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-btn span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text);
  transition: transform 0.3s, opacity 0.3s;
}

.burger-btn.active span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

.burger-btn.active span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--surface);
  z-index: 99;
  padding: 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.mobile-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-drawer a {
  display: block;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 12px 16px;
  border-radius: 4px;
}

.mobile-drawer a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 20px 32px;
  margin-top: auto;
}

.footer-inner {
  max-width: var(--visual-max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: var(--editorial-gap);
  margin-bottom: 40px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  color: var(--muted);
  max-width: 280px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

.footer-links a {
  color: var(--muted);
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-badges {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-badges a:hover {
  opacity: 0.85;
}

.footer-copy {
  margin-top: 24px;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(5, 6, 10, 0.92);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--aesthetic-radius);
  padding: 40px 32px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.age-modal p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 28px;
}

.age-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.88;
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 13px;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}

.btn-secondary:hover {
  border-color: var(--muted);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--visual-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-inner p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 200px;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.btn-cookie {
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 12px;
  cursor: pointer;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  transition: background 0.2s;
}

.btn-cookie.accept {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
}

.btn-cookie:hover {
  opacity: 0.9;
}

.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.legal-content h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
}

.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 32px;
  margin-bottom: 12px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.1rem;
  margin-top: 24px;
  margin-bottom: 8px;
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--muted);
}

.legal-content ul {
  margin: 0 0 16px 20px;
  color: var(--muted);
}

.legal-content li {
  margin-bottom: 8px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: rgba(237, 233, 254, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--aesthetic-radius);
}

.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--runway-sans);
  font-size: 14px;
  margin-bottom: 20px;
  outline: none;
  transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--primary);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-error {
  color: var(--accent);
  font-size: 12px;
  margin-top: -16px;
  margin-bottom: 16px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-success {
  text-align: center;
  padding: 48px 24px;
}

.form-success h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--secondary);
}

.form-success p {
  color: var(--muted);
}

@media (max-width: 768px) {
  .marquee-row {
    display: none;
  }

  .mobile-drawer {
    display: block;
    top: 56px;
  }

  .nav-links {
    display: none;
  }

  .burger-btn {
    display: flex;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}
