/* natty nice — 2010s Material Design ice cream */

:root {
  --pink-50: #fce4ec;
  --pink-100: #f8bbd0;
  --pink-200: #f48fb1;
  --pink-300: #f06292;
  --pink-400: #ec407a;
  --pink-500: #e91e63;
  --pink-700: #c2185b;
  --blue-50: #e1f5fe;
  --blue-100: #b3e5fc;
  --blue-200: #81d4fa;
  --blue-300: #4fc3f7;
  --blue-400: #29b6f6;
  --blue-500: #03a9f4;
  --blue-700: #0288d1;
  --white: #ffffff;
  --surface: #fafafa;
  --ink: #37474f;
  --ink-soft: #607d8b;
  --shadow-1: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  --shadow-2: 0 3px 6px rgba(0, 0, 0, 0.16), 0 3px 6px rgba(0, 0, 0, 0.23);
  --shadow-4: 0 10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
  --shadow-6: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
  --shadow-8: 0 19px 38px rgba(0, 0, 0, 0.3), 0 15px 12px rgba(0, 0, 0, 0.22);
  --radius: 2px;
  --radius-card: 4px;
  --bar-h: 64px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: "Roboto", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Ambient background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, var(--pink-100), transparent 55%),
    radial-gradient(ellipse 70% 45% at 90% 0%, var(--blue-100), transparent 50%),
    linear-gradient(180deg, #fff 0%, var(--pink-50) 40%, var(--blue-50) 100%);
}

.blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  z-index: -2;
  pointer-events: none;
  animation: float-blob 18s var(--ease) infinite alternate;
}

.blob-1 {
  width: 320px;
  height: 320px;
  background: var(--pink-200);
  top: 12%;
  left: -80px;
}

.blob-2 {
  width: 280px;
  height: 280px;
  background: var(--blue-200);
  top: 40%;
  right: -60px;
  animation-delay: -6s;
  animation-duration: 22s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: var(--pink-100);
  bottom: 10%;
  left: 30%;
  animation-delay: -3s;
  animation-duration: 16s;
}

@keyframes float-blob {
  from {
    transform: translate(0, 0) scale(1);
  }
  to {
    transform: translate(40px, 30px) scale(1.08);
  }
}

/* Elevation helpers */
.elevation-2 {
  box-shadow: var(--shadow-2);
}
.elevation-4 {
  box-shadow: var(--shadow-4);
}
.elevation-6 {
  box-shadow: var(--shadow-6);
}
.elevation-8 {
  box-shadow: var(--shadow-8);
}

/* App bar */
.app-bar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--bar-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.app-bar.scrolled {
  box-shadow: var(--shadow-2);
}

.app-bar-inner {
  max-width: 1120px;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-right: auto;
}

.brand-mark {
  font-size: 1.4rem;
  animation: wiggle 3s var(--ease-bounce) infinite;
}

@keyframes wiggle {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  93% {
    transform: rotate(-12deg);
  }
  96% {
    transform: rotate(10deg);
  }
}

.brand-text {
  font-family: "Pacifico", cursive;
  font-size: 1.35rem;
  color: var(--pink-500);
  letter-spacing: 0.02em;
}

.nav-desktop {
  display: none;
  gap: 4px;
}

