/*
Theme Name: Scoops Theme
Author: Morgan
Version: 1.0
*/

:root {
  --watermelon: #f8485e;
  --cotton-candy: #88dbdf;
  --strawberry: #ff7276;
  --sprinkle-pink: #f6dae0;
  --mint-chip: #b1e4e3;
  --waffle-cone: #f1b434;
  --mocha: #c16c18;
  --ink: #1b1b1b;
  --cream: #fff8ef;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(27, 27, 27, 0.13);
  --font-display: "Huckleberry JF", "Hucklebyck JF", "Cooper Black", Georgia, serif;
  --font-condensed: "Bryant Compressed Medium", "Bryant Compressed", "Arial Narrow", "Helvetica Condensed", Arial, sans-serif;
  --font-body: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 800;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(255, 248, 239, 0.92);
  border-bottom: 4px solid var(--watermelon);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: clamp(112px, 14vw, 180px);
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.site-nav a {
  padding: 10px 14px;
  border: 2px solid transparent;
  border-radius: 8px;
  color: var(--ink);
  font-family: var(--font-condensed);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a:focus {
  border-color: var(--ink);
  background: var(--mint-chip);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 64px);
  min-height: 78vh;
  padding: clamp(38px, 7vw, 90px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 8% 12%, rgba(136, 219, 223, 0.48), transparent 30%),
    linear-gradient(135deg, var(--sprinkle-pink), var(--cream) 48%, var(--mint-chip));
  overflow: hidden;
}

.home-announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  padding: 12px 18px;
  background: var(--watermelon);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.home-announcement p {
  margin: 0;
}

.home-announcement a {
  color: var(--white);
  text-underline-offset: 4px;
}

.home-hero-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(380px, 1.08fr);
  min-height: min(82vh, 820px);
  border-bottom: 6px solid var(--ink);
  background: var(--cream);
}

.editorial-copy {
  display: grid;
  align-content: center;
  padding: clamp(42px, 7vw, 96px) clamp(22px, 5vw, 74px);
  background:
    radial-gradient(circle at 12% 14%, rgba(136, 219, 223, 0.52), transparent 28%),
    linear-gradient(135deg, var(--sprinkle-pink), var(--cream));
}

.editorial-copy h1 {
  max-width: 760px;
  margin: 0;
  color: var(--watermelon);
  font-size: clamp(3rem, 7vw, 7.2rem);
  line-height: 0.92;
}

.editorial-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 20px 0 0;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  font-weight: 700;
}

.editorial-photo {
  min-height: 520px;
  border-left: 6px solid var(--ink);
  background: var(--cotton-candy);
}

.editorial-photo img,
.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--watermelon);
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 900;
  text-transform: uppercase;
}

.no-break {
  white-space: nowrap;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(3rem, 8vw, 7.8rem);
  line-height: 0.92;
}

.shop-paths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  border-top: 6px solid var(--ink);
  border-bottom: 6px solid var(--ink);
}

.path-card {
  display: grid;
  align-content: space-between;
  min-height: 330px;
  padding: clamp(28px, 4vw, 46px);
  border-right: 6px solid var(--ink);
}

.path-card:last-child {
  border-right: 0;
}

.path-card h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 0.98;
}

.path-card a {
  width: fit-content;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
  text-underline-offset: 5px;
}

.path-flavors {
  background: var(--cotton-candy);
}

.path-story {
  background: var(--waffle-cone);
}

.path-visit {
  background: var(--sprinkle-pink);
}

.hero p,
.page-hero p,
.intro-section p {
  max-width: 690px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--watermelon);
  box-shadow: 6px 6px 0 var(--ink);
  color: var(--white);
  font-family: var(--font-condensed);
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.button:hover,
.button:focus {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}

.button-secondary {
  background: var(--waffle-cone);
  color: var(--ink);
}

.hero-scoop-stack {
  position: relative;
  z-index: 1;
  align-self: center;
  min-height: 520px;
  filter: drop-shadow(18px 22px 0 rgba(27, 27, 27, 0.14));
}

.scoop {
  position: absolute;
  left: 50%;
  width: min(78vw, 420px);
  aspect-ratio: 1;
  border: 7px solid var(--ink);
  border-radius: 50% 50% 44% 46%;
  transform: translateX(-50%);
}

