:root {
  --bg: #FBF8F3;
  --surface: #FFFFFF;
  --text: #1C1917;
  --muted: #78716C;
  --primary: #D4AF37;
  --secondary: #0F172A;
  --accent: #92400E;
  --border: rgba(28, 25, 23, 0.12);
}

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

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(212, 175, 55, 0.08), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, rgba(251, 248, 243, 0.95) 100%);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 10% 20%, rgba(212, 175, 55, 0.4), transparent),
    radial-gradient(1px 1px at 30% 60%, rgba(255, 255, 255, 0.3), transparent),
    radial-gradient(1px 1px at 70% 30%, rgba(212, 175, 55, 0.3), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(255, 255, 255, 0.2), transparent),
    radial-gradient(1px 1px at 50% 50%, rgba(212, 175, 55, 0.2), transparent);
  background-size: 200% 200%;
  animation: cosmos-drift 120s linear infinite;
  opacity: 0.6;
}

@keyframes cosmos-drift {
  0% { background-position: 0% 0%; }
  100% { background-position: 100% 100%; }
}

.disclosure-banner {
  width: 100%;
  background: rgba(251, 248, 243, 0.98);
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  padding: 6px 16px;
  position: relative;
  z-index: 100;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 90;
  background: #000000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  height: 58px;
}

.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.navbar-logo img {
  height: 32px;
  width: auto;
  display: block;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 10px;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.35s ease;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--primary);
}

.nav-link:hover::after,
.nav-link.nav-active::after {
  width: 100%;
}

.burger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}

.burger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

main {
  flex: 1 0 auto;
}

.site-footer {
  background: #000000;
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  margin-top: auto;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(146, 64, 14, 0.05) 0%, transparent 40%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  margin-bottom: 16px;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

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

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin: 24px 0;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-badge {
  display: block;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.footer-badge:hover {
  opacity: 1;
}

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

.footer-company {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 16px;
  line-height: 1.7;
}

.footer-disclosure {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 16px;
}

.footer-notice {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.7;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-notice h3 {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  margin: 12px 0 8px;
  font-weight: 600;
}

.age-overlay,
.cookie-banner {
  position: fixed;
  z-index: 10000;
}

.age-overlay {
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.age-overlay.is-hidden {
  display: none;
}

.age-modal {
  background: var(--surface);
  max-width: 440px;
  width: 100%;
  padding: 40px 32px;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.age-modal h2 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--secondary);
}

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

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

.btn-primary,
.btn-secondary {
  padding: 12px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
}

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

.btn-primary:hover {
  background: #c4a030;
  transform: scale(1.02);
}

.btn-secondary {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  background: rgba(28, 25, 23, 0.04);
}

.cookie-banner {
  bottom: 0;
  left: 0;
  right: 0;
  background: #000000;
  color: rgba(255, 255, 255, 0.85);
  padding: 20px 24px;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.cookie-banner.is-hidden {
  transform: translateY(100%);
  pointer-events: none;
}

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

.cookie-text {
  flex: 1;
  min-width: 240px;
  font-size: 13px;
  line-height: 1.5;
}

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

.btn-cookie {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-cookie-accept {
  background: var(--primary);
  color: var(--secondary);
}

.btn-cookie-reject {
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-cookie-accept:hover {
  background: #c4a030;
}

.btn-cookie-reject:hover {
  background: rgba(255, 255, 255, 0.08);
}

.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  top: -100px;
  right: -80px;
  filter: blur(40px);
}

.page-hero::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  bottom: -60px;
  left: 10%;
  filter: blur(30px);
}

.page-hero h1 {
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 300;
  letter-spacing: 0.06em;
  color: #ffffff;
  position: relative;
  z-index: 1;
  margin-bottom: 12px;
}

.page-hero p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 24px 80px;
  position: relative;
  z-index: 1;
}

.legal-content h1 {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--secondary);
}

.legal-content h2 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 12px;
  color: var(--secondary);
}

.legal-content h3 {
  font-size: 17px;
  font-weight: 600;
  margin: 24px 0 10px;
  color: var(--text);
}

.legal-content p {
  margin-bottom: 16px;
  color: var(--text);
  font-size: 15px;
}

.legal-content ul {
  margin: 0 0 16px 24px;
}

.legal-content li {
  margin-bottom: 8px;
  font-size: 15px;
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: var(--surface);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--secondary);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s;
}

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

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

.form-error {
  color: #b91c1c;
  font-size: 13px;
  margin-top: 6px;
  display: none;
}

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

.form-success {
  padding: 32px;
  background: rgba(212, 175, 55, 0.1);
  text-align: center;
  font-size: 16px;
  color: var(--secondary);
}

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

@media (max-width: 900px) {
  .burger-btn {
    display: flex;
  }

  .navbar-nav {
    position: fixed;
    top: 58px;
    right: 0;
    width: 280px;
    height: calc(100vh - 58px);
    background: #000000;
    flex-direction: column;
    align-items: stretch;
    padding: 24px 0;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    overflow-y: auto;
    gap: 0;
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
  }

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

  .nav-link {
    padding: 14px 24px;
    border-left: 3px solid transparent;
  }

  .nav-link.nav-active,
  .nav-link:hover {
    border-left-color: var(--accent);
    background: rgba(212, 175, 55, 0.06);
  }

  .nav-link::after {
    display: none;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 40px 20px;
  }
}
