/* ==========================================================================
   Pumbah's Tacos & Burgers - preview build by NH Media Web
   Two self-hosted variable faces, no external requests of any kind.
   ========================================================================== */

@font-face {
  font-family: 'Archivo';
  src: url('fonts/archivo-latin-var.woff2') format('woff2');
  font-weight: 400 900;
  font-stretch: 62% 125%;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/newsreader-latin-var.woff2') format('woff2');
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mesquite:   #221A15;
  --mesquite-2: #1A1310;
  --mesquite-3: #2E241D;
  --bone:       #F8F3E9;
  --bone-2:     #F1E8D8;
  --bone-3:     #E4D7C0;
  --card:       #FFFCF6;
  --ink:        #241C18;
  --ink-2:      #55453B;
  --ink-3:      #77655A;
  --chile:      #C4392B;
  --chile-dp:   #9E2B20;
  --chile-lt:   #F0917F;
  --masa:       #E9B75A;
  --masa-dp:    #B07F22;
  --tomatillo:  #5E8347;
  --tomatillo-l:#9CC182;
  --dim:        #A08D7E;
  --rule:       #D9C9AF;
  --rule-dk:    #3E322A;

  --disp: 'Archivo', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --body: 'Newsreader', 'Iowan Old Style', Georgia, 'Times New Roman', serif;

  --shell: 1200px;
  --pad: clamp(20px, 5vw, 52px);
}

/* ------------------------------------------------------------------ reset */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bone);
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { margin: 0; font-family: var(--disp); line-height: 1.06; letter-spacing: -.015em; }
p, ul, table { margin: 0; }
ul { padding: 0; list-style: none; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding-inline: var(--pad); }
.vh {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--mesquite); color: var(--bone); padding: 12px 18px;
  font-family: var(--disp); font-weight: 600;
}
.skip:focus { left: 8px; top: 8px; }

:focus-visible {
  outline: 3px solid var(--masa);
  outline-offset: 3px;
}

.ext { font-size: .82em; margin-left: .18em; }

/* ----------------------------------------------------------- reveal system */
.rv { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.22,.8,.3,1); }
.rv.in-view { opacity: 1; transform: none; }
.cards .rv:nth-child(2) { transition-delay: .08s; }
.cards .rv:nth-child(3) { transition-delay: .16s; }
.cards .rv:nth-child(4) { transition-delay: .24s; }
.rev-grid .rv:nth-child(2) { transition-delay: .06s; }
.rev-grid .rv:nth-child(3) { transition-delay: .12s; }
.rev-grid .rv:nth-child(4) { transition-delay: .18s; }
.rev-grid .rv:nth-child(5) { transition-delay: .24s; }
.rev-grid .rv:nth-child(6) { transition-delay: .30s; }
.town-grid .rv:nth-child(2) { transition-delay: .09s; }
.town-grid .rv:nth-child(3) { transition-delay: .18s; }

/* --------------------------------------------------------- editorial label */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-size: 13px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--chile); margin-bottom: 16px;
}
.label::before { content: ''; width: 30px; height: 2px; background: currentColor; }
.label-dk { color: var(--chile-dp); }

/* ------------------------------------------------------- the checker device */
.checker {
  height: 22px;
  background-image: repeating-conic-gradient(var(--chile) 0% 25%, var(--bone-2) 0% 50%);
  background-size: 22px 22px;
  background-position: 0 0;
}
.checker-hero { position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; }
.checker-cta { position: absolute; left: 0; right: 0; top: 0; }

/* --------------------------------------------------------- preview banner */
.pbar {
  background: var(--mesquite-2);
  color: var(--bone-2);
  border-bottom: 2px solid var(--chile);
  font-family: var(--disp);
}
.pbar-in {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 10px 24px; padding-block: 11px;
}
.pbar-txt { font-size: 14.5px; line-height: 1.45; max-width: 62ch; }
.pbar-acts { display: flex; flex-wrap: wrap; align-items: center; gap: 10px 18px; font-size: 14px; }
.pbar-btn {
  background: var(--chile); color: #FFF8EE; text-decoration: none;
  padding: 7px 16px; border-radius: 999px; font-weight: 700; white-space: nowrap;
}
.pbar-btn:hover { background: var(--chile-dp); }
.pbar-mail { color: var(--masa); text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }

