:root {
  --fp-blue: #04b6f8;
  --fp-blue-deep: #0289bc;
  --fp-secondary: #0e1418;
  --fp-white: #ffffff;
  --fp-black: #0a0a0a;
  --fp-ink: #0e1418;
  --fp-paper: #f4f1ea;
  --fp-muted: rgba(255, 255, 255, 0.72);
  --fp-line: rgba(255, 255, 255, 0.22);
  --fp-pink: #e48ab8;
  --fp-lime: #7ccb3a;
  --fp-grape: #7a4aa8;
  --font: "Nevis", "Outfit", sans-serif;
  --space: clamp(1.25rem, 3vw, 2.5rem);
  --wide: 1180px;
  --radius: 0;
}

@font-face {
  font-family: "Nevis";
  src: url("/fonts/Nevis-Bold.woff2") format("woff2"),
       url("/fonts/Nevis-Bold.woff") format("woff"),
       url("/fonts/Nevis-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font);
  font-weight: 500;
  color: var(--fp-white);
  background: var(--fp-secondary);
  line-height: 1.45;
  letter-spacing: 0.01em;
  text-wrap: pretty;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
h1, h2, h3 { font-weight: 800; letter-spacing: -0.03em; line-height: 0.92; margin: 0; }
p { margin: 0; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 80;
  background: var(--fp-black);
  color: var(--fp-white);
  padding: 0.6rem 1rem;
}

.wrap {
  width: min(var(--wide), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.25rem;
  background: var(--fp-blue);
}
.nav-logo img { height: 36px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.nav-links a { opacity: 0.86; }
.nav-links a:hover,
.nav-links a[aria-current="page"] { opacity: 1; }
.nav-cta {
  border: 1.5px solid var(--fp-white);
  padding: 0.55rem 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}
.nav-cta:hover { background: var(--fp-white); color: var(--fp-blue); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--fp-white);
  width: 44px;
  height: 44px;
  cursor: pointer;
}

/* TYPE */
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 0.85rem;
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--fp-white);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.display {
  font-size: clamp(4.4rem, 16vw, 11rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.05em;
}
.lede {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 36rem;
  font-weight: 500;
}
.rule {
  border: 0;
  border-top: 1px solid var(--fp-line);
  margin: 1.1rem 0 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border: 1.5px solid var(--fp-white);
  background: transparent;
  color: var(--fp-white);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
}
.btn:hover { background: var(--fp-white); color: var(--fp-blue); }
.btn-solid {
  background: var(--fp-white);
  color: var(--fp-blue);
}
.btn-solid:hover { background: var(--fp-ink); color: var(--fp-white); border-color: var(--fp-ink); }
.btn-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }

/* HERO — kicker above widescreen video, tagline below, title overlaid */
.hero {
  display: block;
  background: var(--fp-blue);
  min-height: auto;
  padding: 0;
  width: 100%;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-kicker { margin: 1.3rem 1rem 0.9rem; }
.hero-video { position: relative; width: 100%; }
.hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 848 / 464;
  height: auto;
  object-fit: cover;
}
.hero-title {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  color: var(--fp-white);
  font-size: clamp(3.4rem, 12vw, 8.5rem); /* slightly smaller than the old stacked title */
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.45);
  pointer-events: none;
}
.hero-bottom { padding: 1.2rem clamp(1.4rem, 5vw, 4rem) 2.8rem; }
.hero-bottom .lede { margin-inline: auto; }
.hero-bottom .btn-row { justify-content: center; }
.sku-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 1.75rem 1.5rem 2.2rem;
  background: var(--fp-secondary);
  color: var(--fp-white);
}
.sku-strip a {
  display: block;
  color: inherit;
  flex: 0 1 calc(25% - 1.5rem);
  max-width: calc(25% - 1.5rem);
}
.sku-strip img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: contain;
  background: var(--fp-secondary);
}
.sku-strip span {
  display: block;
  text-align: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 0.35rem;
}

