/* Elvie's Inn — Neon Dive */

/* Self-hosted fallbacks: Jost (variable) stands in for Futura off-Apple,
   Caveat stands in for Marker Felt. Apple devices use the real system faces. */
@font-face {
  font-family: "Jost";
  src: url("assets/fonts/jost-var.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Caveat";
  src: url("assets/fonts/caveat-500.woff2") format("woff2");
  font-weight: 500;
  font-display: swap;
}

:root {
  --bg: #1a1210;
  --surface: #241813;
  --wood: #7a4a2b;
  --wood-dark: #5e3820;
  --line: #3a2c24;
  --pink: #ff4f9a;
  --teal: #39d0c4;
  --cream: #ffe9c9;
  --dim: #b09a85;
  --display: "Futura", "Jost", "Century Gothic", "Trebuchet MS", sans-serif;
  --body: "Avenir Next", "Avenir", "Jost", "Futura", "Trebuchet MS", sans-serif;
  --hand: "Marker Felt", "Bradley Hand", "Caveat", cursive;
  --glow-pink: 0 0 6px rgba(255,79,154,.9), 0 0 16px rgba(255,79,154,.65), 0 0 42px rgba(255,79,154,.35);
  --glow-teal: 0 0 6px rgba(57,208,196,.85), 0 0 14px rgba(57,208,196,.5);
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
}
a { color: var(--teal); }
img { max-width: 100%; }
.wrap { max-width: 64rem; margin: 0 auto; padding: 0 1.15rem; }
:focus-visible { outline: 2px solid var(--teal); outline-offset: 3px; }
.nb { white-space: nowrap; }

/* responsive visibility — scoped media queries so authored display values
   (flex, grid) survive; nothing later in the cascade can leak through */
@media (max-width: 899.98px) { .only-desktop { display: none !important; } }
@media (min-width: 900px) { .only-mobile { display: none !important; } }

/* ================= DESKTOP HERO ================= */
.hero-desktop {
  position: relative;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem 6rem;
  background:
    linear-gradient(rgba(26,18,16,.58), rgba(26,18,16,.85)),
    repeating-linear-gradient(90deg,
      var(--wood) 0 64px,
      var(--wood-dark) 64px 66px,
      #6d4226 66px 130px,
      rgba(0,0,0,.5) 130px 132px);
  border-bottom: 4px solid var(--line);
  overflow: hidden;
}
.hero-desktop::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 25%, rgba(255,79,154,.10), transparent 65%);
  pointer-events: none;
}
.hero-desktop .eyebrow {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: .8rem;
  color: var(--cream);
  opacity: .85;
  position: relative; z-index: 1;
}
.hero-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 1.4rem;
  position: relative; z-index: 1;
}
.neon-board {
  padding: 2.4rem 3.2rem 2.6rem;
  background: rgba(20,13,11,.92);
  border: 2px solid #0c0806;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(0,0,0,.6), inset 0 0 36px rgba(0,0,0,.8);
}
.neon-board h1 {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: .95;
  font-size: clamp(3.4rem, 9vw, 7rem);
  color: var(--pink);
  text-shadow: var(--glow-pink);
}
.neon-board h1 .flicker { animation: flicker 6.5s infinite; }
@keyframes flicker {
  0%, 100% { opacity: 1; }
  3%  { opacity: .4; } 4% { opacity: 1; }
  52% { opacity: 1; } 53% { opacity: .55; } 54% { opacity: 1; }
  55% { opacity: .7; } 57% { opacity: 1; }
}
.neon-board .sub {
  display: block;
  margin-top: 1rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .34em;
  font-size: clamp(.8rem, 1.6vw, 1.05rem);
  color: var(--teal);
  text-shadow: var(--glow-teal);
}
.hero-row img.guy {
  height: clamp(220px, 26vw, 320px);
  width: auto;
  filter:
    drop-shadow(0 0 12px rgba(255,79,154,.35))
    drop-shadow(0 0 30px rgba(255,79,154,.2))
    drop-shadow(0 12px 16px rgba(0,0,0,.55));
  transform: rotate(-2deg);
}
.hero-desktop .hero-line {
  margin-top: 1.8rem;
  color: var(--cream);
  font-size: 1rem;
  letter-spacing: .08em;
  position: relative; z-index: 1;
}
.ticker {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  border-top: 1px solid var(--line);
  background: rgba(20,13,11,.88);
  overflow: hidden;
  padding: .75rem 0;
}
.ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .28em;
  font-size: .78rem;
  color: var(--dim);
  padding-right: .5rem;
}
.ticker span b { color: var(--pink); font-weight: 700; padding: 0 .6rem; }
@keyframes ticker { to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .neon-board h1 .flicker { animation: none; }
  .ticker-track { animation: none; }
  .status .dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ================= MOBILE HEADER ================= */
.hero-mobile {
  padding: 2.4rem 1.1rem 1.6rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse 100% 55% at 50% 0%, rgba(255,79,154,.07), transparent 70%),
    var(--bg);
}
.hero-mobile .top {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(2.3rem, 10.5vw, 3.6rem);
  letter-spacing: .05em;
  line-height: 1;
  color: var(--pink);
  text-shadow: var(--glow-pink);
  text-align: center;
}
.wordmark small {
  display: block;
  font-size: .32em;
  letter-spacing: .5em;
  margin-top: .35em;
  margin-right: -.5em;
  color: var(--teal);
  text-shadow: var(--glow-teal);
}
.hero-mobile img.guy {
  height: 108px;
  width: auto;
  filter:
    drop-shadow(0 0 8px rgba(255,79,154,.35))
    drop-shadow(0 6px 10px rgba(0,0,0,.5));
  transform: rotate(-2deg);
}
.hero-mobile .strap {
  margin-top: .9rem;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .7rem;
  font-family: var(--display);
}

