/* ==========================================================================
   Qué Hacer — editorial design system
   Sharp geometry, hairline rules, full-bleed imagery, near-monochrome.
   No rounded cards, no drop-shadow modals, no SaaS blue.
   ========================================================================== */

:root {
  --ink: #16140f;        /* warm near-black */
  --ink-2: #3b372f;
  --muted: #6c665b;
  --muted-2: #a39c8f;
  --line: #e3ded3;       /* warm hairline */
  --line-2: #efebe1;
  --paper: #ffffff;
  --paper-2: #f6f3ec;    /* warm soft */
  --accent: #b4431d;     /* clay — used sparingly */

  --r: 2px;              /* tight radius for inputs/labels */
  --r-soft: 16px;        /* floating-island radius, matches nav */
  --shadow-soft: 0 6px 20px rgba(20, 18, 15, 0.06);
  --shadow-float: 0 12px 38px rgba(20, 18, 15, 0.10);

  --maxw: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Helvetica, Arial, sans-serif;

  --ease: cubic-bezier(0.22, 0.61, 0.18, 1);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

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

.kicker {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Header ---------------------------------------------------- */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.8rem var(--gutter) 0;
  pointer-events: none;
}

.site-header__inner {
  pointer-events: auto;
  width: fit-content;
  max-width: calc(100% - 2 * var(--gutter));
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 52px;
  padding: 0 0.85rem 0 1.1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(170%) blur(18px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 34px rgba(20, 18, 15, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  font-size: 0.95rem;
  color: var(--ink);
}
.brand__mark { width: 25px; height: 25px; object-fit: contain; }

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

.nav a {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s var(--ease);
}
.nav a:hover { color: var(--ink); }

.nav__cta {
  color: var(--ink) !important;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
}

/* Ciudades hover dropdown */
.navdrop { position: relative; display: inline-flex; align-items: center; }
.navdrop__menu {
  position: absolute;
  top: calc(100% + 15px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  width: min(760px, 92vw);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.3rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  padding: 1.3rem 1.5rem;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.16s var(--ease), transform 0.16s var(--ease);
  z-index: 120;
}
.navdrop::after { content: ""; position: absolute; top: 100%; left: -12px; right: -12px; height: 20px; }
.navdrop:hover .navdrop__menu,
.navdrop:focus-within .navdrop__menu {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.navdrop__col { display: flex; flex-direction: column; }
.navdrop__h {
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted-2); margin: 0 0 0.5rem;
}
.navdrop__col a {
  padding: 0.3rem 0; font-size: 0.88rem; font-weight: 500; letter-spacing: -0.01em;
  text-transform: none; color: var(--ink-2);
  transition: color 0.12s var(--ease);
}
.navdrop__col a:hover { color: var(--accent); }

/* ==========================================================================
   HOME
   ========================================================================== */

.hero { padding: 6.5rem 0 clamp(1.5rem, 3vw, 2.5rem); }
.hero__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(460px, 72vh, 640px);
  border-radius: var(--r-soft);
  overflow: hidden;
  box-shadow: var(--shadow-float);
  color: #fff;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero__card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.28) 0%, rgba(10,9,7,0.1) 34%, rgba(10,9,7,0.85) 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: clamp(1.75rem, 4vw, 3.25rem); }

.hero .kicker { color: rgba(255,255,255,0.9); display: block; margin-bottom: 0.9rem; }
.hero h1 {
  font-size: clamp(2.4rem, 7vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 680;
  margin: 0 0 1rem;
  max-width: 18ch;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
}
.hero h1 em { font-style: italic; font-weight: 600; }
.hero__sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.92);
  max-width: 50ch;
  margin: 0 0 1.75rem;
  line-height: 1.45;
}

.search {
  display: flex;
  align-items: stretch;
  max-width: 560px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255,255,255,0.94);
  backdrop-filter: saturate(160%) blur(10px);
  box-shadow: 0 10px 28px rgba(10,9,7,0.2);
}
.search__icon { align-self: center; margin-left: 1rem; color: var(--muted-2); flex: none; }
.search input {
  flex: 1; border: 0; outline: 0; font: inherit; font-size: 1.02rem;
  color: var(--ink); background: transparent; padding: 0.95rem 0.9rem;
}
.search input::placeholder { color: var(--muted-2); }
.search button {
  flex: none; border: 0; cursor: pointer; font: inherit;
  font-weight: 600; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--paper); background: var(--ink); padding: 0 1.6rem;
  transition: background 0.15s var(--ease);
}
.search button:hover { background: var(--accent); }

.hero__hint { margin-top: 1.1rem; font-size: 0.9rem; color: rgba(255,255,255,0.85); }
.hero__hint a { color: #fff; border-bottom: 1px solid rgba(255,255,255,0.45); }
.hero__hint a:hover { border-color: #fff; }

/* Section scaffolding */
.section { padding: clamp(2.5rem, 4.5vw, 4rem) 0; }
.section--soft { background: var(--paper-2); border-bottom: 1px solid var(--line); }

.section__head { margin-bottom: 1.75rem; max-width: 60ch; }
.section__head .kicker { display: block; margin-bottom: 0.9rem; }
.section__title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  letter-spacing: -0.03em;
  font-weight: 660;
  margin: 0 0 0.5rem;
}
.section__lead { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* City panels — each city is a large card; its 5 articles list vertically */
.cities { display: flex; flex-direction: column; gap: clamp(1.25rem, 3vw, 2rem); }
.city {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  scroll-margin-top: 84px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  overflow: hidden;
}
.city[hidden] { display: none; }

.city__hero { position: relative; display: block; height: 100%; min-height: 260px; color: #fff; overflow: hidden; }
.city__hero img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s var(--ease);
}
.city__hero:hover img { transform: scale(1.04); }
.city__hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.05) 0%, rgba(10,9,7,0) 32%, rgba(10,9,7,0.82) 100%);
}
.city__hero-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: clamp(1.2rem, 3vw, 1.9rem); }
.city__hero-label .kicker { color: rgba(255,255,255,0.9); display: block; margin-bottom: 0.35rem; }
.city__name { display: block; font-size: clamp(1.7rem, 3.6vw, 2.6rem); font-weight: 680; letter-spacing: -0.035em; line-height: 1; }
.city__desc { display: block; margin-top: 0.6rem; color: rgba(255,255,255,0.9); font-size: 1rem; line-height: 1.4; max-width: 38ch; padding-right: 6.5rem; }