.nav-desktop a {
  position: relative;
  padding: 10px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.nav-desktop a:hover {
  background: var(--pink-50);
  color: var(--pink-700);
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: var(--blue-400);
  transform: scaleX(0);
  transition: transform 0.25s var(--ease);
}

.nav-desktop a:hover::after {
  transform: scaleX(1);
}

.icon-btn {
  width: 40px;
  height: 40px;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: var(--ink-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.icon-btn:hover {
  background: var(--blue-50);
  color: var(--blue-700);
}

.icon-btn:active {
  transform: scale(0.92);
}

.search-bar {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  background: var(--white);
  animation: slide-down 0.28s var(--ease-out);
}

.search-bar[hidden] {
  display: none;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font: 400 1.05rem/1.4 "Roboto", sans-serif;
  color: var(--ink);
  background: transparent;
}

@keyframes slide-down {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Skip link */
.skip-link {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 400;
  padding: 10px 16px;
  background: var(--pink-500);
  color: #fff;
  border-radius: var(--radius);
  font-weight: 500;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 12px;
}

/* Hamburger / close icon swap */
.menu-btn .menu-icon-close {
  display: none;
}

body.nav-open .menu-btn .menu-icon-open {
  display: none;
}

body.nav-open .menu-btn .menu-icon-close {
  display: inline-block;
}

body.nav-open {
  overflow: hidden;
}

/* Drawer */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(55, 71, 79, 0.45);
  z-index: 200;
  opacity: 0;
  transition: opacity 0.28s var(--ease);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.drawer-backdrop.show {
  opacity: 1;
}

.drawer-backdrop[hidden] {
  display: none;
}

.drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(320px, 88vw);
  max-width: 100%;
  background: var(--white);
  z-index: 210;
  box-shadow: var(--shadow-8);
  transform: translateX(-105%);
  transition: transform 0.32s var(--ease);
  display: flex;
  flex-direction: column;
  outline: none;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-header {
  padding: 20px 16px 24px 24px;
  background: linear-gradient(135deg, var(--pink-400), var(--blue-400));
  color: var(--white);
  flex-shrink: 0;
}

.drawer-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.drawer-header .brand-text {
  color: var(--white);
  font-size: 1.6rem;
}

.drawer-close {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.28) !important;
  color: #fff !important;
}

.drawer-sub {
  margin: 10px 0 0;
  opacity: 0.95;
  font-weight: 300;
  letter-spacing: 0.04em;
  font-size: 0.8rem;
  line-height: 1.4;
  max-width: 18rem;
  text-transform: none;
}

.drawer-nav {
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow-y: auto;
}

.drawer-nav a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink);
  transition: background 0.2s var(--ease);
  min-height: 48px;
}

.drawer-nav a .material-icons {
  color: var(--pink-400);
}

.drawer-nav a:hover,
.drawer-nav a:focus-visible {
  background: var(--pink-50);
  outline: none;
}

.drawer-footer {
  border-top: 1px solid var(--pink-50);
  padding: 12px 8px 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: linear-gradient(180deg, #fff, var(--blue-50));
}

.drawer-contact {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.2s var(--ease);
}

.drawer-contact .material-icons {
  color: var(--blue-500);
  font-size: 20px;
}

.drawer-contact:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 900px) {
  .drawer,
  .drawer-backdrop,
  .menu-btn {
    display: none !important;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius);
  font: 500 0.875rem/1 "Roboto", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s var(--ease), transform 0.2s var(--ease), background 0.2s var(--ease);
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink-500), var(--pink-400));
  color: var(--white);
  box-shadow: 0 2px 4px rgba(233, 30, 99, 0.35), var(--shadow-1);
}

.btn-primary:hover {
  box-shadow: 0 4px 12px rgba(233, 30, 99, 0.45), var(--shadow-2);
  transform: translateY(-1px);
}

.btn-outline {
  background: var(--white);
  color: var(--blue-700);
  border: 2px solid var(--blue-300);
}

.btn-outline:hover {
  background: var(--blue-50);
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple-wave {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  transform: scale(0);
  animation: ripple-anim 0.55s var(--ease-out);
  pointer-events: none;
}

.btn-outline .ripple-wave,
.chip .ripple-wave,
.flavor-card .ripple-wave {
  background: rgba(3, 169, 244, 0.25);
}

@keyframes ripple-anim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* Hero */
.hero {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 64px;
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 900px) {
  .hero {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 72px;
  }

  .nav-desktop {
    display: flex;
  }
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-700);
}

