/* ============================================================
   ALMA NUTRICIÓN — Lic. Sofía Martínez
   Editorial wellness stylesheet, simplified/basic layout.
   No framework, no build step.
   ============================================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body { min-height: 100vh; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; width: 100%; }
img, picture, svg { display: block; max-width: 100%; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; background: none; border: none; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ---------- Design tokens ---------- */
:root {
  --ivory: #F5F1E9;
  --sage: #A9B29E;
  --olive: #4B5545;
  --terracotta: #B87563;
  --beige: #D9CBBE;
  --brown: #292723;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, 'Iowan Old Style', 'Times New Roman', serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --container: 1280px;
  --pad-inline: clamp(1.25rem, 5vw, 4rem);
  --space-section: clamp(3rem, 4vw + 1.5rem, 6.5rem);
  --space-section-sm: clamp(2.5rem, 3vw + 1rem, 4.5rem);

  --radius: 18px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --dur: .6s;
}

body {
  background: var(--ivory);
  color: var(--brown);
  font-family: var(--font-sans);
}

::selection { background: var(--terracotta); color: var(--ivory); }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--brown);
  color: var(--ivory);
  padding: .8em 1.4em;
  z-index: 999;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Type ---------- */
h1, h2, h3, h4, .serif { font-family: var(--font-serif); font-weight: 500; line-height: 1.08; letter-spacing: -.01em; }
p { line-height: 1.65; }

.label {
  display: inline-flex;
  align-items: center;
  gap: .7em;
  font-family: var(--font-sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.label::before {
  content: '';
  width: 24px;
  height: 1px;
  background: currentColor;
  display: block;
}
.label--light { color: var(--beige); }
.label--olive { color: var(--olive); }
.label--center { justify-content: center; }
.label--center::before { display: none; }

.display-xl {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.8rem, 3.6vw + 1.3rem, 5rem);
  line-height: 1.02;
  letter-spacing: -.01em;
}
.display-lg {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.2rem, 2.4vw + 1.2rem, 3.4rem);
  line-height: 1.06;
}
.display-md {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 1.4vw + 1.2rem, 2.5rem);
  line-height: 1.12;
}

.lede {
  font-size: clamp(1.02rem, .3vw + .95rem, 1.15rem);
  color: var(--brown);
  opacity: .8;
  max-width: 46ch;
}

.btn {
  --btn-bg: var(--brown);
  --btn-fg: var(--ivory);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: 1em 2em;
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-bg);
  border-radius: 999px;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform .3s var(--ease);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn svg { width: 14px; height: 14px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }

.btn--olive { --btn-bg: var(--olive); --btn-fg: var(--ivory); }
.btn--light { --btn-bg: var(--ivory); --btn-fg: var(--brown); border-color: var(--ivory); }
.btn--outline-light { --btn-bg: transparent; --btn-fg: var(--ivory); border-color: rgba(245,241,233,.55); }
.btn--outline-light:hover { --btn-bg: var(--ivory); --btn-fg: var(--brown); border-color: var(--ivory); }
.btn--outline-dark { --btn-bg: transparent; --btn-fg: var(--brown); border-color: rgba(41,39,35,.35); }
.btn--outline-dark:hover { --btn-bg: var(--brown); --btn-fg: var(--ivory); border-color: var(--brown); }
.btn--block { width: 100%; justify-content: center; }
.btn--sm { padding: .8em 1.5em; font-size: .7rem; }

.thin-line { height: 1px; background: currentColor; opacity: .18; width: 100%; }

