:root {
  --cream: #f8e2bd;
  --paper: #fff8ec;
  --ink: #1f1e1c;
  --black: #050505;
  --coral: #fb8588;
  --peach: #ffb774;
  --yellow: #ffef83;
  --green: #86f578;
  --blue: #94dcef;
  --lavender: #b88bf0;
  --line: rgba(5, 5, 5, 0.14);
  --shadow: 0 18px 50px rgba(5, 5, 5, 0.14);
  --radius: 22px;
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  position: relative;
  margin: 0;
  background:
    radial-gradient(circle at 15% 8%, rgba(255, 239, 131, 0.55), transparent 28rem),
    radial-gradient(circle at 90% 20%, rgba(148, 220, 239, 0.55), transparent 22rem),
    var(--paper);
  color: var(--ink);
  font-family: "Fredoka", "Arial Rounded MT Bold", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
  padding-bottom: 76px;
  overflow-wrap: anywhere;
}

body > * {
  position: relative;
  z-index: 1;
}

@media (min-width: 1040px) {
  body {
    background:
      url("../images/greenery-side-panels.png") center top / 1720px 100vh no-repeat fixed,
      var(--paper);
    background:
      url("../images/greenery-side-panels.png") center top / max(1720px, 100vw) 100vh no-repeat fixed,
      var(--paper);
  }
}

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

a {
  color: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-shell {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: min(var(--max), calc(100% - 24px));
  margin: 12px auto 0;
  padding: 12px;
  background: rgba(255, 248, 236, 0.92);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 0 8px 0 var(--black);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: cover;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--black);
}

.brand span,
.footer-brand {
  font-size: 1.7rem;
}

.desktop-nav {
  display: none;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  width: 20px;
  height: 3px;
  margin: 2px;
  background: var(--black);
  border-radius: 999px;
}

.site-nav {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  right: 0;
  display: none;
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 14px;
  background: var(--paper);
  border: 2px solid var(--black);
  border-radius: 24px;
  box-shadow: 0 8px 0 var(--black);
}

.site-nav.open {
  display: grid;
}

.site-nav a,
.desktop-nav a,
.header-cta,
.button,
.pill,
.mobile-bottom-bar a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  box-shadow: 0 4px 0 var(--black);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.site-nav a.active,
.desktop-nav a.active,
.site-nav a:hover,
.desktop-nav a:hover,
.button.primary {
  background: var(--coral);
}

.header-cta {
  display: none;
  background: var(--green);
}

.button:hover,
.pill:hover,
.site-nav a:hover,
.desktop-nav a:hover,
.header-cta:hover,
.mobile-bottom-bar a:hover {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--black);
}

.button.secondary {
  background: var(--blue);
}

.button.yellow {
  background: var(--yellow);
}

.button.lavender {
  background: var(--lavender);
}

.button.small {
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  background: var(--green);
}

.hero {
  display: grid;
  gap: 24px;
  padding: 38px 0 34px;
}

.hero-copy {
  display: grid;
  gap: 18px;
}

.eyebrow {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--green);
  font-weight: 700;
  box-shadow: 0 4px 0 var(--black);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(3.5rem, 18vw, 8rem);
  line-height: 0.96;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 span {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.75rem, 7vw, 3.8rem);
  line-height: 1.02;
  color: var(--coral);
}

.lede {
  max-width: 680px;
  font-size: clamp(1.2rem, 4vw, 1.7rem);
  font-weight: 600;
}

.hero-actions,
.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-actions .button {
  min-height: 40px;
  padding: 8px 12px;
  font-size: 0.92rem;
}

.quick-info {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 8px 0 var(--black);
}

.quick-info p {
  margin: 0;
}

.hero-media {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 34px;
  background: var(--black);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.sticker {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 14px;
  border: 2px solid var(--black);
  border-radius: 20px;
  background: var(--yellow);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 6px 0 var(--black);
}

.section {
  padding: 44px 0;
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 760px;
  margin-bottom: 22px;
}

.section-heading p {
  width: fit-content;
  margin-bottom: 0;
  padding: 7px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--blue);
  font-weight: 700;
}