.hero h1 {
  margin: 0 0 16px;
  font-weight: 300;
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  line-height: 1.15;
  color: var(--ink);
}

.hero h1 .script {
  font-family: "Pacifico", cursive;
  font-weight: 400;
  background: linear-gradient(90deg, var(--pink-500), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}

@keyframes shimmer {
  to {
    background-position: 200% center;
  }
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 34ch;
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cone-card {
  width: min(280px, 80vw);
  height: 340px;
  border-radius: 16px 16px 4px 4px;
  background: linear-gradient(165deg, var(--white) 0%, var(--pink-50) 45%, var(--blue-50) 100%);
  position: relative;
  overflow: hidden;
  animation: bob 5s ease-in-out infinite;
}

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

.swirl {
  position: absolute;
  left: 50%;
  border-radius: 50% 50% 45% 45%;
  transform: translateX(-50%);
  animation: swirl-pulse 3s ease-in-out infinite;
}

.swirl-a {
  width: 140px;
  height: 90px;
  top: 36px;
  background: linear-gradient(180deg, var(--pink-300), var(--pink-400));
  z-index: 3;
}

.swirl-b {
  width: 160px;
  height: 100px;
  top: 72px;
  background: linear-gradient(180deg, var(--blue-200), var(--blue-400));
  z-index: 2;
  animation-delay: 0.2s;
}

.swirl-c {
  width: 170px;
  height: 110px;
  top: 112px;
  background: linear-gradient(180deg, #fff, var(--pink-100));
  z-index: 1;
  animation-delay: 0.4s;
}

@keyframes swirl-pulse {
  0%,
  100% {
    transform: translateX(-50%) scale(1);
  }
  50% {
    transform: translateX(-50%) scale(1.04);
  }
}

.cone {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 48px solid transparent;
  border-right: 48px solid transparent;
  border-top: 130px solid #ffcc80;
  filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.12));
}

.cone::before {
  content: "";
  position: absolute;
  top: -130px;
  left: -40px;
  width: 80px;
  height: 130px;
  background:
    repeating-linear-gradient(
      -35deg,
      transparent,
      transparent 8px,
      rgba(230, 150, 60, 0.35) 8px,
      rgba(230, 150, 60, 0.35) 10px
    );
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}

.sparkle {
  position: absolute;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--pink-200);
  animation: twinkle 2s ease-in-out infinite;
}

.s1 {
  top: 48px;
  right: 48px;
}
.s2 {
  top: 100px;
  left: 40px;
  animation-delay: 0.5s;
  background: var(--blue-100);
}
.s3 {
  top: 160px;
  right: 56px;
  animation-delay: 1s;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.float-chip {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 24px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--ink);
  animation: float-chip 4s ease-in-out infinite;
}

.float-chip .material-icons {
  font-size: 18px;
  color: var(--pink-400);
}

.chip-1 {
  top: 24px;
  left: 0;
}

.chip-2 {
  bottom: 48px;
  right: 0;
  animation-delay: -2s;
}

.chip-2 .material-icons {
  color: var(--blue-400);
}

@keyframes float-chip {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Sections */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}

.section-alt {
  position: relative;
}

.section-alt::before {
  content: "";
  position: absolute;
  inset: 0 -100vw;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(179, 229, 252, 0.35));
  z-index: -1;
}

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

.section-head h2 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  color: var(--ink);
}

.section-head p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.55;
}

/* Flavor cards */
.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}

.flavor-card {
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: var(--shadow-1);
  cursor: pointer;
  transition: box-shadow 0.28s var(--ease), transform 0.28s var(--ease);
  position: relative;
}

.flavor-card:hover {
  box-shadow: var(--shadow-4);
  transform: translateY(-6px);
}

.flavor-card:active {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
}

.flavor-swatch {
  height: 140px;
  position: relative;
  overflow: hidden;
}

.flavor-swatch::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.08));
}

.flavor-body {
  padding: 16px 18px 20px;
}