/* Product lines (landing page): one block per line, description above its row */
.sku-strip-lines {
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1rem 0.5rem;
  background: #04B6F8; /* line cards live on brand blue, not dark */
}
.line-block { width: 100%; max-width: 62rem; text-align: center; }
.line-kicker {
  font-size: clamp(1.1rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 0.6rem;
  color: #fff;
}
.line-abv {
  display: block;
  width: 74px;
  margin: 0 auto 0.6rem;
}
.sku-strip-lines .line-abv {
  display: inline-block;    /* sits directly right of the line title */
  vertical-align: middle;
  width: 60px;
  margin: 0 0 0 1rem;
  height: auto;
  background: transparent;  /* brand blue shows through */
  border: 0;
}
@media (max-width: 700px) {
  .line-abv { display: none; } /* ABV icons live on the flavor panels on mobile */
}
@media (min-width: 701px) {
  .sku-strip-lines .line-abv[src*="2-wine"] { margin-left: 2.5rem; top: -18px; }
  .sku-strip-lines .line-abv { margin-left: 1.6rem; }
}
.panel-abv { display: none; }
@media (max-width: 700px) {
  /* chip NOT relative: the icon anchors to the whole card so it sits above the text block */
  .panda-panel .panel-abv {
    display: block;
    position: absolute;
    top: -0.1rem; right: 0.9rem; /* vertically centered on the flavor-name line */
    height: 4.2em;               /* ~66px */
    width: auto;
    margin: 0;
    background: transparent;
    border: 0;
  }
  /* keep taglines from running under the tall icon */
  /* tagline stays centered (no padding offsets) */
  /* 1.5-shot and wine icons 25% smaller than the hard-soda icon */
  .panda-panel .panel-abv[src*="1p5"],
  .panda-panel .panel-abv[src*="2-wine"] { height: 3.15em; }
}
.line-desc {
  font-size: 0.92rem;
  opacity: 1;
  max-width: 40rem;
  margin: 0.25rem auto 1.6rem;
  color: #fff;
}
.line-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}
.line-row a { flex: 0 1 11rem; max-width: 11rem; }


