/* =========================================================
   Wonderland — Design tokens
   ========================================================= */
:root {
  /* Brand palette (hex from CLAUDE.md — do not change without confirming) */
  --color-forest: #33443b;      /* Verde Bosque — marca base / secciones oscuras */
  --color-emerald: #0e8a5f;     /* Verde Esmeralda — acento joya */
  --color-sage: #8a9a7b;        /* Salvia — verde suave / detalles */
  --color-terracotta: #be6b4a;  /* Terracota — CTA / énfasis */
  --color-clay: #d9a084;        /* Arcilla Clara — cálido suave / tarjetas */
  --color-gold: #c6a25e;        /* Oro / Latón — acento fino */
  --color-sand: #efe6d6;        /* Arena — fondo claro */
  --color-bone: #f6f1e8;        /* Hueso — fondo claro */
  --color-charcoal: #1c1b18;    /* Carbón Cálido — fondo oscuro */

  /* Semantic roles */
  --bg-dark: var(--color-charcoal);
  --bg-dark-alt: var(--color-forest);
  --bg-light: var(--color-sand);
  --bg-light-alt: var(--color-bone);
  --text-on-dark: var(--color-bone);
  --text-on-dark-muted: #cfc8ba;
  --text-on-light: var(--color-forest);
  --text-on-light-muted: #5a5f52;

  --font-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --font-body: "Jost", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* Tipografía SOLO del logotipo/wordmark (aprox. mientras llega el archivo
     real del cliente por Drive) — nunca usar para títulos o cuerpo del sitio. */
  --font-wordmark: "Poiret One", var(--font-display);

  --max-width: 1160px;
  --radius-pill: 999px;
  --radius-md: 14px;
  --space-section: clamp(3.5rem, 6vw, 6.5rem);
  --transition: 220ms ease;
}

/* =========================================================
   Reset / base
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg-light-alt);
  color: var(--text-on-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.6em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }

p {
  margin: 0 0 1em;
}

a {
  color: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
}

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

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

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  background: var(--color-terracotta);
  color: var(--color-bone);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-pill);
  z-index: 1000;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
}

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

/* =========================================================
   Eyebrow / kicker
   ========================================================= */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.9rem;
}

.eyebrow--lg {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  letter-spacing: 0.16em;
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: var(--radius-pill);
  padding: 0.9rem 1.9rem;
  min-height: 44px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-terracotta);
  color: var(--color-bone);
}

.btn--primary:hover {
  background: #a85a3c;
}

.btn--outline {
  background: transparent;
  color: inherit;
  border-color: currentColor;
}

.btn--outline:hover {
  background: currentColor;
}

.btn--outline:hover {
  color: var(--bg-dark);
}

.section--light .btn--outline:hover,
.section--light-alt .btn--outline:hover {
  color: var(--bg-light);
}

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--color-charcoal);
  color: var(--text-on-dark);
  border-bottom: 1px solid rgba(246, 241, 232, 0.08);
}

.navbar {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-on-dark);
}

.brand__mark {
  width: 30px;
  height: 30px;
  color: var(--color-gold);
  flex-shrink: 0;
}

/* Logo definitivo del cliente (ver assets/logo/README.md) */
.brand__logo {
  height: 34px;
  width: auto;
  display: block;
}

.brand__word {
  font-family: var(--font-wordmark);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-links a {
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-on-dark-muted);
  transition: color var(--transition);
}

.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--color-bone);
}

.nav-cta {
  margin-left: 0.25rem;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.lang-switch a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
  padding: 0.25rem 0.4rem;
}

.lang-switch a[aria-current="true"] {
  color: var(--color-bone);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.lang-switch span {
  opacity: 0.5;
}

.navbar__right-mobile {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.navbar__lang-mobile {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.6rem;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-on-dark);
  display: block;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .navbar__lang-mobile {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-charcoal);
    border-bottom: 1px solid rgba(246, 241, 232, 0.08);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 0.5rem 0;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a,
  .nav-links .lang-switch {
    display: block;
    padding: 0.9rem 1.5rem;
    width: 100%;
  }

  .nav-cta {
    padding: 0.9rem 1.5rem;
    margin: 0;
  }

  .nav-links .lang-switch {
    display: none;
  }
}

/* =========================================================
   Sections — alternating dark / light backgrounds
   ========================================================= */
.section {
  padding: var(--space-section) 0;
}

.section--dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}