.flavor-body h3 {
  margin: 0 0 6px;
  font-size: 1.1rem;
  font-weight: 500;
}

.flavor-body p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

.flavor-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.price {
  font-weight: 500;
  color: var(--pink-700);
}

.fav-btn {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--pink-50);
  color: var(--pink-400);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-bounce), background 0.2s, color 0.2s;
}

.fav-btn.liked {
  background: var(--pink-500);
  color: var(--white);
  animation: pop 0.4s var(--ease-bounce);
}

@keyframes pop {
  0% {
    transform: scale(0.7);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}

/* Chips + menu */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  border: none;
  padding: 8px 16px;
  border-radius: 16px;
  font: 500 0.8125rem/1 "Roboto", sans-serif;
  letter-spacing: 0.04em;
  background: var(--white);
  color: var(--ink-soft);
  box-shadow: var(--shadow-1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s var(--ease), color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.chip:hover {
  box-shadow: var(--shadow-2);
}

.chip-active {
  background: var(--blue-400);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(3, 169, 244, 0.4);
}

.menu-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.menu-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  min-height: 148px;
  height: 100%;
  padding: 16px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease);
  animation: list-in 0.45s var(--ease-out) both;
  min-width: 0;
}

.menu-item.hidden {
  display: none !important;
}

@keyframes list-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-item:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-3px);
}

.menu-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  background: var(--pink-50);
}

.menu-item > div:not(.menu-icon) {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
}

.menu-item h3 {
  margin: 0 0 4px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.25;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.menu-item p {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-soft);
  line-height: 1.4;
  overflow-wrap: anywhere;
}

.menu-price {
  margin-top: auto;
  align-self: flex-end;
  font-weight: 600;
  font-size: 1rem;
  color: var(--blue-700);
  white-space: nowrap;
}

/* About */
.about-card {
  display: grid;
  background: var(--white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 1fr 1.2fr;
  }
}

.about-photo {
  min-height: 240px;
  position: relative;
  background: linear-gradient(145deg, var(--pink-300), var(--blue-300) 60%, var(--pink-100));
}

.photo-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.9) 0 8%, transparent 9%),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.7) 0 6%, transparent 7%),
    radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.6) 0 5%, transparent 6%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 12px,
      rgba(255, 255, 255, 0.12) 12px,
      rgba(255, 255, 255, 0.12) 24px
    );
  animation: pattern-drift 20s linear infinite;
}

@keyframes pattern-drift {
  to {
    background-position: 40px 40px, -20px 30px, 10px -20px, 48px 48px;
  }
}

.photo-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--pink-700);
  box-shadow: var(--shadow-1);
}

.about-body {
  padding: 28px 24px 32px;
}

.about-body h2 {
  margin: 0 0 12px;
  font-weight: 400;
  font-size: 1.75rem;
}

.about-body > p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.65;
}

.stat-row {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 28px;
}

.stat-row li {
  display: flex;
  flex-direction: column;
}

.stat-row strong {
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--pink-500);
  line-height: 1.1;
}

.stat-row span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* CTA */
.section-cta {
  padding-bottom: 96px;
}

.cta-card {
  display: grid;
  gap: 0;
  background: linear-gradient(135deg, var(--white), var(--pink-50));
  border-radius: 8px;
  overflow: hidden;
}

@media (min-width: 800px) {
  .cta-card {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.cta-copy {
  padding: 32px 28px;
}

.cta-copy h2 {
  margin: 0 0 8px;
  font-weight: 400;
  font-size: 1.85rem;
}

.cta-copy > p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-weight: 300;
}

.visit-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 360px;
}

.field {
  position: relative;
}

.field input {
  width: 100%;
  padding: 18px 12px 8px;
  border: none;
  border-bottom: 2px solid var(--blue-100);
  background: rgba(255, 255, 255, 0.7);
  font: 400 1rem "Roboto", sans-serif;
  color: var(--ink);
  border-radius: 4px 4px 0 0;
  outline: none;
  transition: border-color 0.2s var(--ease), box-shadow 0.2s;
}

