:root {
  --black: #050505;
  --ink: #0b0b0b;
  --panel: #111111;
  --panel-2: #181818;
  --white: #f7f4ee;
  --soft: #d7d1c6;
  --muted: #9f978b;
  --line: rgba(247, 244, 238, 0.14);
  --gold: #c59a3a;
  --gold-soft: #dfc47d;
  --green: #182821;
  --radius: 8px;
  --max: 1180px;
  --header: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  margin: 0;
  color: var(--white);
  background: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link:focus {
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
  padding: 0.75rem 1rem;
  clip: auto;
  color: var(--black);
  background: var(--white);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 4vw;
  color: var(--white);
  background: rgba(5, 5, 5, 0.12);
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, height 220ms ease;
}

.site-header.scrolled {
  height: 68px;
  background: rgba(5, 5, 5, 0.92);
  border-color: var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.brand img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(197, 154, 58, 0.34);
}

.eterno-word {
  display: inline;
  color: var(--white);
  font-family: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  vertical-align: baseline;
}

.eterno-mark {
  color: var(--gold);
  font-family: inherit;
  font-weight: inherit;
}

.inline-wordmark {
  font-size: 0.92em;
}

.hero-wordmark {
  display: inline-flex;
  margin-right: 0.08em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.5rem);
  font-size: 0.84rem;
  text-transform: uppercase;
  color: rgba(247, 244, 238, 0.78);
}

.main-nav a {
  padding: 0.7rem 0;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--white);
}

.nav-cta {
  padding: 0.75rem 1rem !important;
  color: var(--black) !important;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-left: auto;
  order: 3;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
}

.language-option {
  min-width: 38px;
  min-height: 34px;
  padding: 0 0.55rem;
  color: rgba(247, 244, 238, 0.72);
  background: transparent;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  transition: color 180ms ease, background 180ms ease;
}

.language-option.active {
  color: var(--black);
  background: var(--gold);
}

body[data-language="en"] [data-whatsapp-only] {
  display: none !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header) + 7vh) 4vw 5vh;
  overflow: hidden;
  isolation: isolate;
}

.hero picture,
.hero picture img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.9), rgba(5, 5, 5, 0.54), rgba(5, 5, 5, 0.36)),
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.08) 56%, rgba(5, 5, 5, 0.72));
}

.hero-content {
  max-width: 920px;
}

.eyebrow,
.section-kicker,
.plan-label {
  margin: 0 0 0.85rem;
  color: var(--gold-soft);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 1.1rem;
  font-size: clamp(2.65rem, 5.7vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(1.85rem, 3.6vw, 3.35rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 620px;
  color: var(--soft);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--black);
  background: var(--gold);
  border-color: var(--gold);
}

.button-primary:hover {
  background: var(--gold-soft);
}

.button-secondary,
.button-outline {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line);
}

.button-secondary:hover,
.button-outline:hover {
  border-color: rgba(197, 154, 58, 0.7);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 8vh;
}

.hero-meta span {
  padding: 0.5rem 0.75rem;
  color: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.3);
}

.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7.5rem) 4vw;
}

.dark-section {
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}

