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

:root {
  --bg: #F4EBD9;
  --surface: #EFE1C5;
  --text: #2C241D;
  --muted: #6B5E4F;
  --primary: #8D5B3E;
  --secondary: #4A3728;
  --accent: #C0522B;
  --border: rgba(44,36,29,0.15);
  --max: 1200px;
  --nav-h: 56px;
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: "Helvetica Neue", Helvetica, "Segoe UI", Arial, sans-serif;
  --fashion-ink: #0a0a0a;
  --fashion: fashion;
  --runway: runway;
  --editorial: editorial;
  --visual: visual;
  --aesthetic: aesthetic;
}

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:
    linear-gradient(165deg, rgba(141, 91, 62, 0.12) 0%, transparent 42%),
    linear-gradient(340deg, rgba(192, 82, 43, 0.08) 0%, transparent 40%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 47px,
      rgba(44, 36, 29, 0.03) 47px,
      rgba(44, 36, 29, 0.03) 48px
    );
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(ellipse at 90% 10%, rgba(141, 91, 62, 0.14), transparent 42%),
    radial-gradient(circle at 12% 78%, rgba(74, 55, 40, 0.08), transparent 48%);
}

body.nav-open {
  overflow: hidden;
}

main {
  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: 600;
  line-height: 1.15;
  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.04em;
}

.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.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.disclosure-banner {
  max-width: 800px;
  margin: 10px auto;
  padding: 8px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 0;
  text-align: center;
  font-size: 11px;
  line-height: 1.45;
  color: var(--text);
  width: calc(100% - 24px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: var(--fashion-ink);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  flex-shrink: 0;
}

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

.brand-lockup span {
  color: #fff;
}

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

.nav-desktop a {
  color: rgba(255, 255, 255, 0.6);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 6px;
  transition: opacity 0.25s ease, color 0.25s ease;
  opacity: 0.6;
}

.nav-desktop a:hover {
  opacity: 1;
  color: #fff;
}

.burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  padding: 8px;
}

.burger span {
  display: block;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.55);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 86vw);
  height: 100%;
  background: var(--fashion-ink);
  z-index: 1200;
  padding: 72px 28px 32px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

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

.nav-drawer ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-drawer a {
  color: rgba(255, 255, 255, 0.7);
  font-family: var(--font-serif);
  font-size: 1.15rem;
  transition: opacity 0.25s ease;
  opacity: 0.6;
}

.nav-drawer a:hover {
  opacity: 1;
  color: #fff;
}

@media (min-width: 980px) {
  .nav-desktop {
    display: flex;
  }
  .burger {
    display: none;
  }
}

@media (max-width: 979px) {
  .site-header__inner {
    border: none;
    background: var(--fashion-ink);
  }
}

.site-footer {
  background: var(--secondary);
  color: rgba(244, 235, 217, 0.85);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer a {
  color: rgba(244, 235, 217, 0.85);
}

.site-footer a:hover {
  color: #fff;
}

.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 span {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  list-style: none;
}

.footer-links a {
  font-size: 0.9rem;
}

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

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 42px;
  width: auto;
  max-width: 100px;
  object-fit: contain;
  filter: brightness(1.05);
}

.footer-requisites {
  font-size: 0.82rem;
  color: rgba(244, 235, 217, 0.65);
  line-height: 1.5;
}

.footer-copy {
  font-size: 0.78rem;
  color: rgba(244, 235, 217, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 16px;
}

#age-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#age-gate.active {
  display: flex;
}

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

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

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

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.age-gate-actions button {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  padding: 12px 22px;
  border: 1px solid var(--border);
  cursor: pointer;
  background: var(--bg);
  color: var(--text);
}

.age-gate-actions button[data-age-gate="confirm"] {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  background: var(--secondary);
  color: rgba(244, 235, 217, 0.9);
  padding: 18px 24px;
  display: none;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
}

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

.cookie-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.88rem;
  line-height: 1.5;
}

.cookie-inner a {
  color: #fff;
  text-decoration: underline;
}

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

.cookie-actions button {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  padding: 10px 18px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  cursor: pointer;
  background: transparent;
  color: #fff;
}

#cookie-accept {
  background: var(--accent);
  border-color: var(--accent);
}

.page-hero {
  background: var(--primary);
  color: #fff;
  padding: 48px 24px;
  position: relative;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 60%, rgba(0, 0, 0, 0.12)),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 80px,
      rgba(255, 255, 255, 0.04) 80px,
      rgba(255, 255, 255, 0.04) 81px
    );
  pointer-events: none;
}

.page-hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  color: #fff;
  margin-bottom: 10px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
  font-weight: 300;
}

.legal-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 24px 64px;
}

.legal-wrap h1 {
  margin-bottom: 16px;
}

.legal-wrap h2 {
  margin: 28px 0 12px;
  font-size: 1.25rem;
}

.legal-wrap p,
.legal-wrap li {
  color: var(--muted);
  margin-bottom: 12px;
}

.legal-wrap ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.legal-wrap a {
  color: var(--primary);
  text-decoration: underline;
}

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

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

.visual-band,
.mag-band {
  max-width: 100%;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}

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

.contact-form label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-serif);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 0;
  font: inherit;
  background: var(--surface);
  color: var(--text);
}

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

.contact-form .field-error {
  color: var(--accent);
  font-size: 0.85rem;
  display: none;
  margin-top: 6px;
}

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

.contact-form input.error,
.contact-form textarea.error {
  border-color: var(--accent);
}

.contact-form button[type="submit"] {
  align-self: flex-start;
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.contact-form button[type="submit"]:hover {
  background: var(--accent);
}

#form-success {
  display: none;
  margin-top: 28px;
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
}

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

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

.redirect-page .ad-label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  color: var(--muted);
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.redirect-notes {
  max-width: 420px;
  font-size: 0.85rem;
  color: var(--muted);
}

.redirect-notes a {
  text-decoration: underline;
}

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

.error-page a {
  display: inline-block;
  margin-top: 12px;
  padding: 12px 24px;
  background: var(--primary);
  color: #fff;
}

@media (max-width: 600px) {
  .disclosure-banner {
    font-size: 10px;
    padding: 8px 12px;
  }
  .footer-badges img {
    height: 36px;
  }
  .decor-img {
    max-width: 100%;
    max-height: 220px;
  }
  .decor-wrap,
  .visual,
  .visual-band,
  .mag-band {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
  }
  .visual-band,
  .mag-band {
    max-width: 100%;
    height: 140px;
  }
}
