:root {
  --lemon: #ffe566;
  --lemon-deep: #f0b429;
  --pink: #ff5ba3;
  --pink-deep: #e0287a;
  --ink: #1f1a14;
  --ink-soft: #5a4f42;
  --paper: #fff4c8;
  --sky: #7ec8ff;
  --leaf: #3fa34d;
  --strawberry: #ff5c6c;
  --kiwi: #8bc34a;
  --raspberry: #e6396b;
  --blackberry: #3d2a4a;
  --white: #fffdf6;
  --display: "Fredoka", "Arial Rounded MT Bold", system-ui, sans-serif;
  --body: "Outfit", "Segoe UI", sans-serif;
  --radius: 1.25rem;
  --shadow-soft: 0 18px 40px rgba(31, 26, 20, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.55;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(126, 200, 255, 0.45), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 0%, rgba(255, 91, 163, 0.22), transparent 50%),
    linear-gradient(180deg, #fff7d1 0%, #ffe9a8 28%, #fff8e3 58%, #fffdf6 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem clamp(1rem, 4vw, 2.5rem);
  background: rgba(255, 253, 246, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid rgba(31, 26, 20, 0.08);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.05rem;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border-radius: 50%;
  animation: bob 3.2s ease-in-out infinite;
}

.nav nav {
  display: flex;
  gap: 1.25rem;
}

.nav nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.nav nav a:hover {
  color: var(--pink-deep);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border-radius: 0.7rem;
  padding: 0.85rem 1.35rem;
  font-family: var(--display);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  background: var(--ink);
  color: var(--lemon);
}

.btn-primary:hover {
  background: var(--pink-deep);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}

.btn-ghost:hover {
  background: var(--lemon);
}

.btn-nav {
  background: var(--pink);
  color: var(--white);
  padding: 0.65rem 1.1rem;
  font-size: 0.92rem;
}

.btn-nav:hover {
  background: var(--ink);
  color: var(--lemon);
}

.hero {
  position: relative;
  min-height: min(92vh, 860px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  padding: clamp(2rem, 6vh, 4rem) clamp(1rem, 5vw, 3.5rem) clamp(3rem, 8vh, 5rem);
  overflow: hidden;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 35%, rgba(255, 229, 102, 0.55), transparent 42%),
    radial-gradient(circle at 20% 70%, rgba(255, 91, 163, 0.18), transparent 40%);
}

.slice {
  position: absolute;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background:
    conic-gradient(from 20deg, #ffe566, #fff9e8, #ffe566, #f0b429, #ffe566);
  border: 3px solid rgba(31, 26, 20, 0.12);
  opacity: 0.55;
  animation: drift 12s ease-in-out infinite;
}

.slice::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: rgba(255, 253, 246, 0.55);
}

.s1 { top: 12%; left: 48%; animation-delay: -2s; }
.s2 { width: 90px; height: 90px; bottom: 18%; left: 8%; animation-delay: -5s; opacity: 0.4; }
.s3 { width: 110px; height: 110px; top: 8%; right: 4%; animation-delay: -8s; opacity: 0.35; }

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--pink);
  transform: rotate(45deg);
  animation: twinkle 2.4s ease-in-out infinite;
}

.sp1 { top: 22%; left: 42%; }
.sp2 { top: 58%; right: 42%; background: var(--lemon-deep); animation-delay: 0.6s; }
.sp3 { bottom: 24%; left: 36%; background: var(--sky); animation-delay: 1.2s; }

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

.brand-mark {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--pink-deep);
  line-height: 0.98;
  text-wrap: balance;
}

.headline {
  margin: 0.9rem 0 0;
  font-family: var(--display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 18ch;
  color: var(--ink);
}

.lede {
  margin: 1.15rem 0 0;
  max-width: 34ch;
  color: #4a4238;
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual picture {
  display: block;
  width: min(100%, 440px);
  line-height: 0;
}

.mascot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 36px rgba(31, 26, 20, 0.18));
  animation: float-in 900ms cubic-bezier(0.22, 1, 0.36, 1) both, bob 4s ease-in-out 1s infinite;
}

.section {
  padding: clamp(3.5rem, 9vh, 6rem) clamp(1rem, 5vw, 3.5rem);
}

.section-inner {
  max-width: 1080px;
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pink-deep);
}

.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.8vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.section p {
  color: #4a4238;
}

.squeeze {
  background: rgba(255, 253, 246, 0.72);
  border-block: 2px solid rgba(31, 26, 20, 0.06);
}

.squeeze p:last-child {
  margin-bottom: 0;
  font-size: 1.15rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.menu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem 1.5rem;
  border-top: 3px solid var(--ink);
  padding-top: 1.5rem;
}

.flavor {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 0.85rem;
  min-height: 100%;
  transition: transform 200ms ease;
}

.flavor:hover {
  transform: translateY(-3px);
}

.flavor h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.25rem;
}

.flavor p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
}

.price {
  margin-top: 0.85rem !important;
  font-family: var(--display);
  font-weight: 700;
  color: var(--ink) !important;
  font-size: 1.15rem !important;
}

