/* ==========================================================================
   Vintage Banana — a groovy little thrift shop
   Warm 70s palette, chunky borders, hard shadows, juicy display type.
   ========================================================================== */

/* ---- Fonts (self-hosted, see assets/fonts) ------------------------------ */
@font-face {
  font-family: 'Shrikhand';
  src: url('assets/fonts/shrikhand-latin.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Fraunces';
  src: url('assets/fonts/fraunces-italic-latin.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* ---- Tokens -------------------------------------------------------------- */
:root {
  --cream: #faf0dc;
  --paper: #fff8ea;
  --ink: #38271a;
  --ink-soft: #5c4632;
  --banana: #ffc53d;
  --banana-light: #ffdf8e;
  --orange: #e4572e;        /* decorative accents (squiggles, stickers, big type) */
  --orange-deep: #c0391b;   /* links & small text — AA contrast on cream */
  --green: #55631f;
  --green-light: #a9b465;
  --pink: #f4a7b9;
  --brown: #8c5a2b;

  --font-display: 'Shrikhand', 'Cooper Black', 'Arial Rounded MT Bold', serif;
  --font-text: 'Fraunces', Georgia, 'Times New Roman', serif;

  --border: 2.5px solid var(--ink);
  --radius: 1.5rem;
  --shadow: 0.4rem 0.4rem 0 var(--ink);
  --shadow-sm: 0.25rem 0.25rem 0 var(--ink);
  --container: 72rem;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

/* ---- Base ---------------------------------------------------------------- */
*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 0.5em;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.9rem, 7.5vw, 5.25rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3rem); }
h3 { font-size: 1.25rem; line-height: 1.25; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: var(--orange-deep); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

:focus-visible {
  outline: 3px dashed var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--pad);
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 99;
  background: var(--ink);
  color: var(--cream);
  padding: 0.6rem 1.1rem;
  border-radius: 99px;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 1rem; color: var(--cream); }

/* ---- Buttons & chips ------------------------------------------------------ */
.btn {
  display: inline-block;
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  background: var(--banana);
  border: var(--border);
  border-radius: 99px;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: translate 0.12s ease, box-shadow 0.12s ease;
}
.btn:hover {
  color: var(--ink);
  translate: -2px -2px;
  box-shadow: 0.4rem 0.4rem 0 var(--ink);
}
.btn:active { translate: 1px 1px; box-shadow: 0.1rem 0.1rem 0 var(--ink); }
.btn--ghost { background: transparent; }
.btn--light { background: var(--cream); }

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--paper);
  border: var(--border);
  border-radius: 99px;
  padding: 0.3rem 0.9rem;
  margin-bottom: 1.1rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--banana-light);
  border: 2px solid var(--ink);
  border-radius: 99px;
  padding: 0.15rem 0.7rem;
}

/* ---- Header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: var(--border);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}
.brand:hover { color: var(--ink); }
.brand .brand-mark { width: 2.4rem; height: 2.4rem; flex: none; }
.brand-mark--chip {
  background: #fff;
  border: 2px solid var(--ink);
  border-radius: 0.6rem;
  padding: 0.18rem;
  object-fit: contain;
}
.brand:hover .brand-mark,
.brand-mark.wiggle { animation: wiggle 0.5s ease; }

@keyframes wiggle {
  0%, 100% { rotate: 0deg; }
  25% { rotate: -12deg; }
  60% { rotate: 10deg; }
}

.site-nav { display: flex; align-items: center; gap: 0.35rem; }
.site-nav a {
  font-weight: 700;
  text-decoration: none;
  color: var(--ink);
  padding: 0.45rem 0.95rem;
  border-radius: 99px;
  border: 2.5px solid transparent;
}
.site-nav a:hover { border-color: var(--ink); background: var(--paper); }
.site-nav a[aria-current="page"] { background: var(--banana); border-color: var(--ink); }

.nav-toggle {
  display: none;
  background: var(--banana);
  border: var(--border);
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}
.nav-toggle svg { width: 1.3rem; height: 1.3rem; }

/* ---- Hero ------------------------------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(2.5rem, 6vw, 5rem) clamp(2.5rem, 6vw, 4.5rem);
}
.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero h1 .peel {
  color: var(--orange);
  text-shadow: 0.05em 0.05em 0 var(--ink);
}

/* ---- Rotating hero ring (etched atmosphere behind the hero content) ----------
   Two counter-rotating layers: an outer tick dial carrying three line-drawn
   bananas, and an inner dashed ring with circular brand text. Thin ink line
   work at low opacity so the headline stays the focal point. */