.section-heading h2 {
  margin-bottom: 0;
  color: var(--black);
  font-size: clamp(2rem, 9vw, 4rem);
  line-height: 1.05;
}

.section-heading span {
  font-size: 1.08rem;
}

.compact {
  margin-top: 28px;
}

.feature-grid,
.card-grid,
.contact-grid,
.story-grid,
.candy-section {
  display: grid;
  gap: 16px;
}

.feature-card,
.info-card,
.menu-card,
.vote-card,
.form-card {
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 7px 0 var(--black);
}

.feature-card,
.info-card {
  padding: 18px;
}

.feature-card:nth-child(1) { background: var(--coral); }
.feature-card:nth-child(2) { background: var(--blue); }
.feature-card:nth-child(3) { background: var(--peach); }
.feature-card:nth-child(4) { background: var(--green); }
.feature-card:nth-child(5) { background: var(--lavender); }
.feature-card:nth-child(6) { background: var(--yellow); }

.goatcha-color-grid .feature-card:nth-child(1) { background: var(--coral); }
.goatcha-color-grid .feature-card:nth-child(2) { background: var(--yellow); }
.goatcha-color-grid .feature-card:nth-child(3) { background: var(--peach); }
.goatcha-color-grid .feature-card:nth-child(4) { background: var(--lavender); }
.goatcha-color-grid .feature-card:nth-child(5) { background: var(--blue); }
.goatcha-color-grid .feature-card:nth-child(6) { background: var(--green); }
.goatcha-color-grid .feature-card:nth-child(7) { background: var(--coral); }

.feature-card h3,
.info-card h3,
.menu-card h3,
.vote-card h3 {
  margin-bottom: 6px;
  color: var(--black);
  font-size: 1.18rem;
  line-height: 1.08;
}

.feature-card p,
.info-card p,
.menu-card p,
.vote-card p {
  margin-bottom: 0;
}

.menu-card p {
  font-size: 0.95rem;
  line-height: 1.28;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.gallery-card {
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 22px;
  background: var(--black);
}

.gallery-card.featured {
  grid-column: 1 / -1;
  min-height: 270px;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.map-wrap,
.google-map {
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--cream);
  box-shadow: 0 8px 0 var(--black);
}

.google-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.notice {
  padding: 16px;
  border: 2px solid var(--black);
  border-radius: var(--radius);
  background: var(--yellow);
  font-weight: 700;
  box-shadow: 0 6px 0 var(--black);
}

.menu-grid,
.vote-grid {
  display: grid;
  gap: 10px;
}

.menu-card {
  display: grid;
  gap: 8px;
  padding: 10px;
}

.menu-meta {
  display: grid;
  gap: 7px;
}

.allergen-list,
.allergen-guide,
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.ingredient-details {
  border-top: 2px solid var(--line);
  padding-top: 6px;
}

.ingredient-details summary {
  cursor: pointer;
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

.ingredient-details p {
  margin-top: 7px;
  font-size: 0.86rem;
}

.menu-category-image {
  width: min(760px, 100%);
  max-height: 360px;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  object-fit: contain;
}

.menu-duck-section {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 8px 0 28px;
  text-align: center;
}

.menu-duck-section img {
  width: min(150px, 34vw);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 7px 0 rgba(5, 5, 5, 0.28));
}

.menu-duck-section p {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--black);
  font-weight: 700;
}

.vote-flamingo-section {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px 0 32px;
  text-align: center;
}

.vote-flamingo-section img {
  width: min(190px, 42vw);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 7px 0 rgba(5, 5, 5, 0.24));
}

.vote-flamingo-section p {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--coral);
  box-shadow: 0 4px 0 var(--black);
  font-weight: 700;
}

.page-art-section {
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 10px 0 32px;
  text-align: center;
}

.page-art-section img {
  width: min(180px, 42vw);
  height: auto;
  border-radius: 999px;
  filter: drop-shadow(0 7px 0 rgba(5, 5, 5, 0.24));
}

