:root {
  --bg: #000000;
  --surface: #0D0D0D;
  --text: #F2F2F2;
  --muted: #666666;
  --primary: #CCFF00;
  --secondary: #1A1A1A;
  --accent: #32CD32;
  --border: rgba(204, 255, 0, 0.15);
  --font-serif: Georgia, "Times New Roman", Times, "Liberation Serif", serif;
  --max: 1280px;
  --nav-h: 60px;
  --monastic: "monastic";
  --austere: "austere";
  --discipline: "discipline";
  --focus: "focus";
  --silence: "silence";
  --offer-bg: #1a2332;
  --offer-border: rgba(212, 175, 55, 0.25);
  --offer-text: #f5e6c8;
  --offer-cta-bg: linear-gradient(135deg, #c9a227, #8b6914);
  --offer-cta-text: #1a2332;
}

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

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

body {
  font-family: var(--font-serif);
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(168deg, #000000 0%, #0a1200 42%, #000000 78%, #050805 100%),
    radial-gradient(ellipse 50% 36% at 90% 0%, rgba(204, 255, 0, 0.08), transparent 55%);
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: var(--monastic) " " var(--austere) " " var(--discipline) " " var(--focus) " " var(--silence);
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 56px,
      rgba(204, 255, 0, 0.02) 56px,
      rgba(204, 255, 0, 0.02) 57px
    ),
    radial-gradient(circle at 8% 92%, rgba(50, 205, 50, 0.06), transparent 40%);
}

body > * {
  position: relative;
  z-index: 1;
}

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

main {
  flex: 1 0 auto;
}

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

.offer-logo img {
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  object-position: center;
  display: block;
}

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

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

.disclosure-banner {
  width: 100%;
  background: #e8e8e4;
  color: #222222;
  font-size: 12px;
  text-align: center;
  padding: 8px 16px 14px;
  line-height: 1.45;
  position: relative;
  z-index: 20;
}

.disclosure-banner p {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 4px;
}

.disclosure-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  display: block;
  line-height: 0;
}

.disclosure-wave svg {
  display: block;
  width: 100%;
  height: 12px;
}

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

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  height: 100%;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  order: 1;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  flex-shrink: 0;
  order: 2;
  margin-left: auto;
}

.brand-lockup:hover {
  color: var(--primary);
}

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

.brand-name {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
  white-space: nowrap;
}

.nav-links a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  padding: 6px 10px 14px;
  letter-spacing: 0.5px;
  text-decoration: none;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateX(-50%) scale(0);
  transition: transform 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.is-active::after {
  transform: translateX(-50%) scale(1);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  order: 3;
}

.burger span {
  display: block;
  height: 2px;
  background: var(--text);
  transition: transform 0.2s, opacity 0.2s;
}

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

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

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

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

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

.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 260px;
  height: 100%;
  background: var(--surface);
  z-index: 880;
  padding: 80px 24px 40px;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

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

.mobile-nav a {
  color: var(--text);
  font-size: 15px;
  letter-spacing: 0.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

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

.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 20px 32px;
  margin-top: 48px;
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-bottom: 28px;
}

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

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

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

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

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

.footer-copy {
  font-size: 13px;
  color: var(--muted);
  max-width: 920px;
  margin-bottom: 16px;
  line-height: 1.65;
}

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

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

.footer-updated {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
}

.footer-bottom {
  font-size: 12px;
  color: var(--muted);
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.age-gate.is-active {
  opacity: 1;
  visibility: visible;
}

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

.age-gate-box h2 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}

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

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

.btn {
  display: inline-block;
  padding: 12px 20px;
  font-family: var(--font-serif);
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: #000000;
  font-weight: 700;
}

.btn-primary:hover {
  background: var(--accent);
  color: #000000;
}

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

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9500;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 18px 20px;
  transform: translateY(110%);
  transition: transform 0.3s ease;
}

.cookie-banner.is-active {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max);
  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: 13px;
  color: var(--muted);
}

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

.page-hero {
  background: var(--secondary);
  padding: 48px 20px 40px;
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

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

.page-hero p {
  color: var(--muted);
  font-size: 15px;
}

.legal-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 20px 64px;
}

.legal-wrap h1 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.legal-wrap h2 {
  font-size: 1.15rem;
  margin: 28px 0 10px;
  color: var(--primary);
}

.legal-wrap p,
.legal-wrap li {
  font-size: 15px;
  color: rgba(242, 242, 242, 0.82);
  margin-bottom: 12px;
}

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

.legal-wrap li {
  margin-bottom: 8px;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  color: var(--text);
}

.form-group input,
.form-group textarea {
  background: var(--secondary);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 14px;
  font-family: var(--font-serif);
  font-size: 15px;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-error {
  font-size: 13px;
  color: #ff6b6b;
  min-height: 1.2em;
}

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

.form-success {
  display: none;
  padding: 24px;
  border: 1px solid var(--border);
  background: var(--secondary);
  color: var(--text);
  font-size: 15px;
}

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

.contact-form.is-hidden {
  display: none;
}

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

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

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

@media (max-width: 960px) {
  .nav-links {
    display: none;
  }

  .burger {
    display: flex;
  }

  .brand-lockup {
    order: 1;
    margin-left: 0;
  }

  .burger {
    order: 2;
    margin-left: auto;
  }

  .nav-inner {
    padding: 12px 16px;
  }
}

@media (max-width: 640px) {
  .footer-badges img {
    height: 36px;
  }

  .cookie-actions {
    width: 100%;
  }

  .cookie-actions .btn {
    flex: 1;
  }

  .decor-wrap,
  .decor-frame,
  .phone-panel,
  .side-rail,
  .img-inline,
  .mosaic,
  .decor-bg-panel {
    max-width: 100%;
    overflow: hidden;
  }

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

@media (max-width: 375px) {
  .decor-wrap,
  .decor-frame,
  .phone-panel,
  .side-rail,
  .img-inline,
  .mosaic,
  .decor-bg-panel {
    max-width: 100%;
    overflow: hidden;
  }

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

  .disclosure-banner {
    font-size: 11px;
    padding-left: 12px;
    padding-right: 12px;
  }
}