.section--dark-alt {
  background: var(--bg-dark-alt);
  color: var(--text-on-dark);
}

.section--light {
  background: var(--bg-light);
  color: var(--text-on-light);
}

.section--light-alt {
  background: var(--bg-light-alt);
  color: var(--text-on-light);
}

.section--dark .text-muted {
  color: var(--text-on-dark-muted);
}

.section--light .text-muted,
.section--light-alt .text-muted {
  color: var(--text-on-light-muted);
}

.section-intro {
  max-width: 46rem;
  margin: 0 0 2.75rem;
}

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

.prose {
  max-width: 42rem;
}

.prose--center {
  margin: 0 auto;
  text-align: center;
}

/* =========================================================
   Photo-bleed sections (full-bleed photography + scrim + grain)
   Used for the Hero, the breather panels, the Método band and
   the final CTA. Real placeholder photos live in assets/photos/
   (see ATTRIBUTIONS.md) until the client's own photos arrive.
   ========================================================= */
.photo-bleed {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  color: var(--text-on-dark);
}

.photo-bleed__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.photo-bleed__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-bleed__scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.photo-bleed__grain {
  position: absolute;
  inset: 0;
  z-index: 0;
  filter: url(#wl-grain);
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.photo-bleed__content {
  position: relative;
  z-index: 1;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  padding: clamp(5rem, 16vw, 10rem) 0 clamp(4rem, 12vw, 7rem);
  text-align: center;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

.hero .photo-bleed__scrim {
  background:
    radial-gradient(ellipse 70% 55% at 50% 12%, rgba(198, 162, 94, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(28, 27, 24, 0.55) 0%, rgba(28, 27, 24, 0.72) 55%, var(--color-charcoal) 100%);
}

.hero__content {
  max-width: 44rem;
  margin: 0 auto;
}

.hero__subtitle {
  font-size: 1.2rem;
  color: var(--text-on-dark-muted);
  margin-bottom: 2.2rem;
}

.hero h1 {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
}

/* Logo definitivo del cliente (ver assets/logo/README.md) */
.hero__logo {
  height: clamp(52px, 9vw, 92px);
  width: auto;
  margin: 0 auto 1.85rem;
  display: block;
}

/* =========================================================
   Blob media — organic image mask (portrait, breather images)
   ========================================================= */
.blob-media {
  overflow: hidden;
  border-radius: 62% 38% 55% 45% / 45% 55% 40% 60%;
}

.blob-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Shape facet — abstract geometric mask (chamfered corners),
   alternative to the organic blob-media for variety
   ========================================================= */
.shape-facet {
  overflow: hidden;
  clip-path: polygon(16% 0%, 100% 0%, 100% 84%, 84% 100%, 0% 100%, 0% 16%);
}

.shape-facet img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================================================
   Scroll reveal
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 800ms ease, transform 800ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* =========================================================
   Cards — experience chooser (photo top + circular badge)
   ========================================================= */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}

.card {
  background: var(--bg-light-alt);
  color: var(--text-on-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 34px -22px rgba(28, 27, 24, 0.45);
  transition: transform var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 40px -20px rgba(28, 27, 24, 0.55);
}

.card__photo {
  position: relative;
  height: clamp(200px, 20vw, 260px);
  flex-shrink: 0;
}

.card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__badge {
  position: absolute;
  left: 1.1rem;
  bottom: -22px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-forest);
  color: var(--color-bone);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px -6px rgba(28, 27, 24, 0.5);
}

.card__badge svg {
  width: 20px;
  height: 20px;
}

.card__body {
  padding: 2rem 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-grow: 1;
}

.card__title {
  margin: 0;
  font-size: 1.3rem;
}

.card__desc {
  flex-grow: 1;
  margin: 0;
  color: var(--text-on-light-muted);
  font-size: 0.95rem;
}

.card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-terracotta);
}

.card__link:hover {
  text-decoration: underline;
}

/* =========================================================
   Method — full-bleed photo band, edge to edge (no margins).
   ========================================================= */
.method-band__panel {
  min-height: 480px;
  display: flex;
  align-items: center;
}

.method-band .photo-bleed__scrim {
  background:
    linear-gradient(180deg, rgba(28, 27, 24, 0.88) 0%, rgba(51, 68, 59, 0.86) 100%);
}

.method-band .photo-bleed__content {
  width: 100%;
  padding: var(--space-section) 2rem;
}

.method-band__subtitle {
  color: var(--color-gold);
  font-weight: 600;
}

.method-band .eyebrow {
  color: var(--color-terracotta);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  position: relative;
}

.steps-grid::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: repeating-linear-gradient(90deg, rgba(198, 162, 94, 0.55) 0 6px, transparent 6px 12px);
}

