/* ============================================
   SNOW CLOUD SHACK - Styles
   Palette: Pastel sky blue, cotton candy pink,
   sunshine yellow, mint green, fluffy white
   Fonts: Fredoka (display) + Nunito (body) + Caveat (accent)
   ============================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Core palette */
  --sky: #A8D8EA;
  --sky-light: #d4eef7;
  --sky-pale: #eaf5fa;
  --sky-deep: #6bb8d4;
  --pink: #FFB6C1;
  --pink-light: #ffe0e6;
  --pink-deep: #FF7F9F;
  --yellow: #FFE066;
  --yellow-light: #FFF3C4;
  --yellow-deep: #FFD23F;
  --mint: #B8F0D0;
  --mint-light: #ddf8ea;
  --mint-deep: #7ae0a8;
  --white: #FFFFFF;
  --cream: #FFF9F0;
  --lavender: #E8D5F5;
  --lavender-light: #f3eaf9;

  /* Neutrals */
  --dark: #2B3A67;
  --dark-soft: #3d4f7a;
  --text: #3a3a5c;
  --text-light: #6b6b8d;
  --text-muted: #9494b0;
  --border: #e8e8f0;
  --bg: #FAFCFF;
  --bg-alt: #F0F6FF;

  /* Semantic */
  --success: #4ade80;
  --error: #f87171;

  /* Typography */
  --font-display: 'Fredoka', sans-serif;
  --font-body: 'Nunito', sans-serif;
  --font-accent: 'Caveat', cursive;

  /* Sizing */
  --nav-height: 72px;
  --nav-height-scrolled: 64px;
  --container: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s var(--ease);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

address {
  font-style: normal;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--dark);
}

em {
  font-style: normal;
  font-family: var(--font-accent);
  color: var(--pink-deep);
  font-size: 1.1em;
}

/* Focus styles */
:focus-visible {
  outline: 3px solid var(--sky);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Selection */
::selection {
  background: var(--pink-light);
  color: var(--dark);
}

/* ---- Utility Classes ---- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.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;
}

/* ---- Section Tags & Titles ---- */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--sky-deep);
  background: var(--sky-pale);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  max-width: 700px;
}

.section-header .section-title {
  margin-left: auto;
  margin-right: auto;
}

.section-desc {
  font-size: 1.125rem;
  color: var(--text-light);
  max-width: 620px;
  line-height: 1.8;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-header .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.section-header .section-tag {
  margin-left: auto;
  margin-right: auto;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--pink), var(--pink-deep));
  color: var(--white);
  box-shadow: 0 4px 16px rgba(255, 127, 159, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 127, 159, 0.4);
}

.btn--outline {
  border-color: var(--sky);
  color: var(--dark);
  background: transparent;
}

.btn--outline:hover {
  background: var(--sky-pale);
  border-color: var(--sky-deep);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.btn--white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
  background: transparent;
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 14px 32px;
  font-size: 1.05rem;
}

.btn--sm {
  padding: 8px 20px;
  font-size: 0.85rem;
}

/* ---- Badge ---- */
.badge {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.badge--pink {
  background: var(--pink-light);
  color: var(--pink-deep);
}

.badge--blue {
  background: var(--sky-pale);
  color: var(--sky-deep);
}

/* ---- Animations ---- */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes floatSlow {
  0%, 100% { transform: translateY(0) translateX(0); }
  33% { transform: translateY(-8px) translateX(5px); }
  66% { transform: translateY(4px) translateX(-3px); }
}

@keyframes sparkle {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.3); }
}

@keyframes scrollDot {
  0% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

@keyframes cloudFloat1 {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(30px) translateY(-10px); }
}

@keyframes cloudFloat2 {
  0%, 100% { transform: translateX(0) translateY(0); }
  50% { transform: translateX(-20px) translateY(-15px); }
}

.float-gentle {
  animation: floatGentle 3.5s ease-in-out infinite;
}