/* ------------------------------------------------------------------ header */
.hdr {
  position: sticky; top: 0; z-index: 60;
  background: rgba(34, 26, 21, .94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule-dk);
}
.hdr-in { display: flex; align-items: center; gap: 20px; padding-block: 12px; }
.brand { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-right: auto; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-txt { display: block; line-height: 1.05; }
.brand-name {
  display: block; font-family: var(--disp); font-weight: 800;
  font-stretch: 88%; font-size: 22px; color: var(--bone); letter-spacing: -.01em;
}
.brand-sub {
  display: block; font-family: var(--disp); font-weight: 600; font-size: 10.5px;
  letter-spacing: .19em; text-transform: uppercase; color: var(--masa); margin-top: 3px;
}
.nav { display: flex; gap: 26px; }
.nav a {
  font-family: var(--disp); font-size: 14px; font-weight: 600; letter-spacing: .04em;
  color: var(--bone-3); text-decoration: none; padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.nav a:hover { color: var(--bone); border-bottom-color: var(--chile-lt); }
.hdr-call {
  display: block; flex: none; white-space: nowrap;
  text-decoration: none; text-align: right;
  background: var(--chile); border-radius: 10px; padding: 8px 16px;
}
.hdr-call:hover { background: var(--chile-dp); }
.hdr-call-k {
  display: block; font-family: var(--disp); font-size: 10px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: #FFF6EC;
}
.hdr-call-n { display: block; font-family: var(--disp); font-size: 16px; font-weight: 800; color: #FFF8EE; }

/* -------------------------------------------------------------------- hero */
.hero {
  position: relative; overflow: hidden;
  min-height: min(88vh, 780px);
  display: flex; align-items: center;
  background: var(--mesquite);
}
.hero-img {
  position: absolute; inset: -3%;
  background: var(--mesquite) url('assets/img/own-hero-asada-quesotacos.jpg') center/cover no-repeat;
  animation: kb 28s ease-in-out infinite alternate;
}
@keyframes kb {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to   { transform: scale(1.11) translate3d(-1.4%, -1.6%, 0); }
}
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(103deg, rgba(20,14,11,.95) 0%, rgba(20,14,11,.88) 38%, rgba(20,14,11,.42) 68%, rgba(20,14,11,.30) 100%),
    linear-gradient(to top, rgba(20,14,11,.72) 0%, rgba(20,14,11,0) 42%);
}
.hero-in { position: relative; z-index: 2; padding-block: clamp(58px, 11vh, 108px); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--disp); font-size: 13px; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--masa);
  margin-bottom: 22px;
}
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--chile); flex: none; }
.hero-h {
  color: #FFFBF2;
  font-size: clamp(42px, 8.4vw, 78px);
  font-weight: 800; font-stretch: 82%;
  max-width: 15ch;
  text-shadow: 0 3px 24px rgba(0,0,0,.4);
}
.hero-h .w { display: inline-block; opacity: 0; animation: rise .75s cubic-bezier(.2,.75,.3,1) forwards; }
.hero-h .w:nth-child(1) { animation-delay: .10s; }
.hero-h .w:nth-child(2) { animation-delay: .18s; }
.hero-h .w:nth-child(3) { animation-delay: .26s; }
.hero-h .w:nth-child(4) { animation-delay: .34s; }
.hero-h .w:nth-child(5) { animation-delay: .42s; }
@keyframes rise { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }
.hero-p {
  color: #F0E6D6; max-width: 48ch; margin-top: 22px;
  font-size: clamp(17px, 2.1vw, 20px); line-height: 1.62;
  text-shadow: 0 2px 14px rgba(0,0,0,.45);
}
.hero-acts { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--disp); font-weight: 700; font-size: 16px; letter-spacing: .01em;
  text-decoration: none; padding: 15px 26px; border-radius: 10px;
  transition: background .2s ease, transform .2s ease, color .2s ease;
}
.btn-hot { background: var(--chile); color: #FFF8EE; }
.btn-hot:hover { background: var(--chile-dp); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: #FFF6E7; border: 2px solid rgba(255,246,231,.55); }
.btn-ghost:hover { background: rgba(255,246,231,.12); border-color: #FFF6E7; transform: translateY(-2px); }

.hero-card {
  position: absolute; right: var(--pad); bottom: 78px; z-index: 4;
  display: flex; align-items: center; gap: 16px;
  background: rgba(255, 252, 246, .96);
  border-left: 5px solid var(--chile);
  border-radius: 4px 12px 12px 4px;
  padding: 16px 22px 16px 18px;
  box-shadow: 0 18px 44px rgba(0,0,0,.34);
  opacity: 0; animation: rise .8s cubic-bezier(.2,.75,.3,1) .78s forwards;
}
.hc-num { font-family: var(--disp); font-weight: 800; font-size: 42px; line-height: 1; color: var(--chile-dp); }
.hc-k { font-family: var(--disp); font-size: 13px; font-weight: 600; line-height: 1.4; color: var(--ink-2); }
.hc-k span { color: var(--ink-3); font-weight: 500; }

/* ------------------------------------------------------------ proof strip */
.strip {
  background: var(--chile); color: #FFF3E4; overflow: hidden;
  padding-block: 13px; border-bottom: 3px solid var(--chile-dp);
}
.strip-track {
  display: flex; align-items: center; gap: 26px; width: max-content;
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  letter-spacing: .13em; text-transform: uppercase; white-space: nowrap;
  animation: slide 34s linear infinite;
}
.strip-x { color: rgba(255,243,228,.5); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ----------------------------------------------------------------- kitchen */
.kitchen { background: var(--bone); padding-block: clamp(64px, 9vw, 108px); }
.k-grid {
  display: grid; grid-template-columns: 1fr 1.06fr; gap: clamp(34px, 5vw, 68px);
  align-items: center;
}
.k-h { font-size: clamp(32px, 4.4vw, 50px); font-weight: 800; font-stretch: 88%; max-width: 15ch; }
.k-p { margin-top: 20px; max-width: 44ch; color: var(--ink-2); }
.k-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.k-tags li {
  font-family: var(--disp); font-size: 12.5px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-2); background: var(--bone-2);
  border: 1px solid var(--rule); border-radius: 999px; padding: 7px 14px;
}
.k-shots { display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; gap: 14px; }
.k-fig { margin: 0; overflow: hidden; border-radius: 12px; box-shadow: 0 14px 34px rgba(52,32,20,.15); }
.k-fig-a { aspect-ratio: 4 / 5; }
.k-fig-b, .k-fig-c { aspect-ratio: 5 / 4; }
.k-fig img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.7,.3,1); }
.k-fig:hover img { transform: scale(1.05); }
.k-fig-a { grid-column: 1 / 2; grid-row: 1 / 3; }
.k-fig-b { grid-column: 2 / 3; grid-row: 1 / 2; }
.k-fig-c { grid-column: 2 / 3; grid-row: 2 / 3; }

/* -------------------------------------------------------- furniture slots */
.furniture { }
.slot {
  border: 2px dashed var(--chile-lt);
  background: rgba(196, 57, 43, .05);
  border-radius: 14px;
  padding: clamp(22px, 3.4vw, 34px);
  margin-top: clamp(40px, 6vw, 64px);
}
.slot-k {
  font-family: var(--disp); font-size: 11.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chile-dp);
}
.slot-t {
  font-family: var(--disp); font-weight: 800; font-stretch: 88%;
  font-size: clamp(20px, 3vw, 27px); color: var(--ink); margin-top: 8px; letter-spacing: .02em;
}
.slot-p { margin-top: 12px; max-width: 68ch; color: var(--ink-2); font-size: 17px; }