.scoop::before,
.scoop::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.scoop::before {
  top: 22%;
  left: 19%;
  width: 64%;
  height: 30%;
  transform: rotate(-13deg);
}

.scoop::after {
  right: 16%;
  bottom: 27%;
  width: 58px;
  height: 14px;
  transform: rotate(22deg);
}

.scoop-watermelon {
  top: 18px;
  background: var(--watermelon);
  animation: scoop-bob 4s ease-in-out infinite;
}

.scoop-cotton {
  top: 222px;
  background: var(--cotton-candy);
  animation: scoop-bob 4s ease-in-out 500ms infinite;
}

.cone {
  position: absolute;
  top: 360px;
  left: 50%;
  width: 180px;
  height: 250px;
  border-right: 7px solid var(--ink);
  border-bottom: 7px solid var(--ink);
  background:
    linear-gradient(45deg, transparent 42%, rgba(193, 108, 24, 0.8) 43% 55%, transparent 56%),
    linear-gradient(-45deg, transparent 42%, rgba(193, 108, 24, 0.8) 43% 55%, transparent 56%),
    var(--waffle-cone);
  background-size: 56px 56px;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
}

.scoop-ribbon {
  overflow: hidden;
  padding: 18px 0;
  border-bottom: 1px solid rgba(27, 27, 27, 0.12);
  background:
    linear-gradient(90deg, rgba(255, 248, 239, 0.96), rgba(246, 218, 224, 0.88), rgba(177, 228, 227, 0.7));
  color: var(--ink);
}

.scoop-ribbon div {
  display: flex;
  align-items: center;
  gap: 0;
  width: max-content;
  animation: ticker-scroll 36s linear infinite;
}

.scoop-ribbon span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: 14px;
  padding: 12px 20px;
  border: 2px solid rgba(27, 27, 27, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 8px 24px rgba(27, 27, 27, 0.06);
  font-family: var(--font-condensed);
  font-size: clamp(0.95rem, 1.6vw, 1.25rem);
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.scoop-ribbon span::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--watermelon);
}

.store-photo-placeholder {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 460px;
  border: 6px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(27, 27, 27, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(27, 27, 27, 0.08) 1px, transparent 1px),
    linear-gradient(135deg, var(--cotton-candy), var(--strawberry));
  background-size: 28px 28px, 28px 28px, auto;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.store-photo-placeholder::before {
  content: "";
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 44%;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
}

.store-photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 18% 16% auto 16%;
  height: 72px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: repeating-linear-gradient(90deg, var(--watermelon) 0 42px, var(--white) 42px 84px);
}

.store-photo-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 220px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.section {
  padding: clamp(56px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.intro-section {
  background: var(--white);
  text-align: center;
}

.intro-section h2,
.section-heading h2,
.split-section h2 {
  max-width: 900px;
  margin: 0 auto 18px;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 1;
}

.intro-section p {
  margin: 0 auto;
}

.flavor-preview {
  background: var(--mint-chip);
}

.flavor-playground {
  background: var(--ink);
}

.flavor-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  padding: clamp(24px, 5vw, 54px);
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--cream);
}

.flavor-showcase {
  display: grid;
  gap: 22px;
  justify-items: center;
}

.interactive-scoop {
  --active-flavor: var(--watermelon);
  --active-text: var(--white);
  display: grid;
  place-items: center;
  width: min(100%, 430px);
  aspect-ratio: 1;
  padding: 38px;
  border: 7px solid var(--ink);
  border-radius: 50% 50% 42% 45%;
  background:
    radial-gradient(circle at 26% 28%, rgba(255, 255, 255, 0.58), transparent 28%),
    var(--active-flavor);
  box-shadow: 12px 12px 0 var(--ink);
  color: var(--active-text);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.92;
  text-align: center;
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.interactive-scoop:hover {
  transform: rotate(-3deg) scale(1.02);
}

.flavor-showcase p {
  max-width: 520px;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  text-align: center;
}

.flavor-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  grid-column: 1 / -1;
}

.flavor-button {
  min-height: 48px;
  padding: 12px 16px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.flavor-button:hover,
.flavor-button:focus,
.flavor-button.is-active {
  background: var(--waffle-cone);
  transform: translateY(-3px);
}

.treat-family {
  background: var(--white);
}

.treat-cards .treat-card {
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.treat-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 12px 16px 0 var(--ink);
}

.visit-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  background: linear-gradient(135deg, var(--mint-chip), var(--sprinkle-pink));
}