.hero-ring {
  position: absolute;
  left: 50%;
  top: 33%;
  width: min(120vw, 84rem);
  aspect-ratio: 1;
  translate: -50% -50%;
  pointer-events: none;
  z-index: 0;
  color: var(--ink);
}
.hero-ring svg { width: 100%; height: 100%; overflow: visible; }
.ring-outer,
.ring-inner {
  transform-box: fill-box;
  transform-origin: center;
}
.ring-outer {
  opacity: 0.12;
  animation: ring-spin 96s linear infinite;
}
.ring-inner {
  opacity: 0.1;
  animation: ring-spin 132s linear infinite reverse;
}
.ring-text {
  font-family: var(--font-text);
  font-weight: 700;
  font-size: 15px;
  /* tuned so two repeats of the phrase close the 296px-radius circle cleanly */
  letter-spacing: 0.1357em;
  fill: currentColor;
}
@keyframes ring-spin {
  to { transform: rotate(360deg); }
}

/* grounding line under the hero CTAs */
.hero-note {
  margin-top: 1.15rem;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* faint paper grain over the whole page so flat color reads as print */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 90;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='2' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='180' height='180' filter='url(%23n)'/></svg>");
  opacity: 0.05;
  mix-blend-mode: multiply;
}
.hero .lede {
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  max-width: 34ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.hero-art { position: relative; }
.arch {
  position: relative;
  border: var(--border);
  border-radius: 50% 50% var(--radius) var(--radius) / 38% 38% var(--radius) var(--radius);
  background: #fff3d3;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 4.3;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.arch--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* official-logo sticker slapped over the arch corner */
.badge-vb {
  position: absolute;
  right: -1.3rem;
  bottom: -1.5rem;
  width: clamp(6.5rem, 11vw, 8.5rem);
  rotate: 7deg;
  background: #fff;
  border: var(--border);
  border-radius: 1rem;
  padding: 0.5rem 0.55rem;
  box-shadow: var(--shadow-sm);
}
.badge-vb img { width: 100%; height: auto; display: block; }

.sticker {
  position: absolute;
  font-family: var(--font-display);
  font-size: 0.95rem;
  line-height: 1.15;
  text-align: center;
  background: var(--pink);
  border: var(--border);
  border-radius: 99px;
  padding: 0.7rem 1.1rem;
  box-shadow: var(--shadow-sm);
  rotate: -8deg;
}
.sticker--tr { top: -1.2rem; right: -0.6rem; rotate: 7deg; background: var(--pink); }
.sticker--bl { bottom: 1.6rem; left: -1.1rem; rotate: -7deg; background: var(--green-light); }

/* pointer-parallax targets ease toward their new offsets */
.parallax-on .arch,
.parallax-on .badge-vb,
.parallax-on .sticker { transition: translate 0.18s ease-out; }

/* ---- Marquee ---------------------------------------------------------------- */
.marquee {
  background: var(--ink);
  color: var(--cream);
  border-block: var(--border);
  overflow: hidden;
  padding-block: 0.65rem;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee-half {
  display: flex;
  gap: 2.5rem;
  padding-right: 2.5rem;
}
.marquee-track span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}
.marquee-track .spark { color: var(--banana); }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Sections ----------------------------------------------------------------- */
.section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.section-head { max-width: 46rem; margin-bottom: 2.5rem; }
.section-head.centered { margin-inline: auto; text-align: center; }

.squiggle {
  width: 8rem;
  height: 0.8rem;
  color: var(--orange);
  margin-top: 0.35rem;
}
.centered .squiggle { margin-inline: auto; }

/* ---- Category grid --------------------------------------------------------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(17.5rem, 1fr));
  gap: 1.4rem;
}
.card {
  position: relative;
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  padding: 1.6rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: translate 0.15s ease, box-shadow 0.15s ease;
}
.card:hover { translate: -3px -3px; box-shadow: var(--shadow); }
.card .card-photo {
  margin: -1.6rem -1.5rem 0;
  border-bottom: var(--border);
  border-radius: calc(var(--radius) - 2.5px) calc(var(--radius) - 2.5px) 0 0;
  overflow: hidden;
  aspect-ratio: 3 / 2;
}
.card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}
.card:hover .card-photo img { scale: 1.06; }
.card .icon {
  position: relative;
  width: 3.4rem;
  height: 3.4rem;
  display: grid;
  place-items: center;
  background: var(--banana);
  border: var(--border);
  border-radius: 50%;
  margin-top: -1.9rem;
  margin-bottom: 0.9rem;
}
.card:hover .icon svg { animation: wiggle 0.5s ease; }
.card .icon svg { width: 1.8rem; height: 1.8rem; }
.card p { color: var(--ink-soft); font-size: 0.98rem; }

/* ---- Finds (price-tag cards) ------------------------------------------------ */
.finds-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(14.5rem, 1fr));
  gap: 1.4rem;
}
.find {
  position: relative;
  background: var(--paper);
  border: 2.5px dashed var(--ink);
  border-radius: 1.1rem;
  padding: 1.4rem 1.4rem 1.3rem;
}
.find .find-photo {
  margin: -1.4rem -1.4rem 1.1rem;
  border-bottom: 2.5px dashed var(--ink);
  border-radius: 0.85rem 0.85rem 0 0;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.find .find-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale 0.5s ease;
}
.find:hover .find-photo img { scale: 1.05; }
.find .price {
  position: absolute;
  top: -1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  background: var(--banana);
  border: var(--border);
  border-radius: 99px;
  padding: 0.25rem 0.85rem;
  rotate: 4deg;
  box-shadow: var(--shadow-sm);
}
.find h3 { font-family: var(--font-text); font-weight: 800; font-size: 1.15rem; margin-top: 0.4rem; }
.find .note { font-style: italic; color: var(--ink-soft); font-size: 0.98rem; margin: 0.2rem 0 0.9rem; }
.finds-footnote {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: var(--ink-soft);
}

