/* ==========================================================================
   HERMANO SIXTO — Landing de orientación espiritual
   Hoja de estilos. Mobile-first. Sin frameworks.
   ========================================================================== */

:root {
  /* Paleta */
  --color-bg: #0b0a0e;
  --color-bg-alt: #131019;
  --color-bg-panel: #17131d;
  --color-burgundy: #4a1224;
  --color-burgundy-light: #6e1c34;
  --color-gold: #c9a24b;
  --color-gold-light: #e8cf8a;
  --color-gold-soft: rgba(201, 162, 75, 0.14);
  --color-cream: #f3e9d8;
  --color-cream-dim: #cbbfae;
  --color-white: #fbf8f2;
  --color-border: rgba(201, 162, 75, 0.22);

  /* Tipografía */
  --font-heading: "Playfair Display", "Georgia", serif;
  --font-body: "Jost", "Segoe UI", sans-serif;

  /* Layout */
  --container-max: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --space-section: clamp(4rem, 8vw, 7rem);

  /* Sombra dorada */
  --shadow-gold: 0 0 0 1px var(--color-border), 0 20px 50px -20px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-cream);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; margin: 0; color: var(--color-white); }
p { margin: 0; }

:focus-visible {
  outline: 2px solid var(--color-gold-light);
  outline-offset: 3px;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

section { position: relative; padding: var(--space-section) 0; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap;
}

/* ---------- Encabezados de sección ---------- */
.section-kicker {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--color-gold-light);
  margin-bottom: 0.9rem;
}

.section-title {
  text-align: center;
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  line-height: 1.25;
}

.section-subtitle {
  text-align: center;
  max-width: 560px;
  margin: 1rem auto 0;
  color: var(--color-cream-dim);
  font-size: 1rem;
}

.divider {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 170px;
  margin: 1.4rem auto 0;
}
.divider::before, .divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}
.divider::after { background: linear-gradient(270deg, transparent, var(--color-gold)); }
.divider span {
  width: 6px; height: 6px;
  background: var(--color-gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.9rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #201405;
  box-shadow: 0 12px 30px -10px rgba(201, 162, 75, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -10px rgba(201, 162, 75, 0.7);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold-light);
  border-color: var(--color-border);
}
.btn-outline:hover {
  background: var(--color-gold-soft);
  border-color: var(--color-gold);
}

.btn-block { width: 100%; }

.btn-small { padding: 0.65rem 1.3rem; font-size: 0.85rem; }

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
  background: rgba(11, 10, 14, 0.75);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, padding 0.3s ease;
}
.site-header.is-scrolled {
  border-bottom-color: var(--color-border);
  padding: 0.6rem 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
}
.brand span { color: var(--color-gold-light); }

.main-nav {
  display: none;
  gap: 2rem;
}
.main-nav a {
  font-size: 0.88rem;
  color: var(--color-cream-dim);
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
  position: relative;
}
.main-nav a:hover { color: var(--color-gold-light); }

@media (min-width: 860px) {
  .main-nav { display: flex; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  padding-top: clamp(3.5rem, 10vw, 6rem);
  padding-bottom: clamp(3.5rem, 10vw, 6rem);
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(110, 28, 52, 0.55), transparent 70%),
    linear-gradient(180deg, #0b0a0e 0%, #100c14 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1.6px 1.6px at 10% 20%, rgba(243, 233, 216, .85), transparent),
    radial-gradient(1.2px 1.2px at 80% 15%, rgba(243, 233, 216, .6), transparent),
    radial-gradient(1.6px 1.6px at 60% 45%, rgba(201, 162, 75, .8), transparent),
    radial-gradient(1.2px 1.2px at 30% 65%, rgba(243, 233, 216, .55), transparent),
    radial-gradient(1.6px 1.6px at 90% 70%, rgba(243, 233, 216, .7), transparent),
    radial-gradient(1.2px 1.2px at 45% 85%, rgba(201, 162, 75, .6), transparent),
    radial-gradient(1.6px 1.6px at 15% 90%, rgba(243, 233, 216, .5), transparent);
  background-repeat: repeat;
  background-size: 420px 420px;
  opacity: .55;
  animation: twinkle 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes twinkle { from { opacity: .3; } to { opacity: .7; } }

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}
.hero__glow--burgundy {
  width: 380px; height: 380px;
  background: var(--color-burgundy-light);
  opacity: .4;
  top: -12%; left: -14%;
  animation: float-a 16s ease-in-out infinite;
}
.hero__glow--gold {
  width: 320px; height: 320px;
  background: var(--color-gold);
  opacity: .16;
  bottom: -16%; right: -10%;
  animation: float-b 18s ease-in-out infinite;
}
@keyframes float-a {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 20px); }
}
@keyframes float-b {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-25px, -15px); }
}