/* ---------- Reveal system (defensive: visible by default) ---------- */
.reveal {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-hidden { opacity: 0; transform: translateY(24px); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.is-hidden { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  padding-block: 1.3rem;
  transition: background .5s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.site-header.is-scrolled {
  background: rgba(245, 241, 233, .94);
  backdrop-filter: blur(10px);
  padding-block: .8rem;
  border-color: rgba(41,39,35,.08);
}
.site-header.menu-open { background: var(--ivory); }

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: var(--brown);
  z-index: 2;
  position: relative;
}
.logo strong {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: .02em;
}
.logo span {
  font-family: var(--font-sans);
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .3em;
  margin-top: .35em;
  opacity: .75;
}

.site-nav { display: none; }
.site-nav ul { display: flex; gap: clamp(1rem, 1.6vw, 2rem); }
.site-nav a {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--brown);
  padding-block: .3rem;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform .4s var(--ease);
}
.site-nav a:hover::after, .site-nav a.is-active::after { transform: scaleX(1); transform-origin: left center; }

.header-actions { display: flex; align-items: center; gap: 1rem; z-index: 2; }
.header-actions .btn { display: none; }

.menu-toggle {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 2;
}
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after {
  content: '';
  display: block;
  width: 22px; height: 1px;
  background: var(--brown);
  transition: transform .35s var(--ease), opacity .35s var(--ease), background .3s var(--ease);
}
.menu-toggle span::before { position: absolute; transform: translateY(-7px); }
.menu-toggle span::after { position: absolute; transform: translateY(7px); }
.menu-toggle[aria-expanded="true"] span { background: transparent !important; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(0) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--ivory);
  z-index: 90;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem var(--pad-inline) 3rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s linear .5s;
}
.mobile-menu.is-open {
  opacity: 1; visibility: visible; transform: translateY(0);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility 0s;
}
.mobile-menu ul { display: flex; flex-direction: column; gap: .3rem; }
.mobile-menu li { overflow: hidden; }
.mobile-menu a {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 500;
  color: var(--brown);
  padding-block: .18em;
  transform: translateY(110%);
  transition: transform .6s var(--ease);
}
.mobile-menu.is-open a { transform: translateY(0); }
.mobile-menu__foot { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.4rem; }
.mobile-menu__socials { display: flex; gap: 1.5rem; }
.mobile-menu__socials a { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }

body.no-scroll { overflow: hidden; }

@media (min-width: 960px) {
  .site-nav { display: block; }
  .header-actions .btn { display: inline-flex; }
  .menu-toggle { display: none; }
}

/* ============================================================
   HERO (simple, two-column)
   ============================================================ */
.hero {
  padding-block: clamp(7.5rem, 14vh, 10rem) var(--space-section);
  background: var(--ivory);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.6rem;
  align-items: center;
}
.hero__copy, .hero__figure { min-width: 0; }
.hero__copy .label { margin-bottom: 1.2rem; }
.hero__title { margin-bottom: 1.2rem; }
.hero__title em {
  font-style: italic;
  color: var(--terracotta);
}
.hero__text { margin-bottom: 1.8rem; }
.hero__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.4rem; }
.hero__trust {
  font-size: .82rem;
  opacity: .7;
}
.hero__trust strong { color: var(--olive); font-weight: 600; }

.hero__figure {
  position: relative;
}
.hero__frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--beige);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }

.hero__badge {
  position: absolute;
  left: -1rem; bottom: -1rem;
  width: 108px; height: 108px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: .85rem;
  line-height: 1.15;
  padding: 1rem;
  box-shadow: 0 10px 26px rgba(41,39,35,.22);
}

.hero__checklist {
  position: absolute;
  right: -1rem; top: 1.6rem;
  background: var(--white);
  border-radius: 14px;
  padding: 1.1rem 1.3rem;
  box-shadow: 0 16px 40px rgba(41,39,35,.14);
  display: none;
  flex-direction: column;
  gap: .55rem;
  max-width: 210px;
}
.hero__checklist li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  font-weight: 500;
}
.hero__checklist li svg { width: 15px; height: 15px; color: var(--terracotta); flex-shrink: 0; }

@media (min-width: 640px) {
  .hero__checklist { display: flex; }
}
@media (min-width: 900px) {
  .hero__grid { grid-template-columns: 1fr .95fr; gap: 4rem; }
  .hero__frame { aspect-ratio: 3/4; }
}

/* ============================================================
   SECTION helpers
   ============================================================ */
.section { padding-block: var(--space-section); position: relative; }
.section--tight { padding-block: var(--space-section-sm); }
.section--ivory { background: var(--ivory); color: var(--brown); }
.section--beige { background: var(--beige); color: var(--brown); }
.section--sage { background: var(--sage); color: var(--brown); }
.section--olive { background: var(--olive); color: var(--ivory); }
.section--terracotta { background: var(--terracotta); color: var(--ivory); }
.section--brown { background: var(--brown); color: var(--ivory); }
.section-head { max-width: 40rem; margin-bottom: clamp(2.2rem, 3.5vw, 3.2rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-top: .6rem; }

/* ============================================================
   FEATURE ROW (4 icons)
   ============================================================ */
.feature-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}
.feature-row__item {
  min-width: 0;
  padding: 1.8rem 1.6rem;
  background: var(--white);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: .9rem;
}
.feature-row__icon {
  width: 42px; height: 42px;
  color: var(--olive);
}
.feature-row__item h3 {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .03em;
}
.feature-row__item p { font-size: .88rem; opacity: .72; }