/* ---- Bands (rounded feature blocks) ----------------------------------------- */
.band {
  border: var(--border);
  border-radius: 2.5rem;
  box-shadow: var(--shadow);
  padding: clamp(2.25rem, 5vw, 4rem);
}
.band--green { background: var(--green); color: var(--cream); }
.band--green h2, .band--green a { color: var(--cream); }
.band--green .btn { color: var(--ink); }
.band--yellow { background: var(--banana); }
.band--paper { background: var(--paper); }

.band-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
}
.band-split .banana-badge { width: clamp(5.5rem, 12vw, 8.5rem); flex: none; }
.band .big-quote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  margin-bottom: 0.6rem;
}
.band p { font-size: 1.1rem; max-width: 56ch; }

/* ---- Visit strip -------------------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 1.4rem;
}
.info-card {
  background: var(--paper);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.5rem;
}
.info-card h3 { font-size: 1.35rem; }

.hours { list-style: none; margin: 0; padding: 0; }
.hours li {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  padding-block: 0.28rem;
}
.hours .dots {
  flex: 1;
  border-bottom: 2px dotted var(--ink-soft);
  translate: 0 -4px;
}
.hours .closed { color: var(--orange-deep); font-weight: 700; }

address { font-style: normal; }

/* ---- FAQ ------------------------------------------------------------------------ */
.faq details {
  background: var(--paper);
  border: var(--border);
  border-radius: 1.1rem;
  padding: 1rem 1.3rem;
  margin-bottom: 0.9rem;
  box-shadow: var(--shadow-sm);
}
.faq summary {
  font-weight: 800;
  font-size: 1.08rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--orange);
  flex: none;
  transition: rotate 0.25s ease;
}
.faq details[open] summary::after { rotate: 45deg; }
.faq details[open] summary { margin-bottom: 0.5rem; }
@media (prefers-reduced-motion: no-preference) {
  .faq details[open] > :not(summary) { animation: rise 0.3s ease both; }
}