.step {
  text-align: center;
  position: relative;
}

.step__badge {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.1rem;
  border-radius: 50%;
  background: var(--color-terracotta);
  color: var(--color-bone);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 16px -4px rgba(0, 0, 0, 0.5);
}

.step__badge svg {
  width: 24px;
  height: 24px;
}

.step__title {
  font-size: 1.1rem;
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--color-bone);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.55);
}

.step__desc {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(246, 241, 232, 0.88);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

@media (max-width: 860px) {
  .steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    row-gap: 2.25rem;
  }

  .steps-grid::before {
    display: none;
  }
}

/* =========================================================
   About Miguel preview (home) + full page
   ========================================================= */
.about-preview {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 2.5rem;
  align-items: center;
}

.about-preview__media {
  aspect-ratio: 3 / 4;
}

.about-preview__media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-preview--center .about-preview__body {
  text-align: center;
}

.about-preview--center .about-preview__body .eyebrow {
  font-size: 1.05rem;
  letter-spacing: 0.1em;
}

.about-preview--center .about-preview__body h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.15rem);
}

.about-preview--narrow {
  max-width: 880px;
  margin: 0 auto;
}

.about-preview--media-right {
  grid-template-columns: 1fr minmax(220px, 340px);
}

.about-preview--media-right .about-preview__media {
  order: 2;
}

.about-preview--media-right .about-preview__body {
  order: 1;
}

.about-preview--miguel .eyebrow {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  letter-spacing: 0.14em;
}

.section-intro__title--accent {
  color: var(--color-gold);
}

.section-intro__subtitle--italic {
  font-style: italic;
}

@media (max-width: 720px) {
  .about-preview {
    grid-template-columns: 1fr;
  }

  .about-preview__media {
    max-width: 260px;
    margin: 0 auto;
  }
}

/* =========================================================
   Testimonials (placeholder)
   ========================================================= */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

@media (max-width: 720px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-md);
  padding: 1.5rem 1.65rem;
  background: var(--bg-light-alt);
}

.testimonial-card__title {
  margin: 0 0 0.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-emerald);
}

.testimonial-card blockquote {
  flex: 1;
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: 0.98rem;
  line-height: 1.42;
  font-style: italic;
}

.testimonial-card cite {
  margin-top: auto;
  font-style: normal;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--text-on-light-muted);
}

/* =========================================================
   Gallery
   ========================================================= */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
}

.gallery-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* =========================================================
   FAQ (native <details>)
   ========================================================= */
.faq-list {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border-bottom: 1px solid rgba(51, 68, 59, 0.18);
}

.section--dark .faq-item,
.section--dark-alt .faq-item {
  border-bottom-color: rgba(246, 241, 232, 0.18);
}

.faq-question {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 0.25rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-family: var(--font-body);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  margin: 0 0 1.25rem;
  padding: 0 0.25rem;
}

/* =========================================================
   Pull quote (cita destacada)
   ========================================================= */
.pull-quote {
  max-width: 44rem;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.4;
}

/* =========================================================
   CTA banner
   ========================================================= */
.cta-banner {
  text-align: center;
}

.cta-banner .prose--center {
  margin-bottom: 2rem;
}

.cta-banner.photo-bleed .photo-bleed__scrim {
  background:
    radial-gradient(ellipse 65% 60% at 50% 100%, rgba(190, 107, 74, 0.22), transparent 60%),
    linear-gradient(180deg, rgba(28, 27, 24, 0.72) 0%, rgba(28, 27, 24, 0.85) 100%);
}

/* =========================================================
   Photo panel (breather) — full-bleed image between text sections
   ========================================================= */
.photo-panel {
  min-height: min(60vh, 520px);
}

.photo-panel .photo-bleed__scrim {
  background: linear-gradient(0deg, rgba(28, 27, 24, 0.35), rgba(28, 27, 24, 0.05) 40%);
}

/* =========================================================
   Quote bleed — pull-quote over full-bleed photo
   ========================================================= */
