/* Plaza Fiesta San Agustín — 2026 */

:root {
  --paper: #fafaf7;
  --ink: #131210;
  --ink-soft: #4c4a45;
  --ink-faint: #8a8781;
  --line: #e4e2db;
  --accent: #c8481f;
  --panel: #131210;
  --panel-ink: #f4f2ec;
  --panel-faint: #a5a29a;
  --radius-lg: 28px;
  --radius-md: 18px;
  --sans: "Schibsted Grotesk", -apple-system, "Helvetica Neue", sans-serif;
  --mono: "Fragment Mono", "SF Mono", monospace;
  --pad: clamp(20px, 5vw, 72px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--accent); color: #fff; }

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

a { color: inherit; }

.mono {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* ---------- floating nav ---------- */

.nav {
  position: fixed;
  top: 18px;
  left: 50%;
  translate: -50% 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: color-mix(in srgb, var(--paper) 72%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 2px rgb(19 18 16 / .04), 0 12px 40px -12px rgb(19 18 16 / .12);
  transition: box-shadow .4s ease, translate .4s ease;
  max-width: calc(100vw - 32px);
}

.nav.is-scrolled {
  box-shadow: 0 1px 2px rgb(19 18 16 / .06), 0 18px 50px -12px rgb(19 18 16 / .22);
}

.nav__brand {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  text-decoration: none;
  padding: 6px 14px 6px 8px;
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}

.nav__dot {
  width: 26px;
  height: 26px;
  border-radius: 9px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 10px;
  display: grid;
  place-items: center;
  letter-spacing: 0;
}

.nav__links { display: flex; gap: 2px; }

.nav__links a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 7px 13px;
  border-radius: 999px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.nav__links a:hover { background: rgb(19 18 16 / .06); color: var(--ink); }

.nav__cta {
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  background: var(--ink);
  color: var(--paper);
  padding: 8px 16px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background .2s;
}

.nav__cta:hover { background: var(--accent); }

/* hamburger — hidden on desktop */
.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 38px;
  height: 38px;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: var(--ink);
  cursor: pointer;
}
.nav__burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--paper);
  border-radius: 2px;
  transition: transform .3s ease, opacity .2s ease;
}
.nav.is-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.nav__panel {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: color-mix(in srgb, var(--paper) 94%, transparent);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 18px 50px -12px rgb(19 18 16 / .28);
}
.nav.is-open .nav__panel { display: flex; }
.nav__panel a {
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  padding: 13px 16px;
  border-radius: 12px;
  transition: background .18s;
}
.nav__panel a:hover { background: rgb(19 18 16 / .06); }
.nav__panel-cta {
  margin-top: 4px;
  background: var(--ink);
  color: var(--paper) !important;
  text-align: center;
}

@media (max-width: 760px) {
  .nav { position: fixed; }
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  width: 100%;
  overflow: hidden;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgb(19 18 16 / .34) 0%, rgb(19 18 16 / 0) 26%, rgb(19 18 16 / 0) 48%, rgb(19 18 16 / .72) 100%);
}

.hero__overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(96px, 13vh, 140px) var(--pad) clamp(28px, 5vh, 52px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.hero__kicker {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgb(255 255 255 / .4);
  padding-top: 14px;
}

.hero__kicker .mono { color: rgb(255 255 255 / .82); }

.hero__foot {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}

.hero h1 {
  font-size: clamp(38px, 7vw, 108px);
  line-height: .95;
  letter-spacing: -.035em;
  font-weight: 700;
  text-wrap: balance;
  text-shadow: 0 2px 30px rgb(0 0 0 / .35);
}

.hero h1 em {
  font-style: italic;
  font-weight: 400;
  letter-spacing: -.02em;
  color: #ff8a63;
}

.hero__scroll {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff;
  border: 1px solid rgb(255 255 255 / .5);
  border-radius: 999px;
  padding: 10px 18px;
  white-space: nowrap;
  transition: background .2s, border-color .2s;
  backdrop-filter: blur(6px);
}

.hero__scroll .mono { color: #fff; }
.hero__scroll:hover { background: rgb(255 255 255 / .14); border-color: #fff; }

.hero__arrow {
  font-size: 15px;
  animation: bob 1.8s ease-in-out infinite;
}

@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(3px); } }

@media (prefers-reduced-motion: reduce) {
  .hero__arrow { animation: none; }
}

/* ---------- shared section chrome ---------- */

.section {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(70px, 10vh, 130px) var(--pad) 0;
}

.section__head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: clamp(28px, 4vw, 52px);
  gap: 16px;
  flex-wrap: wrap;
}

