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

:root {
  --bg: #120609;
  --surface: #1F0A0E;
  --text: #FFF1F2;
  --muted: #FDA4AF;
  --primary: #BE123C;
  --secondary: #FACC15;
  --accent: #22C55E;
  --border: rgba(255,241,242,0.14);
  --max-w: 1200px;
  --shadow-2: 2px 2px 0 rgba(0, 0, 0, 0.35);
  --shadow-4: 4px 4px 0 rgba(0, 0, 0, 0.4);
  --shadow-8: 8px 8px 0 rgba(0, 0, 0, 0.45);
  --shadow-12: 12px 12px 0 rgba(0, 0, 0, 0.5);
  --shadow-16: 16px 16px 0 rgba(0, 0, 0, 0.55);
  --craft-cut-paper: cut paper;
  --craft-layered: layered;
  --craft-paper-craft: paper craft;
  --craft-tactile: tactile;
  --craft-handmade: handmade;
  --craft-collage: collage;
  --font: "Trebuchet MS", "Segoe UI", Candara, "Gill Sans", sans-serif;
  --font-mono: ui-monospace, "Cascadia Code", "SF Mono", Menlo, Consolas, monospace;
}

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

body {
  font-family: var(--font);
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 55% at 0% 0%, rgba(190, 18, 60, 0.28) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 10%, rgba(250, 204, 21, 0.1) 0%, transparent 50%),
    linear-gradient(168deg, var(--bg) 0%, #1a0a0e 45%, #0c0406 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      -4deg,
      transparent,
      transparent 42px,
      rgba(255, 241, 242, 0.02) 42px,
      rgba(255, 241, 242, 0.02) 43px
    );
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(34, 197, 94, 0.05) 0%, transparent 35%),
    radial-gradient(circle at 85% 60%, rgba(190, 18, 60, 0.08) 0%, transparent 40%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

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

.disclosure-banner {
  width: 100%;
  padding: 6px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
  color: var(--accent);
  background: #050203;
  position: relative;
  z-index: 30;
}

.site-header-wrap {
  position: sticky;
  top: 16px;
  z-index: 40;
  padding: 0 16px;
  margin-bottom: 8px;
}

.site-header {
  max-width: var(--max-w);
  margin: 0 auto;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: rgba(18, 6, 9, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(8px);
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

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

.brand-lockup:hover {
  color: var(--text);
  opacity: 0.9;
}

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

.nav-desktop a {
  color: var(--text);
  opacity: 0.7;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 8px;
  border-radius: 4px;
  transition: opacity 0.2s ease;
}

.nav-desktop a:hover {
  opacity: 1;
  color: var(--text);
}

.burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 6px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: var(--shadow-2);
}

.burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease;
}

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

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--bg);
  background-image:
    linear-gradient(160deg, var(--surface) 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
  padding: 24px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

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

.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.drawer-close {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  border-radius: 6px;
  font-size: 1.4rem;
  cursor: pointer;
}

.mobile-drawer nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-drawer a {
  color: var(--text);
  font-size: 1.15rem;
  font-weight: 600;
  padding: 14px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-4);
  transform: rotate(-0.5deg);
}

.mobile-drawer a:nth-child(even) {
  transform: rotate(0.8deg);
}

.paper-sheet {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: var(--shadow-8);
  position: relative;
}

.paper-sheet::before {
  content: "";
  position: absolute;
  inset: 4px -6px -6px 4px;
  background: rgba(190, 18, 60, 0.18);
  border-radius: 6px;
  z-index: -1;
  transform: rotate(1deg);
}

.torn-edge {
  clip-path: polygon(
    0% 2%, 3% 0%, 7% 3%, 12% 0%, 18% 2%, 24% 0%, 30% 3%, 36% 0%,
    42% 2%, 48% 0%, 54% 3%, 60% 0%, 66% 2%, 72% 0%, 78% 3%, 84% 0%,
    90% 2%, 95% 0%, 100% 3%, 100% 100%, 0% 100%
  );
}

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 48px 20px 32px;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.35);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 8%;
  right: 8%;
  height: 14px;
  background: var(--primary);
  opacity: 0.35;
  clip-path: polygon(0 100%, 4% 20%, 9% 80%, 14% 10%, 20% 70%, 26% 0%, 32% 60%, 38% 15%, 44% 75%, 50% 5%, 56% 65%, 62% 20%, 68% 80%, 74% 10%, 80% 70%, 86% 25%, 92% 85%, 100% 30%, 100% 100%);
}

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

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

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

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
}

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

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

.footer-badges a,
.footer-badges span {
  display: inline-flex;
  background: rgba(255, 241, 242, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 8px;
  box-shadow: var(--shadow-2);
}

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

.footer-legal {
  font-size: 0.82rem;
  color: var(--muted);
  display: grid;
  gap: 6px;
}

.footer-legal span {
  display: block;
}

.age-overlay,
.cookie-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 2, 3, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.age-overlay[hidden],
.cookie-overlay[hidden] {
  display: none !important;
}

.gate-card {
  width: min(440px, 100%);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow-16);
  transform: rotate(-0.6deg);
  text-align: center;
}

.gate-card h2 {
  font-size: 1.35rem;
  margin-bottom: 10px;
  font-weight: 700;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-4);
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

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

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

.btn-accent {
  background: var(--accent);
  color: #052e16;
}

.page-hero {
  padding: 40px 20px 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 10px;
}

.page-hero p {
  color: var(--muted);
  max-width: 60ch;
}

.content-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 20px 48px;
}

.content-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  box-shadow: var(--shadow-8);
  transform: rotate(-0.4deg);
}

.content-card h2 {
  font-size: 1.25rem;
  margin: 24px 0 10px;
  color: var(--secondary);
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  font-size: 1.05rem;
  margin: 18px 0 8px;
}

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

.content-card ul,
.content-card ol {
  padding-left: 1.2rem;
  margin-bottom: 14px;
}

.decor-img {
  max-width: min(500px, 100%);
  max-height: 320px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: var(--shadow-8);
}

.decor-wrap {
  max-width: 100%;
  width: 100%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

@media (max-width: 480px) {
  .decor-wrap {
    max-width: 100%;
    overflow: hidden;
  }

  .decor-img {
    max-width: 100%;
    max-height: 200px;
  }

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

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

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  font-size: 0.92rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  border: 1px solid var(--border);
  background: rgba(18, 6, 9, 0.65);
  color: var(--text);
  font-family: inherit;
  font-size: 1rem;
}

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

.field-error {
  color: var(--secondary);
  font-size: 0.85rem;
  display: none;
}

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

.form-success {
  display: none;
  padding: 20px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  border-radius: 6px;
  color: var(--text);
  box-shadow: var(--shadow-4);
}

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

.subpage-main {
  position: relative;
}

@media (max-width: 900px) {
  .site-header-wrap {
    padding: 0;
    top: 0;
  }

  .site-header {
    border-radius: 0;
    max-width: none;
  }

  .nav-desktop {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}
