/* =========================================================================
   Solarium Bahía Morena — Stylesheet
   Warm beachy wellness theme (light mode locked)
   Palette:
     arena #F4E4C1 · dorado sol #E8A838 · terracota #D97742
     turquesa #2E8B8B · crema #FFF9F0
   Contrast-safe accents:
     --ink #2A1F12 (text on cream)   · --accent #B8562D (CTA/eyebrow text)
     --gold-deep #8A5A14 (gold used as text)
   Typography: Playfair Display (display) · Poppins (body)
   Mobile-first. Breakpoints: 480px / 768px / 1024px
   ========================================================================= */

:root {
  /* Brand colors — EXACT hex from design spec */
  --cream: #FFF9F0;
  --sand: #F4E4C1;
  --gold: #E8A838;
  --terra: #D97742;
  --teal: #2E8B8B;

  /* Contrast-safe derived tokens */
  --ink: #2A1F12;          /* main text on light (espresso brown) */
  --ink-soft: #5A4631;     /* secondary text (>= 4.5:1 on cream) */
  --accent: #B8562D;       /* deep terracotta: text + primary CTA bg */
  --gold-deep: #8A5A14;    /* gold darkened for text use */
  --teal-deep: #1f6868;    /* teal darkened for text use */
  --line: #E2CFA3;         /* hairline on cream */

  /* Status */
  --c-error: #9C2D1A;
  --c-error-bg: #FBE5DC;
  --c-success: #1f6868;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, -apple-system, Arial, sans-serif;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  /* Radius — single soft system */
  --r-sm: 8px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-pill: 999px;

  /* Container */
  --container: 1200px;
  --header-h: 72px;

  /* Transitions */
  --t-fast: 0.18s ease;
  --t-med: 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
  --shadow-soft: 0 14px 40px -18px rgba(42, 31, 18, 0.28);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 400;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; height: auto; }
a { color: var(--accent); text-decoration: none; transition: color var(--t-fast); }
a:hover { color: var(--gold-deep); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  color: var(--ink);
}
p { color: var(--ink-soft); }

/* ---------- Accessibility ---------- */
:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 3000;
  background: var(--teal-deep);
  color: #FFFFFF;
  padding: var(--space-3) var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  border-radius: 0 0 var(--r-sm) 0;
}
.skip-link:focus { left: 0; color: #FFFFFF; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-5);
}
.section { padding: var(--space-9) 0; }
.section--tight { padding: var(--space-8) 0; }
.section--sand { background: var(--sand); }
.section--teal { background: var(--teal-deep); }
.section--teal h1,
.section--teal h2,
.section--teal h3 { color: #FFFFFF; }
.section--teal p { color: #E7EDEE; }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.08;
  margin-bottom: var(--space-4);
}
.section-title .accent { color: var(--accent); }
.section-title .gold { color: var(--gold-deep); }

.section-lead {
  max-width: 720px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-7);
}
.section--teal .section-lead { color: #E7EDEE; }

.text-center { text-align: center; }
.center-block { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(0.875rem, 1vw, 0.95rem);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: var(--space-3);
}
.section--teal .eyebrow { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-6);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  border-radius: var(--r-pill);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--t-med), background var(--t-fast), color var(--t-fast), border-color var(--t-fast), box-shadow var(--t-fast);
  text-align: center;
  line-height: 1.2;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--accent {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.btn--accent:hover {
  background: #9C4623;
  border-color: #9C4623;
  color: #FFFFFF;
  box-shadow: 0 12px 28px -10px rgba(184, 86, 45, 0.55);
}
.btn--gold {
  background: var(--gold-deep);
  color: #FFFFFF;
  border-color: var(--gold-deep);
}
.btn--gold:hover { background: #6E4710; border-color: #6E4710; color: #FFFFFF; }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--accent);
}
.btn--ghost:hover {
  background: var(--accent);
  color: #FFFFFF;
  border-color: var(--accent);
}
.btn--on-dark {
  background: #FFFFFF;
  color: var(--teal-deep);
  border-color: #FFFFFF;
}
.btn--on-dark:hover { background: var(--cream); color: var(--teal-deep); }
.btn--ghost-on-dark {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.7);
}
.btn--ghost-on-dark:hover { background: rgba(255,255,255,0.12); color: #FFFFFF; border-color: #FFFFFF; }
.btn--block { width: 100%; }
.btn--lg { padding: var(--space-4) var(--space-7); font-size: 1.05rem; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 249, 240, 0.92);
  transition: background var(--t-med), box-shadow var(--t-med), border-color var(--t-med);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 249, 240, 0.98);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 28px -14px rgba(42, 31, 18, 0.25);
  backdrop-filter: blur(8px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}