@media (min-width: 760px) {
  .feature-row { grid-template-columns: repeat(4, 1fr); }
}

/* ============================================================
   QUOTE BAND (manifesto, simplified)
   ============================================================ */
.quote-band { text-align: center; }
.quote-band__inner { max-width: 46rem; margin-inline: auto; }
.quote-band p.display-lg { margin-bottom: 1rem; }
.quote-band p.lede { margin-inline: auto; opacity: .85; color: var(--brown); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
.service-card {
  min-width: 0;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card__figure { aspect-ratio: 4/3; overflow: hidden; position: relative; }
.service-card__figure img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.service-card:hover .service-card__figure img { transform: scale(1.06); }
.service-card__num {
  position: absolute; top: .9rem; left: .9rem;
  background: rgba(245,241,233,.92);
  color: var(--olive);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: .85rem;
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.service-card__body { padding: 1.4rem 1.5rem 1.6rem; display: flex; flex-direction: column; gap: .5rem; flex-grow: 1; }
.service-card__body h3 { font-size: 1.35rem; }
.service-card__body p { font-size: .9rem; opacity: .74; flex-grow: 1; }
.service-card--featured { grid-column: span 1; }

@media (min-width: 700px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .service-card--featured { grid-column: span 2; }
  .service-card--featured .service-card__figure { aspect-ratio: 21/9; }
}
@media (min-width: 1040px) {
  .service-cards { grid-template-columns: repeat(3, 1fr); }
  .service-card--featured { grid-column: span 3; }
}

/* ============================================================
   MÉTODO
   ============================================================ */
.method__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.method__step {
  min-width: 0;
  padding-block: 1.8rem;
  border-top: 1px solid rgba(41,39,35,.16);
}
.method__step:last-child { border-bottom: 1px solid rgba(41,39,35,.16); }
.method__step-num {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 2.4vw + 1.2rem, 3.4rem);
  color: var(--terracotta);
  line-height: 1;
}
.method__step h3 {
  margin-top: .3rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-family: var(--font-sans);
  font-weight: 700;
}
.method__step p { margin-top: .6rem; max-width: 34ch; opacity: .75; font-size: .92rem; }

@media (min-width: 860px) {
  .method__grid { grid-template-columns: repeat(4, 1fr); }
  .method__step { padding: 0 1.5rem 0 0; border-top: none; border-bottom: none; border-left: 1px solid rgba(41,39,35,.16); padding-left: 1.5rem; }
  .method__step:last-child { border-bottom: none; }
  .method__step:first-child { border-left: none; padding-left: 0; }
}

/* ============================================================
   FEATURE (destacada full-bleed)
   ============================================================ */
.feature {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--ivory);
}
.feature__media { position: absolute; inset: -6%; z-index: -2; }
.feature__media img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.feature__scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(41,39,35,.32), rgba(41,39,35,.6)); }
.feature__content { max-width: 22ch; padding-inline: var(--pad-inline); }
.feature__content .display-lg { color: var(--ivory); }
.feature__content .btn { margin-top: 2rem; }

/* ============================================================
   ABOUT + STATS (combined)
   ============================================================ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
  align-items: center;
}
.about__figure, .about__body { min-width: 0; }
.about__figure {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--beige);
  max-width: 380px;
}
.about__figure img { width: 100%; height: 100%; object-fit: cover; }
.about__figure::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(41,39,35,.62) 0%, rgba(41,39,35,0) 42%);
  pointer-events: none;
}
.about__figure figcaption {
  position: absolute; left: 1.5rem; bottom: 1.5rem; z-index: 1;
  color: var(--ivory);
}
.about__figure figcaption strong { display: block; font-family: var(--font-serif); font-size: 1.25rem; }
.about__figure figcaption span { font-size: .64rem; letter-spacing: .16em; text-transform: uppercase; opacity: .75; }

.about__body h2 { margin-bottom: 1rem; }
.about__body p.lede { margin-bottom: 1.4rem; opacity: 1; color: var(--brown); }
.about__creds {
  display: inline-flex;
  flex-direction: column;
  gap: .15rem;
  padding: 1rem 1.3rem;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 1.6rem;
}
.about__creds strong { font-family: var(--font-serif); font-size: 1.1rem; }
.about__creds span { font-size: .76rem; letter-spacing: .03em; opacity: .68; }

.about__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem;
}
.about__stat {
  min-width: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  gap: .8rem;
}
.about__stat > div { min-width: 0; }
.about__stat-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
  color: var(--terracotta);
}
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: .1em;
}
.about__stat-label { font-size: .68rem; letter-spacing: .03em; opacity: .65; margin-top: .15rem; max-width: 14ch; }

@media (min-width: 900px) {
  .about { grid-template-columns: .8fr 1.2fr; gap: 3.5rem; }
  .about__lower { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; align-items: start; }
}

/* ============================================================
   TESTIMONIAL CARROUSEL
   ============================================================ */