/* ---- Prose pages ------------------------------------------------------------------ */
.page-head { padding-block: clamp(2.5rem, 6vw, 4.5rem) 0; }
.prose { max-width: 62ch; }
.prose .lede { font-size: 1.25rem; }

.value-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 1rem; }
.value-list li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
}
.value-list .bullet {
  flex: none;
  font-family: var(--font-display);
  color: var(--orange);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.checklist, .no-list { list-style: none; padding: 0; margin: 0; }
.checklist li, .no-list li { padding-left: 1.7rem; position: relative; margin-bottom: 0.45rem; }
.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--green);
}
.no-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  font-weight: 900;
  color: var(--orange-deep);
}

/* ---- Polaroid snapshots ---------------------------------------------------------------- */
.snap-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.2rem, 3.5vw, 2.8rem);
  padding-top: 0.9rem; /* room for the tape */
}
.polaroid {
  position: relative;
  margin: 0;
  width: min(16.5rem, 78vw);
  background: #fffdf8;
  border: var(--border);
  padding: 0.65rem 0.65rem 0;
  box-shadow: var(--shadow);
  rotate: -3deg;
  transition: rotate 0.25s ease, translate 0.25s ease, box-shadow 0.25s ease;
}
.polaroid:nth-child(2) { rotate: 2.4deg; translate: 0 14px; }
.polaroid:nth-child(3) { rotate: -1.2deg; translate: 0 4px; }
.polaroid::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 50%;
  translate: -50%;
  rotate: -4deg;
  width: 5.5rem;
  height: 1.5rem;
  background: rgba(255, 197, 61, 0.72);
  border: 1.5px solid rgba(56, 39, 26, 0.22);
}
.polaroid:nth-child(2)::before { rotate: 3deg; }
.polaroid img {
  width: 100%;
  height: auto; /* beat the height attribute so aspect-ratio applies */
  aspect-ratio: 1;
  object-fit: cover;
  border: 2px solid var(--ink);
}
.polaroid figcaption {
  font-family: var(--font-display);
  font-size: 1.02rem;
  text-align: center;
  padding: 0.55rem 0.25rem 0.75rem;
}
.polaroid:hover {
  rotate: 0deg;
  translate: 0 -6px;
  box-shadow: 0.55rem 0.65rem 0 var(--ink);
}