/* ================= MOBILE BAR CARD ================= */
.m-wrap { max-width: 44rem; margin: 0 auto; padding: 0 1.1rem; }
.barcard {
  margin-top: 1.5rem;
  /* the room itself behind the hours — dark overlay keeps the text readable,
     the neons keep it warm */
  background:
    linear-gradient(rgba(26,18,16,.74), rgba(26,18,16,.86)),
    url("assets/img/hours-bg.jpg") center 30% / cover no-repeat,
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 22px 55px rgba(0,0,0,.5);
}
.barcard-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.3rem;
  border-bottom: 1px solid rgba(58,44,36,.8);
  background: rgba(26,18,16,.5);
}
.barcard-head h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .82rem;
  color: var(--dim);
}
.status {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .76rem;
  color: var(--teal);
}
.status .dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 10px rgba(57,208,196,.9);
  animation: pulse 2.4s ease-in-out infinite;
}
.status.closed { color: var(--pink); }
.status.closed .dot { background: var(--pink); box-shadow: 0 0 10px rgba(255,79,154,.9); }
@keyframes pulse { 50% { opacity: .45; } }
.barcard .big-hours {
  padding: 1.5rem 1.3rem 1.3rem;
  text-align: center;
}
.barcard .big-hours .time {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(2.1rem, 9.5vw, 2.9rem);
  color: var(--teal);
  text-shadow: var(--glow-teal);
  font-variant-numeric: tabular-nums;
}
.barcard .big-hours p { color: var(--dim); font-size: .9rem; margin-top: .4rem; }
.barcard .big-hours p.every { color: var(--cream); }
.barcard-foot {
  padding: .85rem 1.3rem 1rem;
  border-top: 1px solid var(--line);
  text-align: center;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .72rem;
  color: var(--cream);
  background: rgba(26,18,16,.5);
}
.barcard-foot b { color: var(--pink); font-weight: 700; }
.actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .7rem;
  margin-top: .9rem;
}
.action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .45rem;
  padding: 1rem .5rem .9rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  text-decoration: none;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .7rem;
  color: var(--cream);
}
.action .ic {
  width: 30px; height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  box-shadow: 0 0 12px rgba(57,208,196,.35), inset 0 0 8px rgba(57,208,196,.15);
  font-size: .95rem;
}
.action.hot .ic {
  border-color: var(--pink);
  color: var(--pink);
  box-shadow: 0 0 12px rgba(255,79,154,.4), inset 0 0 8px rgba(255,79,154,.18);
}