/* -------------------------------------------------------------------- menu */
.menu { background: var(--bone-2); padding-block: clamp(64px, 9vw, 108px); }
.sec-head { max-width: 62ch; margin-bottom: clamp(34px, 5vw, 54px); }
.sec-h { font-size: clamp(30px, 4.4vw, 50px); font-weight: 800; font-stretch: 88%; max-width: 18ch; }
.sec-h-lt { color: #FFFBF2; }
.sec-p { margin-top: 18px; color: var(--ink-2); max-width: 52ch; }
.sec-p-lt { color: #E3D4C0; }

.menu-grp {
  font-family: var(--disp); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 12px; margin-top: 44px; margin-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.menu-grp:first-of-type { margin-top: 0; }
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cards-two { grid-template-columns: repeat(2, 1fr); }
.cards-two .card img { height: auto; aspect-ratio: 16 / 10; }
.card {
  display: flex; flex-direction: column;
  background: var(--card); border-radius: 14px; overflow: hidden;
  box-shadow: 0 10px 26px rgba(52,32,20,.10);
  transition: transform .35s cubic-bezier(.2,.7,.3,1), box-shadow .35s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(52,32,20,.18); }
.card img { width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; }
.card h3 {
  margin-top: auto;
  font-size: 19px; font-weight: 700; font-stretch: 92%;
  padding: 16px 18px 18px; letter-spacing: -.005em;
}

.also { margin-top: clamp(40px, 5vw, 58px); padding-top: 30px; border-top: 1px solid var(--rule); }
.also-k {
  font-family: var(--disp); font-size: 13px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 16px;
}
.also-list { display: flex; flex-wrap: wrap; gap: 10px; }
.also-list li {
  font-family: var(--disp); font-size: 15px; font-weight: 600;
  background: var(--card); border: 1px solid var(--rule); border-radius: 999px;
  padding: 8px 17px; color: var(--ink);
}
.also-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: .13em; text-transform: uppercase;
  background: var(--chile); color: #FFF3E4; border-radius: 999px;
  padding: 3px 9px; margin-left: 7px; vertical-align: 2px;
}

/* ------------------------------------------------------------------- towns */
.towns { background: var(--mesquite); color: var(--bone-2); padding-block: clamp(64px, 9vw, 108px); }
.towns .label { color: var(--masa); }
.town-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.town {
  background: var(--mesquite-3); border: 1px solid var(--rule-dk);
  border-top: 4px solid var(--chile); border-radius: 12px;
  padding: clamp(22px, 3vw, 32px);
}
.town-k {
  font-family: var(--disp); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--masa);
}
.town-n {
  font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; font-stretch: 84%;
  color: #FFFBF2; margin-top: 8px;
}
.town-a { margin-top: 14px; color: var(--bone-3); font-size: 17px; line-height: 1.55; }
.town-tel {
  display: inline-block; margin-top: 14px;
  font-family: var(--disp); font-weight: 800; font-size: 23px;
  color: var(--masa); text-decoration: none;
  border-bottom: 2px solid rgba(233,183,90,.4);
}
.town-tel:hover { color: #F6D28F; border-bottom-color: #F6D28F; }
.town-h { margin-top: 18px; font-size: 15.5px; line-height: 1.55; color: var(--bone-3); }
.town-h-k {
  display: block; font-family: var(--disp); font-size: 10.5px; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase; color: var(--dim); margin-bottom: 4px;
}
.town-h-slot {
  border: 2px dashed rgba(240,145,127,.55); border-radius: 10px;
  padding: 12px 14px; background: rgba(196,57,43,.12); color: #F2DFD0;
}
.town-map {
  display: inline-block; margin-top: 18px;
  font-family: var(--disp); font-size: 14px; font-weight: 700;
  color: var(--bone-3); text-decoration: underline; text-underline-offset: 3px;
}
.town-map:hover { color: #FFFBF2; }

.order {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: 22px; margin-top: 26px;
  background: var(--mesquite-3); border: 1px solid var(--rule-dk); border-radius: 12px;
  padding: clamp(22px, 3vw, 30px) clamp(22px, 3vw, 34px);
}
.order-k {
  font-family: var(--disp); font-size: 11px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--masa);
}
.order-t { font-family: var(--disp); font-size: clamp(20px, 2.6vw, 26px); font-weight: 700; color: #FFFBF2; margin-top: 6px; }

/* ----------------------------------------------------------------- reviews */
.reviews { background: var(--bone); padding-block: clamp(64px, 9vw, 108px); }
.scores { display: flex; flex-wrap: wrap; gap: 18px; margin-bottom: clamp(34px, 4vw, 48px); }
.score {
  display: flex; align-items: center; gap: 18px;
  background: var(--card); border: 1px solid var(--rule); border-left: 5px solid var(--chile);
  border-radius: 4px 12px 12px 4px; padding: 18px 26px 18px 20px;
}
.score-n { font-family: var(--disp); font-weight: 800; font-size: 50px; line-height: 1; color: var(--chile-dp); }
.score-pc { font-size: 28px; }
.score-k { font-family: var(--disp); font-size: 14px; font-weight: 500; line-height: 1.45; color: var(--ink-2); }
.score-k strong { font-weight: 800; color: var(--ink); }
.score-k span { color: var(--ink-3); }

.pull {
  margin: 0 0 clamp(30px, 4vw, 44px);
  background: var(--mesquite); color: #FFFBF2;
  border-radius: 16px; padding: clamp(30px, 5vw, 52px);
  position: relative; overflow: hidden;
}
.pull::before {
  content: '\201C'; position: absolute; left: 18px; top: -26px;
  font-family: var(--disp); font-weight: 800; font-size: 170px;
  color: rgba(233,183,90,.2); line-height: 1;
}
.pull blockquote { margin: 0; position: relative; }
.pull blockquote p {
  font-family: var(--disp); font-weight: 500; font-stretch: 96%;
  font-size: clamp(21px, 3vw, 31px); line-height: 1.35; letter-spacing: -.01em;
  max-width: 26ch;
}
.pull figcaption {
  margin-top: 22px; font-family: var(--disp); font-weight: 700; font-size: 16px; color: var(--masa);
}
.pull-src { display: block; font-weight: 500; font-size: 13px; color: var(--dim); margin-top: 4px; letter-spacing: .05em; }

.rev-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rev {
  background: var(--card); border: 1px solid var(--rule); border-radius: 12px;
  padding: 26px 26px 22px; display: flex; flex-direction: column;
}
.rev > p:first-child { font-size: 17px; line-height: 1.62; color: var(--ink-2); flex: 1; }
.rev-by {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--rule);
  font-family: var(--disp); font-weight: 700; font-size: 15px; color: var(--ink);
}
.rev-by span {
  display: block; font-weight: 500; font-size: 12.5px; color: var(--ink-3);
  letter-spacing: .04em; margin-top: 2px;
}
.rev-note {
  margin-top: 26px; font-family: var(--disp); font-size: 15px; font-weight: 600; color: var(--ink-3);
}

/* ------------------------------------------------------------------- visit */
.visit { background: var(--bone-2); padding-block: clamp(64px, 9vw, 108px); }
.v-grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: clamp(32px, 5vw, 60px); }
.v-h { font-size: clamp(30px, 4.2vw, 46px); font-weight: 800; font-stretch: 88%; margin-bottom: 26px; }
.hrs { width: 100%; border-collapse: collapse; max-width: 460px; }
.hrs th, .hrs td { padding: 12px 0; border-bottom: 1px solid var(--rule); text-align: left; }
.hrs th {
  font-family: var(--disp); font-weight: 700; font-size: 15px;
  letter-spacing: .05em; color: var(--ink);
}
.hrs td { text-align: right; font-size: 16.5px; color: var(--ink-2); }
.hrs-note {
  margin-top: 18px; max-width: 52ch; font-size: 14.5px; line-height: 1.6; color: var(--ink-3);
  border-left: 3px dashed var(--chile-lt); padding-left: 14px;
}
.v-side { display: flex; flex-direction: column; gap: 16px; }
.v-box { background: var(--card); border: 1px solid var(--rule); border-radius: 12px; padding: 24px 26px; }
.v-k {
  font-family: var(--disp); font-size: 11.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--chile-dp); margin-bottom: 12px;
}
.v-a { font-size: 17px; color: var(--ink-2); }
.v-tel {
  display: inline-block; margin-top: 8px;
  font-family: var(--disp); font-weight: 800; font-size: 24px; color: var(--ink);
  text-decoration: none; border-bottom: 2px solid var(--chile);
}
.v-tel:hover { color: var(--chile-dp); }
.v-list li { position: relative; padding-left: 26px; margin-bottom: 9px; font-size: 16.5px; color: var(--ink-2); }
.v-list li:last-child { margin-bottom: 0; }
.v-list li::before {
  content: ''; position: absolute; left: 0; top: .62em;
  width: 11px; height: 11px; border-radius: 3px; background: var(--tomatillo);
}