/* Scroll reveal */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* SVG sparkle animations */
.sparkle--1 { animation: sparkle 2s ease-in-out infinite; }
.sparkle--2 { animation: sparkle 2.3s ease-in-out infinite 0.4s; }
.sparkle--3 { animation: sparkle 1.8s ease-in-out infinite 0.8s; }
.sparkle--4 { animation: sparkle 2.5s ease-in-out infinite 1.2s; }
.sparkle--5 { animation: sparkle 2.1s ease-in-out infinite 0.2s; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: rgba(250, 252, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all 0.3s var(--ease);
}

.nav.is-scrolled {
  height: var(--nav-height-scrolled);
  background: rgba(250, 252, 255, 0.95);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(43, 58, 103, 0.06);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 24px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 44px;
  height: 34px;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  line-height: 1.1;
}

.nav__logo-tagline {
  font-family: var(--font-accent);
  font-size: 0.8rem;
  color: var(--pink-deep);
  line-height: 1;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav__link {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 4px 0;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--sky));
  border-radius: 2px;
  transition: width 0.3s var(--ease);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link:hover {
  color: var(--dark);
}

.nav__cta {
  flex-shrink: 0;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: 4px;
  z-index: 1001;
}

.nav__hamburger-line {
  display: block;
  width: 100%;
  height: 2.5px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav__hamburger[aria-expanded="true"] .nav__hamburger-line:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(250, 252, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-menu__link {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--dark);
  transition: color 0.3s var(--ease);
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.is-open .mobile-menu__link {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}

.mobile-menu.is-open .mobile-menu__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(2) { transition-delay: 0.15s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(3) { transition-delay: 0.2s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(4) { transition-delay: 0.25s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(5) { transition-delay: 0.3s; }
.mobile-menu.is-open .mobile-menu__link:nth-child(6) { transition-delay: 0.35s; }

.mobile-menu__link:hover {
  color: var(--pink-deep);
}

.mobile-menu__cta {
  opacity: 0;
  transform: translateY(20px);
}

.mobile-menu.is-open .mobile-menu__cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.4s var(--ease) 0.4s, transform 0.4s var(--ease) 0.4s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 40px) 0 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--sky-pale) 40%, var(--pink-light) 75%, var(--yellow-light) 100%);
  overflow: hidden;
}

/* Floating orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero__orb--1 {
  width: 400px;
  height: 400px;
  background: rgba(168, 216, 234, 0.35);
  top: 10%;
  left: -5%;
  animation: floatSlow 12s ease-in-out infinite;
}

.hero__orb--2 {
  width: 300px;
  height: 300px;
  background: rgba(255, 182, 193, 0.3);
  top: 50%;
  right: -5%;
  animation: floatSlow 15s ease-in-out infinite 2s;
}

.hero__orb--3 {
  width: 250px;
  height: 250px;
  background: rgba(255, 224, 102, 0.25);
  bottom: 20%;
  left: 15%;
  animation: floatSlow 10s ease-in-out infinite 4s;
}

.hero__orb--4 {
  width: 200px;
  height: 200px;
  background: rgba(184, 240, 208, 0.3);
  top: 30%;
  right: 25%;
  animation: floatSlow 13s ease-in-out infinite 1s;
}

/* Floating clouds */
.hero__cloud {
  position: absolute;
  pointer-events: none;
  opacity: 0.6;
}

.hero__cloud--1 {
  width: 200px;
  top: 15%;
  right: 8%;
  animation: cloudFloat1 20s ease-in-out infinite;
}

.hero__cloud--2 {
  width: 160px;
  top: 25%;
  left: 5%;
  animation: cloudFloat2 18s ease-in-out infinite 3s;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  border: 1px solid rgba(168, 216, 234, 0.3);
}

.hero__title {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero__title em {
  font-size: 1.15em;
  display: inline;
  background: linear-gradient(135deg, var(--pink-deep), var(--sky-deep));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding-right: 0.05em;
}

.hero__description {
  font-size: 1.15rem;
  color: var(--text-light);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero visual - shaved ice SVG */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__ice-svg {
  width: 100%;
  max-width: 340px;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(43, 58, 103, 0.12));
}

/* Floating flavor badges */
.hero__flavor-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-full);
  padding: 8px 16px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--dark);
  box-shadow: 0 4px 16px rgba(43, 58, 103, 0.1);
  border: 1px solid rgba(168, 216, 234, 0.2);
}