.brand { display: inline-flex; align-items: center; gap: var(--space-3); }
.brand-logo { height: 44px; width: auto; }

.nav-toggle {
  position: relative;
  z-index: 1200;
  width: 44px; height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--cream);
}
.nav-toggle-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--accent);
  transition: transform var(--t-med), opacity var(--t-fast);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.primary-nav {
  position: fixed;
  top: 0; right: 0;
  width: min(85vw, 360px);
  height: 100vh;
  background: var(--cream);
  border-left: 1px solid var(--line);
  padding: calc(var(--header-h) + var(--space-6)) var(--space-6) var(--space-6);
  transform: translateX(100%);
  transition: transform var(--t-med);
  overflow-y: auto;
  z-index: 1100;
  box-shadow: -16px 0 40px -20px rgba(42, 31, 18, 0.3);
}
.primary-nav.open { transform: translateX(0); }
.nav-list { display: flex; flex-direction: column; gap: var(--space-1); }
.nav-list a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--ink);
  border-left: 3px solid transparent;
}
.nav-list a:hover, .nav-list a[aria-current="page"] {
  color: var(--accent);
  border-left-color: var(--accent);
  background: rgba(184, 86, 45, 0.06);
}
.nav-cta { margin-top: var(--space-5); display: flex; flex-direction: column; gap: var(--space-3); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(42, 31, 18, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--t-med);
  z-index: 1050;
}
.nav-overlay.open { opacity: 1; visibility: visible; }

@media (min-width: 1024px) {
  .nav-toggle { display: none; }
  .primary-nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    border: none;
    padding: 0;
    transform: none;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: var(--space-5);
    overflow: visible;
  }
  .nav-list {
    flex-direction: row;
    align-items: center;
    gap: var(--space-4);
  }
  .nav-list a {
    padding: var(--space-2) 0;
    border-left: none;
    border-bottom: 2px solid transparent;
    font-size: 0.98rem;
  }
  .nav-list a:hover, .nav-list a[aria-current="page"] {
    border-left-color: transparent;
    border-bottom-color: var(--accent);
    background: transparent;
  }
  .nav-cta { margin-top: 0; flex-direction: row; }
  .nav-overlay { display: none; }
}

/* ---------- Hero (asymmetric split) ---------- */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: calc(var(--header-h) + var(--space-7));
  padding-bottom: var(--space-8);
  background:
    radial-gradient(ellipse at 90% 10%, rgba(232,168,56,0.22), transparent 55%),
    radial-gradient(ellipse at 0% 100%, rgba(46,139,139,0.10), transparent 50%),
    var(--cream);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-7);
  align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 7vw, 4.75rem);
  line-height: 1.02;
  color: var(--ink);
  margin-bottom: var(--space-5);
}
.hero-title .accent { color: var(--accent); }
.hero-title .gold { color: var(--gold-deep); }
.hero-text {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: var(--space-6);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}
.hero-visual {
  position: relative;
  order: -1;
}
.hero-visual-frame {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 5;
  background: var(--sand);
}
.hero-visual-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-badge {
  position: absolute;
  left: -12px;
  bottom: var(--space-5);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--accent);
  line-height: 1;
}
.hero-badge span {
  font-size: 0.875rem;
  color: var(--ink-soft);
  font-weight: 500;
}