.section__head h2 {
  font-size: clamp(30px, 4.4vw, 58px);
  letter-spacing: -.03em;
  line-height: 1.02;
  font-weight: 700;
  text-wrap: balance;
}

/* ---------- chipotle / news panel ---------- */

.news { padding-top: clamp(70px, 10vh, 130px); }

.news__panel {
  background: var(--panel);
  color: var(--panel-ink);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4.5vw, 64px);
}

.news__panel .mono { color: var(--panel-faint); }

.news__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid rgb(244 242 236 / .25);
  padding-top: 14px;
  margin-bottom: 34px;
}

.news__badge {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #ffb59d;
}

.news h2 {
  font-size: clamp(34px, 5vw, 72px);
  letter-spacing: -.03em;
  line-height: 1;
  font-weight: 700;
  max-width: 15ch;
  text-wrap: balance;
  margin-bottom: 22px;
}

.news__lead {
  font-size: clamp(15px, 1.5vw, 18px);
  color: #cfccc4;
  max-width: 62ch;
  text-wrap: pretty;
}

/* centered header: logo · badge · headline */
.news__head {
  text-align: center;
  padding-top: 12px;
}

.news__logo {
  width: clamp(72px, 8vw, 96px);
  height: auto;
  border-radius: 50%;
  margin: 0 auto 16px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / .12), 0 16px 36px -14px rgb(0 0 0 / .6);
}

.news__head .news__badge { display: block; margin-bottom: 14px; }

.news__head h2 {
  width: 100%;
  max-width: 20ch;
  margin: 0 auto;
}

/* wide façade image */
.news__wide {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(28px, 4vw, 48px);
  aspect-ratio: 2.1 / 1;
}

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

.news__wide figcaption,
.news__interior figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgb(19 18 16 / .6);
  color: var(--panel-ink);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10px;
}

/* lead (left) + facts (right) under the wide image */
.news__split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(30px, 4vw, 48px);
}

@media (max-width: 820px) { .news__split { grid-template-columns: 1fr; gap: 30px; } }

.news__lead {
  font-size: clamp(15px, 1.6vw, 19px);
  text-wrap: pretty;
}

.news__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 clamp(20px, 3vw, 40px);
  border-top: 1px solid rgb(244 242 236 / .18);
}

.news__facts div {
  padding: 14px 0;
  border-bottom: 1px solid rgb(244 242 236 / .12);
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.news__facts dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--panel-faint);
}
.news__facts dd { font-weight: 600; font-size: 15px; }
.news__facts dd a { color: #ff8a63; text-decoration: none; border-bottom: 1px solid rgb(255 138 99 / .4); }
.news__facts dd a:hover { border-color: #ff8a63; }

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

/* interior image + video, stacked full-width */
.news__interior {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: clamp(30px, 4vw, 48px);
  aspect-ratio: 2.1 / 1;
}

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

.news__video {
  margin-top: clamp(16px, 2.5vw, 24px);
  border-radius: var(--radius-lg);
}

.press {
  margin-top: clamp(34px, 5vw, 60px);
  border-top: 1px solid rgb(244 242 236 / .25);
  padding-top: 26px;
  text-align: center;
}

.press__row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px auto 6px;
}

.press__chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 16px 9px 11px;
  border: 1px solid rgb(244 242 236 / .16);
  border-radius: 999px;
  background: rgb(244 242 236 / .04);
  font-size: 13.5px;
  font-weight: 600;
  color: #e7e4dc;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
}

.press__chip img {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  object-fit: contain;
  background: #fff;
  padding: 1px;
}

.press__chip:hover {
  background: rgb(244 242 236 / .1);
  border-color: rgb(244 242 236 / .4);
  color: #fff;
}

.press__video {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #000;
}

.press__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- history ---------- */

.history__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

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