.city__view {
  position: absolute;
  right: clamp(1rem, 3vw, 1.6rem);
  bottom: clamp(1.2rem, 3vw, 1.7rem);
  z-index: 3;
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: saturate(170%) blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  padding: 0.45rem 0.8rem;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.city__hero:hover .city__view { background: #fff; }
.city__hero:hover .city__view svg { transform: translateX(2px); }
.city__view svg { transition: transform 0.15s var(--ease); }

.city__body { display: flex; flex-direction: column; justify-content: center; padding: clamp(0.5rem, 1.5vw, 1rem) clamp(1rem, 2.5vw, 1.75rem); }
.art-list { list-style: none; margin: 0; padding: 0; }
.art-list li { border-top: 1px solid var(--line); }
.art-list li:first-child { border-top: 0; }
.art-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0.5rem;
  border-radius: 10px;
  transition: background 0.15s var(--ease);
}
.art-row:hover { background: var(--paper-2); }
.art-row__media { flex: none; width: 104px; aspect-ratio: 4 / 3; border-radius: 9px; overflow: hidden; box-shadow: var(--shadow-soft); }
.art-row__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.art-row__text { flex: 1; min-width: 0; }
.art-row__n { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.art-row__title { display: block; margin-top: 0.18rem; font-size: 1.06rem; font-weight: 560; letter-spacing: -0.015em; color: var(--ink); line-height: 1.3; transition: color 0.15s var(--ease); }
.art-row:hover .art-row__title { color: var(--accent); }
.art-row__preview {
  margin-top: 0.25rem;
  font-size: 0.86rem;
  line-height: 1.4;
  color: var(--muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.art-row__arrow { flex: none; color: var(--muted-2); transition: transform 0.18s var(--ease), color 0.18s var(--ease); }
.art-row:hover .art-row__arrow { transform: translateX(3px); color: var(--accent); }
.city-grid__empty { text-align: center; color: var(--muted); padding: 2.5rem 0; }

@media (max-width: 760px) {
  .city { grid-template-columns: 1fr; }
  .city__hero { height: clamp(190px, 48vw, 260px); min-height: 0; }
}
@media (max-width: 560px) {
  .art-row__media { width: 78px; align-self: flex-start; }
  .art-row__title { font-size: 0.96rem; }
  .art-row__preview { -webkit-line-clamp: 2; font-size: 0.82rem; }
}

/* Mexico map with city pins */
.mxmap {
  position: relative;
  width: 100%;
  max-width: 1000px;
  margin: clamp(2rem, 4vw, 3.25rem) auto 0;
  aspect-ratio: 2027.928 / 1323.265;
}
.mxmap__img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) contrast(0.92) brightness(1.04);
  opacity: 0.5;
  user-select: none;
}
.mxmap__pin {
  position: absolute;
  transform: translate(-50%, -50%);
  z-index: 2;
}
.mxmap__dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  border: 1.5px solid var(--paper);
  box-shadow: 0 1px 4px rgba(20, 18, 15, 0.25);
  transition: transform 0.15s var(--ease);
}
.mxmap__pin:hover { z-index: 5; }
.mxmap__pin:hover .mxmap__dot { transform: scale(1.6); }
.mxmap__label {
  position: absolute;
  white-space: nowrap;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--ink-2);
  text-shadow: 0 0 3px #fff, 0 0 3px #fff, 0 0 2px #fff, 0 0 2px #fff;
  pointer-events: none;
}
.mxmap__label--r { left: 12px; top: 50%; transform: translateY(-50%); }
.mxmap__label--l { right: 12px; top: 50%; transform: translateY(-50%); }
.mxmap__label--t { bottom: 11px; left: 50%; transform: translateX(-50%); }
.mxmap__label--b { top: 11px; left: 50%; transform: translateX(-50%); }
.mxmap__pin:hover .mxmap__label { color: var(--accent); }
@media (max-width: 560px) { .mxmap { display: none; } }