/* ---- Arch photo banner ------------------------------------------------------------------ */
.photo-banner {
  margin: 2.2rem 0 0;
  border: var(--border);
  border-radius: 7rem 7rem var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-banner img {
  width: 100%;
  height: auto; /* beat the height attribute so aspect-ratio applies */
  aspect-ratio: 21 / 8;
  object-fit: cover;
}

/* ---- Motion -------------------------------------------------------------------------------
   Entrance choreography + scroll-linked reveals. Everything here is additive:
   without support (or with reduced motion) the page is simply static. */
@media (prefers-reduced-motion: no-preference) {
  /* hero entrance */
  .hero-copy > * { animation: rise 0.55s cubic-bezier(0.22, 1, 0.36, 1) both; }
  .hero-copy > :nth-child(2) { animation-delay: 0.08s; }
  .hero-copy > :nth-child(3) { animation-delay: 0.16s; }
  .hero-copy > :nth-child(4) { animation-delay: 0.24s; }
  .hero-copy > :nth-child(5) { animation-delay: 0.34s; }
  .hero-art .arch { animation: pop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.15s; }
  .sticker--tr { animation: slap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.6s; }
  .sticker--bl { animation: slap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.75s; }
  .badge-vb { animation: slap 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both 0.9s; }

  /* scroll-linked reveals (graceful no-op without support) */
  @supports (animation-timeline: view()) {
    .card, .find, .polaroid, .info-card, .band, .faq details, .photo-banner {
      animation: rise-view auto both;
      animation-timeline: view();
      animation-range: entry 5% entry 45%;
    }
    .squiggle path {
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      animation: draw-squiggle auto both;
      animation-timeline: view();
      animation-range: entry 20% entry 80%;
    }
  }
}

@keyframes rise {
  from { opacity: 0; translate: 0 22px; }
}
@keyframes pop {
  from { opacity: 0; scale: 0.94; }
}
@keyframes slap {
  from { opacity: 0; scale: 1.6; rotate: 14deg; }
}
@keyframes rise-view {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: none; }
}
@keyframes draw-squiggle {
  to { stroke-dashoffset: 0; }
}

/* ---- Photo credits (small print) --------------------------------------------------------- */
.credits {
  font-size: 0.88rem;
  color: var(--ink-soft);
  border-top: 2px dashed var(--ink-soft);
  padding-top: 1.2rem;
}
.credits summary {
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.8rem;
}
.credits ul { margin: 0.5rem 0 0; padding-left: 1.2rem; }
.credits li { margin-bottom: 0.25rem; }

/* ---- Wave divider + footer ---------------------------------------------------------- */
.wave { display: block; width: 100%; height: 2.5rem; color: var(--ink); margin-bottom: -1px; }

.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 3.5rem 0 2rem;
}
.site-footer a { color: var(--banana); }
.site-footer a:hover { color: var(--cream); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.8rem;
}
.footer-brand svg { width: 2.2rem; height: 2.2rem; }
.footer-logo {
  width: 3.4rem;
  height: auto;
  background: #fff;
  border-radius: 0.55rem;
  padding: 0.25rem;
  border: 2px solid rgba(250, 240, 220, 0.65);
}
.site-footer h3 { font-size: 1.05rem; color: var(--banana); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 0.4rem; }
.site-footer .fine {
  border-top: 2px dashed rgba(250, 240, 220, 0.35);
  padding-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  font-size: 0.92rem;
  color: rgba(250, 240, 220, 0.8);
}

/* ---- Responsive -------------------------------------------------------------------------- */
@media (max-width: 56rem) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-art { max-width: 26rem; margin-inline: auto; width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .band-split { grid-template-columns: 1fr; }
  .band-split .banana-badge { margin-inline: auto; }
}

@media (max-width: 44rem) {
  .nav-toggle { display: inline-grid; place-items: center; }
  .site-nav {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: var(--pad);
    left: var(--pad);
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border: var(--border);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 0.75rem;
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; }
}

@media (max-width: 30rem) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- Reduced motion ------------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track { animation: none; width: auto; }
  .marquee-half { flex-wrap: wrap; justify-content: center; }
  .marquee-half + .marquee-half { display: none; }
  .brand:hover .brand-mark, .brand-mark.wiggle { animation: none; }
  /* the ring freezes in place rather than disappearing */
  .ring-outer, .ring-inner { animation: none; }
  .card:hover .icon svg { animation: none; }
  .btn, .card, .polaroid, .card-photo img, .find-photo img, .faq summary::after { transition: none; }
  .card:hover .card-photo img, .find:hover .find-photo img { scale: none; }
}