.history__prose p {
  color: var(--ink-soft);
  font-size: clamp(15px, 1.5vw, 17.5px);
  margin-bottom: 1.2em;
  text-wrap: pretty;
}

.history__prose p strong { color: var(--ink); }

.timeline { list-style: none; }

.timeline li {
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}

.timeline li:first-child { border-top: 1px solid var(--ink); }

.timeline .year {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  padding-top: 3px;
}

.timeline h3 {
  font-size: 16.5px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-bottom: 3px;
}

.timeline p { font-size: 14.5px; color: var(--ink-soft); text-wrap: pretty; }

/* ---------- directory ---------- */

.dir__tools {
  position: sticky;
  top: 84px;
  z-index: 50;
  background: color-mix(in srgb, var(--paper) 85%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0 16px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}

.dir__search {
  width: 100%;
  font-family: var(--sans);
  font-size: 17px;
  padding: 15px 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  margin-bottom: 14px;
}

.dir__search:focus {
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgb(19 18 16 / .06);
}

.dir__search::placeholder { color: var(--ink-faint); }

.dir__chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  font-family: var(--sans);
  font-size: 12.5px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .18s;
}

.chip:hover { border-color: var(--ink); color: var(--ink); }

.chip.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}

.dir__count { margin-bottom: 18px; }

.dir__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, 1fr));
  gap: 10px;
}

.store {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 16px 18px 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  min-height: 130px;
  transition: border-color .2s, translate .25s ease, box-shadow .25s ease;
}

.store__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.store__logo {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.store__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7px;
}

.store__logo--mono {
  font-family: var(--mono);
  font-size: 15px;
  letter-spacing: 0;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 8%, #fff);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
}

.store:hover {
  border-color: var(--ink);
  translate: 0 -3px;
  box-shadow: 0 14px 30px -18px rgb(19 18 16 / .25);
}

.store__body { display: flex; flex-direction: column; gap: 5px; }

.store h3 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1.25;
}

.store__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 7px;
  flex-wrap: wrap;
}

.store__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  font-weight: 700;
  color: var(--ink);
}

.store__rating .star { color: #e8a020; font-size: 12px; }

.store__rc {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 400;
  color: var(--ink-faint);
}

.store__map {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 1px;
  transition: color .18s, border-color .18s;
}

.store__map:hover { color: var(--accent); border-color: var(--accent); }

.store .cat {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.store .badge {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  border-radius: 999px;
  padding: 3px 9px;
  width: fit-content;
}

.store--new { border-color: color-mix(in srgb, var(--accent) 50%, var(--line)); }

.dir__note {
  margin-top: 26px;
  font-size: 13px;
  color: var(--ink-faint);
  max-width: 70ch;
  text-wrap: pretty;
}

.dir__intro {
  max-width: 60ch;
  font-size: clamp(15px, 1.5vw, 18px);
  color: var(--ink-soft);
  margin: -14px 0 30px;
  text-wrap: pretty;
}

.dir__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  text-decoration: none;
  font-size: clamp(16px, 1.7vw, 20px);
  font-weight: 600;
  color: var(--paper);
  background: var(--ink);
  padding: 16px 28px;
  border-radius: 999px;
  transition: background .2s, gap .2s;
}

.dir__cta:hover { background: var(--accent); gap: 18px; }

.dir__cta-arrow { font-size: 18px; }

/* full directory page: clear the floating nav */
.dir-page { padding-top: clamp(120px, 16vh, 170px); }

/* ---------- faq ---------- */

.faq-page { padding-top: clamp(120px, 16vh, 170px); }

.faq__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 30px;
}

.faq__list { border-top: 1px solid var(--ink); }

.faq { border-bottom: 1px solid var(--line); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 4px;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: var(--sans);
  font-size: clamp(15.5px, 1.9vw, 21px);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  transition: color .2s;
  list-style: none;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q > span:first-child { min-width: 0; }
.faq__q:hover { color: var(--accent); }

.faq__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  font-weight: 400;
  color: var(--ink-soft);
  transition: transform .3s cubic-bezier(.16,1,.3,1), background .2s, color .2s;
}

.faq[open] .faq__icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.faq__a > p {
  margin: 0;
  max-width: 74ch;
  color: var(--ink-soft);
  font-size: clamp(14.5px, 1.5vw, 17px);
  line-height: 1.6;
  text-wrap: pretty;
  padding-right: 40px;
}