.hero__flavor-badge--1 {
  top: 10%;
  right: 5%;
  background: var(--yellow-light);
  color: #b8860b;
}

.hero__flavor-badge--2 {
  bottom: 30%;
  left: 0;
  background: var(--sky-pale);
  color: var(--sky-deep);
}

.hero__flavor-badge--3 {
  bottom: 15%;
  right: 10%;
  background: var(--pink-light);
  color: var(--pink-deep);
}

/* Stats bar */
.hero__stats {
  position: relative;
  z-index: 2;
  margin-top: 48px;
  padding-bottom: 0;
}

.hero__stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 24px 40px;
  border: 1px solid rgba(168, 216, 234, 0.2);
  box-shadow: 0 8px 32px rgba(43, 58, 103, 0.06);
}

.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}

.hero__stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--pink-deep);
}

.hero__stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.hero__stat-icon {
  display: flex;
  align-items: center;
}

.hero__stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Scroll indicator */
.hero__scroll {
  display: flex;
  justify-content: center;
  padding: 32px 0 24px;
}

.hero__scroll::before {
  content: '';
  width: 24px;
  height: 40px;
  border: 2px solid var(--sky);
  border-radius: 12px;
  position: relative;
}

.hero__scroll-dot {
  position: absolute;
  width: 4px;
  height: 8px;
  background: var(--pink);
  border-radius: 4px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 52px;
  animation: scrollDot 2s ease-in-out infinite;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.about__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 64px;
  align-items: start;
}

.about__image {
  position: relative;
}

.about__photo {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--sky-pale), var(--pink-light), var(--yellow-light));
}

.about__photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-size: 0.9rem;
}

.about__owner-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(43, 58, 103, 0.1);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.about__owner-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
}

.about__owner-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

.about__owner-badges {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.about__quote {
  font-family: var(--font-accent);
  font-size: 1.35rem;
  color: var(--dark);
  line-height: 1.5;
  padding-left: 20px;
  border-left: 3px solid var(--pink);
  margin-bottom: 24px;
}

.about__text {
  font-size: 1.05rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__values {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.about__value {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about__value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  color: var(--sky-deep);
  transition: all 0.3s var(--ease);
}

.about__value:hover .about__value-icon {
  background: var(--sky);
  color: var(--white);
}

.about__value strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.about__value span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.menu__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.menu__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(43, 58, 103, 0.1);
  border-color: var(--sky);
}

.menu__card--featured {
  border-color: var(--pink);
  box-shadow: 0 4px 24px rgba(255, 127, 159, 0.15);
}

.menu__card--featured:hover {
  border-color: var(--pink-deep);
  box-shadow: 0 16px 48px rgba(255, 127, 159, 0.2);
}

.menu__card-image {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.menu__card-image--shaved-ice {
  background: linear-gradient(135deg, var(--sky-pale) 0%, var(--pink-light) 50%, var(--mint-light) 100%);
}

.menu__card-image--snow-cone {
  background: linear-gradient(135deg, var(--lavender-light) 0%, var(--sky-pale) 50%, var(--yellow-light) 100%);
}

.menu__card-image--float {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--cream) 50%, var(--pink-light) 100%);
}

.menu__card-image--lemonade {
  background: linear-gradient(135deg, var(--yellow-light) 0%, var(--mint-light) 50%, var(--sky-pale) 100%);
}

.menu__card-image--custom {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--lavender-light) 50%, var(--sky-pale) 100%);
}

.menu__card-image--specialty {
  background: linear-gradient(135deg, var(--pink-light) 0%, var(--yellow-light) 40%, var(--sky-pale) 70%, var(--mint-light) 100%);
}

.menu__card-icon {
  color: var(--dark);
  opacity: 0.25;
  transition: all 0.4s var(--ease);
}

.menu__card:hover .menu__card-icon {
  opacity: 0.4;
  transform: scale(1.1);
}

.menu__card-body {
  padding: 24px;
}

