:root {
  --bg: #0D0A00;
  --surface: #1A1500;
  --text: #FFCC00;
  --muted: #B38F00;
  --primary: #FFB300;
  --secondary: #332600;
  --accent: #FFD966;
  --border: rgba(255, 204, 0, 0.2);
  --fashion-serif: Georgia, "Times New Roman", serif;
  --runway-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --editorial-max: 1200px;
  --visual-gap: 28px;
  --aesthetic-ease: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--fashion-serif);
  font-weight: 300;
  background: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(255, 179, 0, 0.04) 0%, transparent 42%),
    radial-gradient(ellipse at 72% 8%, rgba(255, 217, 102, 0.06) 0%, transparent 55%);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
  position: relative;
  z-index: 1;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 179, 0, 0.05) 0%, transparent 38%),
    radial-gradient(circle at 88% 82%, rgba(51, 38, 0, 0.6) 0%, transparent 48%);
  pointer-events: none;
  z-index: 0;
}

h1, h2, h3, h4 {
  font-family: var(--fashion-serif);
  font-weight: 300;
  line-height: 1.25;
  color: var(--accent);
}

em, .editorial-accent {
  font-style: italic;
  color: var(--primary);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--aesthetic-ease);
}

a:hover {
  color: var(--accent);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-banner {
  width: 100%;
  padding: 8px 16px 14px;
  font-size: 12px;
  text-align: center;
  background: rgba(26, 21, 0, 0.96);
  color: var(--muted);
  position: relative;
  z-index: 110;
  line-height: 1.5;
  font-family: var(--runway-sans);
  font-weight: 300;
}

.disclosure-banner p {
  max-width: 960px;
  margin: 0 auto;
}

.disclosure-wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 12px;
  display: block;
}

.disclosure-wave path {
  fill: var(--surface);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  max-width: var(--editorial-max);
  margin: 0 auto;
  padding: 14px 24px;
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo-link img {
  height: 36px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-desktop a {
  position: relative;
  padding: 8px 10px;
  font-family: var(--runway-sans);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color var(--aesthetic-ease);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 2px;
  height: 3px;
  background: var(--accent);
  width: 0;
  transition: width var(--aesthetic-ease);
}

.nav-desktop a:hover,
.nav-desktop a:focus {
  color: var(--accent);
}

.nav-desktop a:hover::after,
.nav-desktop a:focus::after {
  width: calc(100% - 20px);
}

.burger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  padding: 6px 10px;
  line-height: 1;
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--aesthetic-ease), visibility var(--aesthetic-ease);
}

.drawer-overlay.visible {
  opacity: 1;
  visibility: visible;
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 88vw);
  height: 100vh;
  background: var(--surface);
  z-index: 210;
  padding: 60px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transform: translateX(100%);
  transition: transform var(--aesthetic-ease);
  border-left: 1px solid var(--border);
}

.nav-drawer.open {
  transform: translateX(0);
}

.nav-drawer a {
  padding: 14px 16px;
  font-family: var(--runway-sans);
  font-size: 14px;
  color: var(--muted);
  border-left: 3px solid transparent;
  transition: border-color var(--aesthetic-ease), color var(--aesthetic-ease), background var(--aesthetic-ease);
}

.nav-drawer a:hover,
.nav-drawer a:focus {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(255, 179, 0, 0.06);
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
}

.footer-inner {
  max-width: var(--editorial-max);
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 32px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.footer-links a {
  font-family: var(--runway-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 28px;
}

.footer-badges img {
  height: 40px;
  width: auto;
}

.footer-nz-disclosure {
  font-family: var(--runway-sans);
  font-size: 11px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.footer-nz-disclosure p {
  margin-bottom: 8px;
}

.footer-copy {
  font-family: var(--runway-sans);
  font-size: 12px;
  color: rgba(179, 143, 0, 0.7);
}

.age-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
}

.age-modal h2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.age-modal p {
  font-family: var(--runway-sans);
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.age-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border: none;
  padding: 12px 24px;
  font-family: var(--runway-sans);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--aesthetic-ease);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-family: var(--runway-sans);
  font-size: 14px;
  cursor: pointer;
  transition: border-color var(--aesthetic-ease), color var(--aesthetic-ease);
}

.btn-secondary:hover {
  border-color: var(--primary);
  color: var(--text);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  z-index: 900;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-family: var(--runway-sans);
  font-size: 13px;
  color: var(--muted);
  max-width: 720px;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--primary);
}

.page-content {
  max-width: var(--editorial-max);
  margin: 0 auto;
  padding: 48px 24px 80px;
}

.legal-page-hero {
  background: var(--secondary);
  padding: 56px 24px;
  border-bottom: 1px solid var(--border);
}

.legal-page-hero h1 {
  max-width: var(--editorial-max);
  margin: 0 auto;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
}

.legal-body h2 {
  font-size: 1.25rem;
  margin: 32px 0 12px;
  color: var(--primary);
}

.legal-body h3 {
  font-size: 1.05rem;
  margin: 20px 0 8px;
  color: var(--accent);
}

.legal-body p,
.legal-body li {
  font-family: var(--runway-sans);
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.7;
}

.legal-body ul,
.legal-body ol {
  padding-left: 24px;
  margin-bottom: 16px;
}

.contact-form {
  margin-top: 32px;
  max-width: 520px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: var(--runway-sans);
  font-size: 13px;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--runway-sans);
  font-size: 14px;
}

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

.form-error {
  font-family: var(--runway-sans);
  font-size: 12px;
  color: #ff6b6b;
  margin-top: 6px;
  display: none;
}

.form-error.visible {
  display: block;
}

.form-success {
  font-family: var(--runway-sans);
  font-size: 15px;
  color: var(--accent);
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(255, 179, 0, 0.06);
}

.form-success.hidden {
  display: none;
}

.info-cta-link {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--runway-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--primary);
  border-bottom: 1px solid var(--primary);
  padding-bottom: 2px;
  transition: color var(--aesthetic-ease), border-color var(--aesthetic-ease);
}

.info-cta-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}

@media (max-width: 900px) {
  .nav-desktop {
    display: none;
  }

  .burger-btn {
    display: block;
  }
}