.faq[open] .faq__a > p { padding-bottom: 24px; }

/* ---------- visit ---------- */

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}

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

.visit__list { list-style: none; }

.visit__list li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
}

.visit__list li:first-child { border-top: 1px solid var(--ink); }

.visit__list .k { color: var(--ink-faint); }

.visit__list a { color: var(--ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--line); }
.visit__list a:hover { border-color: var(--ink); }

.visit__figure {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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

.nearby { margin-top: 34px; }

.nearby ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.nearby li {
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  color: var(--ink-soft);
}

/* ---------- footer ---------- */

.footer {
  max-width: 1440px;
  margin: clamp(80px, 12vh, 150px) auto 0;
  padding: 0 var(--pad) 40px;
}

.footer__rule { border-top: 1px solid var(--ink); padding-top: 40px; }

.footer__cols {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: clamp(24px, 4vw, 56px);
  margin-bottom: clamp(30px, 5vw, 56px);
}

@media (max-width: 860px) { .footer__cols { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer__cols { grid-template-columns: 1fr; } }

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -.02em;
  line-height: 1.05;
  color: var(--ink);
}

.footer__blurb {
  margin-top: 18px;
  max-width: 42ch;
  font-size: 14px;
  color: var(--ink-soft);
  text-wrap: pretty;
}

.footer__group { display: flex; flex-direction: column; gap: 10px; }

.footer__group .mono { margin-bottom: 6px; }

.footer__group a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 14.5px;
  font-weight: 500;
  width: fit-content;
  transition: color .18s;
}

.footer__group a:hover { color: var(--accent); }

.footer__group p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}

.footer__word {
  font-size: clamp(40px, 12vw, 190px);
  font-weight: 700;
  letter-spacing: -.04em;
  line-height: 1;
  color: color-mix(in srgb, var(--ink) 8%, var(--paper));
  user-select: none;
  margin: 6px 0 24px;
  white-space: nowrap;
  overflow: hidden;
}

.footer__meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

/* ---------- reveal ---------- */

.reveal {
  opacity: 0;
  translate: 0 26px;
  transition: opacity .8s cubic-bezier(.16,1,.3,1), translate .8s cubic-bezier(.16,1,.3,1);
}

.reveal.is-in { opacity: 1; translate: 0 0; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; translate: none; transition: none; }
  .hero__figure img { animation: none; scale: 1; }
  html { scroll-behavior: auto; }
}

/* ---------- mobile refinements ---------- */

@media (max-width: 720px) {
  .dir__grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .store { min-height: 118px; padding: 13px 13px 14px; border-radius: 14px; }
  .store__logo { width: 40px; height: 40px; border-radius: 10px; }
  .store h3 { font-size: 14.5px; }
  .dir__tools { top: 74px; }
  .news__panel { border-radius: 20px; }
}

@media (max-width: 480px) {
  :root { --pad: 18px; }
  .dir__grid { grid-template-columns: 1fr; }
  .store { min-height: 0; }
  .dir__chips, .faq__filter { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding-bottom: 4px; }
  .dir__chips::-webkit-scrollbar, .faq__filter::-webkit-scrollbar { display: none; }
  .chip { flex: 0 0 auto; }
  .hero__foot { align-items: flex-start; flex-direction: column; gap: 16px; }
  .footer__word { font-size: 44px; }
  .news__facts { grid-template-columns: 1fr; }
  .faq__q { font-size: 15px; padding: 20px 2px; gap: 14px; }
}

/* hide image captions + tidy nav on mobile */
@media (max-width: 760px) {
  .news__wide figcaption,
  .news__interior figcaption { display: none; }
}

@media (max-width: 560px) {
  .nav { top: 12px; gap: 6px; padding: 6px 6px 6px 10px; }
  .nav__brand { font-size: 12.5px; padding: 5px 2px; gap: 8px; }
}

/* ---------- article page ---------- */

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(110px, 15vh, 160px) var(--pad) 0;
}

.crumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 30px;
}
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--accent); }

.article__head { border-top: 1px solid var(--ink); padding-top: 22px; }
.article__kicker { color: var(--accent); }