.page-art-section-wide img {
  width: min(340px, 76vw);
}

.page-art-section p {
  width: fit-content;
  margin: 0;
  padding: 8px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  box-shadow: 0 4px 0 var(--black);
  font-weight: 700;
}

.allergen-tag {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 9px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.84rem;
  font-weight: 700;
}

.allergen-tag.friendly {
  background: var(--yellow);
}

.allergen-tag.playful {
  background: var(--yellow);
}

.filter-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.check-pill {
  display: block;
  cursor: pointer;
}

.check-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.check-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 10px 12px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--paper);
  color: var(--black);
  box-shadow: 0 5px 0 var(--black);
  font-weight: 700;
  line-height: 1.08;
  text-align: center;
}

.check-pill input:checked + span {
  background: var(--coral);
  transform: translateY(2px);
  box-shadow: 0 3px 0 var(--black);
}

.check-pill.playful span {
  background: var(--yellow);
}

.check-pill.playful input:checked + span {
  background: var(--lavender);
}

.mini-label {
  width: fit-content;
  margin-bottom: 8px;
  padding: 5px 9px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--blue);
  color: var(--black);
  font-size: 0.82rem;
  font-weight: 700;
}

.menu-helper-link {
  margin-top: 16px;
}

.vote-card {
  display: grid;
  gap: 5px;
  padding: 7px;
}

.vote-card h3 {
  font-size: 0.88rem;
}

.vote-card p {
  font-size: 0.72rem;
}

.fun-warning {
  margin: 14px 0;
  padding: 16px;
  border: 2px solid var(--black);
  border-radius: 22px;
  background: var(--lavender);
  color: var(--black);
  box-shadow: 0 6px 0 var(--black);
  font-weight: 700;
}

.floaty-goat {
  position: fixed;
  right: 16px;
  bottom: 86px;
  z-index: 18;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--green) url("../images/goatcha-logo.jpg") center / cover no-repeat;
  box-shadow: 0 6px 0 var(--black);
  animation: dessert-bob 2.8s ease-in-out infinite;
  cursor: pointer;
}

.floaty-goat::before {
  content: "";
}

.floaty-goat:hover::after,
.floaty-goat:focus::after {
  content: "tiny goat radar online";
  position: absolute;
  right: 0;
  bottom: calc(100% + 10px);
  width: 180px;
  padding: 10px;
  border: 2px solid var(--black);
  border-radius: 16px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 4px 0 var(--black);
  font-size: 0.9rem;
  line-height: 1.1;
}

.floaty-goat.activated {
  background-color: var(--coral);
  animation-duration: 0.75s;
}

.egg-toast {
  position: fixed;
  left: 50%;
  bottom: 156px;
  z-index: 40;
  width: min(320px, calc(100% - 32px));
  padding: 13px 16px;
  border: 2px solid var(--black);
  border-radius: 18px;
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 6px 0 var(--black);
  font-weight: 700;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.screen-bounce-icon {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 45;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 8px 0 rgba(5, 5, 5, 0.28));
  will-change: transform, opacity;
}

.screen-bounce-icon.leaving {
  opacity: 0;
  transition: opacity 420ms ease;
}

.idle-snail-layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  width: 100vw;
  height: 100vh;
  overflow: visible;
  pointer-events: none;
}

.idle-snail-slime-path {
  fill: none;
  stroke: rgba(225, 227, 234, 0.78);
  stroke-width: 7;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 0 9999;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) drop-shadow(0 2px 0 rgba(5, 5, 5, 0.08));
  transition: opacity 900ms ease;
}

.idle-snail-slime-path.leaving {
  opacity: 0;
}

.idle-snail-slime {
  fill: rgba(237, 239, 245, 0.62);
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 1;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.9)) drop-shadow(0 2px 0 rgba(5, 5, 5, 0.1));
  transform-box: fill-box;
  transform-origin: center;
  animation: slime-fade 7s ease-out forwards;
}

