:root {
  --forest-950: #08271f;
  --forest-900: #0d352a;
  --forest-800: #154737;
  --forest-700: #1e5c45;
  --forest-600: #28745a;
  --green-500: #3c956d;
  --green-400: #72b791;
  --mint-200: #dcece3;
  --mint-100: #edf5f0;
  --cream-200: #ece6dc;
  --cream-100: #f5f1e8;
  --paper: #fffdf9;
  --ink: #1c2923;
  --muted: #68736d;
  --line: #ded9cf;
  --line-strong: #cec7bb;
  --terracotta: #d8613f;
  --terracotta-dark: #b9472a;
  --success: #267a51;
  --danger: #b94a45;
  --display: "Oswald", Arial, sans-serif;
  --ui: "Quicksand", Arial, sans-serif;
  --max: 1240px;
  --radius-sm: 12px;
  --radius: 18px;
  --radius-lg: 28px;
  --shadow-soft: 0 12px 34px rgba(18, 57, 43, .08);
  --shadow-float: 0 18px 44px rgba(18, 57, 43, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--cream-100); }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--cream-100);
  font-family: var(--ui);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
::selection { color: #fff; background: var(--forest-700); }
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
:focus-visible { outline: 3px solid rgba(216, 97, 63, .45); outline-offset: 3px; }

.container { width: min(var(--max), calc(100% - 32px)); margin-inline: auto; }
.section, .home-section { padding: 72px 0; }
.glass { background: var(--paper); border: 1px solid var(--line); }
.ambient, .grain { display: none !important; }
.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 500;
  padding: 10px 14px;
  color: #fff;
  background: var(--forest-900);
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
.eyebrow {
  display: inline-block;
  color: var(--forest-600);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
  text-transform: uppercase;
}
h1, h2, h3, h4 { text-wrap: balance; }
p { text-wrap: pretty; }

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .82rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}
.button svg { width: 18px; height: 18px; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--forest-700); border-color: var(--forest-700); }
.button--primary:hover { background: var(--forest-900); border-color: var(--forest-900); }
.button--secondary { color: var(--forest-800); background: transparent; border-color: var(--line-strong); }
.button--secondary:hover { background: var(--paper); border-color: var(--forest-500); }
.button--ghost { color: var(--forest-800); background: transparent; border-color: var(--line-strong); }
.button--ghost:hover { background: var(--mint-100); }
.button--light { color: var(--forest-900); background: var(--paper); border-color: var(--paper); }
.button--light:hover { background: var(--mint-100); }
.button--whatsapp { color: #fff; background: #1f9a5e; border-color: #1f9a5e; }
.button--danger { color: #fff; background: var(--danger); border-color: var(--danger); }

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-heading h2,
.home-section-head h2,
.v12-section-head h2 {
  margin: 7px 0 0;
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.02;
}
.section-link,
.v12-text-link,
.guide-card-link,
.source-primary-link,
.correction-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--forest-700);
  font-size: .82rem;
  font-weight: 700;
}
.section-link svg,
.v12-text-link svg,
.guide-card-link svg,
.source-primary-link svg,
.correction-link svg { width: 17px; height: 17px; }
.section-link:hover,
.v12-text-link:hover,
.guide-card-link:hover,
.source-primary-link:hover,
.correction-link:hover { color: var(--terracotta-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(245, 241, 232, .94);
  border-bottom: 1px solid rgba(28, 41, 35, .09);
  backdrop-filter: blur(16px);
}
.header-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand { width: 184px; flex: 0 0 auto; }
.brand-logo { width: 100%; height: auto; }
.nav { display: flex; margin-left: auto; align-items: center; gap: 6px; }
.nav a {
  position: relative;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 12px;
  color: #405048;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 700;
}
.nav a:hover { color: var(--forest-900); background: rgba(255,255,255,.7); }
.nav a[aria-current="page"] { color: var(--forest-900); background: var(--mint-200); }
.header-actions { display: flex; align-items: center; gap: 9px; }
.header-turno {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  color: var(--forest-800);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(255,255,255,.62);
  font-size: .72rem;
  font-weight: 700;
}
.header-turno i { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 4px rgba(216,97,63,.12); }
.header-cta {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  color: #fff;
  background: var(--forest-800);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 700;
}
.header-cta:hover { background: var(--forest-950); }
.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  color: var(--forest-900);
  background: transparent;
  cursor: pointer;
}
.menu-button svg { width: 26px; height: 26px; }
.mobile-menu { display: none; }
.mobile-menu-head,
.mobile-menu-links { display: none; }

/* Home hero */
.home-hero { padding: 64px 0 54px; }
.home-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(440px, 1.1fr);
  align-items: center;
  gap: 64px;
}
.home-hero-copy { max-width: 610px; }
.home-hero-copy h1 {
  max-width: 720px;
  margin: 14px 0 18px;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(3.5rem, 6.3vw, 5.7rem);
  font-weight: 600;
  letter-spacing: -.035em;
  line-height: .96;
}
.home-hero-copy h1 em { display: block; color: var(--terracotta); font-style: normal; }
.home-hero-copy > p { max-width: 560px; margin: 0 0 25px; color: var(--muted); font-size: 1rem; }
.home-search {
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 11px;
  min-height: 62px;
  padding: 7px 8px 7px 18px;
  background: var(--paper);
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.home-search > span { color: var(--forest-600); }
.home-search svg { width: 20px; height: 20px; }
.home-search input { min-width: 0; width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font-size: .9rem; font-weight: 600; }
.home-search input::placeholder { color: #89918d; }
.home-search button {
  min-height: 46px;
  padding: 0 20px;
  border: 0;
  border-radius: 13px;
  color: #fff;
  background: var(--forest-700);
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
}
.home-search button:hover { background: var(--forest-950); }
.home-quick-links { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 18px; }
.home-quick-links a { display: inline-flex; align-items: center; gap: 8px; color: var(--forest-700); font-size: .75rem; font-weight: 700; }
.home-quick-links a:hover { color: var(--terracotta-dark); }
.home-quick-links i { width: 8px; height: 8px; border-radius: 50%; background: var(--terracotta); }
.home-hero-media { position: relative; min-height: 540px; }
.home-hero-main-photo,
.home-hero-secondary-photo { margin: 0; overflow: hidden; background: var(--mint-200); }
.home-hero-main-photo {
  position: absolute;
  inset: 0 86px 44px 0;
  border-radius: 28px 28px 80px 28px;
  box-shadow: var(--shadow-float);
}
.home-hero-main-photo::after {
  content: "";
  position: absolute;
  inset: 50% 0 0;
  background: linear-gradient(180deg, transparent, rgba(8,39,31,.72));
}
.home-hero-main-photo img,
.home-hero-secondary-photo img { width: 100%; height: 100%; object-fit: cover; }
.home-hero-main-photo figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 2;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  color: #fff;
}
.home-hero-main-photo figcaption strong { font-family: var(--display); font-size: 1.7rem; font-weight: 600; }
.home-hero-main-photo figcaption span { max-width: 170px; text-align: right; font-size: .73rem; }
.home-hero-secondary-photo {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 190px;
  height: 230px;
  border: 8px solid var(--cream-100);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}
.home-hero-stat {
  position: absolute;
  top: 26px;
  right: 0;
  display: grid;
  width: 150px;
  min-height: 120px;
  align-content: center;
  padding: 16px;
  color: #fff;
  background: var(--forest-900);
  border-radius: 22px;
  box-shadow: var(--shadow-soft);
}
.home-hero-stat strong { font-family: var(--display); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.home-hero-stat span { margin-top: 7px; color: rgba(255,255,255,.76); font-size: .66rem; line-height: 1.35; }

/* Home categories */
.home-categories { padding-top: 30px; }
.home-category-grid { display: grid; grid-template-columns: repeat(7, minmax(0, 1fr)); gap: 12px; }
.home-category-card {
  display: grid;
  min-height: 150px;
  align-content: start;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.home-category-card:hover { transform: translateY(-4px); border-color: rgba(40,116,90,.35); box-shadow: var(--shadow-soft); }
.home-category-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 22px;
  color: var(--forest-700);
  background: var(--mint-100);
  border-radius: 13px;
}
.home-category-card svg { width: 21px; height: 21px; }
.home-category-card strong { color: var(--ink); font-family: var(--display); font-size: 1.08rem; font-weight: 600; line-height: 1.1; }
.home-category-card small { margin-top: 7px; color: var(--muted); font-size: .65rem; }

/* Turno */
.home-turno { padding: 0 0 28px; }
.turno-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 22px 24px;
  color: var(--ink);
  background: var(--mint-100);
  border: 1px solid rgba(40,116,90,.18);
  border-radius: 22px;
}
.turno-status { display: inline-flex; align-items: center; gap: 9px; color: var(--forest-700); font-family: var(--display); font-size: .73rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.turno-status i { width: 9px; height: 9px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 5px rgba(216,97,63,.12); }
.turno-main { display: flex; align-items: center; gap: 15px; }
.turno-icon { display: grid; width: 52px; height: 52px; flex: 0 0 auto; place-items: center; color: #fff; background: var(--forest-700); border-radius: 15px; }
.turno-icon svg { width: 25px; height: 25px; }
.turno-main h2 { margin: 0; font-family: var(--display); font-size: 1.65rem; font-weight: 600; line-height: 1.1; }
.turno-main p { display: flex; align-items: flex-start; gap: 6px; margin: 5px 0 0; color: var(--muted); font-size: .75rem; }
.turno-main p svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--forest-600); }
.turno-main small { display: block; margin-top: 4px; color: var(--forest-600); font-size: .64rem; }
.turno-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }

/* Home news */
.home-news { background: var(--paper); border-block: 1px solid var(--line); }
.home-news-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(310px, .75fr); gap: 22px; }
.home-news-lead { display: grid; grid-template-columns: 1.05fr .95fr; min-width: 0; overflow: hidden; background: var(--cream-100); border: 1px solid var(--line); border-radius: 22px; }
.home-news-media { min-height: 380px; overflow: hidden; background: var(--mint-200); }
.home-news-image { width: 100%; height: 100%; object-fit: cover; }
.home-news-fallback,
.home-news-mini-fallback { display: grid; width: 100%; height: 100%; place-items: center; color: var(--forest-700); background: var(--mint-200); }
.home-news-fallback svg { width: 64px; height: 64px; }
.home-news-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 32px; }
.home-news-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; color: var(--muted); font-size: .66rem; }
.home-news-meta span { color: var(--forest-700); font-weight: 700; text-transform: uppercase; }
.home-news-copy h3 { margin: 13px 0 12px; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 600; line-height: 1.05; }
.home-news-copy > p { margin: 0 0 20px; color: var(--muted); font-size: .86rem; }
.home-news-side { display: grid; align-content: start; gap: 11px; }
.home-news-mini { display: grid; grid-template-columns: 116px 1fr; min-height: 112px; overflow: hidden; background: var(--cream-100); border: 1px solid var(--line); border-radius: 16px; transition: border-color .18s ease, transform .18s ease; }
.home-news-mini:hover { transform: translateY(-2px); border-color: rgba(40,116,90,.35); }
.home-news-mini-media { min-height: 112px; overflow: hidden; background: var(--mint-200); }
.home-news-mini-image { width: 100%; height: 100%; object-fit: cover; }
.home-news-mini-fallback svg { width: 30px; height: 30px; }
.home-news-mini-copy { display: flex; min-width: 0; flex-direction: column; justify-content: center; padding: 13px 15px; }
.home-news-mini-copy small { color: var(--forest-600); font-size: .61rem; font-weight: 700; text-transform: uppercase; }
.home-news-mini-copy strong { display: -webkit-box; margin: 5px 0 7px; overflow: hidden; font-family: var(--display); font-size: 1rem; font-weight: 600; line-height: 1.16; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.home-news-mini-copy time { color: var(--muted); font-size: .58rem; }
.home-news-all { display: inline-flex; min-height: 48px; align-items: center; justify-content: space-between; gap: 8px; padding: 0 16px; color: var(--forest-800); background: var(--mint-100); border: 1px solid rgba(40,116,90,.18); border-radius: 14px; font-size: .75rem; font-weight: 700; }
.home-news-all svg { width: 18px; height: 18px; }

/* Home stays */
.home-stay-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.home-stay-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 19px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.home-stay-card:hover { transform: translateY(-4px); border-color: rgba(40,116,90,.35); box-shadow: var(--shadow-soft); }
.home-stay-media { display: block; height: 210px; overflow: hidden; background: var(--mint-200); }
.home-stay-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.home-stay-card:hover .home-stay-media img { transform: scale(1.025); }
.home-stay-copy { padding: 18px; }
.home-card-category { color: var(--forest-600); font-size: .63rem; font-weight: 700; text-transform: uppercase; }
.home-stay-copy h3 { margin: 7px 0 8px; font-family: var(--display); font-size: 1.35rem; font-weight: 600; line-height: 1.1; }
.home-stay-copy > p { display: flex; align-items: flex-start; gap: 6px; min-height: 36px; margin: 0; color: var(--muted); font-size: .68rem; }
.home-stay-copy > p svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--forest-600); }
.home-stay-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.home-stay-actions > a:first-child { color: var(--forest-700); font-size: .72rem; font-weight: 700; }
.home-stay-call { display: grid; width: 36px; height: 36px; place-items: center; color: var(--forest-700); background: var(--mint-100); border-radius: 50%; }
.home-stay-call svg { width: 17px; height: 17px; }
.home-place-art { position: relative; display: grid; width: 100%; height: 100%; place-items: center; overflow: hidden; color: #fff; background: var(--forest-700); }
.home-place-art--sage { background: #738f79; }
.home-place-art--river { background: #4f7f82; }
.home-place-art--olive { background: #788357; }
.home-place-art--mint { background: #68a47e; }
.home-place-art-icon { position: absolute; top: 16px; left: 16px; display: grid; width: 38px; height: 38px; place-items: center; border: 1px solid rgba(255,255,255,.3); border-radius: 12px; }
.home-place-art-icon svg { width: 20px; height: 20px; }
.home-place-art > strong { position: relative; z-index: 2; font-family: var(--display); font-size: 4rem; font-weight: 500; letter-spacing: .04em; }
.home-place-art > i { position: absolute; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; }
.home-place-art > i:nth-of-type(1) { width: 180px; height: 180px; right: -55px; bottom: -60px; }
.home-place-art > i:nth-of-type(2) { width: 90px; height: 90px; top: -35px; right: 18px; }
.home-place-art > i:nth-of-type(3) { width: 55px; height: 55px; bottom: 20px; left: -14px; }

/* Home discover */
.home-discover { padding: 82px 0; color: #fff; background: var(--forest-900); }
.home-discover-inner { display: grid; grid-template-columns: minmax(250px, .65fr) minmax(0, 1.35fr); align-items: center; gap: 44px; }
.home-discover .eyebrow { color: var(--green-400); }
.home-discover-copy h2 { max-width: 480px; margin: 12px 0 18px; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 4.4rem); font-weight: 600; line-height: .98; }
.home-discover-copy p { max-width: 430px; margin: 0 0 24px; color: rgba(255,255,255,.72); font-size: .9rem; }
.home-tour-grid { display: grid; grid-template-columns: 1.3fr 1fr; grid-template-rows: repeat(3, minmax(130px, 1fr)); gap: 12px; }
.home-tour-card { min-width: 0; overflow: hidden; border-radius: 18px; }
.home-tour-card--large { grid-row: 1 / span 3; }
.home-tour-card > a { position: relative; display: block; width: 100%; height: 100%; min-height: 140px; overflow: hidden; }
.home-tour-card--large > a { min-height: 438px; }
.home-tour-media { position: absolute; inset: 0; }
.home-tour-media::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(8,39,31,.86)); }
.home-tour-media img,
.home-tour-media .home-place-art { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.home-tour-card:hover .home-tour-media img { transform: scale(1.03); }
.home-tour-copy { position: absolute; right: 0; bottom: 0; left: 0; z-index: 2; display: grid; padding: 16px; color: #fff; }
.home-tour-card--large .home-tour-copy { padding: 24px; }
.home-tour-copy small { color: var(--green-400); font-size: .62rem; font-weight: 700; text-transform: uppercase; }
.home-tour-copy strong { margin-top: 4px; font-family: var(--display); font-size: 1.3rem; font-weight: 600; line-height: 1.05; }
.home-tour-card--large .home-tour-copy strong { font-size: 2.15rem; }
.home-tour-copy > span { margin-top: 6px; color: rgba(255,255,255,.72); font-size: .61rem; }

/* Home agenda + publish */
.home-agenda-card {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.home-agenda-date { display: grid; width: 82px; height: 82px; place-items: center; align-content: center; color: #fff; background: var(--terracotta); border-radius: 18px; }
.home-agenda-date strong { font-family: var(--display); font-size: 2.2rem; font-weight: 600; line-height: 1; }
.home-agenda-date span { margin-top: 3px; font-size: .64rem; font-weight: 700; letter-spacing: .08em; }
.home-agenda-copy h2 { margin: 7px 0 6px; font-family: var(--display); font-size: 1.8rem; font-weight: 600; line-height: 1.1; }
.home-agenda-copy p { margin: 0; color: var(--muted); font-size: .78rem; }
.home-publish { padding: 0 0 80px; }
.home-publish-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 36px;
  color: #fff;
  background: var(--terracotta);
  border-radius: 24px;
}
.home-publish-card .eyebrow { color: rgba(255,255,255,.76); }
.home-publish-card h2 { margin: 8px 0 5px; font-family: var(--display); font-size: 2.2rem; font-weight: 600; line-height: 1; }
.home-publish-card p { margin: 0; color: rgba(255,255,255,.82); font-size: .8rem; }
.home-publish-card .button--primary { color: var(--terracotta-dark); background: #fff; border-color: #fff; }

/* Page hero */
.page-hero,
.map-page-hero,
.history-hero,
.editorial-hero,
.news-hero {
  position: relative;
  padding: 66px 0 54px;
  overflow: hidden;
  background: var(--mint-100);
  border-bottom: 1px solid var(--line);
}
.page-hero::after,
.map-page-hero::after,
.history-hero::after,
.editorial-hero::after,
.news-hero::after {
  content: "";
  position: absolute;
  top: -90px;
  right: -80px;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(40,116,90,.16);
  border-radius: 50%;
}
.page-hero-grid,
.map-page-hero-grid,
.history-hero-grid,
.editorial-hero-grid,
.news-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 42px;
}
.page-hero h1,
.map-page-hero h1,
.history-hero h1,
.editorial-hero h1,
.news-hero h1 {
  max-width: 850px;
  margin: 10px 0 12px;
  color: var(--forest-950);
  font-family: var(--display);
  font-size: clamp(2.7rem, 6vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -.025em;
  line-height: .98;
}
.page-hero p,
.map-page-hero p,
.history-hero p,
.editorial-hero p,
.news-hero p { max-width: 720px; margin: 0; color: var(--muted); font-size: .92rem; }
.page-hero-symbol {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  color: var(--forest-700);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 22px;
}
.page-hero-symbol svg { width: 34px; height: 34px; }
.page-hero-visual { width: 210px; height: 150px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.page-hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.page-count { display: flex; align-items: baseline; gap: 8px; margin-top: 20px; }
.page-count strong { color: var(--terracotta); font-family: var(--display); font-size: 2rem; }
.page-count span { color: var(--muted); font-size: .7rem; }

/* Directory toolbar + cards */
.section-listing { padding-top: 38px; }
.directory-toolbar,
.category-search,
.map-filter {
  display: grid;
  grid-template-columns: minmax(240px, 1.45fr) minmax(190px, .65fr) minmax(170px, .55fr) auto;
  gap: 10px;
  padding: 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}
.category-search { grid-template-columns: 1fr auto; margin-bottom: 24px; }
.toolbar-search,
.directory-toolbar label,
.category-search > div,
.map-filter label {
  display: flex;
  min-height: 48px;
  align-items: center;
  gap: 9px;
  padding: 0 13px;
  color: var(--forest-700);
  background: var(--cream-100);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.toolbar-search svg,
.directory-toolbar label svg,
.category-search svg { width: 18px; height: 18px; }
.directory-toolbar input,
.directory-toolbar select,
.category-search input,
.map-filter select {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
  font-size: .8rem;
}
.map-filter label { display: grid; grid-template-columns: auto minmax(180px, 1fr); font-size: .72rem; font-weight: 700; }
.map-filter { grid-template-columns: minmax(280px, 440px) auto; width: fit-content; margin-bottom: 20px; }
.results-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 28px 0 18px;
}
.results-head > div { display: flex; align-items: baseline; gap: 8px; }
.results-head strong { font-family: var(--display); font-size: 2.4rem; font-weight: 600; }
.results-head span,
.results-head p { color: var(--muted); font-size: .76rem; }
.results-head p { margin: 0; }
.directory-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.place-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 19px; transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease; }
.place-card:hover { transform: translateY(-4px); border-color: rgba(40,116,90,.34); box-shadow: var(--shadow-soft); }
.place-card-media { position: relative; display: block; height: 230px; overflow: hidden; background: var(--mint-200); }
.place-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.place-card:hover .place-card-media img { transform: scale(1.025); }
.place-placeholder { object-fit: cover; }
.category-chip {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 11px;
  color: var(--forest-900);
  background: rgba(255,253,249,.94);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  font-size: .62rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
}
.place-card-body { padding: 18px; }
.place-card-body h3 { margin: 0 0 8px; font-family: var(--display); font-size: 1.45rem; font-weight: 600; line-height: 1.08; }
.place-address { display: flex; align-items: flex-start; gap: 7px; margin: 0; color: var(--muted); font-size: .7rem; }
.place-address svg { width: 15px; height: 15px; flex: 0 0 auto; margin-top: 2px; color: var(--forest-600); }
.place-card-summary { display: -webkit-box; min-height: 58px; margin: 13px 0 0; overflow: hidden; color: var(--muted); font-size: .76rem; line-height: 1.55; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.place-card-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 17px; padding-top: 15px; border-top: 1px solid var(--line); }
.card-primary { color: var(--forest-700); font-size: .75rem; font-weight: 700; }
.card-call { display: grid; width: 38px; height: 38px; place-items: center; color: var(--forest-700); background: var(--mint-100); border-radius: 50%; }
.card-call svg { width: 18px; height: 18px; }
.pagination { display: flex; flex-wrap: wrap; justify-content: center; gap: 7px; margin-top: 30px; }
.pagination a,
.pagination span { display: grid; min-width: 40px; height: 40px; place-items: center; color: var(--forest-800); background: var(--paper); border: 1px solid var(--line); border-radius: 11px; font-size: .75rem; }
.pagination a[aria-current="page"] { color: #fff; background: var(--forest-700); border-color: var(--forest-700); }
.empty-state { padding: 48px 24px; text-align: center; border-radius: 22px; }
.empty-state > span { display: grid; width: 58px; height: 58px; place-items: center; margin: 0 auto 15px; color: var(--forest-700); background: var(--mint-100); border-radius: 18px; }
.empty-state > span svg { width: 27px; height: 27px; }
.empty-state h2 { margin: 0 0 7px; font-family: var(--display); font-size: 2rem; font-weight: 600; }
.empty-state p { margin: 0 0 20px; color: var(--muted); }

/* Duty page */
.duty-page-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.duty-column { padding: 24px; border-radius: 22px; }
.duty-column-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.duty-column h2 { margin: 4px 0 0; font-family: var(--display); font-size: 2.2rem; font-weight: 600; }
.duty-pulse { width: 10px; height: 10px; border-radius: 50%; background: var(--terracotta); box-shadow: 0 0 0 6px rgba(216,97,63,.12); }
.duty-page-list { display: grid; gap: 10px; }
.duty-page-list article { display: grid; grid-template-columns: 46px minmax(0, 1fr); gap: 12px; padding: 14px; background: var(--cream-100); border: 1px solid var(--line); border-radius: 15px; }
.duty-place-icon { display: grid; width: 46px; height: 46px; place-items: center; color: var(--forest-700); background: var(--paper); border-radius: 14px; }
.duty-place-icon svg { width: 22px; height: 22px; }
.duty-page-list h3 { margin: 0 0 4px; font-size: .9rem; }
.duty-page-list p { display: flex; align-items: flex-start; gap: 6px; margin: 0; color: var(--muted); font-size: .68rem; }
.duty-page-list p svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; color: var(--forest-600); }
.duty-page-list small { display: block; margin-top: 4px; color: var(--forest-600); font-size: .58rem; }
.duty-page-list .button { grid-column: 1 / -1; justify-self: start; margin-top: 2px; }
.duty-page-empty { padding: 34px 18px; color: var(--muted); background: var(--cream-100); border-radius: 16px; text-align: center; }
.duty-page-empty svg { width: 32px; height: 32px; margin: 0 auto 10px; color: var(--forest-600); }
.source-banner { display: flex; gap: 12px; margin-top: 16px; padding: 18px; border-radius: 18px; }
.source-banner > span { color: var(--forest-600); }
.source-banner svg { width: 22px; height: 22px; }
.source-banner p { margin: 3px 0 0; color: var(--muted); font-size: .7rem; }

/* Detail */
.detail-hero { padding: 52px 0 28px; }
.detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr); align-items: center; gap: 44px; }
.detail-hero-media { min-height: 480px; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow-soft); }
.detail-hero-media img,
.detail-hero-media .place-art { width: 100%; min-height: 480px; height: 100%; object-fit: cover; }
.detail-hero-copy .category-chip { position: static; color: var(--forest-800); background: var(--mint-100); border-color: rgba(40,116,90,.15); }
.detail-hero-copy h1 { margin: 16px 0 12px; color: var(--forest-950); font-family: var(--display); font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 600; line-height: .96; letter-spacing: -.025em; }
.detail-address { display: flex; align-items: flex-start; gap: 8px; margin: 0; color: var(--forest-700); font-size: .82rem; }
.detail-address svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 3px; }
.detail-description { margin: 18px 0 0; color: var(--muted); font-size: .88rem; }
.detail-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 24px; }
.detail-section { padding-top: 34px; }
.detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 20px; }
.detail-main-stack { display: grid; gap: 18px; }
.detail-info,
.detail-services,
.detail-digital,
.source-panel { padding: 24px; border-radius: 22px; }
.detail-info h2,
.detail-services h2,
.detail-digital h2,
.source-panel h2 { margin: 7px 0 20px; font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1; }
.detail-facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.detail-facts > div { padding: 15px; background: var(--cream-100); border: 1px solid var(--line); border-radius: 15px; }
.detail-facts > div > span { display: grid; width: 38px; height: 38px; place-items: center; margin-bottom: 11px; color: var(--forest-700); background: var(--paper); border-radius: 12px; }
.detail-facts svg { width: 19px; height: 19px; }
.detail-facts strong { display: block; font-size: .62rem; text-transform: uppercase; }
.detail-facts p { margin: 4px 0 0; color: var(--muted); font-size: .74rem; }
.service-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 0; padding: 0; list-style: none; }
.service-list li { display: flex; align-items: center; gap: 9px; min-height: 48px; padding: 10px 12px; background: var(--cream-100); border: 1px solid var(--line); border-radius: 13px; }
.service-list span { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; color: var(--forest-700); background: var(--paper); border-radius: 9px; }
.service-list svg { width: 15px; height: 15px; }
.service-list strong { font-size: .7rem; }
.digital-links { display: grid; gap: 8px; }
.digital-links a,
.source-list a { display: flex; min-height: 45px; align-items: center; justify-content: space-between; gap: 12px; padding: 0 13px; color: var(--forest-800); background: var(--cream-100); border: 1px solid var(--line); border-radius: 12px; font-size: .72rem; font-weight: 700; }
.digital-links svg,
.source-list svg { width: 16px; height: 16px; }
.source-panel { position: sticky; top: 96px; }
.quality-meter { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px; background: var(--mint-100); border-radius: 15px; }
.quality-meter > div { display: flex; align-items: baseline; }
.quality-meter strong { color: var(--forest-800); font-family: var(--display); font-size: 2.1rem; font-weight: 600; line-height: 1; }
.quality-meter span,
.quality-meter p { color: var(--muted); font-size: .68rem; }
.quality-meter p { margin: 0; }
.source-row { display: flex; justify-content: space-between; gap: 12px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: .72rem; }
.source-row span { color: var(--muted); text-align: right; }
.source-primary-link { margin-top: 15px; }
.source-list { display: grid; gap: 7px; margin-top: 14px; }
.pending-data { margin-top: 14px; padding: 13px; color: #71493d; background: #f8eee8; border-radius: 13px; }
.pending-data strong { font-size: .68rem; text-transform: uppercase; }
.pending-data p { margin: 4px 0 0; font-size: .68rem; }
.source-note { margin: 15px 0 0; color: var(--muted); font-size: .67rem; }
.correction-link { margin-top: 13px; }

/* Map */
.map-page-stat { display: grid; width: 150px; min-height: 120px; align-content: center; padding: 18px; color: #fff; background: var(--forest-800); border-radius: 22px; }
.map-page-stat strong { font-family: var(--display); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.map-page-stat span { margin-top: 7px; color: rgba(255,255,255,.75); font-size: .66rem; }
.map-shell { position: relative; min-height: 520px; padding: 8px; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow-soft); }
.map { min-height: 504px; overflow: hidden; background: #dce7e0; border-radius: 16px; }
.map .leaflet-tile { filter: saturate(.72) hue-rotate(25deg) brightness(.98); }
.map-overlay { position: absolute; top: 18px; right: 18px; z-index: 500; padding: 13px 15px; border-radius: 14px; box-shadow: var(--shadow-soft); }
.map-overlay p { margin: 3px 0 0; color: var(--muted); font-size: .66rem; }
.map-empty-note { padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 20px; }
.map-empty-note p { margin: 5px 0 0; color: var(--muted); }
.address-directory-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin: 44px 0 18px; }
.address-directory-head h2 { margin: 6px 0 4px; font-family: var(--display); font-size: 2.5rem; font-weight: 600; }
.address-directory-head p { margin: 0; color: var(--muted); font-size: .78rem; }
.address-directory-head > strong { color: var(--forest-700); font-size: .76rem; }
.address-directory-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.address-card { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 17px; background: var(--paper); border: 1px solid var(--line); border-radius: 16px; }
.address-card > div:first-child > span { color: var(--forest-600); font-size: .59rem; font-weight: 700; text-transform: uppercase; }
.address-card h3 { margin: 4px 0 5px; font-family: var(--display); font-size: 1.18rem; font-weight: 600; }
.address-card p { display: flex; align-items: flex-start; gap: 6px; margin: 0; color: var(--muted); font-size: .66rem; }
.address-card p svg { width: 14px; height: 14px; flex: 0 0 auto; margin-top: 2px; color: var(--forest-600); }
.address-card > div:last-child { display: grid; gap: 6px; text-align: right; }
.address-card > div:last-child a { display: inline-flex; align-items: center; justify-content: flex-end; gap: 5px; color: var(--forest-700); font-size: .66rem; font-weight: 700; }
.address-card > div:last-child svg { width: 14px; height: 14px; }
.address-directory-note { color: var(--muted); font-size: .7rem; text-align: center; }

/* Forms and methodology */
.form-grid,
.methodology-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); align-items: start; gap: 20px; }
.form-intro,
.form-card,
.methodology-copy,
.audit-card,
.content-card { padding: 26px; border-radius: 22px; }
.form-intro { position: sticky; top: 96px; }
.form-intro h2,
.methodology-copy h2,
.audit-card h2 { margin: 8px 0 14px; font-family: var(--display); font-size: 2.2rem; font-weight: 600; line-height: 1.05; }
.form-intro p,
.methodology-copy p { color: var(--muted); }
.form-intro ul { display: grid; gap: 8px; padding-left: 18px; color: var(--forest-700); font-size: .78rem; }
.form-card { display: grid; gap: 14px; }
.form-card label { display: grid; gap: 7px; color: var(--forest-900); font-size: .72rem; font-weight: 700; }
.form-card input,
.form-card select,
.form-card textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: var(--cream-100); border: 1px solid var(--line); border-radius: 12px; outline: 0; }
.form-card input:focus,
.form-card select:focus,
.form-card textarea:focus { border-color: var(--forest-500); box-shadow: 0 0 0 3px rgba(60,149,109,.12); }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.honeypot { position: absolute !important; left: -9999px !important; }
.success-message { display: flex; gap: 9px; margin-bottom: 12px; padding: 15px; color: var(--success); border-radius: 14px; }
.success-message svg { width: 21px; height: 21px; }
.methodology-copy ol { display: grid; gap: 11px; padding-left: 22px; }
.methodology-copy li { color: var(--muted); }
.methodology-copy li strong { color: var(--ink); }
.audit-status { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.audit-status > div { padding: 13px; text-align: center; background: var(--cream-100); border-radius: 13px; }
.audit-status strong { display: block; color: var(--forest-800); font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.audit-status span { color: var(--muted); font-size: .62rem; }
.audit-coverage { display: grid; gap: 11px; margin-top: 20px; }
.audit-coverage > div > span { display: flex; justify-content: space-between; gap: 12px; margin-bottom: 5px; font-size: .68rem; }
.audit-coverage em { color: var(--forest-600); font-style: normal; }
.audit-coverage i { display: block; height: 7px; overflow: hidden; background: var(--cream-200); border-radius: 999px; }
.audit-coverage u { display: block; height: 100%; background: var(--forest-600); border-radius: inherit; text-decoration: none; }
.audit-card > small { display: block; margin-top: 16px; color: var(--muted); font-size: .58rem; }
.content-page { min-height: 65vh; padding: 80px 0; }
.content-card { max-width: 760px; }
.content-card h1 { margin: 10px 0 15px; font-family: var(--display); font-size: 3rem; font-weight: 600; }
.content-card p { color: var(--muted); }

/* Editorial / guides / history */
.editorial-hero-photo { width: 360px; height: 240px; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow-soft); }
.editorial-hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.editorial-hero-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.editorial-hero-actions .button--ghost { color: var(--forest-800); }
.editorial-section { background: var(--paper); }
.guide-filter,
.news-category-nav { display: flex; gap: 8px; padding-bottom: 4px; overflow-x: auto; scrollbar-width: none; }
.guide-filter::-webkit-scrollbar,
.news-category-nav::-webkit-scrollbar { display: none; }
.guide-filter a,
.news-category-nav a { display: inline-flex; min-height: 38px; flex: 0 0 auto; align-items: center; gap: 6px; padding: 0 13px; color: var(--forest-700); background: var(--cream-100); border: 1px solid var(--line); border-radius: 999px; font-size: .68rem; font-weight: 700; }
.guide-filter a span { color: var(--muted); }
.guide-filter a[aria-current="page"],
.news-category-nav a[aria-current="page"] { color: #fff; background: var(--forest-700); border-color: var(--forest-700); }
.guide-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; margin-top: 24px; }
.guide-card { min-width: 0; overflow: hidden; background: var(--cream-100); border: 1px solid var(--line); border-radius: 19px; }
.guide-card--featured { grid-column: span 2; }
.guide-card-media { position: relative; display: block; height: 220px; overflow: hidden; background: var(--mint-200); }
.guide-card--featured .guide-card-media { height: 310px; }
.guide-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.guide-card:hover .guide-card-media img { transform: scale(1.025); }
.guide-card-media > span:not(.guide-card-placeholder) { position: absolute; top: 14px; left: 14px; padding: 7px 10px; color: var(--forest-900); background: rgba(255,253,249,.94); border-radius: 999px; font-size: .6rem; font-weight: 700; }
.guide-card-placeholder { display: grid; width: 100%; height: 100%; place-items: center; color: var(--forest-700); }
.guide-card-placeholder svg { width: 48px; height: 48px; }
.guide-card-copy { padding: 18px; }
.guide-card-copy h3 { margin: 0 0 10px; font-family: var(--display); font-size: 1.4rem; font-weight: 600; line-height: 1.08; }
.guide-card-copy p { display: -webkit-box; min-height: 57px; margin: 0 0 15px; overflow: hidden; color: var(--muted); font-size: .74rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.guide-detail-hero { padding: 52px 0 32px; }
.guide-detail-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .85fr); align-items: center; gap: 40px; }
.guide-back,
.news-back { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 20px; color: var(--forest-700); font-size: .72rem; font-weight: 700; }
.news-back svg { width: 16px; height: 16px; transform: rotate(180deg); }
.guide-detail-copy h1 { margin: 10px 0 15px; font-family: var(--display); font-size: clamp(2.7rem, 6vw, 4.8rem); font-weight: 600; line-height: .98; }
.guide-detail-copy p { color: var(--muted); }
.guide-detail-media { height: 420px; overflow: hidden; background: var(--mint-200); border-radius: 26px; box-shadow: var(--shadow-soft); }
.guide-detail-media img { width: 100%; height: 100%; object-fit: cover; }
.guide-detail-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 22px; padding-bottom: 72px; }
.guide-detail-body,
.guide-source-panel { padding: 26px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.guide-detail-body h2,
.guide-source-panel h2 { margin: 8px 0 18px; font-family: var(--display); font-size: 2.1rem; font-weight: 600; }
.guide-detail-body p { color: var(--muted); }
.guide-checklist { display: grid; gap: 9px; margin-top: 24px; }
.guide-checklist > div { padding: 14px; background: var(--cream-100); border-radius: 13px; }
.guide-checklist strong { display: block; font-size: .75rem; }
.guide-checklist span { color: var(--muted); font-size: .68rem; }
.guide-source-panel { position: sticky; top: 96px; }
.guide-source-panel p { color: var(--muted); font-size: .74rem; }
.guide-source-panel > a:not(.button) { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin: 14px 0; padding: 12px; color: var(--forest-700); background: var(--cream-100); border-radius: 12px; font-size: .68rem; font-weight: 700; }
.guide-source-panel svg { width: 16px; height: 16px; }
.guide-source-panel small { display: block; color: var(--muted); font-size: .6rem; }
.archive-head { margin-top: 60px; }
.archive-head h2 { margin: 7px 0 8px; font-family: var(--display); font-size: 2.4rem; font-weight: 600; }
.archive-head p { max-width: 720px; color: var(--muted); }
.archive-list { display: grid; gap: 1px; margin-top: 20px; background: var(--line); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
.archive-list article { display: grid; grid-template-columns: 120px 1fr; gap: 22px; padding: 20px; background: var(--paper); }
.archive-list time { color: var(--forest-600); font-size: .7rem; font-weight: 700; }
.archive-list h3 { margin: 0 0 5px; font-family: var(--display); font-size: 1.25rem; font-weight: 600; }
.archive-list p { margin: 0; color: var(--muted); font-size: .72rem; }
.history-hero-card { display: grid; width: 200px; min-height: 170px; align-content: center; padding: 20px; color: #fff; background: var(--forest-800); border-radius: 24px; }
.history-hero-card strong { font-family: var(--display); font-size: 2.5rem; font-weight: 600; line-height: 1; }
.history-hero-card span { margin-top: 8px; color: rgba(255,255,255,.75); font-size: .68rem; }
.history-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 22px; }
.history-timeline { display: grid; gap: 14px; }
.history-timeline article { display: grid; grid-template-columns: 110px 1fr; gap: 20px; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.history-timeline time { color: var(--terracotta); font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.history-timeline h2 { margin: 0 0 7px; font-family: var(--display); font-size: 1.5rem; font-weight: 600; }
.history-timeline p { margin: 0; color: var(--muted); font-size: .78rem; }
.history-note { position: sticky; top: 96px; padding: 22px; background: var(--mint-100); border: 1px solid rgba(40,116,90,.18); border-radius: 20px; }
.history-note h2 { margin: 7px 0 10px; font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.history-note p { color: var(--muted); font-size: .74rem; }

/* News listing */
.news-hero-grid { grid-template-columns: minmax(0, 1fr) 350px; }
.news-hero-actions { display: grid; gap: 9px; }
.news-hero-actions a { display: flex; min-height: 68px; align-items: center; gap: 12px; padding: 13px 15px; background: var(--paper); border: 1px solid var(--line); border-radius: 15px; }
.news-hero-actions > a > svg { width: 27px; height: 27px; color: var(--forest-600); }
.news-hero-actions span { display: grid; }
.news-hero-actions b { font-size: .76rem; }
.news-hero-actions small { color: var(--muted); font-size: .62rem; }
.news-nav-section { padding: 18px 0; background: var(--paper); border-bottom: 1px solid var(--line); }
.news-featured-section { padding: 38px 0 18px; }
.news-featured { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr); overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 24px; }
.news-featured-visual { min-height: 430px; overflow: hidden; background: var(--forest-800); }
.news-featured-visual img { width: 100%; height: 100%; object-fit: cover; }
.news-featured-copy { display: flex; flex-direction: column; justify-content: center; padding: 34px; }
.news-featured-copy h2 { margin: 10px 0 14px; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; line-height: 1.02; }
.news-featured-copy > p { color: var(--muted); }
.news-featured-copy > div { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-top: 18px; }
.news-featured-copy time { color: var(--muted); font-size: .65rem; }
.news-list-section { padding-top: 38px; }
.home-section-head,
.v12-section-head { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.home-section-head > div,
.v12-section-head > div { display: block; }
.home-section-head > div > span { display: none; }
.home-section-head small { color: var(--muted); }
.news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.news-card { min-width: 0; overflow: hidden; background: var(--paper); border: 1px solid var(--line); border-radius: 19px; }
.news-card-visual { position: relative; display: block; height: 230px; overflow: hidden; color: #fff; background: var(--forest-800); }
.news-card-visual img { width: 100%; height: 100%; object-fit: cover; }
.news-card-icon { position: absolute; top: 18px; left: 18px; }
.news-card-icon svg { width: 34px; height: 34px; }
.news-card-watermark { position: absolute; right: 12px; bottom: -13px; color: rgba(255,255,255,.08); font-family: var(--display); font-size: 6rem; font-weight: 700; line-height: 1; }
.news-card-visual > b { position: absolute; bottom: 18px; left: 18px; font-family: var(--display); font-size: 1.2rem; }
.news-card-body { padding: 18px; }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .6rem; }
.news-card-meta span { color: var(--forest-600); font-weight: 700; text-transform: uppercase; }
.news-card h3 { margin: 10px 0 9px; font-family: var(--display); font-size: 1.45rem; font-weight: 600; line-height: 1.08; }
.news-card-body > p { display: -webkit-box; min-height: 57px; margin: 0; overflow: hidden; color: var(--muted); font-size: .74rem; -webkit-line-clamp: 3; -webkit-box-orient: vertical; }
.news-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--line); }
.news-card-footer span { color: var(--muted); font-size: .6rem; }
.news-card-footer a { display: inline-flex; align-items: center; gap: 5px; color: var(--forest-700); font-size: .68rem; font-weight: 700; }
.news-card-footer svg { width: 15px; height: 15px; }
.news-tone--servicios { background: #526f64; }
.news-tone--agenda { background: #9c5c42; }
.news-tone--turismo { background: #4d7d75; }
.news-tone--deportes { background: #5f6d45; }
.news-tone--salud { background: #487763; }
.news-tone--policiales { background: #5a6062; }
.news-tone--politica { background: #5f5367; }
.news-tone--ciudad { background: var(--forest-700); }

/* News article */
.news-article-head { padding: 52px 0 30px; }
.news-article-head-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .75fr); align-items: center; gap: 42px; }
.news-article-head h1 { margin: 10px 0 16px; font-family: var(--display); font-size: clamp(2.7rem, 6vw, 5rem); font-weight: 600; line-height: .98; }
.news-lead { color: var(--muted); font-size: 1rem; }
.news-byline { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 20px; color: var(--muted); font-size: .63rem; }
.news-article-art { min-height: 430px; overflow: hidden; color: #fff; background: var(--forest-800); border-radius: 24px; box-shadow: var(--shadow-soft); }
.news-article-art img { width: 100%; height: 430px; object-fit: cover; }
.news-article-art figcaption { padding: 8px 12px; color: var(--muted); background: var(--paper); font-size: .56rem; }
.news-article-art:not(figure) { display: grid; align-content: end; padding: 28px; }
.news-article-art:not(figure) svg { width: 50px; height: 50px; }
.news-article-art:not(figure) strong { margin-top: auto; font-family: var(--display); font-size: 2rem; }
.news-article-art:not(figure) small { color: rgba(255,255,255,.72); }
.news-fast { padding: 0 0 26px; }
.news-fast-card { padding: 22px; background: var(--mint-100); border: 1px solid rgba(40,116,90,.18); border-radius: 20px; }
.news-fast-title strong { display: block; margin-top: 4px; font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.news-fast-card ul { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin: 18px 0 0; padding: 0; list-style: none; }
.news-fast-card li { display: flex; gap: 9px; padding: 11px; background: var(--paper); border-radius: 12px; }
.news-fast-card li span { color: var(--forest-600); }
.news-fast-card li svg { width: 18px; height: 18px; }
.news-fast-card li p { margin: 0; color: var(--muted); font-size: .7rem; }
.news-article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; align-items: start; gap: 24px; padding-bottom: 72px; }
.news-article-content { min-width: 0; padding: 28px; background: var(--paper); border: 1px solid var(--line); border-radius: 22px; }
.news-article-summary { margin-bottom: 30px; padding: 20px; background: var(--cream-100); border-radius: 16px; }
.news-article-summary p { margin: 8px 0 0; color: var(--forest-800); font-size: 1rem; font-weight: 600; }
.news-story-section { padding: 0 0 24px; }
.news-story-section h2 { margin: 0 0 12px; font-family: var(--display); font-size: 2rem; font-weight: 600; line-height: 1.08; }
.news-story-section p { color: #49554f; }
.news-story-bullets { display: grid; gap: 8px; padding-left: 21px; color: #49554f; }
.news-sources { margin-top: 20px; padding-top: 24px; border-top: 1px solid var(--line); }
.news-sources h2 { margin: 7px 0 9px; font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.news-sources > p { color: var(--muted); font-size: .72rem; }
.news-sources ul { display: grid; gap: 8px; margin: 16px 0 0; padding: 0; list-style: none; }
.news-sources a { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 3px 10px; padding: 12px; background: var(--cream-100); border-radius: 12px; }
.news-sources a strong { font-size: .7rem; }
.news-sources a span { color: var(--muted); font-size: .64rem; }
.news-sources a svg { grid-column: 2; grid-row: 1 / span 2; width: 16px; height: 16px; align-self: center; color: var(--forest-600); }
.news-article-aside { position: sticky; top: 96px; display: grid; gap: 12px; }
.news-practical-box,
.news-useful-box,
.news-share-box,
.news-related { padding: 20px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.news-practical-box h2,
.news-useful-box h2,
.news-share-box h2,
.news-related h2 { margin: 6px 0 12px; font-family: var(--display); font-size: 1.45rem; font-weight: 600; }
.news-practical-box dl { display: grid; gap: 9px; margin: 0; }
.news-practical-box div { padding: 10px; background: var(--cream-100); border-radius: 10px; }
.news-practical-box dt { color: var(--forest-600); font-size: .58rem; font-weight: 700; text-transform: uppercase; }
.news-practical-box dd { margin: 3px 0 0; color: var(--muted); font-size: .68rem; }
.news-useful-box p,
.news-share-box p { color: var(--muted); font-size: .7rem; }
.news-related-grid { display: grid; gap: 8px; }
.news-related-grid a { padding: 10px; background: var(--cream-100); border-radius: 10px; font-size: .68rem; font-weight: 700; }

/* Footer */
.site-footer { padding: 62px 0 104px; color: #fff; background: var(--forest-950); }
.footer-shell { display: grid; grid-template-columns: 310px minmax(0, 1fr); gap: 58px 70px; }
.footer-brand .brand-logo { width: 210px; }
.footer-brand p { max-width: 300px; margin: 18px 0 15px; color: rgba(255,255,255,.66); font-size: .78rem; }
.footer-mail { color: var(--green-400); font-size: .72rem; font-weight: 700; }
.footer-columns { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 28px; }
.footer-columns > div { display: grid; align-content: start; gap: 8px; }
.footer-columns strong { margin-bottom: 6px; color: #fff; font-family: var(--display); font-size: .95rem; font-weight: 600; }
.footer-columns a,
.footer-columns span { color: rgba(255,255,255,.62); font-size: .68rem; }
.footer-columns a:hover { color: var(--green-400); }
.footer-bottom { grid-column: 1 / -1; display: flex; justify-content: space-between; gap: 18px; padding-top: 22px; color: rgba(255,255,255,.48); border-top: 1px solid rgba(255,255,255,.12); font-size: .62rem; }
.bottom-nav { display: none; }

/* Admin fallback */
.admin-login,
.admin-news { min-height: 100vh; padding: 40px 16px; background: var(--cream-100); }
.admin-login-card,
.admin-news-head,
.admin-draft,
.admin-notice,
.admin-alert { max-width: 980px; margin-inline: auto; padding: 22px; background: var(--paper); border: 1px solid var(--line); border-radius: 18px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 18px 0; }
.admin-stats > div { padding: 14px; background: var(--mint-100); border-radius: 12px; }
.admin-draft-list { display: grid; gap: 12px; }
.admin-form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; }
.admin-news-actions,
.admin-draft-actions { display: flex; flex-wrap: wrap; gap: 8px; }
.admin-news-head { max-width: none; display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.admin-news-head h1 { margin: 7px 0 8px; font-family: var(--display); font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 600; }
.admin-news-head p { max-width: 760px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.65; }
.admin-news-actions { justify-content: flex-end; align-items: center; }
.admin-system-state { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 15px; }
.admin-system-state span,
.admin-draft-top > span,
.admin-draft-top time { padding: 6px 9px; color: var(--forest-800); background: var(--mint-100); border-radius: 999px; font-size: .6rem; font-weight: 700; }
.admin-notice { max-width: none; margin-top: 14px; color: var(--forest-900); background: #e7f4e9; border-color: #b9d9c2; font-size: .72rem; line-height: 1.5; }
.admin-stats > div { display: grid; gap: 2px; }
.admin-stats strong { font-family: var(--display); font-size: 1.8rem; font-weight: 600; }
.admin-stats span { color: var(--muted); font-size: .62rem; }
.admin-draft { max-width: none; display: grid; gap: 16px; }
.admin-draft-top { display: flex; flex-wrap: wrap; align-items: center; gap: 7px; }
.admin-risk--alto { color: #7d271f !important; background: #f9ddd8 !important; }
.admin-risk--medio { color: #725018 !important; background: #f8edcc !important; }
.admin-risk--bajo { color: #245c42 !important; background: #dcefe2 !important; }
.admin-draft label { display: grid; gap: 6px; color: var(--forest-900); font-size: .63rem; font-weight: 700; }
.admin-draft input,
.admin-draft select,
.admin-draft textarea,
.admin-source-notes textarea { width: 100%; padding: 12px 13px; color: var(--ink); background: var(--cream-100); border: 1px solid var(--line); border-radius: 11px; outline: 0; font-size: .72rem; line-height: 1.55; resize: vertical; }
.admin-draft input:focus,
.admin-draft select:focus,
.admin-draft textarea:focus { border-color: var(--forest-500); box-shadow: 0 0 0 3px rgba(60,149,109,.12); }
.admin-form-wide { grid-column: 1 / -1; }
.admin-image-preview { display: grid; grid-template-columns: minmax(240px, 460px) minmax(0, 1fr); align-items: center; gap: 15px; margin: 0; padding: 12px; background: var(--cream-100); border-radius: 14px; }
.admin-image-preview-img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; border-radius: 10px; }
.admin-image-preview figcaption { color: var(--muted); font-size: .65rem; line-height: 1.5; }
.admin-section-editor { display: grid; grid-template-columns: minmax(180px, .38fr) minmax(0, 1.62fr); gap: 10px; padding: 13px; background: var(--cream-100); border: 1px solid var(--line); border-radius: 14px; }
.admin-section-editor input,
.admin-section-editor textarea { background: var(--paper); }
.admin-warning { display: grid; gap: 3px; padding: 12px 14px; color: #704b14; background: #fff1cc; border: 1px solid #efd694; border-radius: 12px; font-size: .64rem; }
.admin-warning span { font-weight: 400; }
.admin-source-notes,
.admin-source-images { padding: 13px; background: var(--cream-100); border: 1px solid var(--line); border-radius: 13px; }
.admin-source-notes summary,
.admin-source-images summary { cursor: pointer; color: var(--forest-900); font-size: .68rem; font-weight: 700; }
.admin-source-notes p,
.admin-source-images p { color: var(--muted); font-size: .63rem; }
.admin-source-images > div { display: flex; flex-wrap: wrap; gap: 7px; }
.admin-source-images a,
.admin-source-list a { padding: 8px 10px; color: var(--forest-800); background: var(--paper); border: 1px solid var(--line); border-radius: 9px; font-size: .61rem; font-weight: 700; }
.admin-source-list { display: grid; gap: 7px; }
.admin-source-list strong { font-family: var(--display); font-size: 1rem; font-weight: 600; }
.admin-risk-confirm { grid-template-columns: auto minmax(0, 1fr) !important; align-items: start; padding: 12px; color: #6f2922 !important; background: #fae3df; border: 1px solid #efbbb2; border-radius: 12px; }
.admin-risk-confirm input { width: 18px; height: 18px; margin-top: 1px; }
.admin-draft-actions { padding-top: 4px; border-top: 1px solid var(--line); }

/* Legacy aliases kept intentionally for old route markup */
.v12-section { padding: 72px 0; }
.v12-section-head { margin-bottom: 24px; }
.v12-section-head > div > span { color: var(--forest-600); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.v12-section-head > a { color: var(--forest-700); font-size: .72rem; font-weight: 700; }

@media (max-width: 1120px) {
  .nav { gap: 2px; }
  .nav a { padding-inline: 9px; }
  .header-turno span { display: none; }
  .header-turno { width: 42px; justify-content: center; padding: 0; }
  .home-category-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .home-stay-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-grid,
  .news-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-shell { grid-template-columns: 260px minmax(0, 1fr); gap: 44px; }
}

@media (max-width: 900px) {
  body { padding-bottom: 72px; }
  .container { width: min(var(--max), calc(100% - 24px)); }
  .section, .home-section { padding: 54px 0; }
  .nav,
  .header-turno,
  .header-cta { display: none; }
  .header-actions { margin-left: auto; }
  .menu-button { display: grid; }
  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 260;
    display: none;
    padding: max(18px, env(safe-area-inset-top)) 18px max(26px, env(safe-area-inset-bottom));
    color: var(--ink);
    background: var(--cream-100);
    overflow-y: auto;
  }
  .mobile-menu.open { display: block; animation: menuIn .18s ease both; }
  .mobile-menu-head { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--line); }
  .mobile-menu-head span { font-family: var(--display); font-size: 1.3rem; font-weight: 600; }
  .mobile-menu-head button { display: grid; width: 44px; height: 44px; place-items: center; padding: 0; color: var(--forest-900); background: var(--paper); border: 1px solid var(--line); border-radius: 50%; }
  .mobile-menu-head svg { width: 21px; height: 21px; }
  .mobile-menu-links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; padding: 18px 0; }
  .mobile-menu-links a { display: flex; min-height: 48px; align-items: center; padding: 0 13px; background: var(--paper); border: 1px solid var(--line); border-radius: 12px; font-family: var(--display); font-size: .95rem; font-weight: 600; }
  .mobile-cta { display: flex; min-height: 52px; align-items: center; justify-content: center; color: #fff; background: var(--forest-800); border-radius: 14px; font-weight: 700; }
  @keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

  .home-hero { padding: 42px 0 30px; }
  .home-hero-grid { grid-template-columns: 1fr; gap: 34px; }
  .home-hero-copy { max-width: none; }
  .home-hero-copy h1 { max-width: 700px; font-size: clamp(3rem, 11vw, 4.8rem); }
  .home-hero-media { min-height: 470px; }
  .home-hero-main-photo { inset: 0 72px 38px 0; }
  .home-hero-secondary-photo { width: 170px; height: 205px; }
  .home-hero-stat { right: 2px; }
  .turno-card { grid-template-columns: 150px minmax(0, 1fr); }
  .turno-actions { grid-column: 1 / -1; justify-content: flex-start; }
  .home-news-grid { grid-template-columns: 1fr; }
  .home-news-side { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-news-all { grid-column: 1 / -1; }
  .home-discover-inner { grid-template-columns: 1fr; }
  .home-discover-copy { max-width: 680px; }
  .home-agenda-card { grid-template-columns: 82px 1fr; }
  .home-agenda-card > .button { grid-column: 1 / -1; justify-self: start; }

  .page-hero-grid,
  .map-page-hero-grid,
  .history-hero-grid,
  .editorial-hero-grid,
  .news-hero-grid { grid-template-columns: 1fr; }
  .page-hero-symbol,
  .page-hero-visual,
  .map-page-stat,
  .history-hero-card { width: 120px; min-height: 92px; height: auto; }
  .editorial-hero-photo { width: 100%; height: 340px; }
  .news-hero-actions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-toolbar { grid-template-columns: 1fr 1fr; }
  .directory-toolbar .toolbar-search { grid-column: 1 / -1; }
  .detail-hero-grid,
  .guide-detail-hero-grid,
  .news-article-head-grid { grid-template-columns: 1fr; }
  .detail-hero-media { min-height: 420px; }
  .detail-hero-media img { min-height: 420px; }
  .detail-layout,
  .guide-detail-layout,
  .news-article-layout,
  .history-layout { grid-template-columns: 1fr; }
  .source-panel,
  .guide-source-panel,
  .news-article-aside,
  .history-note,
  .form-intro { position: static; }
  .news-article-aside { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-visual { min-height: 360px; }
  .form-grid,
  .methodology-grid { grid-template-columns: 1fr; }
  .footer-shell { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bottom-nav {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 220;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 68px;
    padding: 6px max(8px, env(safe-area-inset-right)) max(6px, env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    background: rgba(255,253,249,.97);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 28px rgba(18,57,43,.08);
    backdrop-filter: blur(14px);
  }
  .bottom-nav a,
  .bottom-nav button { display: grid; min-width: 0; place-items: center; align-content: center; gap: 3px; padding: 0; color: var(--muted); background: transparent; border: 0; font-size: .56rem; font-weight: 700; }
  .bottom-nav svg { width: 20px; height: 20px; }
  .bottom-nav-featured { color: var(--terracotta) !important; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .container { width: min(var(--max), calc(100% - 20px)); }
  .header-shell { min-height: 68px; }
  .brand { width: 164px; }
  .section, .home-section { padding: 44px 0; }
  .section-heading { align-items: flex-start; margin-bottom: 20px; }
  .section-heading > .section-link { display: none; }
  .section-heading h2,
  .home-section-head h2,
  .v12-section-head h2 { font-size: 2rem; }

  .home-hero { padding-top: 30px; }
  .home-hero-copy h1 { margin-top: 10px; font-size: clamp(2.75rem, 14vw, 4rem); }
  .home-hero-copy > p { font-size: .88rem; }
  .home-search { grid-template-columns: 20px 1fr 46px; min-height: 58px; padding-right: 6px; }
  .home-search button { width: 46px; min-height: 46px; padding: 0; font-size: 0; }
  .home-search button::after { content: "→"; font-size: 1.1rem; }
  .home-quick-links { gap: 8px 14px; }
  .home-quick-links a { font-size: .67rem; }
  .home-hero-media { min-height: 360px; }
  .home-hero-main-photo { inset: 0 44px 26px 0; border-radius: 22px 22px 58px 22px; }
  .home-hero-main-photo figcaption { right: 16px; bottom: 15px; left: 16px; }
  .home-hero-main-photo figcaption strong { font-size: 1.35rem; }
  .home-hero-main-photo figcaption span { display: none; }
  .home-hero-secondary-photo { width: 122px; height: 148px; border-width: 5px; border-radius: 18px; }
  .home-hero-stat { top: 12px; width: 112px; min-height: 90px; padding: 12px; border-radius: 17px; }
  .home-hero-stat strong { font-size: 2rem; }
  .home-hero-stat span { font-size: .57rem; }

  .home-category-grid { display: flex; gap: 10px; margin-inline: -10px; padding: 1px 10px 9px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-category-grid::-webkit-scrollbar { display: none; }
  .home-category-card { min-width: 132px; min-height: 132px; flex: 0 0 auto; padding: 15px; scroll-snap-align: start; }
  .home-category-card > span { width: 38px; height: 38px; margin-bottom: 17px; }
  .home-category-card strong { font-size: 1rem; }

  .turno-card { grid-template-columns: 1fr; gap: 15px; padding: 18px; }
  .turno-status { font-size: .65rem; }
  .turno-main { align-items: flex-start; }
  .turno-icon { width: 46px; height: 46px; }
  .turno-main h2 { font-size: 1.4rem; }
  .turno-actions { grid-column: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .turno-actions .button { min-width: 0; padding-inline: 12px; font-size: .68rem; }

  .home-news-lead { grid-template-columns: 1fr; }
  .home-news-media { min-height: 240px; }
  .home-news-copy { padding: 20px; }
  .home-news-copy h3 { font-size: 2rem; }
  .home-news-side { grid-template-columns: 1fr; }
  .home-news-mini { grid-template-columns: 104px 1fr; }
  .home-stay-grid { display: flex; gap: 12px; margin-inline: -10px; padding: 1px 10px 10px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .home-stay-grid::-webkit-scrollbar { display: none; }
  .home-stay-card { min-width: 78vw; flex: 0 0 auto; scroll-snap-align: start; }
  .home-stay-media { height: 205px; }

  .home-discover { padding: 54px 0; }
  .home-discover-copy h2 { font-size: 2.8rem; }
  .home-tour-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 260px 150px 150px; }
  .home-tour-card--large { grid-column: 1 / -1; grid-row: 1; }
  .home-tour-card--large > a { min-height: 260px; }
  .home-tour-card:not(.home-tour-card--large) > a { min-height: 150px; }
  .home-tour-card--large .home-tour-copy strong { font-size: 1.75rem; }
  .home-tour-copy strong { font-size: 1rem; }

  .home-agenda-card { grid-template-columns: 68px 1fr; gap: 15px; padding: 18px; }
  .home-agenda-date { width: 64px; height: 64px; border-radius: 15px; }
  .home-agenda-date strong { font-size: 1.7rem; }
  .home-agenda-copy h2 { font-size: 1.4rem; }
  .home-agenda-copy p { display: none; }
  .home-publish { padding-bottom: 48px; }
  .home-publish-card { display: grid; padding: 24px; }
  .home-publish-card h2 { font-size: 1.9rem; }
  .home-publish-card .button { justify-self: start; }

  .page-hero,
  .map-page-hero,
  .history-hero,
  .editorial-hero,
  .news-hero { padding: 46px 0 38px; }
  .page-hero h1,
  .map-page-hero h1,
  .history-hero h1,
  .editorial-hero h1,
  .news-hero h1 { font-size: 2.75rem; }
  .page-hero-symbol,
  .page-hero-visual,
  .map-page-stat,
  .history-hero-card { display: none; }
  .editorial-hero-photo { height: 250px; }
  .news-hero-actions { grid-template-columns: 1fr; }

  .directory-toolbar,
  .category-search,
  .map-filter { grid-template-columns: 1fr; width: 100%; }
  .directory-toolbar .toolbar-search { grid-column: auto; }
  .map-filter label { grid-template-columns: 1fr; }
  .results-head { align-items: flex-end; }
  .results-head p { max-width: 55%; text-align: right; }
  .directory-grid,
  .news-grid,
  .guide-grid { grid-template-columns: 1fr; }
  .place-card-media,
  .news-card-visual { height: 230px; }
  .guide-card--featured { grid-column: auto; }
  .guide-card--featured .guide-card-media { height: 240px; }
  .duty-page-grid { grid-template-columns: 1fr; }
  .detail-hero { padding-top: 24px; }
  .detail-hero-grid { gap: 24px; }
  .detail-hero-media { min-height: 290px; border-radius: 20px; }
  .detail-hero-media img { min-height: 290px; }
  .detail-hero-copy h1 { font-size: 2.85rem; }
  .detail-actions { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .detail-actions .button:last-child { grid-column: 1 / -1; }
  .detail-facts,
  .service-list { grid-template-columns: 1fr; }
  .detail-info,
  .detail-services,
  .detail-digital,
  .source-panel { padding: 19px; }
  .map-shell { min-height: 440px; }
  .map { min-height: 424px; }
  .map-overlay { right: 14px; left: 14px; }
  .address-directory-head { align-items: flex-start; }
  .address-directory-head > strong { display: none; }
  .address-directory-grid { grid-template-columns: 1fr; }
  .address-card { align-items: flex-start; }
  .address-card > div:last-child { flex: 0 0 auto; }
  .form-row,
  .audit-status { grid-template-columns: 1fr; }
  .archive-list article,
  .history-timeline article { grid-template-columns: 1fr; gap: 8px; }
  .guide-detail-media { height: 280px; }
  .guide-detail-body,
  .guide-source-panel { padding: 20px; }
  .news-featured-visual { min-height: 260px; }
  .news-featured-copy { padding: 22px; }
  .news-featured-copy h2 { font-size: 2.2rem; }
  .news-article-head { padding-top: 30px; }
  .news-article-head h1 { font-size: 2.75rem; }
  .news-article-art,
  .news-article-art img { min-height: 280px; height: 280px; }
  .news-fast-card ul { grid-template-columns: 1fr; }
  .news-article-content { padding: 20px; }
  .news-article-aside { grid-template-columns: 1fr; }
  .news-story-section h2 { font-size: 1.7rem; }
  .footer-shell { gap: 40px; }
  .footer-columns { grid-template-columns: 1fr 1fr; gap: 26px 20px; }
  .footer-bottom { display: grid; }
  .mobile-menu-links { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

@media (max-width: 760px) {
  .admin-news { padding-inline: 0; }
  .admin-news-head { display: grid; }
  .admin-news-actions { justify-content: flex-start; }
  .admin-stats { grid-template-columns: repeat(2, 1fr); }
  .admin-form-row,
  .admin-section-editor,
  .admin-image-preview { grid-template-columns: 1fr; }
  .admin-draft-top time { width: 100%; }
  .admin-draft-actions .button { flex: 1 1 100%; }
}