.menu__card-tag {
  display: inline-flex;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--pink-deep);
  background: var(--pink-light);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  margin-bottom: 10px;
}

.menu__card--featured .menu__card-tag {
  background: var(--yellow-light);
  color: #b8860b;
}

.menu__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.menu__card-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.6;
}

.menu__card-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.menu__card-features li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 18px;
  position: relative;
}

.menu__card-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
}

.menu__card-features li:nth-child(2)::before {
  background: var(--sky);
}

.menu__card-features li:nth-child(3)::before {
  background: var(--pink);
}

/* ============================================
   TOPPINGS SECTION
   ============================================ */
.toppings {
  padding: 100px 0;
  background: var(--white);
  position: relative;
}

.toppings__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.toppings__item {
  text-align: center;
  padding: 24px 12px;
  border-radius: var(--radius);
  transition: all 0.3s var(--ease);
}

.toppings__item:hover {
  background: var(--bg);
  transform: translateY(-4px);
}

.toppings__item-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  transition: all 0.3s var(--ease);
}

.toppings__item:hover .toppings__item-circle {
  transform: scale(1.1);
}

.toppings__item-circle--mochi { background: var(--pink-light); color: var(--pink-deep); }
.toppings__item-circle--boba { background: #f0e8df; color: #8B7355; }
.toppings__item-circle--condensed { background: var(--yellow-light); color: #b8860b; }
.toppings__item-circle--gummy { background: var(--mint-light); color: var(--mint-deep); }
.toppings__item-circle--fruit { background: var(--lavender-light); color: #9B6BC8; }
.toppings__item-circle--sprinkles { background: var(--sky-pale); color: var(--sky-deep); }

.toppings__item-name {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.toppings__item-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Toppings marquee */
.toppings__marquee {
  overflow: hidden;
  background: var(--bg);
  border-radius: var(--radius);
  padding: 16px 0;
}

.toppings__marquee-track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.toppings__marquee-track span {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-light);
}

.toppings__marquee-dot {
  width: 6px;
  height: 6px;
  background: var(--pink);
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  margin: 0 4px;
}

/* ============================================
   CATERING SECTION
   ============================================ */
.catering {
  padding: 100px 0;
  background: var(--bg);
  position: relative;
}

.catering__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.catering__text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.catering__features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}

.catering__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.catering__feature-num {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--sky);
  min-width: 48px;
  line-height: 1;
}

.catering__feature strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 4px;
}

.catering__feature span {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Catering visual - stacked cards */
.catering__visual {
  position: relative;
  height: 420px;
}

.catering__card {
  position: absolute;
  width: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(43, 58, 103, 0.12);
  transition: all 0.4s var(--ease);
}

.catering__card:hover {
  transform: translateY(-6px) !important;
}

.catering__card--1 {
  top: 0;
  left: 10%;
  transform: rotate(-4deg);
  z-index: 3;
}

.catering__card--2 {
  top: 60px;
  right: 5%;
  transform: rotate(3deg);
  z-index: 2;
}

.catering__card--3 {
  bottom: 0;
  left: 20%;
  transform: rotate(-2deg);
  z-index: 1;
}

.catering__card-gradient {
  height: 180px;
}

.catering__card-gradient--birthday {
  background: linear-gradient(135deg, var(--pink-light), var(--yellow-light), var(--mint-light));
}

.catering__card-gradient--corporate {
  background: linear-gradient(135deg, var(--sky-pale), var(--lavender-light), var(--sky-light));
}

.catering__card-gradient--school {
  background: linear-gradient(135deg, var(--mint-light), var(--yellow-light), var(--pink-light));
}

.catering__card span {
  display: block;
  padding: 14px 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--white);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials {
  padding: 100px 0;
  background: var(--white);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonials__card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--border);
  transition: all 0.4s var(--ease);
}

.testimonials__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(43, 58, 103, 0.08);
}

.testimonials__card--featured {
  background: var(--dark);
  border-color: transparent;
}

.testimonials__card--featured .testimonials__text {
  color: rgba(255, 255, 255, 0.9);
}

.testimonials__card--featured .testimonials__author strong {
  color: var(--white);
}

