/* ============================================================
   COLORS — Ruta Ecoturística Gastronómica del Pacífico
   Palette rooted in the brand mark (#0D393C mangrove teal),
   warmed with Pacific-kitchen accents: achiote (crustacean
   coral) and plátano (golden ochre), over sand & cream.
   ============================================================ */

:root {
  /* --- Mangrove teal (primary brand) --------------------- */
  --teal-50:  #EAF2F1;
  --teal-100: #CFE2E1;
  --teal-200: #A6C9C8;
  --teal-300: #6FA3A3;
  --teal-400: #3E7B7C;
  --teal-500: #1F5E60;
  --teal-600: #154B4D;
  --teal-700: #0D393C;   /* THE brand color — logo ink      */
  --teal-800: #0A2D2F;
  --teal-900: #061E20;

  /* --- Achiote (warm coral / cooked crustacean) ---------- */
  --achiote-50:  #FBEDE7;
  --achiote-100: #F6D8C9;
  --achiote-300: #E89B7E;
  --achiote-500: #CB5A35;
  --achiote-600: #B24A28;
  --achiote-700: #8F3A1F;

  /* --- Plátano (golden ochre / coconut / borojó) --------- */
  --platano-50:  #FBF1DD;
  --platano-100: #F6E3BC;
  --platano-300: #E8C879;
  --platano-500: #D9A441;
  --platano-600: #BC8830;
  --platano-700: #936825;

  /* --- Warm neutrals: sand, cream, bone ------------------ */
  --cream-50:  #FAF7F1;   /* page background                 */
  --cream-100: #F4EFE6;   /* sand surface                    */
  --cream-200: #ECE4D6;
  --cream-300: #DFD4C0;
  --cream-400: #CDBFA6;

  /* --- Warm ink & grays ---------------------------------- */
  --ink-900: #14201E;     /* primary text (warm near-black)  */
  --ink-700: #2E3A37;
  --gray-600: #46524E;
  --gray-500: #5E6A66;    /* muted text                      */
  --gray-400: #8A938F;    /* subtle text / placeholders      */
  --gray-300: #B7BDB8;
  --border:   #E3DCCE;    /* hairline on cream               */
  --border-strong: #D2C8B4;

  /* --- Semantic status ----------------------------------- */
  --success-500: #2F7A52;
  --success-50:  #E6F1EA;
  --warning-500: #D9A441;
  --warning-50:  #FBF1DD;
  --danger-500:  #B23A2A;
  --danger-50:   #F7E5E1;

  /* ============================================================
     SEMANTIC ALIASES — reference these in components
     ============================================================ */

  /* Surfaces */
  --color-bg:             var(--cream-50);
  --color-surface:        #FFFFFF;
  --color-surface-sand:   var(--cream-100);
  --color-surface-sunken: var(--cream-200);
  --color-surface-dark:   var(--teal-700);
  --color-surface-darker: var(--teal-900);

  /* Text */
  --color-text:        var(--ink-900);
  --color-text-muted:  var(--gray-500);
  --color-text-subtle: var(--gray-400);
  --color-text-on-dark:       var(--cream-50);
  --color-text-on-dark-muted: var(--teal-200);

  /* Brand / interactive */
  --color-primary:        var(--teal-700);
  --color-primary-hover:  var(--teal-800);
  --color-primary-active: var(--teal-900);
  --color-on-primary:     var(--cream-50);

  --color-accent:         var(--achiote-500);
  --color-accent-hover:   var(--achiote-600);
  --color-on-accent:      #FFFFFF;

  --color-gold:           var(--platano-500);
  --color-gold-hover:     var(--platano-600);

  /* Lines & focus */
  --color-border:        var(--border);
  --color-border-strong: var(--border-strong);
  --color-ring:          var(--achiote-500);
  --color-link:          var(--teal-600);
}


/* ============================================================
   TYPOGRAPHY — Ruta Ecoturística Gastronómica
   Display: Anton (condensed heavy, mirrors the wordmark)
   Condensed: Oswald (eyebrows, section heads, labels)
   Script: Kaushan Script (decorative accents only)
   Body/UI: Hanken Grotesk
   ============================================================ */

