:root {
  --bg: #052E16;
  --surface: #064E3B;
  --text: #F0FDF4;
  --muted: #4ADE80;
  --primary: #22C55E;
  --secondary: #14532D;
  --accent: #86EFAC;
  --border: rgba(255, 255, 255, 0.1);
  --font-serif: Georgia, "Times New Roman", Times, serif;
  --font-sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(34, 197, 94, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(20, 83, 45, 0.5) 0%, transparent 55%),
    linear-gradient(165deg, var(--bg) 0%, #031a0e 50%, var(--secondary) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 2px,
      rgba(255, 255, 255, 0.012) 2px,
      rgba(255, 255, 255, 0.012) 3px
    );
  pointer-events: none;
  z-index: 0;
}

body > * {
  position: relative;
  z-index: 1;
}

main {
  flex: 1;
}

.luxury-finish {
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.25;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: color 0.4s ease, background 0.4s ease;
}

a:hover {
  color: var(--primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.disclosure-banner {
  font-size: 11px;
  text-align: center;
  max-width: fit-content;
  margin: 6px auto;
  padding: 6px 20px;
  border: 1px solid var(--muted);
  border-radius: 4px;
  color: var(--text);
  line-height: 1.4;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 46, 22, 0.97);
  backdrop-filter: blur(8px);
  height: 54px;
}

.site-header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-header__logo img {
  height: 32px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.site-nav__link {
  color: var(--text);
  font-size: 0.8rem;
  padding: 6px 10px;
  border-radius: 4px;
  white-space: nowrap;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.site-nav__link:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent);
}

.site-nav__sep {
  color: var(--muted);
  font-size: 0.75rem;
  opacity: 0.5;
  user-select: none;
}

.burger-btn {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1.1rem;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: min(300px, 85vw);
  height: 100vh;
  background: var(--surface);
  z-index: 200;
  padding: 70px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  border-left: 1px solid var(--border);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 199;
}

.mobile-drawer__overlay.is-open {
  display: block;
}

.mobile-drawer__link {
  display: block;
  color: var(--text);
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.mobile-drawer__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.site-footer {
  background: var(--secondary);
  border-top: 1px solid var(--border);
  padding: 48px 24px 32px;
  margin-top: auto;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.site-footer__brand img {
  height: 36px;
  margin-bottom: 12px;
}

.site-footer__brand p {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
}

.site-footer__links a {
  font-size: 0.85rem;
  color: var(--accent);
}

.site-footer__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.site-footer__badges a {
  display: block;
}

.site-footer__badges img {
  height: 48px;
  width: auto;
  opacity: 0.85;
  transition: opacity 0.4s ease;
}

.site-footer__badges img:hover {
  opacity: 1;
}

.site-footer__legal {
  font-size: 11px;
  color: rgba(240, 253, 244, 0.65);
  line-height: 1.6;
  margin-top: 20px;
  max-width: 900px;
}

.site-footer__copy {
  text-align: center;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 24px;
  opacity: 0.7;
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 46, 22, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-gate.is-hidden {
  display: none;
}

.age-gate__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 40px 32px;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.age-gate__panel h2 {
  font-size: 1.5rem;
  margin-bottom: 12px;
  color: var(--accent);
}

.age-gate__panel p {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.age-gate__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.45s ease, transform 0.3s ease;
  letter-spacing: 0.03em;
}

.btn--primary {
  background: var(--primary);
  color: var(--bg);
}

.btn--primary:hover {
  background: var(--accent);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  background: rgba(255, 255, 255, 0.06);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--accent);
}

.legal-content h2 {
  font-size: 1.25rem;
  margin: 28px 0 12px;
  color: var(--primary);
}

.legal-content h3 {
  font-size: 1.05rem;
  margin: 20px 0 10px;
}

.legal-content p {
  margin-bottom: 14px;
  color: rgba(240, 253, 244, 0.88);
}

.legal-content ul {
  margin: 12px 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  color: rgba(240, 253, 244, 0.88);
}

.contact-form {
  margin-top: 32px;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  max-width: 560px;
}

.contact-form__group {
  margin-bottom: 18px;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 6px;
  color: var(--accent);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 0.95rem;
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form__error {
  color: #f87171;
  font-size: 0.8rem;
  margin-top: 6px;
  display: none;
}

.contact-form__error.is-visible {
  display: block;
}

.contact-form__success {
  display: none;
  padding: 24px;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid var(--primary);
  border-radius: 8px;
  text-align: center;
  color: var(--accent);
}

.contact-form__success.is-visible {
  display: block;
}

@media (max-width: 960px) {
  .site-nav {
    display: none;
  }

  .burger-btn {
    display: block;
  }

  .mobile-drawer {
    display: block;
  }
}

.mobile-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px;
  align-items: center;
}

.mobile-hero__img {
  max-width: 420px;
  max-height: 320px;
  border-radius: 16px;
  border: 2px solid var(--primary);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.mobile-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px 56px;
}

.mobile-content h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin: 32px 0 14px;
}

.mobile-content p {
  margin-bottom: 16px;
  color: rgba(240, 253, 244, 0.88);
  line-height: 1.75;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin: 28px 0;
}

.feature-grid__item {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.feature-grid__item h3 {
  font-size: 0.95rem;
  color: var(--accent);
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .mobile-hero {
    grid-template-columns: 1fr;
    text-align: center;
    overflow-x: hidden;
  }

  .mobile-hero__img {
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