/* Home hoy feature — floating panel with icon category rows */
.hoy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.75rem, 4vw, 3rem);
}
.hoy__copy .kicker { display: block; margin-bottom: 0.7rem; }
.hoy__title { font-size: clamp(1.7rem, 3.6vw, 2.5rem); letter-spacing: -0.03em; font-weight: 680; margin: 0 0 0.9rem; line-height: 1.05; }
.hoy__title em { font-style: italic; }
.hoy__text { color: var(--muted); font-size: 1.05rem; line-height: 1.55; margin: 0 0 1.6rem; max-width: 46ch; }

.hoy__cats {
  list-style: none; margin: 0; padding: 0;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  overflow: hidden;
}
.hoy-cat { display: flex; align-items: center; gap: 1rem; padding: 0.95rem 1.15rem; }
.hoy-cat + .hoy-cat { border-top: 1px solid var(--line); }
.hoy-cat__icon {
  flex: none; width: 40px; height: 40px; border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(180, 67, 29, 0.09); color: var(--accent);
}
.hoy-cat__text { min-width: 0; }
.hoy-cat__name { display: block; font-weight: 600; font-size: 1rem; letter-spacing: -0.01em; color: var(--ink); }
.hoy-cat__meta { display: block; font-size: 0.88rem; color: var(--muted); margin-top: 0.1rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--paper);
  background: var(--ink);
  padding: 0.95rem 1.6rem;
  border-radius: var(--r);
  transition: background 0.15s var(--ease);
}
.btn:hover { background: var(--accent); }
.btn--ghost { color: var(--ink); background: transparent; border: 1px solid var(--ink); }
.btn--ghost:hover { color: var(--paper); background: var(--ink); }