:root {
  /* --- Families ------------------------------------------ */
  --font-display:   'Anton', 'Oswald', sans-serif;
  --font-condensed: 'Oswald', 'Anton', sans-serif;
  --font-script:    'Kaushan Script', cursive;
  --font-body:      'Hanken Grotesk', system-ui, sans-serif;

  /* --- Weights ------------------------------------------- */
  --fw-regular:  400; /* @kind font */
  --fw-medium:   500; /* @kind font */
  --fw-semibold: 600; /* @kind font */
  --fw-bold:     700; /* @kind font */
  --fw-extra:    800; /* @kind font */

  /* --- Fluid display scale (hero / wordmark feel) -------- */
  --text-display-2xl: clamp(3.5rem, 8vw, 7rem);     /* 56→112 */
  --text-display-xl:  clamp(2.75rem, 6vw, 5rem);    /* 44→80  */
  --text-display-lg:  clamp(2.25rem, 4.5vw, 3.5rem);/* 36→56  */

  /* --- Headings ------------------------------------------ */
  --text-h1: 2.5rem;    /* 40 */
  --text-h2: 2rem;      /* 32 */
  --text-h3: 1.5rem;    /* 24 */
  --text-h4: 1.25rem;   /* 20 */

  /* --- Body & utility ------------------------------------ */
  --text-lg:   1.125rem; /* 18 */
  --text-base: 1rem;     /* 16 */
  --text-sm:   0.875rem; /* 14 */
  --text-xs:   0.75rem;  /* 12 */
  --text-eyebrow: 0.8125rem; /* 13 — uppercase Oswald label */

  /* --- Line heights -------------------------------------- */
  --lh-tight:    1.04;  /* @kind font */
  --lh-snug:     1.18;  /* @kind font */
  --lh-normal:   1.5;   /* @kind font */
  --lh-relaxed:  1.65;  /* @kind font */

  /* --- Letter spacing ------------------------------------ */
  --ls-display:  -0.01em;  /* @kind font */
  --ls-tight:    -0.005em; /* @kind font */
  --ls-normal:   0;        /* @kind font */
  --ls-wide:     0.04em;   /* @kind font */
  --ls-eyebrow:  0.18em;   /* @kind font */
}


/* ============================================================
   SPACING · RADIUS · SHADOW · LAYOUT
   4px base grid. Soft, organic radii; low warm shadows.
   ============================================================ */

:root {
  /* --- Spacing scale (4px base) -------------------------- */
  --space-0:   0;
  --space-1:   0.25rem;  /* 4  */
  --space-2:   0.5rem;   /* 8  */
  --space-3:   0.75rem;  /* 12 */
  --space-4:   1rem;     /* 16 */
  --space-5:   1.5rem;   /* 24 */
  --space-6:   2rem;     /* 32 */
  --space-7:   2.5rem;   /* 40 */
  --space-8:   3rem;     /* 48 */
  --space-9:   4rem;     /* 64 */
  --space-10:  5rem;     /* 80 */
  --space-12:  7.5rem;   /* 120 */

  /* --- Radius -------------------------------------------- */
  --radius-xs:   4px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   18px;
  --radius-xl:   28px;
  --radius-pill: 999px;
  --radius-card: var(--radius-lg);

  /* --- Borders ------------------------------------------- */
  --border-width: 1px;          /* @kind other */
  --border-width-strong: 1.5px; /* @kind other */

  /* --- Shadows (warm, low, diffuse) ---------------------- */
  --shadow-xs:  0 1px 2px rgba(20, 32, 30, 0.06);
  --shadow-sm:  0 1px 3px rgba(20, 32, 30, 0.08), 0 1px 2px rgba(20, 32, 30, 0.05);
  --shadow-md:  0 4px 14px rgba(20, 32, 30, 0.08), 0 2px 4px rgba(20, 32, 30, 0.05);
  --shadow-lg:  0 14px 38px rgba(20, 32, 30, 0.12), 0 4px 10px rgba(20, 32, 30, 0.06);
  --shadow-teal: 0 12px 30px rgba(13, 57, 60, 0.28);

  /* --- Layout -------------------------------------------- */
  --container:      1200px;
  --container-narrow: 820px;
  --container-wide:  1360px;
  --gutter: clamp(1.25rem, 5vw, 4rem); /* @kind spacing */

  /* --- Motion -------------------------------------------- */
  --ease-out:   cubic-bezier(0.22, 1, 0.36, 1); /* @kind other */
  --ease-soft:  cubic-bezier(0.4, 0, 0.2, 1);   /* @kind other */
  --dur-fast:   140ms; /* @kind other */
  --dur-base:   240ms; /* @kind other */
  --dur-slow:   420ms; /* @kind other */

  /* --- Z-index ------------------------------------------- */
  --z-base: 1;        /* @kind other */
  --z-sticky: 100;    /* @kind other */
  --z-overlay: 1000;  /* @kind other */
  --z-toast: 1100;    /* @kind other */
}