/* Landing: full-screen flavor cards (mobile-first takeover) */
.line-block + .line-block {
  border-top: 2px solid rgba(255, 255, 255, 0.35);
  margin-top: 1rem;
  padding-top: 0.9rem;
}
.panda-flavor { flex: 0 1 15rem; max-width: 15rem; }
.panda-media {
  position: relative;
  background: #04B6F8;
  text-align: center;
  font-size: 0; /* kill inline-image baseline gap */
}
.panda-media video {
  display: none; /* video wiring returns once the can presentation is signed off */
}
.panda-media .panda-can {
  display: block;
  width: 100%;
  height: 68vh;       /* approved size: box is 68% of screen, can letterboxed inside */
  object-fit: contain; /* can can NEVER overflow the blue box on any browser */
  margin: 0 auto;
  padding: 0;
  background: transparent;
  aspect-ratio: auto; /* beat .sku-strip img's 2/3 box */
  -webkit-touch-callout: none; /* suppress the iOS save/view popup */
  -webkit-user-select: none;
  user-select: none;
  pointer-events: none;
}
.panda-flavor > img,
.panda-flavor > video {
  width: 100%;
  display: block;
  aspect-ratio: 2/3;
  object-fit: contain;
  background: var(--fp-secondary);
  z-index: 0;
}
.panda-panel {
  position: relative;
  z-index: 1;
  background: rgba(56, 56, 56, 0.58);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  color: #fff;
  padding: 1.2rem 1.1rem 1.4rem;
}
/* mobile cover card: brand blue (rounded corners, shadow, scroll fade stay) */
.panda-panel h3 { margin: 0 0 0.4rem; font-size: 1.5rem; letter-spacing: -0.02em; }
.panda-panel .flavor-line { font-weight: 700; font-size: 0.95rem; margin: 0 0 0.6rem; color: #000; }
.panda-panel .flavor-body { font-size: 0.9rem; line-height: 1.55; margin: 0; opacity: 0.92; }
@media (max-width: 700px) {
  /* mobile takeover: can sticks; panel scrolls over; both exit in tandem;
     next can is queued directly underneath; blue is continuous */
  .panda-flavor { width: 100%; max-width: none; flex: none; background: #04B6F8; }
  .line-row { display: block; }
  .panda-flavor + .panda-flavor { margin-top: 1.4rem; } /* a little blue between cards */
  .line-block { background: #04B6F8; }
  /* one line break between each line's tagline and its FIRST can only */
  .line-row .panda-flavor:first-child .panda-media { margin-top: 1.4rem; }
  /* CAN stays pinned until the card's top passes the screen top: the media box
     is sticky and the flavor reserves one extra image-height of scroll (the
     "release runway"). During that runway the card (z-index above) slides up
     over the can; when the runway is consumed the media box releases and the
     card + can exit together. Release moment == card top at pin line == TOP
     alignment. */
  .panda-flavor { padding-bottom: 0; } /* set by JS so the can releases exactly when the card top hits the pin line */
  .panda-media {
    position: sticky;
    top: 68px;
    height: 68vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    background: #04B6F8;
    z-index: 0;
  }
  .panda-media .panda-can {
    width: auto;
    height: 100%;
    padding: 0;
    outline: none;
  }
  .panda-panel {
    position: relative;
    z-index: 1; /* above the can: slides over it while the unit is pinned */
    height: auto; /* panel ends at the bottom of its text: partially covers the can */
    overflow: hidden;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: #04B6F8; /* cover cards are brand blue on mobile */
  }
}

/* Made with the Best — ingredient icon row + popup */
.made-with-best {
  background: #04b6f8;
  color: #fff;
  text-align: center;
  padding: 2.4rem 1rem 2.6rem;
}
.mwb-title {
  margin: 0 0 1.4rem;
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}
.mwb-row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.mwb-icon {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}
.mwb-icon:hover, .mwb-icon:focus-visible { transform: scale(1.12); }
.mwb-icon img { max-width: 100%; max-height: 100%; display: block; }
.mwb-dialog {
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  background: #101418;
  color: #fff;
  max-width: 22rem;
  padding: 1.6rem 1.6rem 1.4rem;
}
.mwb-dialog::backdrop { background: rgba(0, 0, 0, 0.6); }
.mwb-dialog h3 { margin: 0 0 0.6rem; font-size: 1.25rem; color: #04b6f8; }
.mwb-dialog p { margin: 0 0 1rem; font-size: 0.95rem; line-height: 1.55; }
.mwb-dialog .mwb-close {
  background: #04b6f8;
  color: #04121a;
  border: none;
  border-radius: 6px;
  padding: 0.45rem 1.1rem;
  font-weight: 700;
  cursor: pointer;
}

@media (min-width: 701px) {
  /* Desktop flavor cards: title+tagline chip on the old navy, description text
     directly on brand blue; white font throughout. */
  .panda-panel {
    background: #04b6f8;
    color: #fff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    box-shadow: none;
  }
  /* desktop cards stay brand blue even though mobile tints per-can */
  .panda-flavor[data-can] .panda-panel,
  .panda-flavor[data-can] .panda-titlechip { background: #04b6f8; }
  .panda-panel .panel-badges { display: none; }
  .panda-titlechip {
    background: #04b6f8; /* same brand blue used everywhere else */
    padding: 0.8rem 1rem;
    border-radius: 6px;
  }
  .panda-titlechip .flavor-line { color: #0e1418; } /* tagline in navy */
  .panda-media { margin-bottom: 0.9rem; } /* a little air between image and text card */
  .panda-panel { text-align: left; } /* desktop descriptions left-aligned */
  .panda-titlechip { min-height: 6.6rem; } /* equal chip heights -> description tops align across the row */
}
/* Cans page: line section headers — centered copy card */
.line-head { padding: 2.2rem 0 2rem; background: var(--fp-paper); color: var(--fp-ink); }
.line-head .kicker { color: var(--fp-blue); }
.line-head-alt { background: var(--fp-ink); color: var(--fp-white); }
.line-card {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1.6rem 2rem 1.8rem;
  text-align: left;
}
.line-card h2, .line-card .lede:first-of-type { text-align: center; }
.line-tail {
  text-align: left;
  margin-top: 1rem;
}
.line-head .lede { margin-top: 0.7rem; }
.line-head .lede:first-of-type { margin-top: 0; }
.line-cans {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  margin-top: 3.5rem;
  padding: 0 clamp(1rem, 4vw, 3rem) 0.5rem;
  overflow-x: auto;
}
.line-can {
  flex: 0 1 15rem;
  max-width: 15rem;
  text-align: center;
}
.line-can img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: contain;
  margin-bottom: 1.2rem;
}
.line-can .flavor-name { font-size: 1.35rem; letter-spacing: -0.02em; margin: 0 0 0.4rem; }
.line-can .flavor-line { font-weight: 700; font-size: 0.92rem; margin: 0 0 0.7rem; }
.line-can .flavor-body {
  font-size: 0.88rem;
  line-height: 1.55;
  text-align: left;
  opacity: 0.9;
}

/* Mission page: flavor <-> animal rows (text left, linked silhouette right) */
.animal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}
.animal-card {
  flex: 1 1 15rem;
  max-width: 18rem;
  background: var(--fp-ink);
  color: var(--fp-white);
  padding: 1.4rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}
.animal-silhouette {
  display: block;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--fp-blue);
}
.animal-flavor {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.75;
}
.animal-link { display: block; flex-shrink: 0; }
.animal-link img {
  display: block;
  height: 72px;
  width: auto;
  transition: transform 0.15s ease;
}
.animal-link:hover img { transform: scale(1.08); }
/* per-animal sizing: giraffe taller, rhino smaller */
.animal-link[data-animal="giraffe"] img { height: 110px; }
.animal-link[data-animal="rhino"] img { height: 60px; }
.animal-link[data-animal="red-wolf"] img { height: 60px; }

.marquee {
  border-top: 1px solid var(--fp-line);
  border-bottom: 1px solid var(--fp-line);
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.85rem 0;
  white-space: nowrap;
  background: #04b6f8;
  color: #fff;
}
.marquee-track {
  display: inline-flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}
.marquee span { flex-shrink: 0; padding-right: 2.4rem; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.band {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}
.band-ink {
  background: var(--fp-ink);
  color: var(--fp-white);
}
.band-paper {
  background: var(--fp-paper);
  color: var(--fp-ink);
}
.band-paper a { color: var(--fp-ink); }
.band-paper .btn { border-color: var(--fp-ink); color: var(--fp-ink); }
.band-paper .btn:hover { background: var(--fp-ink); color: var(--fp-white); }
.band-paper .btn-solid { background: var(--fp-ink); color: var(--fp-white); border-color: var(--fp-ink); }
.band-paper .outline { -webkit-text-stroke-color: var(--fp-ink); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}
.split.flip { grid-template-columns: 0.9fr 1.1fr; }
.split.flip .copy { order: 2; }

.flavor {
  min-height: 88vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: var(--fp-secondary);
  color: var(--fp-white);
}
.flavor .copy { padding: clamp(2rem, 5vw, 4rem); }
.band-blue {
  background: var(--fp-blue);
  color: var(--fp-white);
}
.flavor .art {
  display: flex;
  justify-content: center;
  align-items: end;
  min-height: 88vh;
  padding: 2rem 0 0;
  background: var(--fp-secondary);
}
.flavor .art img { width: min(480px, 86%); height: auto; object-fit: contain; }
.flavor-pink .kicker { color: var(--fp-pink); }
.flavor-lime .kicker { color: var(--fp-lime); }
.flavor-grape .kicker { color: var(--fp-grape); }
.flavor-orange .kicker { color: #f3c39a; }
.flavor-yellow .kicker { color: #f3e3a8; }
.flavor-apple .kicker { color: #d5e89a; }
.flavor-wine .kicker { color: #f0d4e4; }
.flavor h2 { color: inherit; }
.flavor-name {
  font-size: clamp(1.85rem, 4.2vw, 2.85rem);
  letter-spacing: -0.03em;
}
.flavor-line {
  font-size: clamp(1.15rem, 2.2vw, 1.55rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0.35rem 0 0.9rem;
  max-width: 22em;
}
.flavor-body {
  font-size: 1.02rem;
  line-height: 1.55;
  max-width: 32em;
  opacity: 0.92;
}
.flavor .btn { border-color: currentColor; color: inherit; }
.flavor .btn:hover { background: var(--fp-blue); color: var(--fp-white); border-color: var(--fp-blue); }

.coming-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--fp-line);
}
.coming-row article {
  padding: 1.4rem 1.2rem 1.6rem;
  border-right: 1px solid var(--fp-line);
}
.coming-row article:last-child { border-right: 0; }
.coming-row h3 { font-size: 1.5rem; margin: 0.35rem 0 0.4rem; }

/* FIND */
.locator {
  display: grid;
  grid-template-columns: 380px 1fr;
  min-height: calc(100vh - 68px);
  background: var(--fp-paper);
  color: var(--fp-ink);
  align-items: start;
}
.locator-panel {
  border-right: 1px solid #cfeaf5;
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 68px;
  height: calc(100vh - 68px);
  overflow: hidden;
}
.locator-head { padding: 1.25rem 1.2rem 1rem; }
.locator-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.locator-note {
  font-size: 0.82rem;
  margin-top: 0.7rem;
  padding: 0.65rem 0.7rem;
  background: #fff3bf;
  color: #3d2e00;
}
.search-row { display: flex; gap: 0.4rem; margin-top: 1rem; }
.sku-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.8rem;
}
.sku-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  border: 1.5px solid var(--fp-ink);
  background: #fff;
  padding: 0.3rem 0.6rem;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  user-select: none;
}
.sku-chip input { accent-color: #04b6f8; margin: 0; }
.sku-chip-all { background: var(--fp-ink); color: #fff; }
.sku-chip-all input { accent-color: #fff; }
.store-onhand { font-weight: 600; }
.search-row input, .search-row select {
  min-height: 44px;
  border: 1.5px solid var(--fp-ink);
  padding: 0 0.7rem;
  background: #fff;
  width: 100%;
}
.store-list {
  overflow: auto;
  flex: 1;
  border-top: 1px solid #cfeaf5;
}
.store {
  padding: 0.95rem 1.2rem;
  border-bottom: 1px solid #e4f4fb;
  cursor: pointer;
}
.store:hover, .store.active { background: #e7f8ff; }
.store h3 { font-size: 1.05rem; letter-spacing: -0.02em; }
.store p { font-size: 0.88rem; margin-top: 0.2rem; }
.badge {
  display: inline-block;
  margin-top: 0.45rem;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.22rem 0.45rem;
  border: 1px solid currentColor;
}
.badge-hot { color: #0b6b2b; }
.badge-warm { color: #8a5a00; }
.badge-cold { color: #555; }
#map { position: sticky; top: 68px; height: calc(100vh - 68px); background: #d9eef7; scroll-margin-top: 68px; }

.stub-card {
  border: 1px solid var(--fp-line);
  padding: 1.4rem 1.3rem 1.6rem;
}
.stub-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.2rem;
}
form.stack { display: grid; gap: 0.7rem; max-width: 32rem; }
form.stack input, form.stack textarea, form.stack select {
  min-height: 44px;
  border: 1.5px solid var(--fp-white);
  background: transparent;
  color: var(--fp-white);
  padding: 0.6rem 0.75rem;
}
form.stack textarea { min-height: 8rem; resize: vertical; }
/* dropdown option lists render white-on-white on desktop browsers */
form.stack select option { color: #0a0a0a; background: #fff; }
/* placeholder ("shadow") text stays white like the entered value */
form.stack input::placeholder,
form.stack textarea::placeholder { color: rgba(255, 255, 255, 0.75); opacity: 1; }
.band-paper form.stack input,
.band-paper form.stack textarea {
  border-color: var(--fp-ink);
  color: var(--fp-ink);
}

.footer {
  background: #04b6f8;
  color: var(--fp-white);
  padding: 2.4rem 0 1.4rem;
}
/* footer brand badges: right of the Flying Panda logo, above It's wild. */
.footer-brand-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1.2rem; }
.footer-badges { display: flex; gap: 1.8rem; align-items: center; }
.footer-badges img { height: 44px; width: auto; opacity: 0.95; }
/* footer social icons */
.social-icons { display: flex; gap: 1.1rem; margin-top: 0.4rem; }
.social-icons a { color: var(--fp-white); opacity: 0.92; transition: opacity 0.15s ease, transform 0.15s ease; }
.social-icons a:hover { opacity: 1; transform: scale(1.12); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1.5rem;
}
.footer a { opacity: 0.85; }
.footer a:hover { opacity: 1; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer .fine {
  margin-top: 2rem;
  font-size: 0.72rem;
  opacity: 0.65;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1rem;
}

/* AGE GATE */
.gate {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: var(--fp-blue);
  display: grid;
  place-items: center;
  padding: 1.5rem;
}
.gate[hidden] { display: none; }
.gate-box { width: min(34rem, 100%); }
.gate-box .display { font-size: clamp(3.5rem, 12vw, 7rem); }
.gate-actions { display: flex; gap: 0.7rem; margin-top: 1.4rem; }

.photo-well {
  aspect-ratio: 3 / 4;
  background: var(--fp-paper);
  color: #6b655c;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 800;
}
.team-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0.75rem;
  margin-top: 2rem;
}
.team-grid h3 { font-size: 1.2rem; margin: 0.7rem 0 0.2rem; }
.team-grid p { font-size: 0.88rem; opacity: 0.8; }
.join-roles {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.4rem 0 1.8rem;
}
.join-roles article {
  border: 1.5px solid var(--fp-line);
  padding: 1.3rem 1.2rem;
}

@media (max-width: 900px) {
  .hero, .split, .split.flip, .flavor, .locator, .coming-row, .stub-grid, .footer-grid, .team-grid, .join-roles {
    grid-template-columns: 1fr;
  }
  .split.flip .copy { order: 0; }
  .hero { min-height: auto; }
  .hero-bottom { padding-bottom: 2.2rem; }
  .flavor .art { min-height: 52vh; }
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--fp-blue);
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 1.25rem 1.3rem;
    border-bottom: 1px solid var(--fp-line);
  }
  .nav.open .nav-links { display: flex; }
  .locator, .locator-panel, #map { min-height: 60vh; }
  .sku-strip { gap: 1.15rem; padding: 1.25rem 1rem 1.75rem; }
  .sku-strip a {
    flex: 0 1 calc(50% - 1.15rem);
    max-width: calc(50% - 1.15rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}


/* legal pages: breathing room between headings */
main .wrap > h2 { margin-top: 3.6rem; margin-bottom: 1.2rem; }