.article h1 {
  font-size: clamp(32px, 5.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -.03em;
  font-weight: 700;
  margin: 16px 0 20px;
  text-wrap: balance;
}

.article__dek {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: var(--ink-soft);
  text-wrap: pretty;
  margin-bottom: 24px;
}

.article__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 14px;
  color: var(--ink-faint);
  padding-bottom: 4px;
}
.article__meta strong { color: var(--ink); font-weight: 600; }

.article__hero {
  margin: clamp(28px, 4vw, 44px) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.article__hero img { width: 100%; display: block; }
.article__hero figcaption,
.article__inline-img figcaption {
  margin-top: 10px;
  color: var(--ink-faint);
  font-size: 10px;
}

.tldr {
  background: color-mix(in srgb, var(--accent) 6%, var(--paper));
  border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
  border-radius: var(--radius-md);
  padding: clamp(20px, 3vw, 30px);
  margin-bottom: clamp(30px, 4vw, 46px);
}
.tldr .mono { color: var(--accent); display: block; margin-bottom: 14px; }
.tldr ul { list-style: none; display: grid; gap: 10px; }
.tldr li { font-size: 15.5px; color: var(--ink-soft); padding-left: 18px; position: relative; text-wrap: pretty; }
.tldr li::before { content: "—"; position: absolute; left: 0; color: var(--accent); }
.tldr strong { color: var(--ink); font-weight: 700; }

.article__body p {
  font-size: clamp(16px, 1.7vw, 18.5px);
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 1.3em;
  text-wrap: pretty;
}
.article__body p strong { color: var(--ink); }

.article__body h2 {
  font-size: clamp(22px, 3vw, 30px);
  letter-spacing: -.02em;
  line-height: 1.15;
  font-weight: 700;
  color: var(--ink);
  margin: clamp(34px, 4vw, 48px) 0 14px;
  text-wrap: balance;
}

.pullquote {
  margin: clamp(30px, 4vw, 44px) 0;
  padding: 4px 0 4px 26px;
  border-left: 3px solid var(--accent);
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: -.02em;
  color: var(--ink);
  text-wrap: pretty;
}
.pullquote cite {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-faint);
}