/* ============================================================
   BASE — light global defaults & a few brand helpers.
   Intentionally minimal; components style themselves via tokens.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  color: var(--color-text);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Brand helper classes ------------------------------------- */

.eyebrow {
  font-family: var(--font-condensed);
  font-weight: var(--fw-semibold);
  font-size: var(--text-eyebrow);
  text-transform: uppercase;
  letter-spacing: var(--ls-eyebrow);
  color: var(--color-accent);
}

.script-accent {
  font-family: var(--font-script);
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.1;
}

.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  text-transform: uppercase;
}

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

/* Focus ring (keyboard) ------------------------------------ */
:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 2px solid var(--color-ring);
  outline-offset: 2px;
  border-radius: var(--radius-xs);
}


/* ============================================================
   Ruta Ecoturística Gastronómica — Sitio web (UI kit)
   Self-contained styles. Tokens come from ../../styles.css.
   ============================================================ */

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--color-bg); color: var(--color-text); font-family: var(--font-body); }
img { max-width: 100%; display: block; }
.site { min-height: 100vh; display: flex; flex-direction: column; }

/* ---- shared layout ---- */
a.nav__logo img {
    height: 66px;
}
.wrap { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.wrap--narrow { max-width: var(--container-narrow); }
.section { padding-block: clamp(3.5rem, 7vw, 7rem); }
.eyebrow { font-family: var(--font-condensed); font-weight: 600; font-size: 13px;
  text-transform: uppercase; letter-spacing: .18em; color: var(--color-accent); margin: 0; }
.eyebrow--on-dark { color: var(--platano-300); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.65; color: var(--color-text-muted); max-width: 62ch; }
.script { font-family: var(--font-script); color: var(--color-accent); line-height: 1; }
.display { font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.01em;
  line-height: 1; color: var(--color-primary); margin: 0; font-weight: 400; }

/* ---- buttons ---- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: .06em;
  border: 1.5px solid transparent; border-radius: var(--radius-pill); cursor: pointer; text-decoration: none;
  white-space: nowrap; font-size: 14px; padding: .72em 1.5em;
  transition: background var(--dur-fast) var(--ease-soft), color var(--dur-fast) var(--ease-soft),
              box-shadow var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft),
              border-color var(--dur-fast) var(--ease-soft); }
.btn:active { transform: translateY(1px) scale(.99); }
.btn--lg { font-size: 16px; padding: .9em 1.9em; }
.btn--sm { font-size: 12px; padding: .55em 1.1em; }
.btn--primary { background: var(--color-primary); color: var(--color-on-primary); box-shadow: var(--shadow-sm); }
.btn--primary:hover { background: var(--color-primary-hover); box-shadow: var(--shadow-md); }
.btn--accent { background: var(--color-accent); color: var(--color-on-accent); box-shadow: var(--shadow-sm); }
.btn--accent:hover { background: var(--color-accent-hover); box-shadow: var(--shadow-md); }
.btn--outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn--outline:hover { background: var(--color-primary); color: var(--color-on-primary); }
.btn--ghost-dark { background: transparent; color: var(--cream-50); border-color: rgba(244,239,230,.5); }
.btn--ghost-dark:hover { background: rgba(244,239,230,.12); border-color: var(--cream-50); }
.btn .ic { width: 1.05em; height: 1.05em; }

/* ---- badge / tag ---- */
.badge { display: inline-flex; align-items: center; gap: .4em; font-family: var(--font-condensed);
  font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: .08em;
  padding: .28em .7em; border-radius: var(--radius-sm); }
.badge--teal { background: var(--teal-50); color: var(--teal-700); }
.badge--gold { background: var(--platano-50); color: var(--platano-700); }
.badge--accent { background: var(--achiote-50); color: var(--achiote-700); }
.badge .dot { width: .5em; height: .5em; border-radius: 999px; background: currentColor; }
.tag { display: inline-flex; align-items: center; font-family: var(--font-body); font-weight: 500;
  font-size: 14px; color: var(--teal-700); background: var(--teal-50); padding: .4em .9em;
  border-radius: var(--radius-pill); }

/* ---- nav ---- */
.nav { position: sticky; top: 0; z-index: var(--z-sticky); background: color-mix(in srgb, var(--cream-50) 88%, transparent);
  backdrop-filter: saturate(1.1) blur(8px); border-bottom: 1px solid var(--color-border); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  height: 92px; }
.nav__logo { display: inline-flex; align-items: center; cursor: pointer; border: none; background: none; padding: 0; }
.nav__logo img { height: 66px; }
.nav__links { display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2.2rem); }
.nav__link { font-family: var(--font-condensed); font-weight: 600; font-size: 14px; text-transform: uppercase;
  letter-spacing: .08em; color: var(--color-text); background: none; border: none; cursor: pointer;
  padding: .3em 0; position: relative; transition: color var(--dur-fast) var(--ease-soft); }