/* Props */
.props { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--line); }
.prop { padding: 2rem 1.5rem 2rem 0; border-bottom: 1px solid var(--line); }
.prop + .prop { padding-left: 1.5rem; }
.prop__num { font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.prop h3 { font-size: 1.15rem; letter-spacing: -0.02em; margin: 0.6rem 0 0.4rem; }
.prop p { color: var(--muted); margin: 0; font-size: 0.97rem; }

/* ==========================================================================
   CITY GUIDE — editorial
   ========================================================================== */

.cityhero { padding: calc(56px + 1.9rem) 0 0; }
.cityhero__card {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(360px, 54vh, 520px);
  border-radius: var(--r-soft);
  overflow: hidden;
  color: #fff;
  box-shadow: var(--shadow-float);
}
.cityhero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.cityhero__card::after {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(10,9,7,0.12) 0%, rgba(10,9,7,0) 38%, rgba(10,9,7,0.82) 100%);
}
.cityhero__inner { position: relative; z-index: 2; width: 100%; padding: clamp(1.5rem, 4vw, 2.75rem); }
.cityhero .kicker { color: rgba(255,255,255,0.85); display: block; margin-bottom: 0.7rem; }
.cityhero h1 {
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 0.9;
  letter-spacing: -0.045em;
  font-weight: 680;
  margin: 0;
}
.cityhero__tagline {
  margin: 0.9rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 440;
  line-height: 1.35;
  color: rgba(255,255,255,0.92);
  max-width: 36ch;
}

/* Intro lede — single column, plain */
.guide-lede { padding: clamp(2rem, 4vw, 3rem) 0; }
.guide-lede p {
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--ink-2);
  font-weight: 420;
  max-width: 62ch;
  margin: 0;
}

/* Theme block */
.theme { border-top: 1px solid var(--line); padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.theme-head { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.1fr); gap: clamp(1rem,4vw,3rem); align-items: end; margin-bottom: clamp(1.75rem,3vw,2.5rem); }
.theme-head .kicker { display: block; margin-bottom: 0.6rem; }
.theme-head__title {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  font-weight: 660;
  margin: 0;
  max-width: 16ch;
}
.theme-head__lede { color: var(--muted); font-size: 1.02rem; line-height: 1.5; margin: 0; }

/* Items grid */
.items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(1.5rem, 4vw, 3rem);
  row-gap: clamp(2rem, 4vw, 3rem);
}

.item { display: flex; flex-direction: column; }
.item__media {
  overflow: hidden;
  border-radius: var(--r-soft);
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
}
.item:hover .item__media { box-shadow: var(--shadow-float); transform: translateY(-3px); }
.item__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.7s var(--ease);
}
.item:hover .item__media img { transform: scale(1.04); }

.item__index { display: flex; align-items: baseline; gap: 0.8rem; margin-bottom: 0.45rem; }
.item__num { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; color: var(--accent); font-variant-numeric: tabular-nums; }
.item__tag { font-size: 0.68rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted-2); }
.item__title { font-size: clamp(1.3rem, 2.2vw, 1.7rem); line-height: 1.05; letter-spacing: -0.025em; font-weight: 620; margin: 0 0 0.5rem; }
.item__text { font-size: 0.98rem; line-height: 1.55; color: var(--ink-2); margin: 0; }
.item__tip { margin: 0.85rem 0 0; font-size: 0.88rem; color: var(--muted); }
.item__tip b {
  color: var(--accent); font-weight: 600; font-size: 0.68rem;
  letter-spacing: 0.14em; text-transform: uppercase; margin-right: 0.5rem;
}

/* Lead item per theme — wide horizontal feature, top aligned */
.item--feat {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}
.item--feat .item__media { margin-bottom: 0; }
.item--feat .item__media img { aspect-ratio: 16 / 10; }
.item--feat .item__title { font-size: clamp(1.7rem, 3.2vw, 2.4rem); }
.item--feat .item__text { font-size: 1.05rem; }
.item--feat .item__body { padding-top: 0.25rem; }