.hero__moon {
  position: absolute;
  top: 9%; right: 9%;
  width: 76px; height: 76px;
  border-radius: 50%;
  background: radial-gradient(circle at 32% 32%, var(--color-gold-light), var(--color-gold) 55%, transparent 72%);
  box-shadow: 0 0 60px 10px rgba(201, 162, 75, .3);
}
.hero__moon::after {
  content: "";
  position: absolute;
  top: -6%; left: 20%;
  width: 88%; height: 88%;
  border-radius: 50%;
  background: #0b0a0e;
  box-shadow: 0 0 34px 14px #0b0a0e;
}
@media (max-width: 640px) {
  .hero__moon { width: 52px; height: 52px; top: 4%; right: 6%; }
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 760px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 1.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 6vw, 3.4rem);
  line-height: 1.2;
  max-width: 16ch;
}

.hero__subtitle {
  margin-top: 1.4rem;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--color-cream-dim);
  max-width: 48ch;
}

.hero__cta {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
}

.hero__meta {
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--color-cream-dim);
}
.hero__meta span { color: var(--color-gold-light); margin: 0 0.35em; }

/* ==========================================================================
   SITUACIÓN — cards de identificación
   ========================================================================== */
.situation {
  background: var(--color-bg-alt);
}

.situation-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
}
@media (min-width: 640px) {
  .situation-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
  .situation-grid { grid-template-columns: repeat(3, 1fr); }
}

.situation-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.situation-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}
.situation-card__icon { font-size: 1.7rem; }
.situation-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
}
.situation-card p {
  color: var(--color-cream-dim);
  font-size: 0.92rem;
  flex-grow: 1;
}

/* ==========================================================================
   SERVICIOS
   ========================================================================== */
.services-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.3rem;
}
@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

.service-card {
  position: relative;
  background: linear-gradient(165deg, var(--color-bg-panel), var(--color-bg-alt));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(201,162,75,0.12), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); }
.service-card:hover::before { opacity: 1; }

.service-card__icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--color-gold-soft);
  color: var(--color-gold-light);
  font-size: 1.3rem;
}
.service-card h3 { font-size: 1.1rem; }
.service-card p { color: var(--color-cream-dim); font-size: 0.92rem; flex-grow: 1; }

/* ==========================================================================
   PROCESO
   ========================================================================== */
.process { background: var(--color-bg-alt); }

.process-steps {
  margin-top: 3.2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  position: relative;
}
@media (min-width: 860px) {
  .process-steps { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
  .process-steps::before {
    content: "";
    position: absolute;
    top: 28px; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  }
}

.process-step { text-align: center; position: relative; }
.process-step__number {
  width: 56px; height: 56px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--color-bg);
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--color-cream-dim); font-size: 0.9rem; }

/* ==========================================================================
   ESPECIALISTA
   ========================================================================== */
.specialist .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 900px) {
  .specialist .container { grid-template-columns: 0.85fr 1.15fr; gap: 3.5rem; }
}

.specialist__photo {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, var(--color-bg-panel), var(--color-bg-alt));
  overflow: hidden;
  max-width: 360px;
  margin: 0 auto;
}
.specialist__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.specialist__content .section-kicker,
.specialist__content .section-title { text-align: left; }
.specialist__content .divider { margin-left: 0; }

.specialist__text {
  margin-top: 1.4rem;
  color: var(--color-cream-dim);
  font-size: 1rem;
}

.specialist__facts {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.specialist__fact {
  border-left: 2px solid var(--color-gold);
  padding-left: 0.9rem;
}
.specialist__fact dt {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-light);
  margin-bottom: 0.3rem;
}
.specialist__fact dd {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--color-white);
}

.specialist__tag {
  display: inline-flex;
  margin-top: 1.6rem;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  background: var(--color-gold-soft);
  color: var(--color-gold-light);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
}

.specialist__content .btn { margin-top: 2rem; }

/* ==========================================================================
   TESTIMONIOS
   ========================================================================== */
.testimonials { background: var(--color-bg-alt); }

.testimonials-carousel {
  position: relative;
  max-width: 640px;
  margin: 3rem auto 0;
}

.testimonials-viewport {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.testimonials-track > .testimonial-card {
  flex: 0 0 100%;
  width: 100%;
  margin: 0;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: 50%;
  color: var(--color-cream);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.85;
  transition: opacity 0.2s ease, background 0.2s ease, color 0.2s ease;
  z-index: 2;
}
.carousel-arrow:hover { opacity: 1; background: var(--color-gold); color: var(--color-bg); }
.carousel-arrow--prev { left: 8px; }
.carousel-arrow--next { right: 8px; }

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.testimonials-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-border);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}
.testimonials-dots button.is-active { background: var(--color-gold); transform: scale(1.3); }