.testimonial-carousel { max-width: 46rem; margin-inline: auto; text-align: center; position: relative; }
.testimonial-carousel__track { position: relative; min-height: 15.5rem; }
.testimonial-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .5s var(--ease), transform .5s var(--ease);
  pointer-events: none;
}
.testimonial-slide.is-active { opacity: 1; transform: translateY(0); pointer-events: auto; position: relative; }
.testimonial-slide__photo {
  width: 64px; height: 64px;
  border-radius: 50%;
  object-fit: cover;
  margin-inline: auto;
  margin-bottom: 1rem;
  border: 2px solid rgba(245,241,233,.7);
}
.testimonial-slide__mark { font-family: var(--font-serif); font-size: 3.4rem; line-height: 1; opacity: .5; }
.testimonial-slide blockquote {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 1.6vw + 1rem, 2.1rem);
  line-height: 1.28;
}
.testimonial-slide cite {
  display: block;
  margin-top: 1.3rem;
  font-style: normal;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  opacity: .85;
}
.testimonial-carousel__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  margin-top: 2rem;
}
.testimonial-carousel__arrow {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid currentColor;
  display: flex; align-items: center; justify-content: center;
  opacity: .8;
  transition: opacity .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}
.testimonial-carousel__arrow:hover { opacity: 1; background: var(--ivory); color: var(--terracotta); }
.testimonial-carousel__arrow svg { width: 16px; height: 16px; }
.testimonial-carousel__dots { display: flex; gap: .5rem; }
.testimonial-carousel__dots button {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: .35;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.testimonial-carousel__dots button.is-active { opacity: 1; transform: scale(1.3); }

/* ============================================================
   PRICING
   ============================================================ */
.pricing__grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; }
.plan {
  min-width: 0;
  border-radius: var(--radius);
  background: var(--white);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: relative;
}
.plan__name { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--olive); }
.plan__price { font-family: var(--font-serif); font-size: clamp(2rem, 1.8vw + 1rem, 2.6rem); }
.plan__price small { font-family: var(--font-sans); font-size: .85rem; opacity: .6; }
.plan__desc { opacity: .75; font-size: .92rem; flex-grow: 1; }
.plan--featured { background: var(--olive); color: var(--ivory); }
.plan--featured .plan__name { color: var(--beige); }
.plan__tag {
  position: absolute; top: 1.1rem; right: 1.1rem;
  background: var(--terracotta); color: var(--ivory);
  font-size: .6rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .4em .9em;
  border-radius: 999px;
}