.nav__link:hover { color: var(--color-primary); }
.nav__link--active { color: var(--color-primary); }
.nav__link--active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -4px; height: 2px;
  background: var(--color-accent); border-radius: 2px; }
.nav__cta { margin-left: .4rem; }
.nav__burger { display: none; }

/* ---- hero ---- */
.hero { background: var(--teal-700); color: var(--cream-50); position: relative; overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center; padding-block: clamp(3rem, 7vw, 6rem); }
.hero__mark { height: 56px; opacity: .9; margin-bottom: 1.6rem; }
.hero__title { margin: .2rem 0 0; }
.hero__title .script { font-size: clamp(2.4rem, 6vw, 4rem); display: block; transform: rotate(-3deg);
  margin-left: -.1em; margin-bottom: -.25em; }
.hero__title .display { color: var(--cream-50); font-size: clamp(3rem, 8.5vw, 6.4rem); }
.hero__sub { margin: 1.6rem 0 0; color: var(--teal-100); font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  line-height: 1.6; max-width: 46ch; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.2rem; }
.hero__media { position: relative; }
.hero__deco { position: absolute; right: -8%; top: -30%; width: 60%; opacity: .06; pointer-events: none; }

/* ---- photo placeholder ---- */
.ph { position: relative; display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; text-align: center; color: var(--gray-500); background:
    repeating-linear-gradient(45deg, var(--cream-200) 0 16px, var(--cream-100) 16px 32px);
  border-radius: var(--radius-lg); border: 1px solid var(--border-strong); padding: 18px;
  font-family: var(--font-condensed); font-weight: 600; font-size: 13px; text-transform: uppercase;
  letter-spacing: .08em; min-height: 220px; }
.ph--onTeal { background: repeating-linear-gradient(45deg, rgba(255,255,255,.06) 0 16px, rgba(255,255,255,.02) 16px 32px);
  border-color: rgba(244,239,230,.28); color: var(--teal-100); }
.ph .ph__ic { width: 30px; height: 30px; opacity: .7; }
.ph .ph__hint { font-family: var(--font-body); font-weight: 400; font-size: 11.5px; text-transform: none;
  letter-spacing: 0; opacity: .8; max-width: 30ch; }
.hero__media .ph { aspect-ratio: 4/5; min-height: 360px; }

/* ---- foto real ---- */
.ph--img { padding: 0; border: none; background: none; overflow: hidden; min-height: 0; }
.ph--img img { width: 100%; height: 100% !important; object-fit: cover; display: block; }
.exp__media .ph--img { height: 100%; }