.testimonial-card {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.testimonial-card__mark {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--color-gold);
  line-height: 1;
}
.testimonial-card p.quote {
  color: var(--color-cream-dim);
  font-style: italic;
  font-size: 0.95rem;
}
.testimonial-card__author {
  font-size: 0.85rem;
  color: var(--color-gold-light);
  letter-spacing: 0.02em;
}

.testimonial-card--photo {
  padding: 0;
  overflow: hidden;
  background: var(--color-bg-alt);
  align-items: center;
  justify-content: center;
}
.testimonial-card--photo img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  display: block;
}

.testimonials-note {
  margin-top: 1.6rem;
  text-align: center;
  font-size: 0.78rem;
  color: var(--color-cream-dim);
  opacity: 0.75;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-section {
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 100%, rgba(74, 18, 36, 0.6), transparent 70%),
    linear-gradient(180deg, #100c14, #0b0a0e);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.cta-section h2 { font-size: clamp(1.8rem, 4.5vw, 2.6rem); max-width: 18ch; margin: 0 auto; }
.cta-section p {
  margin-top: 1.1rem;
  color: var(--color-cream-dim);
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
}
.cta-section .btn { margin-top: 2.2rem; }

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq-list {
  margin-top: 3rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.faq-item {
  background: var(--color-bg-panel);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 0.3rem 1.3rem;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-white);
}
.faq-item summary::-webkit-details-marker { display: none; }

.faq-item__icon {
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--color-gold);
  color: var(--color-gold-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: transform 0.3s ease;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__answer {
  padding: 0 0 1.2rem;
  color: var(--color-cream-dim);
  font-size: 0.92rem;
  animation: fade-in 0.35s ease;
}
@keyframes fade-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  padding: 3.5rem 0 2rem;
  background: var(--color-bg-alt);
  border-top: 1px solid var(--color-border);
  font-size: 0.85rem;
  color: var(--color-cream-dim);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
}
@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

.footer-brand .brand { display: block; margin-bottom: 0.8rem; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold-light);
  margin-bottom: 0.9rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-col a:hover { color: var(--color-gold-light); }

.footer-legal {
  margin-top: 2.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--color-border);
  font-size: 0.76rem;
  line-height: 1.7;
  color: rgba(203, 191, 174, 0.7);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

/* ==========================================================================
   BOTÓN FLOTANTE DE WHATSAPP
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 200;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #201405;
  box-shadow: 0 14px 30px -8px rgba(201, 162, 75, 0.65);
  transition: transform 0.25s ease;
}
.whatsapp-float:hover { transform: scale(1.07); }
.whatsapp-float svg { width: 26px; height: 26px; }

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid var(--color-gold);
  opacity: 0.6;
  animation: pulse-ring 2.6s ease-out infinite;
}
@keyframes pulse-ring {
  0% { transform: scale(0.9); opacity: 0.5; }
  70% { transform: scale(1.35); opacity: 0; }
  100% { opacity: 0; }
}
@media (min-width: 720px) {
  .whatsapp-float { right: 1.8rem; bottom: 1.8rem; }
}

/* ==========================================================================
   REVEAL ON SCROLL
   ========================================================================== */
/* Por defecto siempre visible: si JS no corre, no debe desaparecer contenido. */
.reveal {
  opacity: 1;
  transform: none;
}
/* Solo cuando JS confirma que puede animar (ver initScrollReveal) se oculta
   para animar la entrada; con red de seguridad por timeout ante fallos. */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.js-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PÁGINAS LEGALES (privacy/terms/legal.html)
   ========================================================================== */
.legal-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 6rem 1.25rem 5rem;
}
.legal-page h1 { font-size: clamp(1.6rem, 4vw, 2.2rem); margin-bottom: 0.5rem; }
.legal-page .legal-updated { color: var(--color-cream-dim); font-size: 0.85rem; margin-bottom: 2.5rem; }
.legal-page h2 {
  font-size: 1.15rem;
  margin-top: 2.2rem;
  margin-bottom: 0.7rem;
  color: var(--color-gold-light);
}
.legal-page p, .legal-page li { color: var(--color-cream-dim); font-size: 0.95rem; margin-bottom: 0.8rem; }
.legal-page ul { padding-left: 1.2rem; list-style: disc; }
.legal-page .back-link { display: inline-block; margin-bottom: 2rem; color: var(--color-gold-light); }
.legal-page .draft-notice {
  border: 1px solid var(--color-border);
  background: var(--color-gold-soft);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  font-size: 0.85rem;
  color: var(--color-cream);
  margin-bottom: 2.5rem;
}