.quote-bleed {
  min-height: min(55vh, 480px);
  display: flex;
  align-items: center;
}

.quote-bleed .photo-bleed__scrim {
  background: linear-gradient(180deg, rgba(28, 27, 24, 0.72) 0%, rgba(28, 27, 24, 0.8) 100%);
}

.quote-bleed .photo-bleed__content {
  width: 100%;
}

/* =========================================================
   Contact split — direct channels (left) + form (right)
   ========================================================= */
.contact-split {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(320px, 1.3fr);
  gap: 2.5rem;
  align-items: stretch;
}

.contact-split__form {
  background: var(--bg-light-alt);
  border-radius: var(--radius-md);
  padding: 2.75rem 2.25rem;
}

.contact-split__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 2.75rem;
}

.contact-split__info h2 {
  margin-bottom: 0.5rem;
}

.contact-split__cta {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  max-width: 26rem;
  margin: 0 auto;
}

.contact-icons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.75rem;
}

.contact-icon-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.25rem;
  border: 1px solid var(--color-forest);
  border-radius: var(--radius-pill);
  color: inherit;
  text-decoration: none;
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.contact-icon-link:hover,
.contact-icon-link:focus-visible {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  color: var(--color-bone);
}

.contact-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-forest);
  color: var(--color-bone);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-icon-link__text {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}

.contact-icon-link__text small {
  opacity: 0.8;
}

@media (max-width: 820px) {
  .contact-split {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .contact-split__form {
    padding: 2rem 1.5rem;
  }

  .contact-split__info {
    padding-top: 0;
  }
}

/* =========================================================
   Quote band (solid color) — thin banner, no photo
   ========================================================= */
.section.quote-band {
  background: var(--bg-light);
  color: var(--text-on-light);
  padding: 2.75rem 0;
}

.quote-band .pull-quote {
  color: var(--color-forest);
}

/* =========================================================
   Accompaniment band — full-bleed photo, text pushed right
   ========================================================= */
.section.acompano-band {
  min-height: min(64vh, 560px);
  display: flex;
  align-items: center;
  color: var(--text-on-dark);
}

.acompano-band .photo-bleed__scrim {
  background: linear-gradient(90deg, rgba(28, 27, 24, 0.08) 0%, rgba(28, 27, 24, 0.4) 45%, rgba(28, 27, 24, 0.86) 72%, rgba(28, 27, 24, 0.92) 100%);
}

.acompano-band__text {
  margin-left: auto;
  max-width: 38rem;
  padding: 2.5rem 3rem;
  background: rgba(28, 27, 24, 0.42);
  border-radius: 3rem;
}

.acompano-band__text h2 {
  color: var(--color-gold);
}

.acompano-band__text p {
  color: var(--text-on-dark);
  font-size: 1.2rem;
  line-height: 1.75;
}

@media (max-width: 720px) {
  .acompano-band .photo-bleed__scrim {
    background: linear-gradient(180deg, rgba(28, 27, 24, 0.5) 0%, rgba(28, 27, 24, 0.88) 55%, rgba(28, 27, 24, 0.94) 100%);
  }

  .acompano-band__text {
    margin-left: 0;
    max-width: 100%;
    padding: 1.75rem 1.5rem;
    border-radius: 1.75rem;
  }
}

/* =========================================================
   TODO / PENDIENTE placeholders
   ========================================================= */
.todo {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  font-style: normal;
  padding: 0.15rem 0.6rem;
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-pill);
  background: rgba(198, 162, 94, 0.14);
  color: inherit;
}

.meta-fact {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border: 1px solid var(--color-emerald);
  border-radius: var(--radius-pill);
  background: rgba(14, 138, 95, 0.12);
  color: inherit;
}

.todo-block {
  border: 1px dashed var(--color-gold);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  background: rgba(198, 162, 94, 0.1);
}

.todo-block p:last-child {
  margin-bottom: 0;
}

/* =========================================================
   Experience detail sections
   ========================================================= */
.experience-block__intro {
  max-width: 46rem;
  margin-bottom: 2.5rem;
}