/* ---- intro pillars ---- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 3vw, 2.4rem); margin-top: 3rem; }
.pillar__k { font-family: var(--font-condensed); font-weight: 600; font-size: 18px; text-transform: uppercase;
  letter-spacing: .04em; color: var(--color-primary); margin: .7rem 0 .3rem; display: flex; align-items: center; gap: .5rem; }
.pillar__k .ic { width: 20px; height: 20px; color: var(--color-accent); }
.pillar p { margin: 0; color: var(--color-text-muted); line-height: 1.6; font-size: 15px; }
.pillar { border-top: 2px solid var(--color-border-strong); padding-top: .9rem; }

/* ---- experience cards ---- */
.exp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: 2.6rem; }
.exp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.exp { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-card);
  box-shadow: var(--shadow-sm); overflow: hidden; display: flex; flex-direction: column; cursor: pointer;
  transition: box-shadow var(--dur-base) var(--ease-soft), transform var(--dur-base) var(--ease-soft); }
.exp:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.exp__media { position: relative; aspect-ratio: 4/3; }
.exp__media .ph { border-radius: 0; border: none; min-height: 0; height: 100%; }
.exp__badge { position: absolute; top: 12px; left: 12px; }
.exp__body { padding: var(--space-5); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.exp__cat { font-family: var(--font-condensed); font-weight: 600; font-size: 12px; text-transform: uppercase;
  letter-spacing: .14em; color: var(--color-accent); }
.exp__title { font-family: var(--font-condensed); font-weight: 600; font-size: 21px; line-height: 1.15;
  color: var(--color-text); margin: 0; }
.exp__desc { font-size: 14.5px; line-height: 1.55; color: var(--color-text-muted); margin: 0; }
.exp__meta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: auto; padding-top: .7rem;
  font-size: 13px; color: var(--color-text-muted); align-items: center; }
.exp__meta .m { display: inline-flex; align-items: center; gap: .35em; }
.exp__meta .ic { width: 15px; height: 15px; color: var(--color-primary); }

/* ---- bands ---- */
.band-teal { background: var(--teal-700); color: var(--cream-50); }
.band-sand { background: var(--color-surface-sand); }

/* ---- quote band (full-bleed photo) ---- */
.quote-band { position: relative; isolation: isolate; overflow: hidden; color: var(--cream-50);
  padding-block: clamp(5rem, 12vw, 9rem); }
.quote-band__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
.quote-band__veil { position: absolute; inset: 0; z-index: -1; background:
  linear-gradient(180deg, rgba(6,30,32,.58) 0%, rgba(6,30,32,.74) 100%),
  radial-gradient(125% 95% at 50% 42%, rgba(6,30,32,.12) 0%, rgba(6,30,32,.66) 100%); }
.quote { text-align: center; max-width: 30ch; margin-inline: auto; display: flex; flex-direction: column;
  align-items: center; }
.quote .script { color: var(--platano-300); font-size: clamp(1.9rem, 4.2vw, 3rem); display: block;
  transform: rotate(-3deg); margin-bottom: .15em; }
.quote .display { color: var(--cream-50); font-size: clamp(2.1rem, 5.2vw, 3.6rem); line-height: 1.08;
  text-shadow: 0 2px 28px rgba(0,0,0,.35); }
.quote__by { margin-top: 1.6rem; color: var(--teal-100); font-family: var(--font-condensed); font-weight: 500;
  text-transform: uppercase; letter-spacing: .12em; font-size: 13px; }

/* ---- section head (title + action) ---- */
.sec-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem;
  flex-wrap: wrap; }

/* ---- saltaderos (feature plans) ---- */
.salt-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 5vw, 4rem); }
.salt { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-xl);
  overflow: hidden; box-shadow: var(--shadow-md); }
.salt__media { position: relative; aspect-ratio: 16/6; }
.salt__media .ph--img { height: 100%; }
.salt__n { position: absolute; left: 16px; bottom: 16px; background: var(--teal-900); color: var(--cream-50);
  font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: 13px; padding: .42em .9em; border-radius: var(--radius-pill); box-shadow: var(--shadow-md); }
.salt__inner { padding: clamp(1.6rem, 3.5vw, 2.8rem); }
.salt__head { display: flex; justify-content: space-between; align-items: flex-start; gap: 1.5rem; flex-wrap: wrap; }
.salt__title { font-family: var(--font-condensed); font-weight: 600; font-size: clamp(1.5rem, 2.6vw, 2rem);
  line-height: 1.12; color: var(--color-text); margin: .7rem 0 0; }