.section-copy p,
.section-heading p,
.location-card p,
.schedule-card p,
.cta-band p {
  color: var(--soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.2rem;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 2rem;
}

.stat-row article {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #0e0e0e;
}

.stat-row strong,
.stat-row span {
  display: block;
}

.stat-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-panel {
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 285px;
  gap: 0.75rem;
}

.gallery-item {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: var(--white);
  text-align: left;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.gallery-item.large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.82;
  transition: transform 360ms ease, opacity 220ms ease;
}

.gallery-item span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.42rem 0.65rem;
  color: var(--white);
  background: rgba(5, 5, 5, 0.72);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.gallery-item:hover img,
.gallery-item:focus-visible img {
  transform: scale(1.04);
  opacity: 1;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.price-card,
.testimonial-card,
.schedule-card,
.location-card,
.contact-form,
.contact-info {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.form-row label {
  display: grid;
  gap: 0.4rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

select,
input,
textarea {
  width: 100%;
  color: var(--white);
  background: #0d0d0d;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  outline: none;
}

select,
input {
  min-height: 48px;
  padding: 0 0.9rem;
}

textarea {
  resize: vertical;
  padding: 0.9rem;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--gold);
}

.memberships {
  max-width: none;
  padding-left: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  padding-right: max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  background: var(--white);
  color: var(--black);
}

.memberships .section-heading p {
  color: #48443d;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 1.35rem;
  color: var(--white);
  background: var(--black);
}

.price-card.featured {
  border-color: rgba(197, 154, 58, 0.9);
  background: #10100e;
}

.price-card h3 {
  min-height: 56px;
  font-size: 1.5rem;
  text-transform: uppercase;
}

.price {
  margin: 0.3rem 0 1.2rem;
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1;
}

.price span {
  color: var(--muted);
  font-size: 0.9rem;
}

.price-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  padding: 0;
  color: var(--soft);
  list-style: none;
}

.price-card li {
  padding-left: 1rem;
  border-left: 2px solid rgba(197, 154, 58, 0.54);
}

.price-card .button {
  margin-top: auto;
}

.founder-note {
  display: flex;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding: 1rem;
  color: var(--white);
  background: var(--green);
  border-radius: var(--radius);
}

.founder-note span {
  color: var(--soft);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 1rem;
  align-items: center;
}

.testimonial-card {
  min-height: 260px;
  padding: clamp(1.4rem, 4vw, 3rem);
}

.testimonial-card span {
  color: var(--gold-soft);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.testimonial-card h3 {
  margin: 0.8rem 0;
  font-size: clamp(1.45rem, 2.5vw, 2.35rem);
  text-transform: uppercase;
}

.testimonial-card p {
  max-width: 780px;
  color: var(--soft);
}

.carousel-btn,
.lightbox-close {
  width: 54px;
  height: 54px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 180ms ease, transform 180ms ease;
}

.carousel-btn:hover,
.lightbox-close:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
}

.schedule-location {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 1rem;
  max-width: var(--max);
}

.schedule-card,
.location-card {
  padding: clamp(1.1rem, 3vw, 1.6rem);
}

.schedule-list {
  display: grid;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.schedule-list div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid var(--line);
}

.schedule-list dt {
  color: var(--gold-soft);
  font-weight: 900;
}

.schedule-list dd {
  margin: 0;
  color: var(--soft);
  text-align: right;
}

.muted {
  color: var(--muted) !important;
}

.map-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
  margin: 1.2rem 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(0.9) contrast(0.92);
}

.location-actions {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  color: var(--muted);
}

.cta-band {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: end;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 6rem) max(4vw, calc((100vw - var(--max)) / 2 + 4vw));
  overflow: hidden;
  isolation: isolate;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.54));
}

.cta-band div {
  max-width: 820px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1rem;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.form-row.full,
.privacy-check.full,
.button.full,
.form-status {
  grid-column: 1 / -1;
}

.form-row small {
  min-height: 1.1rem;
  color: #ef8f8f;
  font-size: 0.78rem;
}

.form-row.invalid input,
.form-row.invalid select,
.form-row.invalid textarea {
  border-color: #b45454;
}

.privacy-check {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  color: var(--soft);
}

.privacy-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--gold);
}

.form-status {
  margin: 0;
  min-height: 1.4rem;
  color: var(--gold-soft);
}

.contact-info {
  align-self: start;
  padding: clamp(1rem, 3vw, 1.5rem);
}

.contact-info img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(197, 154, 58, 0.5);
}

.contact-info h3 {
  margin-top: 1.1rem;
  text-transform: uppercase;
}

.contact-info p {
  color: var(--soft);
}

.contact-info a:not(.button) {
  color: var(--white);
  border-bottom: 1px solid rgba(197, 154, 58, 0.45);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr repeat(3, 1fr);
  gap: 2rem;
  padding: 3rem 4vw 2rem;
  border-top: 1px solid var(--line);
  background: #030303;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--muted);
  font-size: 0.94rem;
}

.site-footer a:hover {
  color: var(--white);
}

.site-footer h3 {
  margin-bottom: 0.9rem;
  font-size: 0.86rem;
  text-transform: uppercase;
}

.footer-brand span {
  color: var(--white);
}

.copyright {
  grid-column: 1 / -1;
  margin: 1rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  color: var(--black);
  background: var(--gold);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.38);
}

