:root {
  --bg: #020617;
  --surface: #0F172A;
  --text: #F8FAFC;
  --muted: #64748B;
  --primary: #BEF264;
  --secondary: #334155;
  --accent: #84CC16;
  --border: rgba(190,242,100,0.2);
  --max: 1200px;
  --nav-h: 52px;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --fashion: fashion;
  --runway: runway;
  --editorial: editorial;
  --visual: visual;
  --aesthetic: aesthetic;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse at 8% 0%, rgba(190, 242, 100, 0.1) 0%, transparent 45%),
    linear-gradient(168deg, #020617 0%, #0a1228 46%, #020617 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  padding-bottom: calc(var(--nav-h) + 12px);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(ellipse at 92% 18%, rgba(132, 204, 22, 0.08), transparent 40%),
    radial-gradient(circle at 20% 80%, rgba(190, 242, 100, 0.05), transparent 48%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(190, 242, 100, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(190, 242, 100, 0.03) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 15%, transparent 72%);
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1,
h2,
h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}

h1 {
  font-size: clamp(1.75rem, 4vw, 2.85rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
}

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

.fashion {
  letter-spacing: 0.06em;
}

.runway {
  display: grid;
  gap: 0;
}

.editorial {
  font-family: var(--font-serif);
}

.visual {
  overflow: hidden;
  max-width: 100%;
}

.aesthetic {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.disclosure-banner {
  width: 100%;
  background: #F1F5F9;
  color: #0F172A;
  border-top: 1px dotted #94A3B8;
  border-bottom: 1px dotted #94A3B8;
  padding: 8px 16px;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

.disclosure-banner p {
  margin: 0 0 6px;
}

.disclosure-banner p:last-child {
  margin-bottom: 0;
}

.bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: var(--nav-h);
  z-index: 1000;
  background: rgba(2, 6, 23, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.bottom-nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 10px;
  gap: 4px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
  padding-right: 8px;
}

.brand-lockup img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.brand-lockup span {
  white-space: nowrap;
}

.nav-tabs {
  display: none;
  list-style: none;
  flex: 1;
  height: 100%;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 2px;
}

.nav-tabs a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(248, 250, 252, 0.65);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.02em;
  height: 100%;
  min-width: 48px;
  padding: 4px 2px;
  transition: color 0.2s ease;
}

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

.nav-tabs svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.nav-mobile-tabs {
  display: flex;
  list-style: none;
  flex: 1;
  height: 100%;
  align-items: stretch;
  justify-content: space-evenly;
}

.nav-mobile-tabs a,
.nav-mobile-tabs button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: rgba(248, 250, 252, 0.65);
  font-size: 10px;
  font-family: var(--font-sans);
  font-weight: 400;
  background: transparent;
  border: none;
  cursor: pointer;
  height: 100%;
  min-width: 44px;
  padding: 4px 2px;
}

.nav-mobile-tabs a:hover,
.nav-mobile-tabs button:hover,
.nav-mobile-tabs button.active {
  color: var(--primary);
}

.nav-mobile-tabs svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.6;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3px;
  width: 100%;
  height: 100%;
  background: transparent;
  border: none;
  cursor: pointer;
  color: inherit;
  font-size: 10px;
  font-family: var(--font-sans);
}

.burger-lines {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.burger-lines span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: currentColor;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.burger.active .burger-lines span:nth-child(1) {
  transform: translateY(4.5px) rotate(45deg);
}

.burger.active .burger-lines span:nth-child(2) {
  opacity: 0;
}

.burger.active .burger-lines span:nth-child(3) {
  transform: translateY(-4.5px) rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.6);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav {
  position: fixed;
  bottom: var(--nav-h);
  left: 0;
  right: 0;
  z-index: 1200;
  background: var(--surface);
  border-top: 1px solid var(--border);
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.mobile-nav.open {
  max-height: 320px;
}

.mobile-nav ul {
  list-style: none;
  padding: 12px 16px 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.mobile-nav a {
  display: block;
  padding: 10px 12px;
  color: var(--text);
  font-size: 0.85rem;
  font-family: var(--font-serif);
  border: 1px solid var(--border);
  background: rgba(2, 6, 23, 0.4);
}

.mobile-nav a:hover {
  border-color: var(--primary);
  color: var(--primary);
}

@media (min-width: 900px) {
  .nav-tabs {
    display: flex;
  }

  .nav-mobile-tabs {
    display: none;
  }

  .brand-lockup span {
    display: inline;
  }
}

@media (max-width: 899px) {
  .brand-lockup span {
    display: none;
  }
}

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

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.35;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-brand .brand-lockup {
  font-size: 1.1rem;
}

.footer-brand .brand-lockup img {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 420px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
}

.footer-links a {
  color: rgba(248, 250, 252, 0.75);
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.footer-badges img {
  height: 40px;
  width: auto;
  max-width: 120px;
  object-fit: contain;
}

.footer-badges a {
  display: inline-block;
}

.footer-requisites {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-ca-disclosure {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.55;
  max-width: 900px;
  padding-top: 8px;
  border-top: 1px solid rgba(190, 242, 100, 0.12);
}

.footer-copy {
  font-size: 12px;
  color: var(--muted);
}

.page-wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
}

.page-hero {
  padding: 48px 24px 32px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(190, 242, 100, 0.04), transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  position: relative;
  z-index: 1;
}

.page-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 24px 24px 64px;
}

.page-content p,
.page-content li {
  color: rgba(248, 250, 252, 0.8);
  margin-bottom: 14px;
}

.page-content ul,
.page-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.page-content h2 {
  margin: 28px 0 12px;
  color: var(--primary);
  font-size: 1.35rem;
}

.page-content h3 {
  margin: 20px 0 10px;
}

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

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

@media (max-width: 480px) {
  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

  .decor-wrap,
  .img-rail,
  .visual {
    max-width: 100%;
    overflow: hidden;
  }

  .page-wrap,
  .page-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.88);
  z-index: 5000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.modal-box h2 {
  margin-bottom: 12px;
  font-size: 1.5rem;
}

.modal-box p {
  color: var(--muted);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: 4px;
  transition: filter 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #020617;
}

.btn-primary:hover {
  filter: brightness(1.08);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

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

.cookie-banner {
  position: fixed;
  bottom: calc(var(--nav-h) + 16px);
  left: 16px;
  right: 16px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  z-index: 4000;
  display: none;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
}

.cookie-banner.active {
  display: block;
}

.cookie-banner p {
  font-size: 0.88rem;
  color: rgba(248, 250, 252, 0.85);
  margin-bottom: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.contact-form {
  margin-top: 28px;
  display: grid;
  gap: 16px;
  max-width: 520px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1rem;
  border-radius: 4px;
}

.contact-form input.error,
.contact-form textarea.error {
  border-color: #F87171;
}

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

.field-error {
  display: none;
  color: #F87171;
  font-size: 0.8rem;
  margin-top: 4px;
}

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

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--border);
  background: rgba(190, 242, 100, 0.08);
  color: var(--text);
  border-radius: 8px;
  margin-top: 24px;
}

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

.topic-cta {
  display: inline-block;
  margin-top: 16px;
  padding: 12px 22px;
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-family: var(--font-serif);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background 0.25s ease, color 0.25s ease;
}

.topic-cta:hover {
  background: var(--primary);
  color: var(--bg);
}

@keyframes runway-fade {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes editorial-sweep {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes aesthetic-pulse {
  0%,
  100% {
    opacity: 0.55;
  }
  50% {
    opacity: 1;
  }
}