@media (min-width: 768px) {
  .hero-visual-frame { aspect-ratio: 5 / 5; }
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: var(--space-8);
  }
  .hero-visual { order: 0; }
  .hero-visual-frame { aspect-ratio: 4 / 5; }
}

/* ---------- Stats band ---------- */
.stats-band {
  background: var(--teal-deep);
  padding: var(--space-7) 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5);
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  margin-top: var(--space-2);
  color: #E7EDEE;
  font-size: 0.95rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ---------- Services bento ---------- */
.services-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}
.service-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: var(--space-6);
  transition: transform var(--t-med), box-shadow var(--t-fast), border-color var(--t-fast);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
  border-color: var(--terra);
}
.service-card--feature {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(232,168,56,0.10), transparent 60%),
    var(--cream);
}
.service-icon {
  width: 56px;
  height: 56px;
}
.service-card h3 {
  font-size: 1.5rem;
  color: var(--ink);
}
.service-card p { font-size: 1rem; }
.service-price {
  margin-top: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--accent);
}
.service-price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--ink-soft);
}
.service-link {
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.service-link::after {
  content: '→';
  transition: transform var(--t-fast);
}
.service-link:hover::after { transform: translateX(4px); }

@media (min-width: 768px) {
  .services-bento {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--feature { grid-column: span 2; flex-direction: row; align-items: center; }
  .service-card--feature .service-card-body { flex: 1; }
}
@media (min-width: 1024px) {
  .services-bento { grid-template-columns: repeat(3, 1fr); }
  .service-card--feature { grid-column: span 2; }
}

/* ---------- Feature split (por qué) ---------- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  align-items: center;
}
.feature-visual {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4 / 3;
  background: var(--sand);
}
.feature-visual img { width: 100%; height: 100%; object-fit: cover; }
.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  margin-top: var(--space-5);
}
.feature-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.feature-ic {
  width: 44px;
  height: 44px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item h3 {
  font-size: 1.2rem;
  margin-bottom: var(--space-1);
}
.feature-item p { font-size: 0.98rem; }

@media (min-width: 1024px) {
  .feature-split { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* ---------- Pricing / abonos ---------- */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.plan-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  position: relative;
  transition: transform var(--t-med), box-shadow var(--t-fast), border-color var(--t-fast);
}
.plan-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-soft); border-color: var(--terra); }
.plan-card.featured {
  border-color: var(--accent);
  border-width: 2px;
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: var(--space-6);
  background: var(--accent);
  color: #FFFFFF;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--r-pill);
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--ink);
}
.plan-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--accent);
  line-height: 1;
}
.plan-price small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink-soft);
}
.plan-tagline { color: var(--ink-soft); font-size: 0.98rem; }
.plan-features {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  margin: var(--space-3) 0 var(--space-2);
}
.plan-features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-3);
  align-items: start;
  font-size: 0.98rem;
  color: var(--ink);
}
.check {
  width: 20px;
  height: 20px;
  color: var(--teal-deep);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .plans-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}
.testimonial {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}
.testimonial-stars {
  color: var(--gold-deep);
  letter-spacing: 0.1em;
  font-size: 1.1rem;
}
.testimonial p {
  font-size: 1.05rem;
  color: var(--ink);
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  border-top: 1px solid var(--line);
  padding-top: var(--space-4);
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-author .who { font-weight: 600; color: var(--ink); }
.testimonial-author .where { font-size: 0.9rem; color: var(--ink-soft); }

@media (min-width: 768px) {
  .testimonials-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---------- CTA banner ---------- */
.cta-banner {
  background:
    radial-gradient(ellipse at 15% 20%, rgba(232,168,56,0.20), transparent 55%),
    var(--teal-deep);
  border-radius: var(--r-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  color: #FFFFFF;
}
.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #FFFFFF;
  margin-bottom: var(--space-4);
}
.cta-banner h2 .gold { color: var(--gold); }
.cta-banner p {
  color: #E7EDEE;
  max-width: 560px;
  margin: 0 auto var(--space-6);
  font-size: 1.1rem;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  justify-content: center;
}

/* ---------- Location ---------- */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.location-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
}
.info-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-4);
  align-items: start;
}
.info-row .ic {
  width: 40px;
  height: 40px;
  color: var(--accent);
  flex-shrink: 0;
}
.info-row .lbl {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.info-row .val { color: var(--ink); font-size: 1.02rem; }
.hours-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  margin-top: var(--space-2);
}
.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: var(--space-4);
  font-size: 0.98rem;
  color: var(--ink);
  padding: var(--space-1) 0;
  border-bottom: 1px solid var(--line);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .day { color: var(--ink-soft); }
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 320px;
  background: var(--sand);
}
.map-wrap iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }

