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

:root {
  --bg: #020617;
  --surface: #1E1B4B;
  --text: #FFFFFF;
  --muted: #818CF8;
  --primary: #DB2777;
  --secondary: #312E81;
  --accent: #F472B6;
  --border: rgba(219, 39, 119, 0.4);
  --nav-left: #1a1744;
  --nav-right: #0f0d2e;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max-w: 1200px;
  --nav-h: 60px;
  --radius: 4px;
}

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

body {
  font-family: var(--font-serif);
  font-weight: 400;
  background: var(--bg);
  background-image:
    linear-gradient(160deg, rgba(219, 39, 119, 0.08) 0%, transparent 45%),
    linear-gradient(220deg, rgba(49, 46, 129, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(244, 114, 182, 0.06) 0%, transparent 50%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 120px,
      rgba(219, 39, 119, 0.02) 120px,
      rgba(219, 39, 119, 0.02) 121px
    );
  opacity: 0.6;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle at 85% 15%, rgba(129, 140, 248, 0.07) 0%, transparent 40%);
}

body.nav-open,
body.age-locked {
  overflow: hidden;
}

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

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

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.15s ease;
}

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

.hidden {
  display: none !important;
}

.is-hidden {
  display: none !important;
}

.disclosure-banner {
  width: 100%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid var(--primary);
  padding: 10px 16px;
  text-align: center;
  position: relative;
  z-index: 950;
}

.disclosure-main {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.5;
}

.disclosure-trust {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: #444;
  margin-top: 4px;
  letter-spacing: 0.04em;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  height: var(--nav-h);
}

.nav-split {
  display: flex;
  height: 100%;
  width: 100%;
}

.nav-half {
  flex: 1;
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-half-left {
  background: var(--nav-left);
  justify-content: flex-end;
}

.nav-half-right {
  background: var(--nav-right);
  justify-content: flex-start;
}

.nav-inner-left,
.nav-inner-right {
  max-width: calc(var(--max-w) / 2);
  width: 100%;
  padding: 0 24px;
  display: flex;
  align-items: center;
}

.nav-inner-left {
  justify-content: flex-start;
}

.nav-inner-right {
  justify-content: flex-end;
  gap: 8px;
}

.nav-divider {
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  height: 100%;
}

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

.nav-links {
  display: none;
  list-style: none;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  padding: 4px 10px;
  transition: color 0.15s ease;
}

.nav-link:hover {
  color: var(--primary);
}

.burger-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.burger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.burger-btn.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger-btn.is-open span:nth-child(2) {
  opacity: 0;
}

.burger-btn.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(320px, 85vw);
  background: var(--nav-right);
  z-index: 920;
  padding: calc(var(--nav-h) + 24px) 24px 32px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}

.mobile-nav.is-open {
  display: block;
  transform: translateX(0);
}

.mobile-nav-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-grid .nav-link {
  display: block;
  padding: 12px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.7);
  z-index: 910;
}

.nav-overlay.is-open {
  display: block;
}

@media (min-width: 900px) {
  .burger-btn {
    display: none;
  }

  .nav-links {
    display: flex;
  }

  .mobile-nav,
  .nav-overlay {
    display: none !important;
  }
}

@media (max-width: 899px) {
  .nav-split {
    background: var(--nav-right);
  }

  .nav-half-left,
  .nav-half-right {
    background: transparent;
  }

  .nav-divider {
    display: none;
  }

  .nav-inner-left,
  .nav-inner-right {
    max-width: none;
  }

  .nav-half-left {
    flex: 1;
  }

  .nav-half-right {
    flex: 0 0 auto;
  }
}

.site-footer {
  background: var(--surface);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  margin-top: auto;
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
}

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

.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 32px;
}

@media (min-width: 768px) {
  .footer-top {
    grid-template-columns: 1fr 2fr;
  }
}

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px 24px;
}

@media (min-width: 600px) {
  .footer-links {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-links a {
  font-family: var(--font-sans);
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  font-weight: 300;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}

.footer-badge img {
  height: 44px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.15s ease;
}

.footer-badge:hover img {
  opacity: 1;
}

.footer-requisites {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  line-height: 1.5;
  margin-bottom: 16px;
}

.footer-disclosure-ch {
  font-family: var(--font-sans);
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.3);
  margin-top: 12px;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(2, 6, 23, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

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

.age-gate-box h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
}

.age-gate-box p {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate-btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background 0.15s 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(--font-sans);
  font-size: 13px;
  font-weight: 300;
  cursor: pointer;
  transition: border-color 0.15s ease, color 0.15s ease;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 16px 24px;
}

.cookie-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.cookie-inner p {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  flex: 1;
}

.cookie-btns {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 24px 72px;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 2.2rem;
  margin-bottom: 28px;
  color: var(--text);
  letter-spacing: -0.02em;
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.2rem;
  margin: 28px 0 12px;
  color: var(--accent);
}

.legal-page h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 20px 0 8px;
  color: var(--muted);
}

.legal-page p {
  font-family: var(--font-sans);
  font-weight: 300;
  margin-bottom: 14px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}

.legal-page ul {
  margin: 0 0 14px 20px;
}

.legal-page li {
  font-family: var(--font-sans);
  font-weight: 300;
  margin-bottom: 6px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: rgba(49, 46, 129, 0.4);
  border: 1px solid var(--border);
}

.contact-form label {
  display: block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  margin-bottom: 16px;
  background: var(--bg);
  color: var(--text);
}

.contact-form textarea {
  min-height: 130px;
  resize: vertical;
}

.form-error {
  color: var(--accent);
  font-family: var(--font-sans);
  font-size: 12px;
  margin-top: -12px;
  margin-bottom: 12px;
  display: none;
}

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

.form-success {
  display: none;
  padding: 28px;
  background: rgba(219, 39, 119, 0.12);
  border: 1px solid var(--border);
  text-align: center;
  margin-top: 24px;
}

.form-success.is-visible {
  display: block;
}

.form-success h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
}

.form-success p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}

.redirect-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 24px;
  background: var(--bg);
}

.redirect-ad {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 24px;
}

.redirect-spinner {
  width: 44px;
  height: 44px;
  border: 3px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin-bottom: 24px;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.redirect-page h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.redirect-page p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--muted);
}

.redirect-notes {
  margin-top: 24px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
}

.redirect-notes p {
  margin-bottom: 8px;
}

.error-page {
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 64px 24px;
}

.error-page h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

.error-page p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 24px;
}

.fashion-editorial-heading {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: -0.02em;
}

.runway-visual-caption {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.aesthetic-label {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.topic-page {
  padding-bottom: 64px;
}

.topic-hero-strip {
  padding: 48px 24px;
  background: var(--secondary);
  position: relative;
  overflow: hidden;
}

.topic-hero-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(219, 39, 119, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.topic-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.topic-hero-inner h1 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  max-width: 680px;
}

.topic-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 48px 24px;
}

.topic-body p {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}

.topic-body h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin: 36px 0 14px;
  color: var(--accent);
}

.topic-body h3 {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  margin: 24px 0 10px;
  color: var(--muted);
}

.topic-body ul {
  margin: 0 0 16px 20px;
}

.topic-body li {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 14px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.85);
}

.topic-img-wrap {
  overflow: hidden;
  max-width: 100%;
}

.topic-img-wrap img {
  max-width: 500px;
  max-height: 320px;
  object-fit: cover;
  width: 100%;
}