.salt__sub { font-family: var(--font-script); color: var(--color-accent); font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  margin: 1.25rem 0 0; line-height: 1.3; }
.salt__dur { display: inline-flex; align-items: center; gap: .45em; font-family: var(--font-condensed);
  font-weight: 600; text-transform: uppercase; letter-spacing: .06em; font-size: 14px; color: var(--color-primary);
  white-space: nowrap; }
.salt__dur .ic { width: 17px; height: 17px; }
.salt__intro { color: var(--color-text-muted); line-height: 1.6; font-size: 16px; max-width: 72ch; margin: 1.2rem 0 0; }
.salt__days { display: grid; grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
  gap: clamp(1.2rem, 2.5vw, 2rem); margin-top: 1.9rem; }
.salt__day { border-top: 2px solid var(--color-border-strong); padding-top: .9rem; }
.salt__day-k { font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  font-size: 14px; color: var(--color-primary); margin-bottom: .75rem; }
.salt__day ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .6rem; }
.salt__day li { position: relative; padding-left: 1.15rem; font-size: 14px; line-height: 1.5; color: var(--color-text-muted); }
.salt__day li::before { content: ""; position: absolute; left: 0; top: .5em; width: 6px; height: 6px;
  border-radius: 999px; background: var(--color-accent); }
.salt__cta { margin-top: 2rem; }

/* ---- saltaderos teaser (home) ---- */
.salt-mini-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.2rem, 2.5vw, 1.8rem); margin-top: 2.4rem; }
.salt-mini { text-align: left; font-family: inherit; background: var(--color-surface); border: 1px solid var(--color-border);
  border-radius: var(--radius-card); overflow: hidden; box-shadow: var(--shadow-sm); cursor: pointer; padding: 0;
  display: flex; flex-direction: column; transition: box-shadow var(--dur-base) var(--ease-soft), transform var(--dur-base) var(--ease-soft); }
.salt-mini:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.salt-mini__media { position: relative; aspect-ratio: 16/10; }
.salt-mini__media .ph--img { height: 100%; }
.salt-mini__body { padding: var(--space-5); display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.salt-mini__badge { align-self: flex-start; }
.salt-mini__body h3 { font-family: var(--font-condensed); font-weight: 600; font-size: 18px; line-height: 1.18;
  color: var(--color-text); margin: .2rem 0 0; }
.salt-mini__dur { display: inline-flex; align-items: center; gap: .4em; font-size: 13px; color: var(--color-text-muted);
  margin-top: auto; padding-top: .5rem; }
.salt-mini__dur .ic { width: 14px; height: 14px; color: var(--color-primary); }

.cta-band { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.6rem;
  background: var(--cream-100); border: 1px solid var(--color-border); border-radius: var(--radius-xl);
  padding: clamp(1.8rem, 4vw, 3rem); }

/* ---- footer ---- */
.footer { background: var(--teal-900); color: var(--teal-100); margin-top: auto; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; padding-block: 3.5rem; }
.footer__logo { height: 76px !important; margin-bottom: 1rem; }
.footer__tag { color: var(--teal-200); line-height: 1.6; font-size: 14.5px; max-width: 32ch; }
.footer__h { font-family: var(--font-condensed); font-weight: 600; text-transform: uppercase; letter-spacing: .12em;
  font-size: 13px; color: var(--cream-50); margin: 0 0 1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .65rem; }
.footer__links button, .footer__links a { background: none; border: none; padding: 0; cursor: pointer;
  color: var(--teal-100); font-family: var(--font-body); font-size: 14.5px; text-align: left; text-decoration: none;
  transition: color var(--dur-fast) var(--ease-soft); }
.footer__links button:hover, .footer__links a:hover { color: var(--cream-50); }
.footer__contact { display: flex; align-items: flex-start; gap: .6rem; font-size: 14.5px; margin-bottom: .8rem; }
.footer__contact .ic { width: 17px; height: 17px; margin-top: 2px; color: var(--platano-300); flex: 0 0 auto; }
.footer__bottom { border-top: 1px solid rgba(244,239,230,.14); padding-block: 1.4rem; display: flex;
  flex-wrap: wrap; justify-content: space-between; gap: 1rem; font-size: 12.5px; color: var(--teal-200); }

/* ---- page header ---- */
.page-head { background: var(--cream-100); border-bottom: 1px solid var(--color-border); }
.page-head__inner { padding-block: clamp(2.6rem, 5vw, 4rem); display: flex; flex-direction: column; gap: .6rem; }
.page-head .display { font-size: clamp(2.4rem, 5.5vw, 4rem); }
.page-head .display .script { color: var(--color-accent); font-size: .6em; display: inline-block; transform: rotate(-3deg); margin-right: .15em; }

/* ---- reserva form ---- */
.reserva { display: grid; grid-template-columns: 1.4fr .9fr; gap: clamp(1.5rem, 3.5vw, 3rem); align-items: start; }
.form-card { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: clamp(1.5rem, 3vw, 2.4rem); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem 1.3rem; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-condensed); font-weight: 600; font-size: 13px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--color-text); }
.field .req { color: var(--color-accent); }
.field input, .field select, .field textarea { font-family: var(--font-body); font-size: 15px; color: var(--color-text);
  background: var(--color-surface); border: 1px solid var(--color-border-strong); border-radius: var(--radius-md);
  padding: .7em .9em; width: 100%; transition: border-color var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft); }