.lightbox {
  width: min(94vw, 1100px);
  padding: 0;
  color: var(--white);
  background: #050505;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.88);
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #050505;
}

.lightbox p {
  margin: 0;
  padding: 0.9rem 1rem;
  color: var(--soft);
}

.lightbox-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 2;
  font-size: 1.8rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 0.8rem;
    font-size: 0.78rem;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --header: 70px;
  }

  .site-header {
    padding: 0 1rem;
    gap: 0.85rem;
  }

  .menu-toggle {
    display: block;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .main-nav {
    position: fixed;
    inset: var(--header) 0 auto;
    display: grid;
    gap: 0;
    padding: 1rem;
    background: rgba(5, 5, 5, 0.97);
    border-bottom: 1px solid var(--line);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .language-switch {
    flex-shrink: 0;
  }

  .language-option {
    min-width: 36px;
    min-height: 34px;
  }

  .nav-cta {
    margin-top: 0.7rem;
    text-align: center;
  }

  .hero {
    min-height: 92svh;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  h1 {
    font-size: clamp(2.15rem, 10.5vw, 3.65rem);
  }

  .section,
  .dark-section,
  .memberships {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .split,
  .schedule-location,
  .contact-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .image-panel,
  .image-panel img {
    min-height: 420px;
  }

  .founder-note,
  .location-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 640px) {
  .brand span {
    display: none;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-grid,
  .stat-row,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    grid-auto-rows: 285px;
  }

  .gallery-item.large,
  .gallery-item.wide {
    grid-column: span 1;
    grid-row: span 1;
  }

  .class-meta {
    grid-template-columns: 1fr;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    width: 100%;
    border-radius: var(--radius);
  }

  .schedule-list div {
    display: grid;
  }

  .schedule-list dd {
    text-align: left;
  }

  .cta-band {
    min-height: 620px;
    padding-left: 1rem;
    padding-right: 1rem;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

[hidden] {
  display: none !important;
}

.website-field {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.privacy-check a,
.privacy-detail-link a,
.legal-copy a {
  color: var(--gold-soft);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.footer-link-button {
  display: block;
  padding: 0;
  color: var(--muted);
  font: inherit;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-link-button:hover,
.footer-link-button:focus-visible {
  color: var(--white);
}

.privacy-preferences {
  position: fixed;
  z-index: 200;
  inset: 0;
  display: grid;
  align-items: end;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(8px);
}

.privacy-preferences-card {
  width: min(720px, 100%);
  margin: 0 auto;
  padding: clamp(1.2rem, 3vw, 2rem);
  background: #0d0d0d;
  border: 1px solid rgba(197, 154, 58, 0.52);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.48);
}

.privacy-preferences-card h2 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.privacy-preferences-card > p {
  color: var(--soft);
}

.privacy-preferences-card > label {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 0.8rem;
  align-items: start;
  margin-top: 0.8rem;
  padding: 0.85rem;
  color: var(--soft);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.privacy-preferences-card input {
  min-height: 22px;
  margin-top: 0.1rem;
}

.privacy-preferences-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.privacy-preferences-actions .button {
  flex: 1 1 180px;
}

.privacy-detail-link {
  margin: 0.85rem 0 0;
  font-size: 0.9rem;
}

.consent-en {
  display: none;
}

body[data-language="en"] .consent-en {
  display: inline;
}

body[data-language="en"] .consent-es {
  display: none;
}

.legal-page {
  min-height: 100vh;
  padding: clamp(1.5rem, 5vw, 4rem);
  background: radial-gradient(circle at top right, rgba(197, 154, 58, 0.12), transparent 35%), var(--black);
}

.legal-shell {
  width: min(900px, 100%);
  margin: 0 auto;
}

.legal-header {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}

.legal-header img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 50%;
}

.legal-copy {
  margin-top: 2rem;
  color: var(--soft);
}

.legal-copy h1,
.legal-copy h2 {
  color: var(--white);
}

.legal-copy h1 {
  font-size: clamp(2rem, 6vw, 4.8rem);
}

.legal-copy h2 {
  margin-top: 2rem;
  font-size: 1.25rem;
}

.legal-copy ul {
  display: grid;
  gap: 0.5rem;
  padding-left: 1.3rem;
}

.legal-updated {
  color: var(--gold-soft);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-english-summary {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