.article__inline-img {
  margin: clamp(30px, 4vw, 44px) 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.article__inline-img img { width: 100%; display: block; border-radius: var(--radius-lg); }
.article__inline-img figcaption { padding: 0 2px; }

.article__faq {
  margin-top: clamp(44px, 6vw, 70px);
  border-top: 1px solid var(--ink);
  padding-top: 8px;
}
.article__faq h2 {
  font-size: clamp(24px, 3.4vw, 36px);
  letter-spacing: -.02em;
  font-weight: 700;
  margin: 22px 0 8px;
}
.article__faq .faq__list, .article__faq { }
.article__faq .faq:first-of-type { border-top: 1px solid var(--line); }

.sources {
  margin-top: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.sources .mono { color: var(--ink-faint); }
.sources ul { list-style: none; display: grid; gap: 10px; margin-top: 14px; }
.sources a { color: var(--ink-soft); font-size: 14.5px; text-decoration: none; border-bottom: 1px solid var(--line); padding-bottom: 1px; }
.sources a:hover { color: var(--accent); border-color: var(--accent); }

.article__more {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px 28px;
  margin-top: clamp(40px, 5vw, 60px);
}
.article__back { text-decoration: none; font-weight: 600; color: var(--ink-soft); font-size: 15px; }
.article__back:hover { color: var(--accent); }

.news__article-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: clamp(24px, 3.5vw, 36px);
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgb(244 242 236 / .25);
  background: rgb(244 242 236 / .05);
  color: var(--panel-ink);
  text-decoration: none;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  transition: background .2s, border-color .2s, gap .2s;
}
.news__article-cta:hover { background: color-mix(in srgb, #ff8a63 16%, transparent); border-color: #ff8a63; gap: 18px; }


.news__ctas { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Chipotle paper-menu (scoped to the menu sheet) ---------- */

.chipmenu {
  background: #e9e0d0;
  padding: clamp(96px, 13vh, 140px) 16px 60px;
  min-height: 100vh;
}

.sheet {
  max-width: 860px;
  margin: 0 auto;
  background: #fffdf8;
  border-radius: 8px;
  padding: clamp(30px, 5vw, 66px) clamp(22px, 5vw, 74px);
  box-shadow: 0 1px 0 rgb(0 0 0 / .04), 0 40px 90px -40px rgb(50 32 12 / .45);
  font-family: "Fira Sans", -apple-system, sans-serif;
  color: #211d18;
  --chip-red: #a81612;
  --chip-mut: #6f675b;
  --chip-line: #ddd2bd;
}

/* official Chipotle logo */
.sheet__logo { text-align: center; }
.sheet__mark { display: block; margin: 0 auto; width: min(420px, 80%); height: auto; }
.sheet__loc {
  margin-top: 16px;
  font-size: 13px;
  letter-spacing: .04em;
  color: var(--chip-mut);
}

/* section divider with flanking rules */
.sheet__sec {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: clamp(38px, 5vw, 54px) 0 clamp(22px, 3vw, 30px);
}
.sheet__sec::before, .sheet__sec::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--chip-line);
}
.sheet__sec span {
  font-size: clamp(15px, 2.1vw, 20px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #211d18;
  white-space: nowrap;
}

/* dishes (burrito/bowl/tacos/salad) */
.dishes { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 38px) clamp(28px, 5vw, 56px); }
@media (max-width: 560px) { .dishes { grid-template-columns: 1fr; } }
.dish { text-align: center; }
.ico { width: auto; height: 42px; margin: 0 auto 12px; display: block; }
.dish h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.dish p { font-size: 13px; line-height: 1.5; color: var(--chip-mut); margin-top: 5px; text-wrap: pretty; }
.sheet__hint {
  text-align: center;
  font-size: 13px;
  color: var(--chip-mut);
  margin-top: clamp(22px, 3vw, 30px);
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: pretty;
}

/* proteins */
.proteins { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 3vw, 26px) clamp(28px, 5vw, 56px); }
@media (max-width: 560px) { .proteins { grid-template-columns: 1fr; } }
.prot { text-align: center; }
.prot h3 {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.prot .p { color: var(--chip-red); margin-left: 8px; }
.prot p { font-size: 13px; line-height: 1.5; color: var(--chip-mut); margin-top: 4px; text-wrap: pretty; }

/* what goes inside */
.inside { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 5vw, 56px); }
@media (max-width: 560px) { .inside { grid-template-columns: 1fr; } }
.inside ul { list-style: none; }
.inside li {
  font-size: 14.5px;
  font-weight: 600;
  padding: 7px 0;
  border-bottom: 1px dotted var(--chip-line);
}

/* extras + drinks */
.sides { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(28px, 5vw, 56px); }
@media (max-width: 560px) { .sides { grid-template-columns: 1fr; } }
.sides ul { list-style: none; }
.sides li {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  font-size: 14.5px;
  font-weight: 600;
  padding: 8px 0;
  border-bottom: 1px dotted var(--chip-line);
}
.sides .p { color: var(--chip-red); white-space: nowrap; }
.star { color: var(--chip-red); }

/* footer notes */
.sheet__notes {
  margin-top: clamp(34px, 5vw, 48px);
  border-top: 2px solid #211d18;
  padding-top: 22px;
}
.sheet__notes p { font-size: 14px; line-height: 1.55; color: #3f3a32; margin-bottom: 11px; }
.sheet__notes strong { color: #211d18; }
.sheet__fine { font-size: 11.5px; color: #8a8175; margin-top: 16px; }

/* below-sheet chrome */
.chipmenu__foot { max-width: 860px; margin: 40px auto 0; }
.chipmenu__foot .sources { border-top: 1px solid rgb(33 29 24 / .18); }

/* ---------- business (tienda) directory page ---------- */

.biz {
  max-width: 880px;
  margin: 0 auto;
  padding: clamp(110px, 15vh, 165px) var(--pad) 0;
}

.biz__head {
  display: flex;
  align-items: center;
  gap: 20px;
  border-top: 1px solid var(--ink);
  padding-top: 24px;
}
.biz__logo {
  width: clamp(60px, 9vw, 78px);
  height: auto;
  border-radius: 16px;
  border: 1px solid var(--line);
  flex-shrink: 0;
}
.biz__cat { display: block; color: var(--ink-faint); }
.biz__head h1 {
  font-size: clamp(28px, 4.6vw, 46px);
  letter-spacing: -.03em;
  line-height: 1.02;
  font-weight: 700;
  margin: 7px 0 10px;
}
.biz__flags { display: flex; flex-wrap: wrap; gap: 8px; }
.biz__badge, .biz__tag {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}
.biz__badge { color: var(--accent); border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent); }
.biz__tag { color: #2e7d46; border: 1px solid color-mix(in srgb, #2e7d46 35%, transparent); }

/* action buttons */
.biz__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: clamp(22px, 3vw, 30px) 0; }
.biz__act {
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 11px 20px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  transition: border-color .18s, background .18s;
}
.biz__act:hover { border-color: var(--ink); }
.biz__act--primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.biz__act--primary:hover { background: var(--accent); border-color: var(--accent); }

/* spec sheet */
.biz__spec { border-top: 1px solid var(--line); }
.biz__spec > div {
  display: grid;
  grid-template-columns: 190px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) { .biz__spec > div { grid-template-columns: 1fr; gap: 3px; } }
.biz__spec dt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-top: 2px;
}
.biz__spec dd { font-size: 15.5px; color: var(--ink); font-weight: 500; text-wrap: pretty; }
.biz__spec dd a { color: var(--accent); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent) 35%, transparent); }
.biz__spec dd a:hover { border-color: var(--accent); }
.biz__mut { color: var(--ink-faint); font-weight: 400; font-size: 13.5px; }
.biz__pr { color: var(--ink-faint); }