.field input:focus {
  border-bottom-color: var(--pink-400);
  box-shadow: inset 0 -2px 0 0 var(--pink-400);
}

.field label {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--ink-soft);
  pointer-events: none;
  transition: top 0.2s var(--ease), font-size 0.2s, color 0.2s;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label {
  top: 10px;
  font-size: 0.7rem;
  color: var(--pink-500);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.form-note {
  margin: 16px 0 0;
  color: var(--blue-700);
  font-weight: 500;
  animation: list-in 0.4s var(--ease-out);
}

.cta-map {
  min-height: 220px;
  background:
    radial-gradient(circle at 50% 42%, var(--pink-200) 0 12px, transparent 13px),
    linear-gradient(180deg, var(--blue-100), var(--blue-50));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.cta-map::before {
  content: "";
  position: absolute;
  inset: 10%;
  border: 2px dashed rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  animation: spin-slow 30s linear infinite;
}

@keyframes spin-slow {
  to {
    transform: rotate(360deg);
  }
}

.map-pin {
  width: 56px;
  height: 56px;
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  background: var(--pink-500);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-4);
  z-index: 1;
}

.map-pin .material-icons {
  transform: rotate(45deg);
}

.map-pin.pulse {
  animation: pin-pulse 2s var(--ease) infinite;
}

@keyframes pin-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(233, 30, 99, 0.5), var(--shadow-4);
  }
  50% {
    box-shadow: 0 0 0 16px rgba(233, 30, 99, 0), var(--shadow-4);
  }
}

.map-caption {
  margin: 0;
  z-index: 1;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--blue-700);
  background: rgba(255, 255, 255, 0.85);
  padding: 6px 12px;
  border-radius: 2px;
}

/* Footer */
.footer {
  background: var(--white);
  border-top: 1px solid var(--pink-50);
  padding: 32px 20px 100px;
}

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

.footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.875rem;
  font-weight: 300;
}

.social {
  display: flex;
  gap: 4px;
}

/* FAB */
.fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--blue-400), var(--pink-400));
  color: var(--white);
  cursor: pointer;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s var(--ease-bounce), box-shadow 0.25s;
  overflow: hidden;
}

.fab:hover {
  transform: scale(1.08) rotate(8deg);
}

.fab:active {
  transform: scale(0.95);
}

.fab.hidden-fab {
  transform: translateY(100px) scale(0.5);
  opacity: 0;
  pointer-events: none;
}

/* Snackbar */
.snackbar {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 120%);
  max-width: min(420px, calc(100vw - 32px));
  padding: 14px 24px;
  background: #323232;
  color: var(--white);
  border-radius: 4px;
  font-size: 0.875rem;
  box-shadow: var(--shadow-6);
  z-index: 300;
  transition: transform 0.3s var(--ease);
  text-align: center;
}

.snackbar.show {
  transform: translate(-50%, 0);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* Special strip */
.special-strip {
  padding-top: 0;
  padding-bottom: 8px;
}

.special-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(135deg, var(--pink-500), var(--blue-400));
  color: #fff;
  border-radius: 8px;
}

.special-card .material-icons {
  font-size: 28px;
  opacity: 0.95;
}

.special-card strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.special-card p {
  margin: 0;
  font-weight: 300;
  opacity: 0.95;
  font-size: 0.9rem;
  line-height: 1.45;
}

/* Stores */
.store-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .store-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.store-card {
  background: var(--white);
  border-radius: 8px;
  padding: 24px 22px 26px;
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink-400), var(--blue-400));
}

.store-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--pink-50);
  color: var(--pink-700);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.store-badge.alt {
  background: var(--blue-50);
  color: var(--blue-700);
}