/* Food band — floating dark panel */
.foodband { padding-block: clamp(1.5rem, 3vw, 2.5rem); }
.foodband__card {
  background: var(--ink);
  color: #fff;
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  padding: clamp(2.25rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(1.25rem,4vw,3.5rem);
  align-items: start;
}
.foodband .kicker { color: #e8a07a; display: block; }
.foodband h2 { font-size: clamp(2rem, 5vw, 3.4rem); letter-spacing: -0.035em; font-weight: 660; margin: 0; line-height: 1; }
.foodband p { font-size: clamp(1.1rem, 2vw, 1.35rem); line-height: 1.6; color: rgba(255,255,255,0.82); margin: 0; }

/* Hoy CTA — floating light panel */
.hoycta { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vw, 4rem); }
.hoycta__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  padding: clamp(2rem, 4vw, 3.25rem);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.hoycta h2 { font-size: clamp(1.8rem, 4.5vw, 3rem); letter-spacing: -0.035em; font-weight: 660; margin: 0 0 0.6rem; max-width: 18ch; }
.hoycta h2 em { font-style: italic; }
.hoycta p { color: var(--muted); font-size: 1.05rem; max-width: 46ch; margin: 0; }

/* FAQ — floating panel of accordions */
.faq { padding-block: clamp(1.75rem, 3vw, 2.5rem); }
.faq__card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.faq__card .kicker { display: block; margin-bottom: 0.6rem; }
.faq__title {
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  font-weight: 660;
  margin: 0 0 0.5rem;
}
.faq__list { border-top: 1px solid var(--line); margin-top: 1.25rem; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  font-size: 1.06rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__icon { position: relative; flex: none; width: 14px; height: 14px; }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; background: var(--accent);
  left: 50%; top: 50%; transform: translate(-50%, -50%);
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after { width: 2px; height: 14px; transition: transform 0.2s var(--ease); }
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }
.faq__a { padding: 0 0 1.15rem; max-width: 64ch; }
.faq__a p { margin: 0 0 0.7rem; color: var(--ink-2); font-size: 1rem; line-height: 1.6; }
.faq__link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--accent);
}
.faq__link:hover { text-decoration: underline; }

/* Long-form article body — numbered list of things to do */
/* Article page: cohesive content width across all blocks */
.cityguide .container,
.related .container,
.hoycta .container { max-width: 1040px; }

.post__body {
  max-width: 740px;
  margin-inline: auto;
  padding-inline: 1.25rem;
  padding-block: clamp(2rem, 4vw, 3rem);
}
.post__lead {
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  line-height: 1.5;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 440;
  margin: 0.4rem 0 clamp(1.75rem, 3.5vw, 2.75rem);
}
.post-item { margin-top: clamp(2.5rem, 5vw, 3.75rem); scroll-margin-top: 90px; }
.post-item__title {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 660;
  margin: 0 0 1.1rem;
}
.post-item__n {
  flex: none;
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.post-item__media {
  margin: 0 0 1.4rem;
  border-radius: var(--r-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.post-item__media img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }
.post-item p {
  font-size: 1.13rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 1.1rem;
}
.post-item p:last-child { margin-bottom: 0; }
.post-item__src { font-size: 0.82rem; color: var(--muted-2); margin-top: 1rem; }
.post-item__src a { color: var(--muted); border-bottom: 1px solid var(--line); }
.post-item__src a:hover { color: var(--accent); border-color: var(--accent); }
.post-item__title a { color: inherit; transition: color 0.15s var(--ease); }
.post-item__title a:hover { color: var(--accent); }
.post-item__more { margin-top: 0.7rem; }
.post-item__more a {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent);
}
.post-item__more a:hover { text-decoration: underline; }

/* Fact box on individual place articles */
.factbox {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 1.9rem) clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.factbox .kicker { display: block; margin-bottom: 0.4rem; }
.factbox dl { margin: 0; }
.factbox__row { display: flex; gap: 1rem; padding: 0.7rem 0; border-top: 1px solid var(--line); }
.factbox__row:first-of-type { border-top: 0; }
.factbox dt { flex: none; width: 110px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--muted-2); font-weight: 600; padding-top: 0.15rem; }
.factbox dd { margin: 0; color: var(--ink-2); font-size: 0.98rem; line-height: 1.5; }
.factbox dd a { color: var(--accent); border-bottom: 1px solid var(--line); }
.factbox dd a:hover { border-color: var(--accent); }