.testimonials__card--featured .testimonials__author span {
  color: rgba(255, 255, 255, 0.5);
}

.testimonials__stars {
  display: flex;
  gap: 2px;
  margin-bottom: 16px;
}

.testimonials__text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonials__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonials__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--white);
}

.testimonials__avatar--1 { background: var(--pink); }
.testimonials__avatar--2 { background: var(--sky-deep); }
.testimonials__avatar--3 { background: var(--mint-deep); }

.testimonials__author strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--dark);
}

.testimonials__author span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--sky-deep) 0%, var(--pink-deep) 50%, var(--yellow-deep) 100%);
  z-index: 0;
}

.cta-banner__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='2' fill='rgba(255,255,255,0.1)'/%3E%3C/svg%3E") repeat;
}

.cta-banner__inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-banner__title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 550px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   FIND US SECTION
   ============================================ */
.find-us {
  padding: 100px 0;
  background: var(--bg);
}

.find-us__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.find-us__card {
  display: flex;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: all 0.3s var(--ease);
}

.find-us__card:hover {
  border-color: var(--sky);
  box-shadow: 0 4px 16px rgba(43, 58, 103, 0.06);
}

.find-us__card-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--sky-pale);
  border-radius: var(--radius-sm);
  color: var(--sky-deep);
}

.find-us__card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.find-us__card address,
.find-us__card p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

.find-us__card a {
  color: var(--sky-deep);
}

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

.find-us__hours {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.find-us__hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--text-light);
  gap: 16px;
}

.find-us__hours-row span:last-child {
  font-weight: 600;
  color: var(--dark);
  white-space: nowrap;
}

.find-us__areas {
  margin-top: 24px;
}

.find-us__areas h3 {
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
}

.find-us__area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.area-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text);
  transition: all 0.3s var(--ease);
  cursor: default;
}

.area-tag:hover {
  background: var(--sky-pale);
  border-color: var(--sky);
  color: var(--sky-deep);
}

/* Map placeholder */
.find-us__map-placeholder {
  width: 100%;
  height: 100%;
  min-height: 400px;
  background: linear-gradient(135deg, var(--sky-pale), var(--mint-light), var(--sky-light));
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  border: 1px solid var(--border);
}

.find-us__map-placeholder span:first-of-type {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-top: 12px;
}

.find-us__map-placeholder .btn {
  margin-top: 12px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact {
  padding: 100px 0;
  background: var(--white);
}

.contact__grid {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: start;
}

.contact__info-card {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
}

.contact__info-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
}

.contact__info-text {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 24px;
}

.contact__info-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact__info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact__info-row svg {
  color: var(--sky);
  flex-shrink: 0;
}

.contact__info-row a {
  color: rgba(255, 255, 255, 0.8);
}

.contact__info-row a:hover {
  color: var(--white);
}

.contact__socials {
  display: flex;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.contact__social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s var(--ease);
}

.contact__social:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