@media (min-width: 1024px) {
  .location-grid { grid-template-columns: 1fr 1.1fr; align-items: start; }
  .map-wrap { min-height: 440px; }
  .map-wrap iframe { min-height: 440px; }
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  background: var(--cream);
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
}
.faq-trigger:hover { color: var(--accent); }
.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
  transition: transform var(--t-med);
}
.faq-trigger[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
.faq-panel {
  padding: 0 var(--space-5);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med), padding var(--t-med);
}
.faq-panel p {
  padding-bottom: var(--space-5);
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ---------- Page header (sub pages) ---------- */
.page-header {
  padding: calc(var(--header-h) + var(--space-7)) 0 var(--space-7);
  background:
    radial-gradient(ellipse at 90% 0%, rgba(232,168,56,0.18), transparent 55%),
    var(--cream);
}
.breadcrumb {
  font-size: 0.9rem;
  color: var(--ink-soft);
  margin-bottom: var(--space-4);
}
.breadcrumb .sep { margin: 0 var(--space-2); color: var(--line); }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--accent); }

/* ---------- Contact form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
}
.form-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-6);
}
.form-group { margin-bottom: var(--space-4); }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: var(--space-2);
}
.req { color: var(--c-error); }
.form-control {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-control::placeholder { color: #9A866A; }
.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(184, 86, 45, 0.18);
}
textarea.form-control { min-height: 130px; resize: vertical; }
.form-error {
  display: block;
  margin-top: var(--space-2);
  font-size: 0.875rem;
  color: var(--c-error);
  min-height: 1.2em;
}
.form-group.has-error .form-control {
  border-color: var(--c-error);
  background: var(--c-error-bg);
}
.form-success {
  background: rgba(31, 104, 104, 0.10);
  border: 1px solid var(--c-success);
  color: var(--c-success);
  padding: var(--space-4) var(--space-5);
  border-radius: var(--r-md);
  margin-bottom: var(--space-5);
  font-weight: 500;
}

@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: var(--space-7); align-items: start; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #E7DECE;
  padding: var(--space-8) 0 var(--space-5);
}
.site-footer h3 {
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: var(--space-4);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}
.footer-brand p { color: #C9BBA1; font-size: 0.95rem; margin-top: var(--space-3); max-width: 360px; }
.footer-col ul { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-col a { color: #E7DECE; font-size: 0.95rem; }
.footer-col a:hover { color: var(--gold); }
.footer-col li { color: #C9BBA1; font-size: 0.95rem; }
.footer-social { display: flex; gap: var(--space-3); margin-top: var(--space-4); }
.footer-social a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  color: #E7DECE;
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: #FFFFFF; }
.footer-social svg { width: 20px; height: 20px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: var(--space-4);
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: space-between;
  font-size: 0.875rem;
  color: #C9BBA1;
}
.footer-bottom a { color: #C9BBA1; }
.footer-bottom a:hover { color: var(--gold); }

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
}

/* ---------- WhatsApp floating ---------- */
.whatsapp-btn {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: 900;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #128C7E;
  color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(18, 140, 126, 0.55);
  transition: transform var(--t-fast), background var(--t-fast);
}
.whatsapp-btn:hover { transform: scale(1.06); background: #0E7267; color: #FFFFFF; }
.whatsapp-btn svg { width: 30px; height: 30px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
}