/* Full place-article elements */
.post-h2 {
  font-size: clamp(1.35rem, 2.8vw, 1.9rem);
  letter-spacing: -0.025em;
  font-weight: 660;
  line-height: 1.1;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) 0 0.9rem;
}
.post-fig {
  margin: clamp(1.4rem, 3vw, 2rem) 0;
  border-radius: var(--r-soft);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.post-fig img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; display: block; }

.panel {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.25rem, 3vw, 1.9rem) clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}
.panel .kicker { display: block; margin-bottom: 0.7rem; }
.datos__list { list-style: none; margin: 0; padding: 0; }
.datos__list li {
  position: relative;
  padding: 0.6rem 0 0.6rem 1.4rem;
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 0.98rem;
  line-height: 1.5;
}
.datos__list li:first-child { border-top: 0; }
.datos__list li::before {
  content: "";
  position: absolute; left: 0; top: 0.95rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
}

.refs { margin-top: clamp(1.75rem, 3vw, 2.5rem); }
.refs .kicker { display: block; margin-bottom: 0.6rem; }
.refs__list { list-style: none; margin: 0; padding: 0; }
.refs__list li { padding: 0.55rem 0; border-top: 1px solid var(--line); font-size: 0.92rem; }
.refs__list li:first-child { border-top: 0; }
.refs__list a { color: var(--muted); }
.refs__list a:hover { color: var(--accent); }

/* Article header (companion pages) */
.arthead { padding: calc(56px + 2.4rem) 0 clamp(1.5rem, 3vw, 2.25rem); border-bottom: 1px solid var(--line); }
.arthead .kicker { display: block; margin-bottom: 0.7rem; }
.arthead__crumb { font-size: 0.85rem; font-weight: 500; color: var(--muted); margin: 0 0 1.2rem; }
.arthead__crumb a:hover { color: var(--accent); }
.arthead h1 { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.035em; font-weight: 680; line-height: 1.02; margin: 0 0 0.8rem; max-width: 20ch; }
.arthead__intro { font-size: clamp(1.1rem, 2.2vw, 1.35rem); line-height: 1.5; color: var(--ink-2); max-width: 60ch; margin: 0; }
.arthead__meta { font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-2); margin: 0 0 0.9rem; }

/* Related links — floating panel */
.related { padding-block: clamp(1.5rem, 3vw, 2.5rem) clamp(2.5rem, 5vw, 4rem); }
.related__card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-soft);
  box-shadow: var(--shadow-float);
  padding: clamp(1.5rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 3rem);
}
.related__card .kicker { display: block; margin-bottom: 0.5rem; }
.related__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.related__list li { border-bottom: 1px solid var(--line); }
.related__list a {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.95rem 0; font-size: 1.08rem; font-weight: 540; letter-spacing: -0.01em;
  transition: padding-left 0.18s var(--ease), color 0.18s var(--ease);
}
.related__list a:hover { padding-left: 0.5rem; color: var(--accent); }

/* ---------- Footer ---------------------------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
  color: var(--muted);
  font-size: 0.9rem;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 2.6fr;
  gap: 2.5rem 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}
.site-footer__brand { max-width: 32ch; }
.site-footer__brand .brand { margin-bottom: 0.8rem; }
.site-footer__brand p { margin: 0; line-height: 1.5; color: var(--muted); }
.fcols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.fcol h4 { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.12em; color: var(--accent); margin: 0 0 0.85rem; font-weight: 600; }
.fcol a { display: block; padding: 0.26rem 0; color: var(--muted); letter-spacing: -0.01em; transition: color 0.12s var(--ease); }
.fcol a:hover { color: var(--accent); }
.site-footer__base {
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  padding-top: 1.5rem; border-top: 1px solid var(--line); font-size: 0.78rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-2);
}
.site-footer__legal a { color: var(--muted-2); transition: color 0.12s var(--ease); }
.site-footer__legal a:hover { color: var(--accent); }

@media (max-width: 820px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .fcols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; }
}

/* ---------- Responsive ----------------------------------------------- */