@media (min-width: 860px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
  .plan--featured { transform: translateY(-.6rem); }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq__grid { max-width: 50rem; }
.faq__item { border-top: 1px solid rgba(41,39,35,.16); }
.faq__item:last-child { border-bottom: 1px solid rgba(41,39,35,.16); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding-block: 1.4rem;
  text-align: left;
}
.faq__q-num { font-family: var(--font-serif); font-style: italic; color: var(--terracotta); font-size: .95rem; flex-shrink: 0; width: 2ch; }
.faq__q-text { font-family: var(--font-sans); font-weight: 600; font-size: .98rem; flex-grow: 1; }
.faq__q-icon { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.faq__q-icon::before, .faq__q-icon::after { content: ''; position: absolute; background: var(--brown); top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform .4s var(--ease), opacity .4s var(--ease); }
.faq__q-icon::before { width: 14px; height: 1px; }
.faq__q-icon::after { width: 1px; height: 14px; }
.faq__item.is-open .faq__q-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }

.faq__a-wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .5s var(--ease); }
.faq__item.is-open .faq__a-wrap { grid-template-rows: 1fr; }
.faq__a-inner { overflow: hidden; }
.faq__a { padding-bottom: 1.5rem; max-width: 46ch; opacity: .78; padding-left: calc(2ch + 1.2rem); font-size: .94rem; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { text-align: center; }
.cta-final__content { max-width: 34rem; margin-inline: auto; }
.cta-final .display-lg { color: var(--ivory); }
.cta-final__content p { margin-top: 1rem; font-family: var(--font-serif); font-style: italic; font-size: 1.15rem; opacity: .9; }
.cta-final__content .btn { margin-top: 1.8rem; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 2.6rem; }
.contact__info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact__info h2 { margin-bottom: .5rem; }
.contact__channels { display: grid; gap: .8rem; margin-top: .3rem; }
.contact__channel {
  min-width: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.2rem;
  background: var(--white);
  border-radius: 12px;
}
.contact__channel span { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; opacity: .58; }
.contact__channel strong { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 500; }
.contact__channel a { display: flex; flex-direction: column; gap: .2rem; width: 100%; }
.map-placeholder {
  aspect-ratio: 16/9;
  background: var(--beige);
  border-radius: var(--radius);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.map-placeholder svg { width: 32px; height: 32px; color: var(--olive); }
.map-placeholder__label {
  position: absolute; left: 1.3rem; bottom: 1.3rem;
  font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; color: var(--olive);
}

.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.form-field { min-width: 0; display: flex; flex-direction: column; gap: .5rem; }
.form-field label { font-size: .7rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; opacity: .68; }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid rgba(41,39,35,.18);
  border-radius: 10px;
  background: var(--white);
  padding: .8rem 1rem;
  font-size: .96rem;
  font-family: var(--font-sans);
  transition: border-color .3s var(--ease);
}
.form-field textarea { resize: vertical; min-height: 90px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--olive);
}
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23292723' d='M4 6l4 4 4-4' fill-rule='evenodd'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; background-size: 14px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1.3rem; }
.form-note { font-size: .8rem; opacity: .6; margin-top: -.3rem; }
.form-status { font-size: .86rem; padding-top: .3rem; min-height: 1.4em; }
.form-status[data-state="ok"] { color: var(--olive); }
.form-status[data-state="err"] { color: var(--terracotta); }

@media (min-width: 700px) {
  .form-row--2 { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 960px) {
  .contact__grid { grid-template-columns: .85fr 1.15fr; gap: 4rem; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--brown); color: var(--ivory); padding-block: clamp(3.5rem, 6vw, 5.5rem) 2rem; }
.footer__top { display: grid; grid-template-columns: 1fr; gap: 2.4rem; padding-bottom: clamp(2.2rem, 4vw, 3rem); border-bottom: 1px solid rgba(245,241,233,.15); }
.footer__top > * { min-width: 0; }
.footer__brand .logo { color: var(--ivory); }
.footer__brand p { margin-top: 1rem; font-size: .85rem; opacity: .6; max-width: 30ch; }
.footer__col h4 { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; opacity: .55; margin-bottom: 1rem; }
.footer__col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer__col a { font-size: .9rem; opacity: .85; transition: opacity .3s var(--ease); }
.footer__col a:hover { opacity: 1; }
.footer__newsletter p { font-size: .85rem; opacity: .65; margin-bottom: 1rem; max-width: 26ch; }
.footer__newsletter-form { display: flex; gap: .5rem; }
.footer__newsletter-form input {
  flex-grow: 1;
  min-width: 0;
  padding: .8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(245,241,233,.25);
  background: rgba(245,241,233,.06);
  color: var(--ivory);
  font-size: .85rem;
}
.footer__newsletter-form input::placeholder { color: rgba(245,241,233,.5); }
.footer__newsletter-form input:focus { outline: none; border-color: var(--sage); }
.footer__newsletter-form button {
  flex-shrink: 0;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--sage);
  color: var(--brown);
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease);
}
.footer__newsletter-form button:hover { background: var(--ivory); }
.footer__newsletter-form button svg { width: 16px; height: 16px; }
.footer__newsletter-status { font-size: .78rem; margin-top: .7rem; opacity: .8; min-height: 1.2em; }

.footer__bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; font-size: .74rem; opacity: .55; }

@media (min-width: 760px) {
  .footer__top { grid-template-columns: 1.3fr .8fr .8fr 1fr; }
}

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed;
  right: clamp(1.1rem, 3vw, 1.8rem);
  bottom: clamp(1.1rem, 3vw, 1.8rem);
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--olive);
  color: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 80;
  box-shadow: 0 8px 24px rgba(41,39,35,.28);
  transition: transform .35s var(--ease), background .35s var(--ease);
}
.whatsapp-float:hover { transform: scale(1.07); background: var(--terracotta); }
.whatsapp-float svg { width: 26px; height: 26px; }

/* ---------- Utility ---------- */
@supports (text-wrap: balance) {
  h1, h2, h3, .display-xl, .display-lg, .display-md { text-wrap: balance; }
}
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