.field textarea { resize: vertical; min-height: 96px; }
.field select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%235E6A66' stroke-width='3'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .9em center; padding-right: 2.4em; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--color-primary);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--color-primary) 18%, transparent); }
.aside-card { background: var(--teal-700); color: var(--cream-50); border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.2rem); position: sticky; top: 112px; }
.aside-card h3 { font-family: var(--font-condensed); font-weight: 600; font-size: 22px; margin: 0 0 1rem; line-height: 1.1; }
.aside-card .row { display: flex; align-items: flex-start; gap: .7rem; margin-bottom: 1rem; font-size: 14.5px; color: var(--teal-100); line-height: 1.5; }
.aside-card .row .ic { width: 18px; height: 18px; color: var(--platano-300); flex: 0 0 auto; margin-top: 2px; }
.success { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 1rem;
  padding: clamp(2rem, 5vw, 3.5rem); }
.success__ring { width: 64px; height: 64px; border-radius: 999px; background: var(--success-50);
  display: flex; align-items: center; justify-content: center; color: var(--success-500); }
.success__ring .ic { width: 30px; height: 30px; }

/* ---- map placeholder ---- */
.map-ph { margin-top: 2.6rem; }
.map-ph .ph { min-height: 300px; aspect-ratio: 16/6; }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .hero__grid, .reserva { grid-template-columns: 1fr; }
  .hero__media .ph { aspect-ratio: 16/10; min-height: 240px; }
  .exp-grid, .exp-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .salt-mini-grid { grid-template-columns: 1fr; }
  .salt__media { aspect-ratio: 16/9; }
  .pillars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav__links { display: none; }
}
@media (max-width: 560px) {
  .exp-grid, .exp-grid--2 { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-band { flex-direction: column; align-items: flex-start; }
}




/* ============================================================
   WordPress / Elementor adjustments — Ruta Ecoturística
   ============================================================ */
a.exp, a.salt-mini { text-decoration: none; color: inherit; }
.nav__link, .nav__logo { text-decoration: none; }
a.btn { text-decoration: none; }
.exp:focus-visible, .salt-mini:focus-visible { outline: 2px solid var(--color-ring); outline-offset: 2px; }
/* neutralize Elementor wrappers so our layout controls spacing */
.elementor-widget-html .elementor-widget-container { line-height: normal; }
.elementor-element .nav, .elementor-element .footer { width: 100%; }
img { max-width: 100%; height: auto; }
/* mobile nav dropdown */
@media (max-width: 900px) {
  .nav__inner { position: relative; }
  .nav.nav--open .nav__links { display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0; background: var(--cream-50);
    border-bottom: 1px solid var(--color-border); padding: 1.2rem var(--gutter) 1.6rem; gap: 1.1rem;
    box-shadow: var(--shadow-md); z-index: var(--z-sticky); }
  .nav.nav--open .nav__cta { margin-left: 0; }
}