/* two-panel row: hours + amenities */
.biz__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 48px);
  margin-top: clamp(40px, 5vw, 60px);
}
@media (max-width: 640px) { .biz__cols { grid-template-columns: 1fr; gap: 34px; } }
.biz__panel h2,
.biz__about h2 {
  font-size: clamp(19px, 2.4vw, 24px);
  letter-spacing: -.02em;
  font-weight: 700;
  border-top: 1px solid var(--ink);
  padding-top: 14px;
  margin-bottom: 14px;
  scroll-margin-top: 96px;
}

.biz__hours { width: 100%; border-collapse: collapse; }
.biz__hours th, .biz__hours td {
  text-align: left;
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14.5px;
}
.biz__hours th { font-weight: 500; color: var(--ink-soft); }
.biz__hours td { text-align: right; font-weight: 600; font-variant-numeric: tabular-nums; }
.biz__note { margin-top: 12px; font-size: 12.5px; color: var(--ink-faint); text-wrap: pretty; }

.biz__amen { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; }
.biz__amen li {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
}

.biz__about { margin-top: clamp(40px, 5vw, 60px); }
.biz__about p { font-size: 16px; line-height: 1.6; color: var(--ink-soft); max-width: 72ch; text-wrap: pretty; }

.biz .article__faq { margin-top: clamp(44px, 6vw, 66px); scroll-margin-top: 96px; }

/* directory card that links to a business page */
.store--link { text-decoration: none; color: inherit; cursor: pointer; }
.store--link:hover { border-color: var(--ink); }
.store__view {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* map embed + hours fallback + rating tag + monogram logo */
.biz__map { border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 10; }
.biz__map iframe { width: 100%; height: 100%; border: 0; display: block; }
.biz__hours-fallback { font-size: 15px; color: var(--ink-soft); line-height: 1.5; }
.biz__hours-fallback strong { color: var(--ink); }
.biz__tag--star { color: #b8860b; border-color: color-mix(in srgb, #b8860b 40%, transparent); }
.biz__logo--mono {
  width: clamp(60px, 9vw, 78px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-family: var(--mono);
  font-size: 20px;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 8%, #fff);
  border-color: color-mix(in srgb, var(--accent) 22%, var(--line));
}
.biz__panel--full { margin-top: clamp(40px, 5vw, 60px); }

/* menu — complementos two-col + notes */
.sheet__hint--sm { margin-top: -6px; margin-bottom: 18px; }
.sheet__hint--sm .mono { color: var(--chip-red, #a81612); }
.sides__note { font-weight: 400; color: var(--chip-mut, #6f675b); font-size: 12.5px; }