/* --------------------------------------------------------------------- cta */
.cta { position: relative; background: var(--chile); color: #FFF6E9; padding-block: clamp(72px, 10vw, 112px) clamp(60px, 8vw, 92px); text-align: center; }
.cta-h { font-size: clamp(34px, 6vw, 62px); font-weight: 800; font-stretch: 84%; color: #FFFBF2; }
.cta-p { margin-top: 16px; font-size: 19px; color: #FFF6EC; }
.cta-nums { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 34px; margin-top: 34px; }
.cta-nums a {
  font-family: var(--disp); font-weight: 800; font-size: clamp(26px, 4vw, 38px);
  color: #FFFBF2; text-decoration: none; line-height: 1.15;
  border-bottom: 3px solid rgba(255,251,242,.35); padding-bottom: 4px;
}
.cta-nums a:hover { border-bottom-color: #FFFBF2; }
.cta-nums a span {
  display: block; font-size: 11.5px; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase; color: #FFF6EC; border: 0; margin-bottom: 2px;
}

/* --------------------------------------------------- about this preview -- */
.ap { background: var(--mesquite-2); color: var(--bone-3); border-top: 3px solid var(--chile); }
.ap-in { padding-block: clamp(46px, 6vw, 72px); max-width: 860px; }
.ap-h {
  font-size: clamp(22px, 3vw, 28px); font-weight: 800; font-stretch: 92%;
  color: #FFFBF2; margin-bottom: 20px;
}
.ap p { margin-bottom: 15px; font-size: 16.5px; line-height: 1.72; }
.ap p:last-child { margin-bottom: 0; }

/* ------------------------------------------------------------------ footer */
.foot { background: var(--mesquite); color: var(--bone-3); border-top: 1px solid var(--rule-dk); }
.foot-in {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 34px;
  padding-block: clamp(48px, 6vw, 70px);
}
.foot-mark { width: 52px; height: 52px; margin-bottom: 16px; }
.foot-name { font-family: var(--disp); font-weight: 800; font-size: 21px; color: #FFFBF2; }
.foot-sub { margin-top: 8px; font-size: 15.5px; line-height: 1.6; color: var(--dim); }
.foot-k {
  font-family: var(--disp); font-size: 11.5px; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; color: var(--masa); margin-bottom: 14px;
}
.foot-col a {
  display: block; font-size: 16px; color: var(--bone-3); text-decoration: none;
  padding-block: 5px;
}
.foot-col a:hover { color: #FFFBF2; text-decoration: underline; text-underline-offset: 3px; }
.foot-bar { border-top: 1px solid var(--rule-dk); padding-block: 18px; }
.foot-bar p { font-family: var(--disp); font-size: 13.5px; color: var(--dim); }

/* --------------------------------------------------------------------- fab */
.fab {
  position: fixed; right: 20px; bottom: 20px; z-index: 70;
  width: 58px; height: 58px; border-radius: 50%;
  display: none; align-items: center; justify-content: center;
  background: var(--chile); color: #FFF8EE;
  box-shadow: 0 10px 26px rgba(0,0,0,.34);
}
.fab::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid var(--chile); animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(1); opacity: .7; }
  70%  { transform: scale(1.5); opacity: 0; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ================================================================ responsive */
@media (max-width: 1040px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .rev-grid { grid-template-columns: repeat(2, 1fr); }
  .foot-in { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .k-grid, .v-grid { grid-template-columns: 1fr; }
  .town-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
  .hero-card { position: static; margin-top: 32px; display: inline-flex; }
  .hero { min-height: 0; }
  .hero-in { padding-block: 62px 78px; }
}
@media (max-width: 640px) {
  body { font-size: 17px; }
  .cards, .cards-two, .rev-grid { grid-template-columns: 1fr; }
    .foot-in { grid-template-columns: 1fr; gap: 26px; }
  .hdr-call-k { display: none; }
  .hdr-call { padding: 10px 13px; }
  .hdr-call-n { font-size: 14.5px; }
  .brand-sub { font-size: 9.5px; letter-spacing: .15em; }
  .brand-mark { width: 40px; height: 40px; }
  .brand-name { font-size: 19px; }
  .pbar-in { padding-block: 13px; }
  .pbar-txt { font-size: 13.5px; }
  .fab { display: flex; }
  .pull::before { left: 10px; top: -14px; font-size: 110px; }
  .k-shots { grid-template-columns: 1fr 1fr; }
  .k-fig-a { grid-column: 1 / 3; grid-row: 1 / 2; }
  .k-fig-b { grid-column: 1 / 2; grid-row: 2 / 3; }
  .k-fig-c { grid-column: 2 / 3; grid-row: 2 / 3; }
  .score { width: 100%; }
  .cta-nums { gap: 18px; }
}

/* ---------------------------------------------------------- reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rv { opacity: 1; transform: none; }
  .hero-h .w { opacity: 1; }
  .hero-card { opacity: 1; }
  .hero-img { animation: none; }
  .strip-track { animation: none; }
}

/* ------------------------------------------------------------------ 404 -- */
.err { padding-block: clamp(70px, 12vw, 130px); max-width: 720px; }
.err-acts { margin-top: 32px; }
.btn-dark { background: var(--mesquite); color: #FFF6E7; }
.btn-dark:hover { background: var(--mesquite-3); transform: translateY(-2px); }
.foot-bar-only { padding-block: 26px; }
.foot-bar-only p { font-family: var(--disp); font-size: 14px; color: var(--dim); }
