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

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    linear-gradient(160deg, rgba(212, 175, 55, 0.06) 0%, transparent 45%),
    linear-gradient(220deg, rgba(15, 23, 42, 0.04) 0%, transparent 50%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 50% at 10% 20%, rgba(212, 175, 55, 0.05), transparent),
    radial-gradient(ellipse 60% 40% at 90% 80%, rgba(146, 64, 14, 0.04), transparent);
  pointer-events: none;
  z-index: 0;
}

.disclosure-banner {
  position: relative;
  z-index: 10;
  width: 100%;
  background: #f5f5f5;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
  padding: 8px 16px;
  line-height: 1.5;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #0a0a0a;
  box-shadow: 0 1px 6px var(--primary);
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  height: 58px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 1px 6px rgba(212, 175, 55, 0.25);
}

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

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

.navbar-links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.25s, text-shadow 0.25s;
}

.navbar-links a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

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

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

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

.burger-btn.active span:nth-child(2) {
  opacity: 0;
}

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

.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0a0a0a;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.mobile-overlay.open {
  display: flex;
}

.mobile-overlay a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 20px;
  font-weight: 500;
  transition: color 0.25s, text-shadow 0.25s;
}

.mobile-overlay a:hover {
  color: var(--primary);
  text-shadow: 0 0 6px var(--primary), 0 0 12px var(--primary);
}

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

.site-footer {
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.85);
  padding: 48px 24px 32px;
  position: relative;
  z-index: 1;
}

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

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

.footer-brand img {
  height: 36px;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 320px;
  line-height: 1.6;
}

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

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

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

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

.footer-badges img {
  height: 40px;
  width: auto;
  border-radius: 8px;
}

.footer-nz-disclosure {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.65;
  margin-bottom: 16px;
  max-width: 720px;
}

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

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

.age-modal.hidden {
  display: none;
}

.age-panel {
  background: var(--surface);
  border-radius: 24px;
  padding: 40px 36px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(28, 25, 23, 0.15), 0 0 24px rgba(212, 175, 55, 0.12);
}

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

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

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

.age-actions button {
  padding: 12px 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: box-shadow 0.25s, transform 0.2s;
}

.age-actions button:first-child {
  background: var(--primary);
  color: var(--secondary);
}

.age-actions button:first-child:hover {
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.age-actions button:last-child {
  background: transparent;
  color: var(--muted);
  border: 1px solid var(--border);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--secondary);
  color: rgba(255, 255, 255, 0.9);
  padding: 16px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  font-size: 13px;
  flex: 1;
  min-width: 200px;
}

.cookie-banner a {
  color: var(--primary);
}

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

.cookie-actions button {
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border: none;
}

.cookie-actions button:first-child {
  background: var(--primary);
  color: var(--secondary);
}

.cookie-actions button:last-child {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

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

.page-shell h1 {
  font-size: 32px;
  margin-bottom: 20px;
  color: var(--secondary);
}

.page-shell h2 {
  font-size: 20px;
  margin: 28px 0 12px;
  color: var(--secondary);
}

.page-shell h3 {
  font-size: 16px;
  margin: 20px 0 8px;
  color: var(--accent);
}

.page-shell p {
  font-size: 15px;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.75;
}

.page-shell ul {
  margin: 12px 0 16px 24px;
}

.page-shell li {
  font-size: 15px;
  margin-bottom: 8px;
  line-height: 1.65;
}

.contact-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-form label {
  font-size: 14px;
  font-weight: 600;
  color: var(--secondary);
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
  color: var(--text);
}

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

.contact-form button {
  align-self: flex-start;
  padding: 14px 32px;
  background: var(--primary);
  color: var(--secondary);
  border: none;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.25);
  transition: box-shadow 0.25s;
}

.contact-form button:hover {
  box-shadow: 0 0 24px rgba(212, 175, 55, 0.45);
}

.form-error {
  font-size: 13px;
  color: var(--accent);
  display: none;
}

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

.form-success {
  display: none;
  padding: 24px;
  background: rgba(212, 175, 55, 0.1);
  border-radius: 20px;
  font-size: 15px;
  color: var(--secondary);
  margin-top: 24px;
}

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

.section-heading-glow {
  position: relative;
  display: inline-block;
}

.section-heading-glow::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  border-radius: 999px;
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.5);
}

.pill-rounded-soft {
  border-radius: 999px;
}

.friendly-smooth-glow {
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.12);
}

.pill-dominant-rounded {
  border-radius: 24px;
  transition: box-shadow 0.3s ease;
}

.soft-curves-friendly {
  border-radius: 20px;
  line-height: 1.7;
}

.smooth-glow-accents:hover {
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.35);
}

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

  .burger-btn {
    display: flex;
  }
}