.visit-photo {
  min-height: 480px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  box-shadow: 10px 10px 0 var(--ink);
  overflow: hidden;
}

.visit-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.visit-copy p {
  max-width: 620px;
  font-size: 1.18rem;
  font-weight: 700;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 30px;
}

.cards,
.flavor-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.card,
.flavor-card,
.contact-card,
.note-box {
  border: 4px solid var(--ink);
  border-radius: 8px;
  box-shadow: 8px 8px 0 var(--ink);
}

.card {
  min-height: 220px;
  padding: 28px;
}

.card h3,
.flavor-card h2,
.contact-card h2,
.note-box h3 {
  margin: 0 0 10px;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1;
}

.card p,
.flavor-card p,
.contact-card p,
.note-box li {
  margin: 0;
  font-weight: 700;
}

.card-pink {
  background: var(--watermelon);
  color: var(--white);
}

.card-blue {
  background: var(--cotton-candy);
}

.card-gold {
  background: var(--waffle-cone);
}

.page-hero {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  border-bottom: 5px solid var(--ink);
}

.about-hero {
  background: linear-gradient(135deg, var(--sprinkle-pink), var(--white));
}

.story-photo-hero {
  display: grid;
  align-items: start;
  min-height: min(82vh, 820px);
  padding-top: clamp(34px, 6vw, 78px);
  background:
    linear-gradient(180deg, rgba(27, 27, 27, 0.02) 0%, rgba(27, 27, 27, 0.08) 45%, rgba(27, 27, 27, 0.68) 100%),
    var(--story-hero);
  background-position: center;
  background-size: cover;
}

.story-hero-copy {
  width: min(100%, 760px);
  margin-left: clamp(18px, 5vw, 72px);
  padding: clamp(22px, 4vw, 40px);
  border-top: 5px solid var(--watermelon);
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.94);
  box-shadow: 10px 10px 0 rgba(248, 72, 94, 0.92);
}

.story-hero-copy h1 {
  margin: 0;
  color: var(--watermelon);
}

.story-hero-copy p:not(.eyebrow) {
  margin-bottom: 0;
}

.flavors-hero {
  background: linear-gradient(135deg, var(--cotton-candy), var(--cream));
}

.scoops-hero {
  position: relative;
  overflow: hidden;
}

.scoops-hero > :not(.floating-scoop) {
  position: relative;
  z-index: 1;
}

.scoops-hero > p:not(.eyebrow) {
  margin-left: clamp(28px, 7vw, 112px);
}

.floating-scoop {
  position: absolute;
  width: clamp(170px, 22vw, 340px);
  height: auto;
  opacity: 0.82;
  pointer-events: none;
  user-select: none;
}

.floating-scoop-left {
  left: -7vw;
  bottom: 14%;
  animation: scoop-slide-left 8s ease-in-out infinite;
}

.floating-scoop-right {
  right: -7vw;
  top: 12%;
  animation: scoop-slide-right 9s ease-in-out infinite;
}

.contact-hero {
  background: linear-gradient(135deg, var(--waffle-cone), var(--sprinkle-pink));
}

.page-section,
.page-content {
  max-width: 900px;
  margin: 0 auto;
}

.page-content h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.split-section p {
  max-width: 720px;
  font-size: 1.2rem;
}

.note-box {
  padding: 28px;
  background: var(--mint-chip);
}

.note-box ul {
  margin: 0;
  padding-left: 20px;
}

.join-team-section {
  background: linear-gradient(135deg, var(--mint-chip), var(--sprinkle-pink));
}

.join-team-copy {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 52px);
  border: 5px solid var(--ink);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 10px 10px 0 var(--watermelon);
  text-align: center;
}

.join-team-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(2.3rem, 5vw, 5rem);
  line-height: 0.98;
}

.join-team-copy p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 auto 28px;
  font-size: 1.15rem;
  font-weight: 700;
}

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

.flavor-card {
  min-height: 210px;
  padding: 28px;
}

.scoops-board {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 248, 239, 0.96) 0%, rgba(246, 218, 224, 0.92) 46%, rgba(136, 219, 223, 0.72) 100%);
  overflow: hidden;
}