.price span {
  font-weight: 500;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.swatch {
  width: 100%;
  height: 8px;
  border-radius: 999px;
  border: none;
}

.base .swatch {
  background: linear-gradient(135deg, #fff4a8, #ffe566 55%, #f0b429);
}

.strawberry .swatch {
  background: linear-gradient(135deg, #ffd0d6, #ff5c6c);
}

.kiwi .swatch {
  background: linear-gradient(135deg, #e4f5c2, #8bc34a);
}

.raspberry .swatch {
  background: linear-gradient(135deg, #ffc2d4, #e6396b);
}

.blackberry .swatch {
  background: linear-gradient(135deg, #c9b4d8, #3d2a4a);
}

.jars {
  background:
    linear-gradient(135deg, rgba(255, 91, 163, 0.12), transparent 45%),
    linear-gradient(180deg, #fff0b8, #fff8df);
}

.jars-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.jar-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.jar-visual picture {
  display: block;
  width: min(100%, 420px);
  line-height: 0;
}

.jar-photo {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 1.25rem;
  box-shadow: var(--shadow-soft);
  object-fit: cover;
  aspect-ratio: 1198 / 1313;
}

.punch-card {
  position: absolute;
  right: 2%;
  bottom: 4%;
  width: 170px;
  padding: 0.9rem 0.95rem;
  background: var(--white);
  border: 2px solid var(--ink);
  border-radius: 1rem;
  box-shadow: var(--shadow-soft);
  transform: rotate(4deg);
  animation: stamp-in 700ms 400ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.punch-card p {
  margin: 0;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink-deep);
}

.punches {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.55rem 0 0.65rem;
}

.punches span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  background: transparent;
}

.punches .punched {
  background: var(--pink);
  box-shadow: inset 0 0 0 3px var(--white);
}

.punch-card strong {
  font-family: var(--display);
  font-size: 1.05rem;
  line-height: 1.15;
}

.jar-copy .fine {
  font-size: 0.95rem;
}

.jar-prices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin: 1.5rem 0 1rem;
}

.jar-prices div {
  background: rgba(255, 253, 246, 0.8);
  border: 2px solid rgba(31, 26, 20, 0.08);
  border-radius: 1rem;
  padding: 0.9rem 0.95rem;
}

.jar-prices dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--ink-soft);
}

.jar-prices dd {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 700;
}

.markets {
  background: var(--white);
}

.market-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.market-list li {
  padding: 1.2rem 1.25rem;
  border-left: 5px solid var(--lemon-deep);
  background: linear-gradient(90deg, rgba(255, 229, 102, 0.28), rgba(255, 253, 246, 0.4));
  border-radius: 0 1rem 1rem 0;
}

.market-list h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
}

.market-list p {
  margin: 0.4rem 0 0;
}

.note {
  margin-top: 1.5rem;
  padding: 1.2rem 1.35rem;
  border-radius: var(--radius);
  background: rgba(255, 91, 163, 0.1);
  border: 2px dashed rgba(224, 40, 122, 0.35);
}

.note p {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
}

.note .btn {
  margin-top: 0;
}

.contact-title {
  margin: 0.15rem 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  line-height: 1.1;
}

.contact-email {
  margin: 0.85rem 0 0 !important;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 700;
}

.contact-email a {
  color: var(--pink-deep);
  text-decoration: none;
  word-break: break-all;
}

.contact-email a:hover {
  text-decoration: underline;
}

.contact-actions {
  margin-top: 1rem;
}

.contact-status {
  margin-top: 0.65rem !important;
  color: var(--leaf) !important;
  font-weight: 700 !important;
}

button.btn {
  cursor: pointer;
  font: inherit;
}

.footer {
  padding: 2.5rem clamp(1rem, 5vw, 3.5rem) 2.75rem;
  background: var(--ink);
  color: #f7ecd0;
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.25rem;
  align-items: center;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: center;
}

.footer-brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--lemon);
}

.footer-brand p,
.footer-meta {
  margin: 0.2rem 0 0;
  color: rgba(247, 236, 208, 0.72);
  font-size: 0.95rem;
}

.footer-email {
  display: inline-block;
  margin-top: 0.35rem;
  color: var(--lemon);
  font-weight: 600;
  text-decoration: none;
}

.footer-email:hover {
  text-decoration: underline;
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(12px, -14px) rotate(8deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.25; transform: rotate(45deg) scale(0.8); }
  50% { opacity: 1; transform: rotate(45deg) scale(1.15); }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(28px) scale(0.94); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes stamp-in {
  from { opacity: 0; transform: rotate(12deg) scale(0.7); }
  to { opacity: 1; transform: rotate(4deg) scale(1); }
}

@media (max-width: 980px) {
  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .flavor.base {
    grid-column: 1 / -1;
  }
}

@media (max-width: 840px) {
  .nav nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    padding-top: 1.25rem;
    padding-bottom: 2.5rem;
    gap: 1.25rem;
  }

  .brand-mark {
    font-size: clamp(2.15rem, 11vw, 3.1rem);
  }

  .headline {
    font-size: clamp(1.2rem, 5.2vw, 1.55rem);
    max-width: 20ch;
  }

  .headline,
  .lede {
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-row {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-visual picture {
    width: min(68vw, 280px);
  }

  .mascot {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .jars-layout,
  .market-list,
  .jar-prices {
    grid-template-columns: 1fr;
  }

  .jar-visual {
    min-height: 0;
  }

  .jar-visual picture {
    width: min(100%, 360px);
  }

  .punch-card {
    position: static;
    transform: none;
    width: min(100%, 240px);
    animation: none;
    margin-top: 0.75rem;
  }

  .menu-grid {
    gap: 1.35rem;
  }

  .flavor + .flavor {
    border-top: 1px solid rgba(31, 26, 20, 0.1);
    padding-top: 1.1rem;
  }
}

@media (max-width: 560px) {
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .btn-nav {
    padding: 0.55rem 0.85rem;
    font-size: 0.88rem;
  }

  .nav-brand span {
    font-size: 0.95rem;
  }

  .footer-meta {
    font-size: 0.9rem;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  html {
    scroll-behavior: auto;
  }
}