/* Contact form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact__field label {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.required {
  color: var(--pink-deep);
}

.contact__field input,
.contact__field textarea,
.contact__field select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--text);
  transition: all 0.3s var(--ease);
  font-size: 0.95rem;
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  outline: none;
  border-color: var(--sky);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168, 216, 234, 0.2);
}

.contact__field input.is-error,
.contact__field textarea.is-error,
.contact__field select.is-error {
  border-color: var(--error);
}

.contact__field input.is-error:focus,
.contact__field textarea.is-error:focus,
.contact__field select.is-error:focus {
  box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.15);
}

.contact__field textarea {
  resize: vertical;
  min-height: 120px;
}

.contact__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239494b0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact__error {
  font-size: 0.75rem;
  color: var(--error);
  min-height: 1em;
}

.contact__submit {
  align-self: flex-start;
  position: relative;
}

.contact__submit-loading {
  display: none;
  animation: spin 1s linear infinite;
}

.contact__submit.is-loading .contact__submit-text {
  visibility: hidden;
}

.contact__submit.is-loading .contact__submit-loading {
  display: block;
  position: absolute;
}

.contact__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 32px;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
}

.contact__success strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--dark);
}

.contact__success p {
  font-size: 0.9rem;
  color: var(--text-light);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 300px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  transition: all 0.3s var(--ease);
}

.footer__socials a:hover {
  background: var(--sky);
  color: var(--white);
  transform: translateY(-2px);
}

.footer__col h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer__col a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 0;
  transition: color 0.3s var(--ease);
}

.footer__col a:hover {
  color: var(--white);
}

.footer__bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__bottom p + p {
  margin-top: 4px;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(43, 58, 103, 0.15);
  border: 1px solid var(--border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s var(--ease);
  z-index: 100;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--sky-pale);
  border-color: var(--sky);
  transform: translateY(-2px);
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablet: 1024px and below */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__cta {
    display: none;
  }

  .nav__hamburger {
    display: flex;
  }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: 300px;
    margin: 0 auto;
  }

  .hero__flavor-badge--1 { right: -5%; top: 5%; }
  .hero__flavor-badge--2 { left: -8%; bottom: 25%; }
  .hero__flavor-badge--3 { right: -3%; bottom: 10%; }

  .hero__stats-inner {
    padding: 20px 24px;
    gap: 20px;
  }

  .about__grid {
    grid-template-columns: 300px 1fr;
    gap: 40px;
  }

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

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

  .catering__grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .catering__visual {
    height: 360px;
    order: -1;
  }

  .find-us__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__brand {
    grid-column: span 2;
  }
}

/* Tablet small: 768px and below */
@media (max-width: 768px) {
  .hero {
    padding-top: calc(var(--nav-height) + 24px);
  }

  .hero__title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero__stats-inner {
    flex-wrap: wrap;
    gap: 16px;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat {
    width: calc(50% - 8px);
  }

  .hero__cloud--1,
  .hero__cloud--2 {
    display: none;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image {
    max-width: 320px;
    margin: 0 auto;
  }

  .about__owner-card {
    right: -10px;
    bottom: -16px;
  }

  .section-title {
    font-size: clamp(1.75rem, 6vw, 2.5rem);
  }

  .toppings__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .catering__visual {
    height: 300px;
  }

  .catering__card {
    width: 200px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .contact__form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer__brand {
    grid-column: span 1;
  }
}

/* Mobile: 640px and below */
@media (max-width: 640px) {
  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: auto;
    padding-bottom: 0;
  }

  .hero__badge {
    font-size: 0.75rem;
    padding: 6px 14px;
  }

  .hero__title {
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .hero__description {
    font-size: 1rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__visual {
    max-width: 250px;
  }

  .hero__flavor-badge {
    font-size: 0.7rem;
    padding: 6px 12px;
  }

  .hero__stats-inner {
    padding: 16px;
  }

  .hero__stat-number {
    font-size: 1.5rem;
  }

  .about,
  .menu,
  .toppings,
  .catering,
  .testimonials,
  .find-us,
  .contact {
    padding: 64px 0;
  }

  .section-header {
    margin-bottom: 40px;
  }

  .about__quote {
    font-size: 1.15rem;
  }

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

  .menu__card-image {
    height: 140px;
  }

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

  .toppings__item {
    padding: 16px 8px;
  }

  .toppings__item-circle {
    width: 60px;
    height: 60px;
  }

  .catering__visual {
    height: 260px;
  }

  .catering__card {
    width: 170px;
  }

  .catering__card-gradient {
    height: 130px;
  }

  .cta-banner {
    padding: 56px 0;
  }

  .find-us__map-placeholder {
    min-height: 280px;
  }

  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-up {
    opacity: 1;
    transform: none;
  }

  .hero__orb,
  .hero__cloud,
  .hero__flavor-badge {
    animation: none !important;
  }

  .toppings__marquee-track {
    animation: none !important;
  }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
  .nav,
  .hero__orb,
  .hero__cloud,
  .hero__scroll,
  .hero__flavor-badge,
  .cta-banner,
  .back-to-top,
  .mobile-menu,
  .nav__hamburger,
  .toppings__marquee {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    min-height: auto;
    background: none;
    padding: 24px 0;
  }

  a {
    text-decoration: underline;
  }
}