.idle-snail-slime-sparkle {
  fill: #ffffff;
  stroke: rgba(176, 184, 196, 0.82);
  stroke-width: 0.75;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.95));
  transform-box: fill-box;
  transform-origin: center;
  animation: slime-sparkle-fade 5.5s ease-out forwards;
}

.idle-snail {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 21;
  height: auto;
  pointer-events: none;
  filter: drop-shadow(0 8px 0 rgba(5, 5, 5, 0.2));
  transform-origin: center;
  will-change: transform, opacity;
}

.idle-snail.leaving {
  opacity: 0;
  transition: opacity 650ms ease;
}

@keyframes slime-fade {
  0% {
    opacity: 0;
    transform: scaleX(0.45) scaleY(0.65);
  }
  16% {
    opacity: 0.9;
    transform: scaleX(1) scaleY(1);
  }
  72% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: scaleX(0.72) scaleY(0.48);
  }
}

@keyframes slime-sparkle-fade {
  0% {
    opacity: 0;
    transform: scale(0.35);
  }
  20% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(0.15);
  }
}

@keyframes dessert-bob {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}

.vote-progress {
  height: 11px;
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--cream);
}

.vote-progress span {
  display: block;
  height: 100%;
  border-right: 2px solid var(--black);
  background: linear-gradient(90deg, var(--coral), var(--yellow), var(--green));
}

.form-card {
  padding: 18px;
}

.netlify-hidden {
  display: none;
}

.hiring-note {
  margin-bottom: 14px;
  padding: 14px;
  border: 2px solid var(--black);
  border-radius: 18px;
  background: var(--yellow);
  box-shadow: 0 5px 0 var(--black);
}

.hiring-note h2 {
  margin-bottom: 5px;
  font-size: 1.15rem;
}

.hiring-note p {
  margin-bottom: 0;
}

form {
  display: grid;
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 2px solid var(--black);
  border-radius: 16px;
  background: white;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  font-weight: 700;
}

.submission-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(5, 5, 5, 0.28);
}

.submission-modal-card {
  position: relative;
  width: min(430px, 100%);
  padding: 24px;
  border: 2px solid var(--black);
  border-radius: 24px;
  background: linear-gradient(135deg, var(--yellow) 0%, var(--coral) 52%, var(--blue) 100%);
  color: var(--black);
  box-shadow: 0 10px 0 var(--black);
}

.submission-modal-card h2 {
  margin: 8px 0;
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 0.95;
}

.submission-modal-card p:not(.eyebrow) {
  max-width: 30ch;
  font-size: 1.05rem;
  font-weight: 700;
}

.submission-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  min-height: 38px;
  padding: 6px 10px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 3px 0 var(--black);
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.events-list {
  display: grid;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.events-list li {
  padding: 12px 14px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--paper);
  box-shadow: 0 4px 0 var(--black);
  font-weight: 700;
  line-height: 1.1;
}

.hour-row {
  display: grid;
  grid-template-columns: minmax(96px, 1fr) minmax(170px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 2px solid var(--line);
}

.hour-row strong {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  text-align: right;
}

.inline-form {
  max-width: 720px;
  margin-bottom: 18px;
  padding: 14px;
  border: 2px solid var(--black);
  border-radius: 22px;
  background: var(--cream);
  box-shadow: 0 6px 0 var(--black);
}

.candy-section {
  align-items: center;
}

.candy-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.candy-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  padding: 14px;
  border: 2px solid var(--black);
  border-radius: 24px;
  background: white;
  box-shadow: 0 6px 0 var(--black);
}

.egg-message {
  display: none;
  width: 100%;
  margin: 4px 0 0;
  padding: 12px 14px;
  border: 2px solid var(--black);
  border-radius: 18px;
  background: var(--lavender);
  color: var(--black);
  font-weight: 700;
  box-shadow: 0 4px 0 var(--black);
}

.egg-message.show {
  display: block;
}