/* ================= SECTION HEADINGS ================= */
section.block { padding: 3.4rem 0 0; }
.sec-h {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: clamp(1.4rem, 5vw, 1.9rem);
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255,79,154,.65);
  text-align: center;
  margin-bottom: .8rem;
  text-wrap: balance;
}
.sec-sub { text-align: center; color: var(--dim); font-size: .93rem; max-width: 30rem; margin: 0 auto 1.8rem; }
.sec-center { text-align: center; }

/* ================= THE WALL — desktop polaroids ================= */
.polaroids {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem 1.2rem;
  max-width: 56rem;
  margin: 0 auto;
}
.pol {
  background: #efe6d8;
  padding: .55rem .55rem 2.6rem;
  border-radius: 2px;
  box-shadow: 0 10px 26px rgba(0,0,0,.55);
  position: relative;
}
.pol:nth-child(6n+1) { transform: rotate(-2.4deg); }
.pol:nth-child(6n+2) { transform: rotate(1.8deg); }
.pol:nth-child(6n+3) { transform: rotate(-1.2deg); }
.pol:nth-child(6n+4) { transform: rotate(2.6deg); }
.pol:nth-child(6n+5) { transform: rotate(-1.8deg); }
.pol:nth-child(6n+6) { transform: rotate(1.1deg); }
.pol:hover { transform: rotate(0deg) scale(1.03); transition: transform .25s ease; z-index: 2; }
.pol::before {
  content: "";
  position: absolute;
  top: -9px; left: 50%;
  transform: translateX(-50%) rotate(-2deg);
  width: 58px; height: 20px;
  background: rgba(255,233,201,.28);
  border-left: 1px dashed rgba(0,0,0,.15);
  border-right: 1px dashed rgba(0,0,0,.15);
}
.pol .shot {
  aspect-ratio: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: .6rem;
}
.pol .shot em {
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .55rem;
  color: rgba(255,233,201,.55);
}
.pol .cap {
  position: absolute;
  left: 0; right: 0; bottom: .55rem;
  text-align: center;
  font-family: var(--hand);
  color: #3b2a1c;
  font-size: 1.02rem;
}

/* ================= THE WALL — mobile swipe strip ================= */
.strip {
  display: flex;
  gap: .7rem;
  overflow-x: auto;
  padding: 0 1.1rem .8rem;
  scroll-snap-type: x mandatory;
}
.strip::-webkit-scrollbar { height: 6px; }
.strip::-webkit-scrollbar-thumb { background: var(--line); border-radius: 3px; }
.strip .ph {
  flex: 0 0 62%;
  max-width: 15rem;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--line);
  border-radius: 8px;
  scroll-snap-align: start;
  display: flex;
  align-items: flex-end;
  padding: .9rem;
  position: relative;
}
.strip .ph span {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .7rem;
}
.strip .ph em {
  position: absolute;
  top: .7rem; left: .9rem;
  font-style: normal;
  font-size: .56rem;
  letter-spacing: .2em;
  color: rgba(255,233,201,.4);
  text-transform: uppercase;
}
/* shared placeholder art */
.art-1 { background: radial-gradient(circle at 30% 30%, rgba(255,79,154,.4), rgba(26,18,16,.96) 70%); }
.art-2 { background: radial-gradient(circle at 70% 40%, rgba(57,208,196,.34), rgba(26,18,16,.96) 70%); }
.art-3 { background: linear-gradient(160deg, rgba(122,74,43,.8), rgba(26,18,16,.96) 75%); }
.art-4 { background: radial-gradient(circle at 50% 75%, rgba(255,79,154,.32), rgba(26,18,16,.96) 65%); }
.art-5 { background: linear-gradient(200deg, rgba(57,208,196,.3), rgba(26,18,16,.96) 70%); }
.art-6 { background: radial-gradient(circle at 25% 70%, rgba(122,74,43,.9), rgba(26,18,16,.96) 78%); }