.scoops-board > * {
  position: relative;
  z-index: 2;
}

.scoops-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 34px;
}

.scoops-filter {
  min-height: 44px;
  padding: 10px 16px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 900;
  text-transform: uppercase;
}

.scoops-filter:hover,
.scoops-filter:focus,
.scoops-filter.is-active {
  background: var(--watermelon);
  color: var(--white);
}

.scoop-menu {
  max-width: min(760px, 54vw);
  margin: 0 auto;
  text-align: center;
}

.scoop-menu-section {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  margin-top: clamp(42px, 7vw, 88px);
}

.scoop-menu-section:first-child {
  margin-top: 0;
}

.scoop-menu-section[hidden] {
  display: none;
}

.scoop-menu-section > h2 {
  margin: 0;
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 1;
}

.scoop-menu-item {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 20px;
  animation: scoop-row-in 520ms ease both;
  animation-delay: calc(var(--row-index) * 70ms);
  transition: transform 180ms ease;
}

.scoop-menu-item:hover {
  transform: translateY(-4px);
}

.scoop-menu-item h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: clamp(1.65rem, 3.3vw, 2.85rem);
  line-height: 1.05;
}

.scoop-menu-item h3 span {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

.scoop-menu-item p {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 10px auto 0;
  color: rgba(27, 27, 27, 0.68);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.65vw, 1.35rem);
  line-height: 1.35;
}

.edge-scoop {
  position: absolute;
  top: 50%;
  width: clamp(280px, 33vw, 540px);
  max-width: none;
  pointer-events: none;
  user-select: none;
  z-index: 1;
}

.edge-scoop-right {
  right: calc(50% - 50vw - 158px);
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
}

.edge-scoop-left {
  left: calc(50% - 50vw - 158px);
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center;
}

.scoops-note {
  margin: clamp(46px, 7vw, 80px) auto 0;
  color: rgba(27, 27, 27, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 800;
  text-align: center;
}

.watermelon {
  background: var(--watermelon);
  color: var(--white);
}

.cotton {
  background: var(--cotton-candy);
}

.strawberry {
  background: var(--strawberry);
  color: var(--white);
}

.sprinkle {
  background: var(--sprinkle-pink);
}

.mint {
  background: var(--mint-chip);
}

.mocha {
  background: var(--mocha);
  color: var(--white);
}

.contact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
}

.contact-card {
  padding: 24px;
  background: var(--cream);
}

.contact-card a {
  font-weight: 900;
}

.site-footer {
  overflow: hidden;
  background: var(--sprinkle-pink);
  color: var(--ink);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.9fr) minmax(360px, 1.2fr) minmax(260px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(56px, 7vw, 104px) clamp(24px, 6vw, 80px);
  background:
    linear-gradient(60deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.16) 75%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.16) 25%, transparent 25% 75%, rgba(255, 255, 255, 0.16) 75%),
    var(--sprinkle-pink);
  background-position: 0 0, 0 0, 0 0;
  background-size: 42px 72px, 42px 72px, auto;
}