.story-photo {
  overflow: hidden;
  border: 2px solid var(--black);
  border-radius: 30px;
  background: var(--black);
  box-shadow: 0 8px 0 var(--black);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.site-footer {
  display: grid;
  gap: 22px;
  width: min(var(--max), calc(100% - 32px));
  margin: 44px auto 28px;
  padding: 22px;
  border: 2px solid var(--black);
  border-radius: 26px;
  background: var(--black);
  color: var(--paper);
}

.site-footer h2 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.site-footer a {
  display: block;
  width: fit-content;
  margin: 7px 0;
  color: var(--paper);
}

.footer-brand {
  color: var(--paper);
}

.mobile-bottom-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  padding: 8px;
  background: rgba(255, 248, 236, 0.94);
  border-top: 2px solid var(--black);
  backdrop-filter: blur(14px);
}

.mobile-bottom-bar a {
  min-height: 52px;
  padding: 8px;
  border-radius: 16px;
  background: var(--yellow);
  font-size: 0.9rem;
}

.page-hero {
  padding: 42px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: 1;
  margin-bottom: 18px;
}

.page-hero .lede {
  margin-top: 8px;
}

.contact-page .contact-hero {
  padding-top: 52px;
  padding-bottom: 8px;
}

.contact-page .contact-hero .lede {
  margin-bottom: 0;
}

.contact-page .contact-hero h1 {
  max-width: none;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  white-space: nowrap;
}

.contact-page .contact-grid {
  align-items: stretch;
  padding-top: 8px;
  padding-bottom: 24px;
}

.contact-page .info-card,
.contact-page .form-card {
  height: 100%;
}

.contact-page .section-heading.compact {
  margin-top: 18px;
  margin-bottom: 12px;
}

.contact-page .section-heading.compact h2 {
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  line-height: 1.05;
}

.contact-page .section-heading.compact p {
  padding: 5px 9px;
  font-size: 0.85rem;
}

.contact-page .social-links .pill {
  min-height: 36px;
  padding: 7px 10px;
  font-size: 0.82rem;
}

.contact-page .social-links .pill:nth-child(1) {
  background: var(--coral);
}

.contact-page .social-links .pill:nth-child(2) {
  background: var(--blue);
}

.contact-page .social-links .pill:nth-child(3) {
  background: var(--yellow);
}

.contact-page .contact-map-section {
  padding-top: 0;
  padding-bottom: 20px;
}

.contact-page + .site-footer {
  margin-top: 14px;
}

.what-page .what-hero {
  padding-bottom: 10px;
}

.what-page .what-hero h1 {
  max-width: 980px;
  font-size: clamp(2.35rem, 7vw, 4.5rem);
  line-height: 1.02;
}

.what-page .what-hero .lede {
  max-width: 660px;
  margin-bottom: 0;
}

.what-page .section {
  padding-top: 18px;
  padding-bottom: 18px;
}

.what-page + .site-footer {
  margin-top: 16px;
}

.vote-page .page-hero {
  padding-bottom: 6px;
}

.vote-page .section {
  padding-top: 22px;
}

.color-strip {
  display: grid;
  grid-template-columns: 1fr;
  height: 16px;
  border: 2px solid var(--black);
  border-radius: 999px;
  background: var(--coral);
  overflow: hidden;
}

.color-strip span { display: none; }