@media (max-width: 820px) {
  .hoy, .foodband__card, .theme-head { grid-template-columns: 1fr; }
  .props { grid-template-columns: 1fr; }
  .prop, .prop + .prop { padding: 1.6rem 0; }
  .theme-head { gap: 0.6rem; align-items: start; }
}

@media (max-width: 680px) {
  .items { grid-template-columns: 1fr; row-gap: 2.25rem; }
  .item--feat { grid-template-columns: 1fr; gap: 1rem; }
  .item--feat .item__media { margin-bottom: 0; }
  .city-card { grid-template-columns: 116px 1fr; }
  .city-card__label { padding: 0.85rem 1rem; }
  .city-card__media img { min-height: 124px; }
  .city-card__desc { display: none; }
}

@media (max-width: 640px) {
  /* Touch: tap "Ciudades" to toggle a full dropdown of all cities. */
  .site-header__inner { gap: 1.1rem; }
  .nav__cta { display: none; }
  .navdrop__menu { display: none; }
  .navdrop.open .navdrop__menu {
    display: grid;
    position: fixed;
    top: 70px;
    left: var(--gutter);
    right: var(--gutter);
    width: auto;
    transform: none;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1rem;
    max-height: calc(100dvh - 88px);
    overflow-y: auto;
    opacity: 1; visibility: visible; pointer-events: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* ==========================================================================
   City modal
   ========================================================================== */
body.modal-open { overflow: hidden; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
}
.modal.open { display: flex; }
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 15, 0.5);
  backdrop-filter: saturate(120%) blur(5px);
  animation: modalFade 0.2s var(--ease);
}
.modal__panel {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: var(--r-soft);
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(10, 9, 7, 0.4);
  animation: modalRise 0.26s var(--ease);
}
@keyframes modalFade { from { opacity: 0; } }
@keyframes modalRise { from { opacity: 0; transform: translateY(14px); } }

.modal__close {
  position: absolute;
  top: 0.9rem; right: 0.9rem;
  z-index: 3;
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(170%) blur(12px);
  color: var(--ink);
  cursor: pointer;
  transition: background 0.15s var(--ease), transform 0.15s var(--ease);
}
.modal__close:hover { background: #fff; transform: scale(1.06); }

.modal__hero { position: relative; flex: none; aspect-ratio: 16 / 7; overflow: hidden; }
.modal__hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal__hero::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,7,0.05) 0%, rgba(10,9,7,0) 35%, rgba(10,9,7,0.82) 100%);
}
.modal__hero-label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 2; padding: 1.4rem 1.6rem; color: #fff; }
.modal__hero-label .modal__state { color: rgba(255,255,255,0.9); display: block; margin-bottom: 0.35rem; }
.modal__name { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.035em; font-weight: 680; margin: 0; }

.modal__body { padding: clamp(1.25rem, 3vw, 1.75rem) clamp(1.4rem, 3vw, 1.9rem) clamp(1.5rem, 3vw, 2rem); overflow-y: auto; }
.modal__desc { color: var(--ink-2); font-size: 1.05rem; line-height: 1.5; margin: 0 0 1.4rem; }
.modal__arts-kicker { display: block; margin-bottom: 0.4rem; }

.modal__arts { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.modal-art {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.8rem 0.4rem;
  border-bottom: 1px solid var(--line);
  border-radius: 10px;
  transition: background 0.15s var(--ease);
}
.modal-art:hover { background: var(--paper-2); }
.modal-art__media { flex: none; width: 92px; aspect-ratio: 4 / 3; border-radius: 9px; overflow: hidden; box-shadow: var(--shadow-soft); }
.modal-art__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-art__body { min-width: 0; }
.modal-art__n { font-size: 0.66rem; font-weight: 600; letter-spacing: 0.1em; color: var(--accent); }
.modal-art__title { display: block; font-size: 1.04rem; font-weight: 560; letter-spacing: -0.015em; color: var(--ink); margin-top: 0.18rem; line-height: 1.3; }

.modal__cta { margin-top: 1.5rem; }

@media (max-width: 560px) {
  .modal__panel { max-height: 94vh; }
  .modal-art__media { width: 72px; }
  .modal__hero { aspect-ratio: 16 / 9; }
}