.footer-column h2 {
  margin: 0 0 20px;
  font-family: var(--font-condensed);
  font-size: clamp(1.1rem, 1.6vw, 1.45rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.footer-location h2 {
  max-width: 310px;
  font-family: var(--font-condensed);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 800;
  letter-spacing: 0.32em;
}

.footer-column p,
.footer-hours {
  margin: 0;
  color: rgba(27, 27, 27, 0.7);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.footer-hours {
  display: grid;
  gap: 4px;
  max-width: 470px;
}

.footer-hours div {
  display: grid;
  grid-template-columns: minmax(130px, 0.85fr) minmax(145px, 1fr);
  gap: 18px;
}

.footer-hours dt,
.footer-hours dd {
  margin: 0;
}

.footer-column .footer-hours-note {
  margin: -8px 0 18px;
  font-size: clamp(0.78rem, 1vw, 0.95rem);
}

.footer-connect a {
  color: var(--ink);
  text-decoration: none;
}

.footer-connect {
  position: relative;
  z-index: 2;
}

.social-links {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 24px;
  pointer-events: auto;
}

.social-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 44px;
  height: 44px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
  color: var(--ink);
  cursor: pointer;
  text-decoration: none;
  pointer-events: auto;
  transition: background 160ms ease, transform 160ms ease;
}

.social-link:hover,
.social-link:focus {
  background: rgba(248, 72, 94, 0.18);
  transform: translateY(-2px);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 22px;
  height: 22px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.35rem;
  line-height: 1;
  font-weight: 800;
  pointer-events: none;
}

.footer-subscribe {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 28px;
  margin-top: clamp(10px, 3vw, 28px);
  padding: 28px 0 0;
  border-top: 2px solid rgba(27, 27, 27, 0.18);
  color: var(--ink);
  text-align: center;
}

.footer-subscribe p {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.45;
}

.subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 6px;
  background: var(--watermelon);
  color: var(--white);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease;
}

.subscribe-button:hover,
.subscribe-button:focus {
  background: var(--ink);
  transform: translateY(-3px);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .home-announcement {
    flex-direction: column;
    gap: 4px;
  }

  .home-hero-editorial,
  .shop-paths,
  .hero,
  .flavor-stage,
  .visit-section,
  .split-section,
  .cards,
  .flavor-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .editorial-photo {
    min-height: 420px;
    border-left: 0;
    border-top: 6px solid var(--ink);
  }

  .path-card {
    border-right: 0;
    border-bottom: 6px solid var(--ink);
  }

  .path-card:last-child {
    border-bottom: 0;
  }

  .store-photo-placeholder {
    min-height: 360px;
  }

  .floating-scoop {
    opacity: 0.32;
  }

  .scoops-hero > p:not(.eyebrow) {
    margin-left: 0;
  }

  .scoop-menu {
    max-width: min(720px, 68vw);
  }

  .edge-scoop {
    width: clamp(230px, 38vw, 360px);
  }

  .edge-scoop-right {
    right: calc(50% - 50vw - 124px);
  }

  .edge-scoop-left {
    left: calc(50% - 50vw - 124px);
  }

  .hero-scoop-stack {
    min-height: 430px;
  }

  .scoop {
    width: min(82vw, 340px);
  }

  .scoop-cotton {
    top: 180px;
  }

  .cone {
    top: 300px;
    width: 140px;
    height: 190px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding: 54px 28px;
  }

  .footer-hours div {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  .footer-main {
    grid-template-columns: minmax(190px, 0.8fr) minmax(330px, 1.25fr) minmax(230px, 0.95fr);
    gap: 28px;
    padding-inline: 32px;
  }

  .footer-location h2 {
    letter-spacing: 0.24em;
  }

  .footer-column p,
  .footer-hours {
    font-size: 1.05rem;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-nav a {
    padding: 8px 10px;
    font-size: 0.94rem;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 3rem;
  }

  .editorial-copy {
    padding: 34px 18px;
  }

  .editorial-copy h1 {
    font-size: 2.8rem;
  }

  .editorial-photo,
  .visit-photo {
    min-height: 300px;
  }

  .scoop-menu-item:hover {
    transform: none;
  }

  .scoop-menu {
    max-width: 100%;
  }

  .edge-scoop {
    display: none;
  }

  .card,
  .flavor-card,
  .contact-card,
  .note-box {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .hero-scoop-stack {
    min-height: 350px;
  }

  .scoop {
    width: min(78vw, 260px);
  }

  .scoop-cotton {
    top: 140px;
  }

  .cone {
    top: 235px;
    width: 110px;
    height: 150px;
  }
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scoop-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateX(-50%) translateY(-12px) rotate(2deg);
  }
}

@keyframes scoop-slide-left {
  0%,
  100% {
    transform: translateX(-22px) rotate(81deg);
  }

  50% {
    transform: translateX(28px) rotate(94deg);
  }
}

@keyframes scoop-slide-right {
  0%,
  100% {
    transform: translateX(22px) rotate(-81deg);
  }

  50% {
    transform: translateX(-28px) rotate(-94deg);
  }
}

@keyframes scoop-row-in {
  from {
    opacity: 0;
    transform: translateX(-28px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .scoop-ribbon div,
  .scoop-watermelon,
  .scoop-cotton,
  .floating-scoop,
  .scoop-menu-item {
    animation: none;
  }

  .button,
  .flavor-button,
  .interactive-scoop,
  .treat-cards .treat-card,
  .scoop-menu-item {
    transition: none;
  }
}