/* ================= THIS MONTH'S POURS ================= */
.cadence {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .66rem;
  color: var(--teal);
  border: 1px dashed rgba(57,208,196,.55);
  border-radius: 999px;
  padding: .3rem .85rem;
  margin-top: .2rem;
}
.pours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 56rem;
  margin: 1.8rem auto 0;
}
@media (min-width: 900px) { .pours-grid { grid-template-columns: repeat(3, 1fr); } }
.pour {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.pour::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--wood);
  z-index: 1;
}
.pour:nth-child(3n+2)::before { background: var(--pink); box-shadow: 0 0 12px rgba(255,79,154,.7); }
.pour:nth-child(3n+3)::before { background: var(--teal); box-shadow: 0 0 12px rgba(57,208,196,.7); }
.pour-photo {
  aspect-ratio: 16 / 10;
  border-bottom: 1px solid var(--line);
  display: grid;
  place-items: center;
  position: relative;
  background:
    radial-gradient(ellipse 70% 80% at 50% 100%, rgba(122,74,43,.28), transparent 70%),
    rgba(26,18,16,.55);
}
.pour-photo svg { width: 34%; height: auto; overflow: visible; }
.pour-photo img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.pour-photo .coming {
  position: absolute;
  top: .7rem; left: .8rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: .55rem;
  color: rgba(255,233,201,.45);
}
.pour-body { padding: 1.3rem 1.4rem 1.4rem; }
.pour-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
}
.pour .name {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: 1.12rem;
  color: var(--cream);
}
.pour .price {
  font-family: var(--display);
  font-weight: 700;
  color: var(--teal);
  font-size: 1.05rem;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.pour .desc { color: var(--dim); font-size: .9rem; margin-top: .55rem; }
.pour .flag {
  display: inline-block;
  margin-top: .8rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .58rem;
  color: var(--pink);
}
.menu-note {
  text-align: center;
  margin-top: 1.6rem;
  font-family: var(--hand);
  font-size: 1.05rem;
  color: var(--cream);
}

/* ================= HOURS + FIND US ================= */
.info-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr;
  max-width: 56rem;
  margin: 0 auto;
}
@media (min-width: 900px) { .info-grid { grid-template-columns: 1fr 1fr; } }
.panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.7rem 1.5rem;
}
.panel h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 1rem;
  color: var(--teal);
  text-shadow: var(--glow-teal);
  margin-bottom: 1rem;
}
.panel .big-time {
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  letter-spacing: .04em;
  color: var(--teal);
  text-shadow: var(--glow-teal);
  font-variant-numeric: tabular-nums;
}
.panel .always {
  margin-top: .9rem;
  font-family: var(--hand);
  color: var(--cream);
  font-size: 1.05rem;
}
.panel address { font-style: normal; font-family: var(--display); text-transform: uppercase; letter-spacing: .07em; font-size: 1.08rem; line-height: 1.55; }
.panel .phone { display: inline-block; margin-top: .6rem; color: var(--teal); text-decoration: none; border-bottom: 1px dashed rgba(57,208,196,.5); }
.btn {
  display: inline-block;
  margin-top: 1.2rem;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .8rem;
  padding: .85rem 1.35rem;
  border-radius: 5px;
  text-decoration: none;
  color: var(--bg);
  background: var(--pink);
  border: 1px solid var(--pink);
  box-shadow: 0 0 16px rgba(255,79,154,.4);
}

/* ================= WHAT'S ON ================= */
.setlist {
  max-width: 42rem;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.9rem 1.6rem;
  position: relative;
  overflow: hidden;
}
.setlist .stamp {
  position: absolute;
  right: -3rem;
  top: 50%;
  transform: translateY(-50%) rotate(12deg);
  width: clamp(190px, 45%, 280px);
  opacity: .2;
  pointer-events: none;
}
.setlist h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 1.35rem;
  color: var(--pink);
  text-shadow: 0 0 16px rgba(255,79,154,.65);
  text-align: center;
  margin-bottom: 1.3rem;
  position: relative;
}
.track {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .2rem .9rem;
  padding: .8rem 0;
  border-bottom: 1px dotted var(--line);
  position: relative;
}
.track:last-of-type { border-bottom: 0; }
.track .no {
  font-family: var(--display);
  color: var(--teal);
  letter-spacing: .1em;
  font-size: .78rem;
  min-width: 2rem;
}
.track .t {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 1rem;
  flex: 1 1 55%;
}
.track .w {
  color: var(--dim);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-family: var(--display);
  margin-left: auto;
  white-space: nowrap;
}
.sample-tag {
  display: inline-block;
  font-size: .56rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--bg);
  background: var(--dim);
  border-radius: 2px;
  padding: .12rem .4rem;
  margin-left: .5rem;
  vertical-align: middle;
  font-family: var(--display);
}
.setlist .ig {
  margin-top: 1.3rem;
  text-align: center;
  font-family: var(--hand);
  font-size: 1.05rem;
  color: var(--cream);
  position: relative;
}
.setlist .ig a { color: var(--pink); text-shadow: 0 0 10px rgba(255,79,154,.5); }