@media (max-width: 759px) {
  body {
    font-size: 16px;
    line-height: 1.38;
    padding-bottom: 72px;
  }

  .site-shell {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    grid-template-columns: 46px 1fr 46px;
    gap: 6px;
    width: min(var(--max), calc(100% - 24px));
    margin-top: 8px;
    padding: 8px 10px;
    box-shadow: 0 6px 0 var(--black);
  }

  .centered-brand {
    grid-column: 2;
    justify-self: center;
    width: 58px;
    height: 58px;
  }

  .brand-logo {
    width: 58px;
    height: 58px;
  }

  .nav-toggle {
    grid-column: 3;
    width: 42px;
    height: 42px;
    align-content: center;
    gap: 0;
  }

  .nav-toggle span:not(.sr-only) {
    width: 19px;
    height: 3px;
    margin: 1px;
  }

  .site-nav {
    top: calc(100% + 8px);
    gap: 7px;
    padding: 10px;
    border-radius: 20px;
  }

  .site-nav a {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.95rem;
  }

  .hero {
    gap: 18px;
    padding: 28px 0 24px;
  }

  .hero-copy {
    gap: 14px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.05rem);
    line-height: 0.98;
  }

  .hero h1 span {
    margin-top: 6px;
    font-size: clamp(1.45rem, 6.6vw, 2rem);
  }

  .lede {
    font-size: clamp(1.05rem, 4.5vw, 1.22rem);
    line-height: 1.32;
  }

  .eyebrow,
  .section-heading p {
    padding: 7px 11px;
    font-size: 0.92rem;
  }

  .hero-actions,
  .action-row {
    gap: 7px;
  }

  .hero-actions .button {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 0.85rem;
  }

  .quick-info {
    gap: 8px;
    padding: 14px;
  }

  .hero-media {
    min-height: 300px;
    border-radius: 26px;
  }

  .hero-media img {
    min-height: 300px;
  }

  .sticker {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px;
    border-radius: 16px;
    font-size: 0.88rem;
  }

  .page-hero {
    padding: 24px 0 4px;
  }

  .page-hero h1,
  .what-page .what-hero h1,
  .contact-page .contact-hero h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-size: clamp(2rem, 9.1vw, 2.35rem);
    line-height: 1.03;
    white-space: normal;
  }

  .page-hero .eyebrow {
    margin-bottom: 4px;
  }

  .page-hero .lede {
    margin-top: 2px;
    margin-bottom: 0;
  }

  .contact-page .contact-hero {
    padding-top: 24px;
    padding-bottom: 4px;
  }

  .section,
  .what-page .section,
  .vote-page .section {
    padding: 28px 0;
  }

  .page-hero + .section {
    padding-top: 6px;
  }

  .section-heading {
    gap: 4px;
    margin-bottom: 16px;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 8.4vw, 2.35rem);
    line-height: 1.04;
  }

  .section-heading span {
    font-size: 1rem;
    line-height: 1.35;
  }

  .feature-grid,
  .card-grid,
  .contact-grid,
  .story-grid,
  .candy-section {
    gap: 12px;
  }

  .feature-card,
  .info-card,
  .form-card {
    padding: 15px;
  }

  .feature-card,
  .info-card,
  .menu-card,
  .vote-card,
  .form-card {
    border-radius: 18px;
    box-shadow: 0 5px 0 var(--black);
  }

  .feature-card h3,
  .info-card h3,
  .menu-card h3 {
    font-size: 1.08rem;
  }

  .feature-card p,
  .info-card p {
    line-height: 1.32;
  }

  .menu-grid {
    gap: 8px;
  }

  .menu-card {
    gap: 6px;
    padding: 9px;
  }

  .menu-card p {
    font-size: 0.88rem;
    line-height: 1.22;
  }

  .menu-category-image {
    max-height: 280px;
  }

  .vote-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .vote-card {
    gap: 4px;
    padding: 6px;
  }

  .vote-card h3 {
    margin-bottom: 2px;
    font-size: 0.78rem;
  }

  .vote-card p {
    font-size: 0.68rem;
  }

  .vote-progress {
    height: 8px;
  }

  .vote-card .button.small {
    min-height: 32px;
    padding: 6px 7px;
    font-size: 0.72rem;
  }

  .button:disabled {
    cursor: not-allowed;
    opacity: 0.72;
  }

  .filter-grid {
    gap: 8px;
  }

  .check-pill span {
    min-height: 48px;
    padding: 8px 10px;
    font-size: 0.95rem;
  }

  .inline-form {
    margin-bottom: 14px;
    padding: 12px;
  }

  input,
  select,
  textarea {
    min-height: 44px;
    padding: 9px 11px;
    border-radius: 13px;
  }

  textarea {
    min-height: 110px;
  }

  .hour-row {
    grid-template-columns: minmax(76px, 0.75fr) minmax(154px, 1fr);
    gap: 8px;
    font-size: 0.92rem;
  }

  .hour-row strong {
    gap: 8px;
  }

  .events-list li {
    padding: 10px 12px;
    border-radius: 18px;
    line-height: 1.15;
  }

  .gallery-grid {
    gap: 8px;
  }

  .gallery-card {
    min-height: 140px;
    border-radius: 18px;
  }

  .gallery-card.featured {
    min-height: 220px;
  }

  .google-map iframe {
    height: 300px;
  }

  .story-photo {
    border-radius: 22px;
  }

  .story-photo img {
    min-height: 290px;
  }

  .site-footer {
    width: min(var(--max), calc(100% - 28px));
    margin: 28px auto 18px;
    padding: 18px;
    gap: 16px;
    border-radius: 22px;
    font-size: 0.92rem;
  }

  .mobile-bottom-bar {
    gap: 5px;
    padding: 7px;
  }

  .mobile-bottom-bar a {
    min-height: 48px;
    padding: 6px 4px;
    border-radius: 14px;
    font-size: 0.82rem;
  }

  .floaty-goat {
    right: 8px;
    bottom: 84px;
    width: 42px;
    height: 42px;
    box-shadow: 0 5px 0 var(--black);
  }

  .egg-toast {
    bottom: 140px;
    width: min(290px, calc(100% - 24px));
    padding: 11px 12px;
    font-size: 0.9rem;
  }

  .menu-duck-section img,
  .vote-flamingo-section img,
  .page-art-section img {
    width: min(150px, 40vw);
  }

  .page-art-section-wide img {
    width: min(300px, 84vw);
  }
}

