:root {
  --bg: #0D0208;
  --surface: #210B16;
  --text: #FAE6FA;
  --muted: #D482A3;
  --primary: #FF3864;
  --secondary: #FFB8DE;
  --accent: #2DE2E2;
  --border: rgba(255,56,100,0.2);
  --font-serif: "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif, fashion, bespoke, craft, minimal, white;
  --font-sans: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium", "Segoe UI", sans-serif, fashion, bespoke, craft, minimal, white;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-serif);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(255, 56, 100, 0.18), transparent 55%),
    radial-gradient(ellipse 70% 50% at 90% 20%, rgba(45, 226, 226, 0.1), transparent 50%),
    linear-gradient(165deg, var(--bg) 0%, #1a0610 45%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.55'/%3E%3C/svg%3E");
  background-size: 180px 180px;
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 79px,
      rgba(255, 184, 222, 0.03) 79px,
      rgba(255, 184, 222, 0.03) 80px
    );
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1 0 auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.25s ease;
}

a:hover {
  color: var(--secondary);
}

.fashion {
  letter-spacing: 0.08em;
}

.bespoke {
  font-family: var(--font-serif);
  font-weight: 400;
}

.craft {
  border-color: var(--border);
}

.minimal {
  padding: 0;
  margin: 0;
}

.white {
  color: var(--text);
}

.disclosure-banner {
  width: 100%;
  background: rgba(250, 230, 250, 0.92);
  color: #210B16;
}

.disclosure-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.disclosure-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
}

.disclosure-text {
  font-family: var(--font-sans);
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  margin: 0;
  color: #210B16;
}

.site-header {
  background: var(--bg);
  position: static;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 90px;
  justify-content: center;
  gap: 0;
}

.logo-row {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.logo-link {
  display: inline-flex;
  align-items: center;
}

.logo-link img {
  height: 42px;
  width: auto;
  max-width: 180px;
}

.nav-row {
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.nav-desktop {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 18px;
}

.nav-desktop a {
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-desktop a:hover {
  color: var(--primary);
}

.burger-btn {
  display: none;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  line-height: 1;
}

.nav-drawer {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(13, 2, 8, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 48px 24px;
}

.nav-drawer.open {
  display: flex;
}

.nav-drawer a {
  font-family: var(--font-sans);
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.drawer-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--text);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
}

.drawer-backdrop {
  display: none;
}

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: 64px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  text-align: center;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 20px;
}

.footer-links a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

.footer-badges a,
.footer-badges span {
  display: inline-flex;
}

.footer-badges img {
  height: 48px;
  width: auto;
  max-width: 120px;
}

.footer-copy {
  font-family: var(--font-sans);
  font-size: 11px;
  color: var(--muted);
}

.age-gate {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(13, 2, 8, 0.92);
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.active {
  display: flex;
}

.age-gate-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  max-width: 420px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
}

.age-gate-panel h2 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  margin-bottom: 12px;
  color: var(--text);
}

.age-gate-panel p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-confirm,
.btn-decline,
.cookie-actions button {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 22px;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: background 0.2s ease, color 0.2s ease;
}

.btn-confirm {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

.btn-decline {
  background: transparent;
  color: var(--muted);
}

.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9990;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
}

.cookie-banner.active {
  display: block;
}

.cookie-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cookie-inner p {
  flex: 1 1 280px;
  font-size: 0.9rem;
  color: var(--muted);
  font-family: var(--font-sans);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

#cookie-accept {
  background: var(--primary);
  color: var(--text);
  border-color: var(--primary);
}

#cookie-reject {
  background: transparent;
  color: var(--muted);
}

.page-shell {
  max-width: 880px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-shell h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 24px;
  color: var(--text);
  font-weight: 400;
}

.page-shell h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 32px 0 12px;
  color: var(--secondary);
  font-weight: 400;
}

.page-shell h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 24px 0 10px;
  color: var(--accent);
}

.page-shell p,
.page-shell li {
  color: var(--muted);
  margin-bottom: 12px;
}

.page-shell ul {
  padding-left: 1.25rem;
  margin-bottom: 16px;
}

.page-hero-strip {
  background: linear-gradient(90deg, var(--primary) 0%, rgba(255, 56, 100, 0.4) 100%);
  padding: 48px 24px;
  text-align: center;
  margin-bottom: 0;
}

.page-hero-strip h1 {
  color: var(--text);
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
}

.thread-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border), transparent);
  margin: 32px 0;
  border: none;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.decor-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 480px;
}

.contact-form label {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  font-family: var(--font-serif);
  font-size: 1rem;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  color: var(--text);
  resize: vertical;
}

.contact-form button {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--primary);
  color: var(--text);
  border: none;
  cursor: pointer;
  align-self: flex-start;
}

.email-error {
  display: none;
  font-size: 0.85rem;
  color: var(--primary);
  font-family: var(--font-sans);
}

.email-error.visible {
  display: block;
}

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-family: var(--font-serif);
}

.form-success.visible {
  display: block;
}

.is-hidden {
  display: none !important;
}

@media (max-width: 768px) {
  .nav-row {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo-row {
    border-bottom: none;
    padding-bottom: 0;
  }

  .decor-img {
    max-width: 100%;
    max-height: 220px;
    width: 100%;
    height: auto;
  }

  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}

@media (max-width: 375px) {
  .decor-img {
    max-width: 100%;
    max-height: 180px;
    width: 100%;
  }

  .page-shell {
    padding: 32px 16px 48px;
  }

  .disclosure-inner {
    padding: 8px 12px;
    gap: 8px;
  }
}

.legal-main {
  padding-bottom: 40px;
}

.legal-main .page-shell {
  animation: fadeInPage 0.7s ease both;
}

@keyframes fadeInPage {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