.store-card h3 {
  margin: 0 0 12px;
  font-weight: 500;
  font-size: 1.35rem;
}

.store-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.4;
}

.store-address .material-icons {
  color: var(--pink-400);
  font-size: 20px;
  margin-top: 1px;
}

.store-meta {
  list-style: none;
  margin: 0 0 14px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.store-meta li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.store-meta .material-icons {
  font-size: 18px;
  color: var(--blue-400);
}

.store-meta a {
  color: var(--blue-700);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.store-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
  line-height: 1.5;
  font-weight: 300;
}

.store-note a {
  color: var(--pink-700);
  font-weight: 500;
}

/* Contact list */
.contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.85);
  border-radius: 8px;
  box-shadow: var(--shadow-1);
  transition: box-shadow 0.2s var(--ease), transform 0.2s var(--ease);
}

.contact-list a:hover {
  box-shadow: var(--shadow-2);
  transform: translateY(-1px);
}

.contact-list .material-icons {
  color: var(--pink-500);
  background: var(--pink-50);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.contact-list strong {
  display: block;
  font-weight: 500;
  color: var(--ink);
}

.contact-list small {
  display: block;
  font-size: 0.75rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.map-caption.subtle {
  margin-top: -4px;
  opacity: 0.85;
  font-weight: 400;
}

.footer-tag {
  margin: 4px 0 0 !important;
  font-size: 0.8rem !important;
}

.phone-btn {
  color: var(--pink-500);
}

/* Mobile tweaks */
@media (max-width: 899px) {
  .hero {
    padding: 28px 16px 40px;
    gap: 28px;
  }

  .hero-visual {
    min-height: 300px;
  }

  .cone-card {
    width: min(240px, 72vw);
    height: 300px;
  }

  .float-chip {
    font-size: 0.72rem;
    padding: 8px 12px;
  }

  .chip-1 {
    left: 4px;
    top: 8px;
  }

  .chip-2 {
    right: 4px;
    bottom: 24px;
  }

  .section {
    padding: 36px 16px 56px;
  }

  .chip-row {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
    margin-left: -4px;
    margin-right: -4px;
    padding-left: 4px;
    padding-right: 4px;
    scrollbar-width: thin;
  }

  .chip {
    flex: 0 0 auto;
  }

  .menu-list {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 10px;
  }

  .menu-item {
    min-height: 136px;
    padding: 14px 12px;
    gap: 8px;
  }

  .menu-icon {
    width: 44px;
    height: 44px;
    font-size: 1.2rem;
  }

  .fab {
    right: 16px;
    bottom: 16px;
  }

  .app-bar-inner {
    padding: 0 8px 0 4px;
  }

  .brand-text {
    font-size: 1.2rem;
  }
}

@media (max-width: 380px) {
  .hero h1 {
    font-size: 2.1rem;
  }

  .stat-row {
    gap: 16px;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* menu as responsive card grid */
.menu-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.85rem;
}
.m-card {
  display: flex !important;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 120px;
  height: 100%;
}
.m-card strong {
  align-self: flex-end;
  font-size: 1.05rem;
}
@media (max-width: 480px) {
  .menu-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 0.65rem; }
}


/* nn-menu-grid-fix — keep in sync with .menu-list card grid */
.menu-list,
.menu-grid,
#menu .cards,
.cards,
[data-menu],
.menu-items {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(168px, 1fr));
  gap: 12px;
  align-items: stretch;
}

@media (max-width: 480px) {
  .menu-list,
  .menu-grid,
  #menu .cards,
  .cards,
  [data-menu],
  .menu-items {
    grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
    gap: 10px;
  }
}

/* nn-form-local */
form.nn-form input:focus, form.nn-form textarea:focus,
#form input:focus, #form textarea:focus,
#contact-form input:focus, #contact-form textarea:focus {
  border-color: #ec407a !important;
  box-shadow: 0 0 0 3px rgba(248,187,208,.7);
}