@media (min-width: 760px) {
  body {
    padding-bottom: 0;
  }

  .site-header {
    grid-template-columns: minmax(0, 0.92fr) 132px minmax(0, 1.08fr);
    border-radius: 32px;
    min-height: 92px;
    margin-top: 34px;
    padding: 14px 20px;
    overflow: visible;
  }

  .nav-toggle {
    display: none;
  }

  .centered-brand {
    grid-column: 2;
    position: relative;
    z-index: 2;
    width: 132px;
    height: 132px;
    margin: -34px auto;
    border: 2px solid var(--black);
    border-radius: 999px;
    background: var(--paper);
    box-shadow: 0 8px 0 var(--black);
  }

  .brand-logo {
    width: 116px;
    height: 116px;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 9px;
  }

  .left-nav {
    justify-content: space-evenly;
  }

  .right-nav {
    justify-content: space-evenly;
  }

  .desktop-nav a {
    height: 52px;
    min-height: 52px;
    min-width: 74px;
    padding: 8px 12px;
    box-shadow: none;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .desktop-nav a[href="origin.html"],
  .desktop-nav a[href="what-is-goatcha.html"],
  .desktop-nav .directions-link {
    white-space: normal;
  }

  .desktop-nav .directions-link {
    background: var(--green);
    box-shadow: 0 4px 0 var(--black);
    height: 52px;
    min-height: 52px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .hero,
  .story-grid,
  .contact-grid,
  .candy-section {
    grid-template-columns: 1.04fr 0.96fr;
    align-items: center;
  }

  .feature-grid,
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-grid .feature-card {
    min-height: 190px;
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vote-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .gallery-card.featured {
    grid-row: auto;
    grid-column: auto;
  }

  .site-footer {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .mobile-bottom-bar {
    display: none;
  }
}

@media (min-width: 1040px) {
  .site-nav a {
    padding: 8px 13px;
    font-size: 1rem;
  }

  .desktop-nav a {
    min-width: 84px;
    padding: 8px 14px;
    font-size: 1rem;
  }

  .left-nav {
    padding-left: 22px;
  }

  .right-nav {
    padding-right: 22px;
  }

  .desktop-nav a[href="contact.html"] {
    min-width: 94px;
  }

  .menu-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .vote-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .filter-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .feature-grid,
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .feature-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
