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

:root {
  --gold: #c9952a;
  --gold-light: #e8b84b;
  --dark: #07110b;
  --dark2: #0d1b13;
  --dark3: #122419;
  --text: #f5f5f5;
  --muted: #aeb8af;
  --border: rgba(201, 149, 42, .18);
}

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--dark);
  color: var(--text);
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(201, 149, 42, .08), transparent 35%),
    radial-gradient(circle at bottom right, rgba(201, 149, 42, .05), transparent 40%);
  pointer-events: none;
}

.container {
  width: 90%;
  max-width: 980px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(7, 17, 11, .9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  display: inline-flex;
  align-items: center;
}

.logo img {
  width: 220px;
  height: 71px;
  object-fit: contain;
  display: block;
}

.header-link,
.inline-link {
  color: var(--gold-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(232, 184, 75, .45);
}

.header-link:hover,
.header-link:focus,
.inline-link:hover,
.inline-link:focus {
  border-color: var(--gold-light);
}

main {
  padding: 74px 0 90px;
}

.eyebrow {
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

h1,
h2 {
  font-family: 'Playfair Display', serif;
}

h1 {
  max-width: 760px;
  font-size: 58px;
  line-height: 1.08;
  margin-bottom: 20px;
}

.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 34px;
}

.updated {
  display: inline-flex;
  padding: 8px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 46px;
}

.legal-content {
  display: grid;
  gap: 24px;
}

.legal-section {
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px;
}

.legal-section h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}

.legal-section p + p,
.legal-section ul + p,
.legal-section p + ul {
  margin-top: 12px;
}

.legal-section ul {
  padding-left: 22px;
}

.notice {
  border-left: 4px solid var(--gold);
  background: rgba(201, 149, 42, .1);
  padding: 18px;
  border-radius: 8px;
}

footer {
  position: relative;
  z-index: 2;
  padding: 36px 0;
  text-align: center;
  background: #000203;
  border-top: 1px solid var(--border);
}

.footer-logo {
  display: inline-flex;
  margin-bottom: 12px;
}

.footer-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
}

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

.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer-links a,
.footer-links button {
  appearance: none;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, .62);
  font: inherit;
  cursor: pointer;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links button:hover,
.footer-links a:focus,
.footer-links button:focus {
  color: var(--gold-light);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 1000;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #25d366;
  color: #07110b;
  box-shadow: 0 18px 40px rgba(0, 0, 0, .35);
  text-decoration: none;
  transition: .3s;
}

.whatsapp-float:hover,
.whatsapp-float:focus {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 22px 46px rgba(0, 0, 0, .45);
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 1200;
  width: min(960px, calc(100% - 32px));
  background: #0b1710;
  border: 1px solid rgba(232, 184, 75, .34);
  border-radius: 18px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .48);
  padding: 20px;
  display: none;
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent h2,
.cookie-modal h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: 18px;
  line-height: 1.35;
  margin-bottom: 8px;
}

.cookie-consent p,
.cookie-modal p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.cookie-consent-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}

.cookie-actions,
.cookie-modal-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cookie-btn {
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .2s;
}

.cookie-btn:hover,
.cookie-btn:focus {
  border-color: var(--gold);
  transform: translateY(-2px);
}

.cookie-btn.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: #07110b;
}

.cookie-btn.primary:hover,
.cookie-btn.primary:focus {
  background: var(--gold-light);
}

.cookie-btn.ghost {
  color: var(--gold-light);
}

.cookie-modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1210;
  background: rgba(0, 2, 3, .72);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal-backdrop.is-visible {
  display: flex;
}

.cookie-modal {
  width: min(640px, 100%);
  max-height: calc(100vh - 40px);
  overflow: auto;
  background: #0b1710;
  border: 1px solid rgba(232, 184, 75, .34);
  border-radius: 18px;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .58);
  padding: 26px;
}

.cookie-options {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.cookie-option {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px;
  background: rgba(255, 255, 255, .035);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 12px;
}

.cookie-option h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  margin-bottom: 4px;
}

.cookie-option p {
  font-size: 13px;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 52px;
  height: 30px;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #324035;
  border-radius: 999px;
  transition: .2s;
}

.cookie-slider::before {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #fff;
  transition: .2s;
}

.cookie-switch input:checked + .cookie-slider {
  background: var(--gold);
}

.cookie-switch input:checked + .cookie-slider::before {
  transform: translateX(22px);
}

.cookie-switch input:disabled + .cookie-slider {
  cursor: not-allowed;
  opacity: .72;
}

@media (max-width: 700px) {
  .container {
    width: 92%;
  }

  .header-inner {
    min-height: 74px;
  }

  .logo img {
    width: 150px;
    height: 48px;
  }

  h1 {
    font-size: 38px;
  }

  main {
    padding: 48px 0 70px;
  }

  .legal-section {
    padding: 22px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 56px;
    height: 56px;
  }

  .cookie-consent {
    bottom: 86px;
  }

  .cookie-consent-grid {
    grid-template-columns: 1fr;
  }

  .cookie-actions,
  .cookie-modal-actions {
    justify-content: stretch;
  }

  .cookie-btn {
    width: 100%;
  }
}