.service-list {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-item {
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(51, 68, 59, 0.14);
}

.section--dark .service-item,
.section--dark-alt .service-item {
  border-bottom-color: rgba(246, 241, 232, 0.14);
}

.service-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.service-item h3 {
  margin-bottom: 0.35rem;
}

.service-item--photo {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.service-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.service-item__body {
  flex: 1;
  min-width: 0;
}

.service-item__body h3,
.service-item__body p {
  margin: 0;
}

.service-item__body h3 {
  margin-bottom: 0.3rem;
}

/* Pareja / Couples: diferenciar el color de los títulos de servicio */
#pareja .service-item h3,
#couples .service-item h3 {
  color: var(--color-gold);
}

/* Grupo & Retiros / Group & Retreats: diferenciar el color de los títulos de servicio */
#grupo-retiros .service-item h3,
#group-retreats .service-item h3 {
  color: var(--color-terracotta);
}

/* Momentos Especiales / Special Moments: diferenciar el color de los títulos de servicio */
#momentos-especiales .service-item h3,
#special-moments .service-item h3 {
  color: var(--color-sage);
}

/* =========================================================
   Service grid — tarjetas grandes con foto orgánica (blob)
   ========================================================= */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 2.5rem 1.75rem;
  text-align: center;
  margin-bottom: 2.5rem;
}

.service-card__media {
  max-width: 230px;
  aspect-ratio: 1 / 1;
  margin: 0 auto 1.25rem;
}

.service-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--color-emerald);
}

.service-card p {
  font-size: 0.9rem;
  margin: 0;
  color: var(--text-on-light-muted);
  text-align: justify;
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.75rem 0;
}

.meta-row .todo {
  display: inline-flex;
}

/* =========================================================
   Forms
   ========================================================= */
.form {
  max-width: 34rem;
}

.form-field {
  margin-bottom: 1.4rem;
}

.form-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.45rem;
}

.form-field .required {
  color: var(--color-terracotta);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  border-radius: 10px;
  border: 1.5px solid rgba(51, 68, 59, 0.3);
  background: var(--bg-light-alt);
  color: var(--text-on-light);
  transition: border-color var(--transition);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-emerald);
}

.form-note {
  font-size: 0.85rem;
  margin-top: 1rem;
}

.form-confirmation {
  margin-top: 1.5rem;
}

.form-confirmation[hidden] {
  display: none;
}

.contact-direct-list {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin: 1.75rem 0 2rem;
}

.contact-direct-list dt {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-on-dark-muted);
  margin-bottom: 0.2rem;
}

.contact-direct-list dd {
  margin: 0;
  font-size: 1.05rem;
}

.contact-direct-list a {
  text-decoration: underline;
  text-decoration-color: var(--color-gold);
  text-underline-offset: 3px;
}

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--color-charcoal);
  color: var(--text-on-dark);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand .brand {
  margin-bottom: 0.75rem;
}

.footer-col h2 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 1rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-col a {
  text-decoration: none;
  color: var(--text-on-dark-muted);
}

.footer-col a:hover {
  color: var(--color-bone);
}

.footer-contact-list a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.footer-contact-list svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.footer-grid--centered {
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.footer-brand--center .brand {
  justify-content: center;
  margin-bottom: 1.25rem;
}

.footer-brand--center .brand__logo {
  height: clamp(48px, 7.5vw, 80px);
}

/* =========================================================
   CTA social icons — clickable WhatsApp/Instagram logos only
   ========================================================= */
.cta-social-icons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.cta-social-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
}

.cta-social-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-terracotta);
  color: var(--color-bone);
  transition: background var(--transition), transform var(--transition);
}

.cta-social-icon svg {
  width: 26px;
  height: 26px;
}

.cta-social-item:hover .cta-social-icon,
.cta-social-item:focus-visible .cta-social-icon {
  background: var(--color-gold);
  transform: translateY(-2px);
}

.cta-social-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.cta-lead {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  line-height: 1.3;
}

.cta-lead-sub {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.1rem, 1.8vw, 1.4rem);
  margin-top: 0.25rem;
}

.footer-quote {
  max-width: 34rem;
  margin: 0 auto;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--text-on-dark-muted);
}

.footer-bottom {
  border-top: 1px solid rgba(246, 241, 232, 0.12);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--text-on-dark-muted);
}

.footer-bottom__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom__brand p {
  margin: 0;
}

.footer-bottom__logo {
  height: 20px;
  width: auto;
  display: block;
}

@media (max-width: 720px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* =========================================================
   Mobile-first spacing tweaks
   ========================================================= */
@media (max-width: 600px) {
  .navbar {
    padding: 0.8rem 1.25rem;
  }

  .about-preview {
    text-align: center;
  }
}