/* ================= STAY IN THE LOOP ================= */
.loop {
  max-width: 56rem;
  margin: 0 auto;
  border: 1px dashed rgba(255,79,154,.5);
  border-radius: 10px;
  background: rgba(255,79,154,.045);
  padding: 2rem 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.8rem;
}
@media (min-width: 900px) {
  .loop { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; align-items: center; padding: 2.4rem 2.2rem; }
}
.loop h3 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: .92rem;
  color: var(--cream);
  margin-bottom: .7rem;
}
.loop a.kw {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: clamp(1.3rem, 4.9vw, 2rem);
  color: var(--teal);
  text-shadow: var(--glow-teal);
  text-decoration: none;
}
.loop .kw b { color: var(--pink); text-shadow: var(--glow-pink); }
.loop .kw .num { white-space: nowrap; }
.loop p.how { color: var(--dim); font-size: .9rem; margin-top: .6rem; }
.loop form { display: flex; gap: .6rem; flex-wrap: wrap; }
.loop input {
  flex: 1 1 12rem;
  background: rgba(26,18,16,.85);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: .9rem 1rem;
  color: var(--cream);
  font-family: var(--body);
  font-size: .95rem;
}
.loop input::placeholder { color: var(--dim); }
.loop button {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .8rem;
  padding: .9rem 1.4rem;
  border-radius: 6px;
  border: 1px solid var(--pink);
  color: var(--bg);
  background: var(--pink);
  box-shadow: 0 0 16px rgba(255,79,154,.4);
  cursor: pointer;
}
.loop .form-note { color: var(--teal); font-size: .85rem; margin-top: .6rem; min-height: 1.2em; }
.loop .fine {
  grid-column: 1 / -1;
  color: var(--dim);
  font-size: .68rem;
  line-height: 1.5;
  border-top: 1px solid var(--line);
  padding-top: .9rem;
}

/* ================= TUMBLEWEED ================= */
.tw-strip {
  margin-top: 3.4rem;
  background:
    linear-gradient(rgba(26,18,16,.66), rgba(26,18,16,.66)),
    repeating-linear-gradient(90deg, var(--wood) 0 64px, var(--wood-dark) 64px 66px, #6d4226 66px 130px, rgba(0,0,0,.5) 130px 132px);
  border-top: 3px solid var(--line);
  border-bottom: 3px solid var(--line);
  padding: 2.6rem 1.15rem;
  text-align: center;
}
.tw-strip .eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: .3em; font-size: .7rem; color: var(--cream); opacity: .8; }
.tw-strip h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: clamp(1.5rem, 6vw, 2.1rem);
  color: var(--teal);
  text-shadow: var(--glow-teal);
  margin-top: .5rem;
}
.tw-strip p { color: var(--cream); opacity: .85; margin-top: .6rem; font-size: .93rem; }
.tw-strip .hours { font-family: var(--display); text-transform: uppercase; letter-spacing: .18em; font-size: .85rem; margin-top: .7rem; }

/* ================= FOOTER ================= */
footer { padding: 3rem 1.15rem 3.4rem; text-align: center; }
footer img.sticker {
  width: clamp(120px, 24vw, 150px);
  height: auto;
  display: inline-block;
  transform: rotate(-7deg);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.45));
  margin-bottom: 1.6rem;
}
footer nav { display: flex; gap: 1.5rem; justify-content: center; flex-wrap: wrap; }
footer nav a {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .74rem;
  color: var(--dim);
  text-decoration: none;
}
footer nav a:hover, footer nav a:focus-visible { color: var(--teal); }
footer .hiring { color: var(--teal); text-shadow: 0 0 10px rgba(57,208,196,.45); }
footer small { display: block; margin-top: 1.5rem; color: var(--dim); font-size: .74rem; letter-spacing: .06em; }
