: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%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-weight: 300;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(146, 64, 14, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, rgba(251, 248, 243, 0.95) 100%);
  color: var(--text);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  flex: 1 0 auto;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 15% 25%, rgba(212, 175, 55, 0.04) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(15, 23, 42, 0.03) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}

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

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

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

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

.disclosure-banner {
  width: 100%;
  background: rgba(255, 255, 255, 0.85);
  border-top: 1px dotted var(--muted);
  border-bottom: 1px dotted var(--muted);
  color: var(--text);
  font-size: 12px;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--secondary);
  height: 54px;
}

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

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

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

.navbar-nav li {
  display: flex;
  align-items: center;
}

.navbar-nav li:not(:last-child)::after {
  content: "›";
  color: rgba(255, 255, 255, 0.35);
  font-size: 12px;
  padding: 0 6px;
  font-weight: 300;
}

.nav-link {
  padding: 6px 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 400;
  border-radius: 20px;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  background: rgba(255, 255, 255, 0.12);
  color: var(--primary);
}

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

.burger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.mobile-drawer {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--secondary);
  z-index: 200;
  padding: 72px 24px 24px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

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

.mobile-drawer .nav-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
}

.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  margin-top: auto;
  flex-shrink: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 32px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  opacity: 0.9;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 300;
}

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

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

.footer-badge img {
  height: 48px;
  width: auto;
  border-radius: 12px;
  opacity: 0.9;
}

.footer-legal {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 900px;
}

.footer-copy {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(12px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.age-gate-modal {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 24px 64px rgba(28, 25, 23, 0.15);
}

.age-gate-modal h2 {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 16px;
  color: var(--text);
}

.age-gate-modal p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
  line-height: 1.6;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 20px 24px;
  z-index: 900;
  transform: translateY(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.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 p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  min-width: 240px;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, rgba(212, 175, 55, 0.85) 100%);
  color: var(--secondary);
  border: none;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 24px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 400;
  border-radius: 24px;
  cursor: pointer;
  transition: background 0.3s ease;
}

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

.page-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.page-content h1 {
  font-size: 32px;
  font-weight: 300;
  margin-bottom: 24px;
  color: var(--text);
}

.page-content h2 {
  font-size: 22px;
  font-weight: 400;
  margin: 32px 0 14px;
  color: var(--text);
}

.page-content h3 {
  font-size: 17px;
  font-weight: 400;
  margin: 20px 0 10px;
  color: var(--text);
}

.page-content p {
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 15px;
}

.page-content ul {
  margin: 12px 0 16px 20px;
  color: var(--muted);
  font-size: 15px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content a {
  color: var(--accent);
}

.contact-form {
  margin-top: 32px;
  padding: 32px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 24px;
}

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

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

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

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

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

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

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

.form-success {
  padding: 32px;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 24px;
  text-align: center;
}

.form-success h3 {
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

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

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

  .burger-btn {
    display: flex;
  }

  .mobile-drawer {
    display: block;
  }

  .drawer-overlay {
    display: block;
  }
}
