/* ========================================
   FONTS
   ======================================== */
@font-face {
  font-family: 'Dimbo';
  src: url('/fonts/Dimbo-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
  size-adjust: 120%;
}

/* ========================================
   CSS VARIABLES — White Duck Brand Colors
   Pantone → Hex conversions
   ======================================== */
:root {
  --duck-charcoal: #3C3C3C;      /* 447 C */
  --duck-cream: #DBBEA8;          /* 4675 C */
  --duck-white: #FFFFFF;           /* White C */
  --duck-maroon: #6B2339;          /* 492 C */
  --duck-red: #BD3F3A;            /* 7619 C */
  --duck-peach: #F9A97C;          /* 7410 C */
  --duck-gold: #D4890C;           /* 7564 C */

  /* Derived / Utility */
  --bg-warm: #F7F0E8;
  --bg-warm-dark: #EDE3D6;
  --text-primary: var(--duck-charcoal);
  --text-muted: #6B6560;
  --shadow-warm: rgba(107, 35, 57, 0.08);
  --shadow-strong: rgba(60, 60, 60, 0.12);

  /* Spacing scale */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --space-2xl: 8rem;

  /* Typography */
  --font-display: 'Dimbo', 'Lilita One', cursive;
  --font-heading: 'Raleway', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

/* ========================================
   RESET & BASE
   ======================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--bg-warm);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; }

/* ========================================
   ANIMATED BACKGROUND TEXTURE
   ======================================== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(189, 63, 58, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(212, 137, 12, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(107, 35, 57, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  opacity: 0.3;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* ========================================
   FLOATING STEAM SPRITES
   ======================================== */
.steam-container {
  position: fixed;
  pointer-events: none;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
}

.steam {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--duck-cream);
  opacity: 0;
  animation: steam-rise linear infinite;
}

.steam:nth-child(1) { left: 10%; animation-duration: 8s; animation-delay: 0s; }
.steam:nth-child(2) { left: 25%; animation-duration: 10s; animation-delay: 2s; }
.steam:nth-child(3) { left: 45%; animation-duration: 7s; animation-delay: 4s; }
.steam:nth-child(4) { left: 65%; animation-duration: 9s; animation-delay: 1s; }
.steam:nth-child(5) { left: 85%; animation-duration: 11s; animation-delay: 3s; }
.steam:nth-child(6) { left: 35%; animation-duration: 8.5s; animation-delay: 5s; }
.steam:nth-child(7) { left: 75%; animation-duration: 9.5s; animation-delay: 6s; }
.steam:nth-child(8) { left: 55%; animation-duration: 7.5s; animation-delay: 7s; }

@keyframes steam-rise {
  0% { transform: translateY(100vh) scale(0.5); opacity: 0; }
  10% { opacity: 0.15; }
  50% { opacity: 0.08; }
  100% { transform: translateY(-100px) scale(2.5) translateX(40px); opacity: 0; }
}

/* ========================================
   LAYOUT
   ======================================== */
.content-wrap {
  position: relative;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

/* ========================================
   NAV
   ======================================== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: var(--space-sm) 0;
  transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(247, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 20px var(--shadow-warm);
  padding: 0.6rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--duck-charcoal);
  letter-spacing: 0.02em;
  transition: color 0.3s ease;
}

body:has(.hero--video) .nav:not(.scrolled) .nav-logo {
  color: #fff;
}

body .nav:has(.menu-toggle.active) .nav-logo {
  color: var(--duck-charcoal);
}

.nav-logo .duck-icon {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}

.nav-logo:hover .duck-icon {
  transform: rotate(-8deg) scale(1.1);
}

.nav-links {
  display: none;
  list-style: none;
  gap: var(--space-md);
  align-items: center;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.3s ease;
  position: relative;
}

body:has(.hero--video) .nav:not(.scrolled) .nav-links a:not(.nav-dropdown__menu a) {
  color: rgba(255, 255, 255, 0.85);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--duck-red);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover { color: var(--duck-red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--duck-red);
  color: var(--duck-white) !important;
  padding: 0.55rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.nav-cta:hover {
  background: var(--duck-maroon);
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--duck-charcoal);
  transition: background 0.3s ease;
}

body:has(.hero--video) .nav:not(.scrolled) .menu-toggle span {
  background: #fff;
}

body:has(.mobile-menu.open) .nav .menu-toggle.active span {
  background: var(--duck-charcoal);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(247, 240, 232, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  gap: var(--space-md);
  padding-top: 6rem;
  box-sizing: border-box;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  line-height: 1.2;
  color: var(--duck-charcoal);
}

.mobile-menu a.btn-primary {
  color: var(--duck-white);
  transition: color 0.2s;
}

.mobile-menu a:hover { color: var(--duck-red); }

/* Nav right group (mobile: cart + hamburger) */
.nav-right-mobile {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Nav dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown__menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  background: rgba(247, 240, 232, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 12px;
  padding: 0.5rem 0;
  padding-top: calc(0.5rem + 8px);
  min-width: 180px;
  box-shadow: 0 8px 30px var(--shadow-warm);
  z-index: 110;
}

/* Invisible bridge so hover doesn't break crossing the gap */
.nav-dropdown__menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.nav-dropdown:hover .nav-dropdown__menu {
  display: block;
}

.nav-dropdown__menu li a {
  display: block;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  white-space: nowrap;
  color: var(--text-muted);
  transition: color 0.2s, background 0.2s;
}

.nav-dropdown__menu li a::after {
  display: none;
}

.nav-dropdown__menu li a:hover {
  color: var(--duck-red);
  background: rgba(189, 63, 58, 0.05);
}

/* Mobile sub-links (indented collection links) */
.mobile-menu__sub {
  font-size: 1.1rem !important;
  padding-left: 1.5rem;
  opacity: 0.7;
}

.mobile-menu__sub:hover {
  opacity: 1;
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .menu-toggle { display: none; }
  .nav-right-mobile { display: none; }
}

@media (max-width: 767px) {
  .nav-right-mobile { display: flex; }
}

/* ========================================
   NAV CART ICON
   ======================================== */
.nav-cart {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.25rem;
}

.nav-cart:hover {
  color: var(--duck-red);
}

body:has(.hero--video) .nav:not(.scrolled) .nav-cart {
  color: #fff;
}

body:has(.hero--video) .nav:not(.scrolled) .nav-cart:hover {
  color: #fff;
}

.nav-cart__count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--duck-red);
  color: var(--duck-white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.nav-cart__count[hidden] {
  display: none;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  transition: all 0.25s ease;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--duck-red);
  color: var(--duck-white);
  box-shadow: 0 4px 16px rgba(189, 63, 58, 0.25);
}

.btn-primary:hover {
  background: var(--duck-maroon);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(189, 63, 58, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  border-color: var(--duck-red);
  color: var(--duck-red);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--duck-white);
  color: var(--duck-red);
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.btn-white:hover {
  background: var(--bg-warm);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  position: relative;
  overflow: hidden;
}

.hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-video--wide { display: none; }
.hero-video--tall { display: block; }

@media (min-width: 768px) {
  .hero-video--wide { display: block; }
  .hero-video--tall { display: none; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 1;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-text { text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(212, 137, 12, 0.12);
  color: var(--duck-gold);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: var(--space-md);
  animation: fade-in-up 0.8s ease both;
  letter-spacing: 0.03em;
}

.hero-badge .trophy {
  display: inline-block;
  animation: wiggle 2s ease-in-out infinite;
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(-8deg); }
  75% { transform: rotate(8deg); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: var(--space-sm);
  animation: fade-in-up 0.8s ease 0.1s both;
}

.hero h1 .accent {
  color: var(--duck-red);
  position: relative;
  display: inline-block;
}

.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: -2%;
  width: 104%;
  height: 12px;
  background: rgba(249, 169, 124, 0.3);
  border-radius: 4px;
  z-index: -1;
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 480px;
  margin: 0 auto var(--space-md);
  animation: fade-in-up 0.8s ease 0.2s both;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: var(--space-sm);
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.3s both;
}

.scroll-arrow {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255, 255, 255, 0.6);
  animation: scroll-pulse 2.5s ease-in-out infinite, fade-in-up 0.8s ease 0.5s both;
  text-decoration: none;
  transition: color 0.2s;
}

.scroll-arrow:hover { color: rgba(255, 255, 255, 0.9); }

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) translateY(0); }
  50% { opacity: 1; transform: translateX(-50%) translateY(6px); }
}

.social-icons {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fade-in-up 0.8s ease 0.4s both;
  margin-top: 0.75rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s, filter 0.2s;
}

.social-icon:hover {
  transform: scale(1.12);
  filter: brightness(1.15);
  color: #fff;
}

.social-icon--instagram { background: #E4405F; }
.social-icon--facebook { background: #1877F2; }
.social-icon--tiktok { background: #000000; }
.social-icon--x { background: #000000; }

.mobile-menu .social-icons {
  animation: none;
}

.mobile-menu .social-icon,
.mobile-menu .social-icon:hover {
  color: #fff;
}

@media (min-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-text { text-align: center; }
  .hero-sub { margin: 0 auto var(--space-md); }
  .hero-actions { justify-content: center; }
}

@media (max-width: 767px) {
  .hero h1 .accent::after { height: 6px; }
}

/* ========================================
   TICKER
   ======================================== */
.ticker {
  background: var(--duck-charcoal);
  color: var(--duck-cream);
  padding: 0.8rem 0;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track:hover { animation-play-state: paused; }

.ticker-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0 2rem;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--duck-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

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

/* ========================================
   SECTIONS
   ======================================== */
section { padding: var(--space-xl) 0; }
.menu-section { padding-top: 0; }

.section-label {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  color: var(--duck-gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: var(--space-xs);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: var(--space-sm);
}

.section-subtitle {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  line-height: 1.15;
  margin-top: var(--space-lg);
}

.section-desc {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* Page headers (inner pages) */
.page-header {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-sm);
}

/* ========================================
   FEATURES
   ======================================== */
.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.feature-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--duck-red), var(--duck-peach), var(--duck-gold));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--shadow-warm);
}

.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-sm);
}

.feature-icon.red { background: rgba(189, 63, 58, 0.1); }
.feature-icon.gold { background: rgba(212, 137, 12, 0.1); }
.feature-icon.peach { background: rgba(249, 169, 124, 0.1); }
.feature-icon.maroon { background: rgba(107, 35, 57, 0.1); }

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ========================================
   LOCATIONS
   ======================================== */
.locations {
  background: var(--duck-charcoal);
  color: var(--duck-white);
  position: relative;
  overflow: hidden;
}

.locations::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(189, 63, 58, 0.08);
  filter: blur(60px);
}

.locations .section-desc { color: rgba(255, 255, 255, 0.6); }

.locations-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.location-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.location-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(189, 63, 58, 0.3);
  transform: translateY(-2px);
}

.location-card__photo {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.location-card__body {
  padding: var(--space-md);
}

.location-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.location-card .address {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  margin-bottom: var(--space-sm);
  line-height: 1.5;
}

.location-hours {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.btn-directions {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: var(--space-sm);
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--duck-peach);
  font-size: 0.85rem;
  font-weight: 500;
  transition: all 0.2s ease;
}

.btn-directions:hover {
  background: var(--duck-red);
  border-color: var(--duck-red);
  color: white;
}

@media (min-width: 768px) {
  .locations-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Locations page specific */
.locations-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

.location-page-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.location-page-info {
  padding: var(--space-lg);
}

.location-page-card:hover { transform: translateY(-2px); }

.location-page-card h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.location-page-card .address {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.location-page-card .phone a {
  color: var(--duck-red);
  font-weight: 500;
}

.location-page-card .location-hours {
  color: var(--text-muted);
  margin-top: var(--space-sm);
}

.location-page-card .location-hours-detail {
  margin-top: 0.25rem;
}

.location-hours-detail {
  margin-top: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-muted);
}

@media (min-width: 768px) {
  .locations-page-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ========================================
   LOCATION CARD PHOTOS
   ======================================== */
.location-card__photo-wrap {
  position: relative;
  overflow: hidden;
}

.location-card__photo-wrap .location-card__photo {
  display: block;
  width: 100%;
}

/* ========================================
   SOCIAL PROOF
   ======================================== */
.social-proof { text-align: center; }

.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.review-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-md) var(--space-lg);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.review-card:hover { transform: scale(1.02); }

.review-platform-icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.review-card__text {
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0.75rem 0 0;
  color: var(--text-primary);
  flex: 1;
  text-align: center;
  font-style: italic;
}

.review-card__author {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  font-style: normal;
  margin-top: 0.75rem;
  color: var(--duck-red);
}

@media (max-width: 767px) {
  .reviews-row { grid-template-columns: 1fr; }
}

.awards-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.award-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: var(--space-md);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  min-width: 200px;
  transition: transform 0.3s ease;
}

.award-badge:hover { transform: scale(1.03); }
.award-badge .icon { font-size: 2rem; line-height: 1; }
.award-badge .award-title { font-family: var(--font-heading); font-size: 1rem; }
.award-badge .award-detail { font-size: 0.8rem; color: var(--text-muted); }

/* ========================================
   ESPRESSO SERVICE
   ======================================== */
.espresso-service {
  text-align: center;
  background: var(--duck-charcoal);
  color: var(--duck-white);
  position: relative;
  overflow: hidden;
}

.espresso-service .section-desc { color: rgba(255, 255, 255, 0.6); }

.espresso-service__body {
  max-width: 720px;
  margin: var(--space-md) auto 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
}

.espresso-service__body p { margin-bottom: var(--space-sm); }

.espresso-service__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.mobile-break { display: none; }

@media (max-width: 767px) {
  .mobile-break { display: inline; }
  .espresso-service__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.btn-outline {
  background: transparent;
  color: var(--duck-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--duck-peach);
  color: var(--duck-peach);
  transform: translateY(-2px);
}

/* ========================================
   CTA
   ======================================== */
.cta-section {
  text-align: center;
  padding: var(--space-2xl) 0;
}

.cta-card {
  background: linear-gradient(135deg, var(--duck-red), var(--duck-maroon));
  border-radius: 28px;
  padding: var(--space-xl) var(--space-md);
  color: var(--duck-white);
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(249, 169, 124, 0.15);
  filter: blur(40px);
}

.cta-card::after {
  content: '';
  position: absolute;
  bottom: -30%; left: -10%;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(212, 137, 12, 0.1);
  filter: blur(40px);
}

.cta-card > * { position: relative; z-index: 1; }

.cta-card h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin-bottom: var(--space-sm);
}

.cta-card p {
  opacity: 0.85;
  max-width: 440px;
  margin: 0 auto var(--space-md);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ========================================
   MENU PAGE
   ======================================== */
.menu-category {
  margin-bottom: var(--space-md);
  min-width: 0;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
  margin-bottom: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-bottom: none;
  border-radius: 4px;
}

.menu-category--hot-or-iced .menu-category-title,
.menu-category--iced-only .menu-category-title,
.menu-category--blended .menu-category-title {
  background: var(--duck-red);
}

.menu-category--food .menu-category-title,
.menu-category--add-ons .menu-category-title {
  background: rgb(34, 34, 34);
}

.menu-category--options .menu-category-title {
  background: rgb(224, 146, 62);
}

.menu-category-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: var(--space-md);
}

/* --- Table layout for sized drinks --- */
.menu-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: var(--space-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-sm) var(--space-md);
}

.menu-table {
  width: 100%;
  border-collapse: collapse;
}

.menu-table thead th {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--duck-maroon);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.6rem 0.8rem;
  text-align: right;
  border-bottom: 2px solid rgba(219, 190, 168, 0.3);
}

.menu-table thead th.menu-table-item {
  text-align: left;
}

.menu-table tbody tr {
  transition: background 0.15s ease;
}

.menu-table tbody tr:hover {
  background: rgba(219, 190, 168, 0.1);
}

.menu-table tbody td {
  padding: 0.75rem 0.8rem;
  border-bottom: 1px solid rgba(219, 190, 168, 0.15);
  font-size: 0.95rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: var(--text-primary);
}

.menu-table tbody tr:last-child td {
  border-bottom: none;
}

.menu-table tbody td.menu-table-item {
  text-align: left;
}

.menu-table-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  display: block;
}

.menu-table-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

@media (max-width: 600px) {
  .menu-table-wrap {
    padding: var(--space-xs) var(--space-xs);
  }
  .menu-table thead th {
    font-size: 0.65rem;
    padding: 0.4rem 0.3rem;
    letter-spacing: 0;
  }
  .menu-table tbody td {
    padding: 0.5rem 0.3rem;
    font-size: 0.8rem;
  }
  .menu-table-name {
    font-size: 0.85rem;
  }
  .menu-table-desc {
    font-size: 0.7rem;
  }
}

/* --- Simple list for food / add-ons --- */
.menu-simple-list {
  margin-top: var(--space-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-xs) var(--space-md);
}

.menu-simple-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(219, 190, 168, 0.2);
  gap: var(--space-sm);
}

.menu-simple-row:last-child {
  border-bottom: none;
}

.menu-simple-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.menu-simple-desc {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 0.15rem;
}

.menu-simple-price {
  font-weight: 600;
  font-size: 0.95rem;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* --- Two-column layout --- */
.menu-columns {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: var(--space-md);
}

@media (min-width: 1024px) {
  .menu-columns {
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: var(--space-lg);
    align-items: start;
  }
}

/* --- Options tags (teas, smoothies, sauces, flavors) --- */
.menu-options-card {
  margin-top: var(--space-sm);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.menu-option-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: rgba(219, 190, 168, 0.15);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.menu-category-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  font-weight: 400;
}

.menu-option-tag.sugar-free {
  border: 1.5px solid rgba(189, 63, 58, 0.35);
}

.menu-options-legend {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.menu-options-legend .legend-swatch {
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid rgba(189, 63, 58, 0.35);
  border-radius: 50px;
  vertical-align: middle;
  margin-right: 0.25rem;
}

/* ========================================
   MAP LINK POPUP (desktop picker)
   ======================================== */
.map-popup {
  z-index: 1000;
  background: var(--duck-white);
  border: 1px solid rgba(219, 190, 168, 0.4);
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: map-popup-in 0.15s ease;
}

.map-popup a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-primary);
  white-space: nowrap;
  transition: background 0.15s;
}

.map-popup a:hover {
  background: rgba(219, 190, 168, 0.15);
  color: var(--duck-red);
}

.map-popup a + a {
  border-top: 1px solid rgba(219, 190, 168, 0.25);
}

@keyframes map-popup-in {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--duck-charcoal);
  color: rgba(255, 255, 255, 0.6);
  padding: var(--space-lg) 0 var(--space-md);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.footer-brand .footer-logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--duck-white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--duck-white);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.03em;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-col a {
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--duck-peach); }

.footer-social {
  display: flex;
  gap: 0.6rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--duck-red);
  color: white;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: var(--space-md);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  font-size: 0.8rem;
}

/* Loyalty points widget */
.loyalty-widget {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.loyalty-label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  color: var(--duck-white);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.loyalty-input-row {
  display: flex;
  gap: 0.35rem;
}

.loyalty-input {
  flex: 1;
  min-width: 0;
  padding: 0.4rem 0.6rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 6px;
  color: var(--duck-white);
  font-size: 0.8rem;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}

.loyalty-input::placeholder { color: rgba(255, 255, 255, 0.35); }
.loyalty-input:focus { border-color: var(--duck-peach); }

.loyalty-btn {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--duck-gold);
  color: var(--duck-white);
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity 0.2s;
}

.loyalty-btn:hover { opacity: 0.85; }
.loyalty-btn:disabled { opacity: 0.5; cursor: default; }

.loyalty-hint {
  font-size: 0.7rem;
  margin-top: 0.3rem;
  color: rgba(255, 255, 255, 0.4);
}

.loyalty-link {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: underline;
  display: inline-block;
  margin-top: 0.3rem;
}

.loyalty-link:hover { color: var(--duck-peach); }

.loyalty-points {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--duck-gold);
  line-height: 1.2;
}

.loyalty-reward {
  font-size: 0.8rem;
  color: var(--duck-peach);
  margin-top: 0.2rem;
}

.loyalty-error {
  font-size: 0.75rem;
  color: var(--duck-red);
  margin-top: 0.3rem;
}

.loyalty-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-top-color: var(--duck-gold);
  border-radius: 50%;
  animation: loyalty-spin 0.6s linear infinite;
  margin-top: 0.4rem;
}

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

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.3s; }

/* Duck follower (desktop) */
.duck-follower {
  display: none;
  position: fixed;
  width: 28px;
  height: 28px;
  pointer-events: none;
  z-index: 999;
  transition: transform 0.15s ease-out;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

@media (min-width: 1024px) and (hover: hover) {
  .duck-follower { display: block; }
}

/* ========================================
   JOIN PAGE
   ======================================== */
.join-section {
  padding-top: calc(80px + var(--space-lg));
}

.join-hero-img {
  margin-bottom: var(--space-md);
  border-radius: 12px;
  overflow: hidden;
}

.join-hero-img img {
  width: 100%;
  height: auto;
  display: block;
}

.join-section .section-title {
  margin-bottom: var(--space-sm);
}

.join-not-hiring p,
.join-hiring p:not(.section-desc) {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.join-not-hiring p:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--duck-maroon);
}

.join-hiring .section-desc {
  margin-bottom: var(--space-lg);
}

.join-hiring .form-embed {
  max-width: 640px;
}

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-section {
  padding-top: calc(80px + var(--space-lg));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

.contact-form-col .section-desc {
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.contact-location-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-md);
}

.contact-location-card + .contact-location-card {
  margin-top: var(--space-sm);
}

.contact-location-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}

.contact-location-card .address {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.contact-location-card .phone {
  color: var(--text-primary);
  font-weight: 500;
  margin-top: 0.5rem;
  font-size: 0.95rem;
}

.contact-location-card .phone a {
  color: var(--duck-red);
  text-decoration: underline;
}

.contact-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.contact-action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--duck-red);
  color: var(--duck-red);
  transition: all 0.2s ease;
}

.contact-action-btn:hover {
  background: var(--duck-red);
  color: var(--duck-white);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-section {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-sm);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .about-grid {
    grid-template-columns: 2fr 1fr;
    align-items: start;
  }
}

.about-story-col p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.about-story-col .section-desc {
  margin-bottom: var(--space-md);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text-primary);
}

.founder-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-md);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-card + .founder-card {
  margin-top: var(--space-sm);
}

.founder-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.founder-info {
  flex: 1;
  text-align: center;
}

.founder-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}

.founder-drink {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

/* --- Core Values section --- */
.about-values {
  padding: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .about-values {
    padding: 0 0 var(--space-lg);
  }
}

.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.values-grid .feature-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (min-width: 768px) {
  .values-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .values-grid { grid-template-columns: repeat(5, 1fr); }
}

/* --- Beat Childhood Cancer section --- */
.about-cause {
  padding: var(--space-xl) 0;
  margin-top: var(--space-xl);
  background: var(--duck-charcoal);
  color: var(--duck-white);
}

.cause-content {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.about-cause .section-title {
  color: var(--duck-white);
}

.cause-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.8);
}

.cause-content a {
  color: var(--duck-peach);
  font-weight: 600;
}

.cause-content a:hover {
  color: var(--duck-gold);
}

/* ========================================
   HI PAGE
   ======================================== */
.hi-section {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-xl);
}

.hi-container {
  max-width: 680px;
}

.hi-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: var(--space-md);
  text-align: center;
}

.hi-body {
  margin-top: var(--space-lg);
}

.hi-body p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.hi-body a {
  color: var(--duck-red);
  font-weight: 600;
}

.hi-body a:hover {
  color: var(--duck-maroon);
}

.hi-body a.hi-btn {
  color: var(--duck-white);
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hi-body a.hi-btn:hover {
  color: var(--duck-white);
  opacity: 0.9;
  transform: translateY(-2px);
}

.hi-btn--red { background: #C94343; }
.hi-btn--blue { background: #4A6FA5; }
.hi-btn--pink { background: #C44B8B; }
.hi-btn--dark { background: #3C3C3C; }

.hi-date {
  color: var(--duck-maroon);
  font-weight: 500;
}

.hi-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
}

.hi-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}

.hi-menu-btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.1rem;
}

.hi-price {
  color: var(--duck-gold);
  font-weight: 600;
  font-size: 0.95rem !important;
}

.hi-sticker-img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: var(--space-sm);
}

.hi-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.hi-btn {
  width: 100%;
  text-align: center;
  justify-content: center;
}

.hi-drinks {
  margin-top: var(--space-lg);
}

.hi-drinks h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.hi-drinks ul {
  list-style: none;
  padding: 0;
}

.hi-drinks li {
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.8;
  color: var(--duck-red);
}

/* ========================================
   STICKERS PAGE
   ======================================== */
.stickers-section {
  padding-top: 0;
}

.stickers-year-heading {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--duck-maroon);
  margin-bottom: var(--space-md);
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--duck-cream);
}

.stickers-year-heading:not(:first-child) {
  margin-top: var(--space-xl);
}

.stickers-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sticker-row {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(219, 190, 168, 0.3);
  border-radius: 20px;
  overflow: hidden;
  padding: var(--space-md);
}

.sticker-row-info {
  margin-bottom: var(--space-sm);
}

.sticker-month {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 0.15rem;
}

.sticker-artist {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--text-primary);
}

a.sticker-artist {
  color: var(--duck-red);
  transition: color 0.2s ease;
}

a.sticker-artist:hover {
  color: var(--duck-maroon);
}

.sticker-row-images {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.sticker-img {
  border-radius: 12px;
  height: auto;
  max-height: 320px;
  width: auto;
  max-width: 100%;
}

/* ========================================
   DECORATIVE STICKERS (page edges)
   ======================================== */
.deco-stickers {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.deco-sticker {
  position: absolute;
  pointer-events: auto;
  width: 100px;
  opacity: 0.9;
  filter: drop-shadow(1px 2px 3px rgba(0, 0, 0, 0.18));
  transition: transform 0.3s ease, filter 0.3s ease, opacity 0.3s ease;
}

.deco-sticker:hover {
  transform: rotate(0deg) scale(1.15) !important;
  filter: drop-shadow(2px 4px 8px rgba(0, 0, 0, 0.25));
  opacity: 1;
}

.deco-sticker img {
  width: 100px;
  height: auto;
  display: block;
}

@media (max-width: 1319px) {
  .deco-stickers { display: none; }
}

/* ========================================
   SERVICE PAGE
   ======================================== */
.service-hero {
  padding-top: calc(80px + var(--space-lg));
  padding-bottom: var(--space-sm);
  text-align: center;
}

.service-hero .section-desc {
  font-size: 1.15rem;
  font-weight: 500;
  margin: 0 auto var(--space-xs);
}

.service-hero__sub {
  color: var(--text-muted);
  font-size: 1rem;
}

.service-about {
  padding: var(--space-lg) 0 var(--space-xl);
}

.service-about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  align-items: center;
}

.service-about__image {
  order: -1;
}

@media (min-width: 768px) {
  .service-about__image {
    order: 0;
  }
}

@media (min-width: 768px) {
  .service-about__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.service-about__text p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.service-about__image img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.service-details {
  padding: var(--space-xl) 0;
  background: var(--duck-charcoal);
  color: var(--duck-white);
}

.service-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .service-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: var(--space-md);
}

.service-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: var(--space-sm);
  color: var(--duck-peach);
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.service-card__note {
  margin-top: var(--space-sm);
  font-style: italic;
  font-size: 0.85rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
}

.service-pricing__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: var(--space-sm);
}

.service-pricing__label {
  font-weight: 600;
  color: var(--duck-white);
  white-space: nowrap;
}

.service-pricing__value {
  color: rgba(255, 255, 255, 0.7);
  text-align: right;
  font-size: 0.95rem;
}

.service-contact-methods {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.service-contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--duck-peach);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.service-contact-link:hover {
  color: var(--duck-gold);
}

.service-contact-link svg {
  flex-shrink: 0;
  stroke: currentColor;
}

.service-schedule-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: var(--space-sm);
}

.service-schedule-actions .contact-action-btn {
  flex: 1;
  text-align: center;
  background: var(--duck-red);
  color: var(--duck-white);
  border: 1px solid var(--duck-red);
}

.service-schedule-actions .contact-action-btn:hover {
  background: #a13532;
  border-color: #a13532;
  color: var(--duck-white);
}

.service-commitment {
  padding: var(--space-xl) 0;
  text-align: center;
}

.service-commitment .section-title {
  margin-bottom: var(--space-sm);
}

.service-commitment p {
  max-width: 680px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.service-consulting {
  padding: var(--space-xl) 0;
  text-align: center;
  background: var(--duck-charcoal);
  color: var(--duck-white);
}

.service-consulting .section-title {
  color: var(--duck-white);
  margin-bottom: var(--space-sm);
}

.service-consulting > .container > p {
  max-width: 680px;
  margin: 0 auto var(--space-lg);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.service-consulting__contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.service-brands {
  margin-top: var(--space-lg);
}

.service-brands h3 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: var(--space-sm);
}

.service-brands__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
}

.service-brand-pill {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}

/* ========================================
   CART DRAWER (global — loaded by cart.js on every page)
   ======================================== */
.shop-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(60, 60, 60, 0.4);
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.shop-cart-overlay.open {
  opacity: 1;
  visibility: visible;
}

.shop-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 420px;
  background: var(--bg-warm);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.15);
}

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

.shop-cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md);
  border-bottom: 1px solid rgba(219, 190, 168, 0.3);
}

.shop-cart-drawer__header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--duck-charcoal);
}

.shop-cart-drawer__close {
  background: none;
  border: none;
  color: var(--text-muted);
  padding: 0.25rem;
  line-height: 1;
  cursor: pointer;
}

.shop-cart-drawer__close:hover {
  color: var(--duck-charcoal);
}

.shop-cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-md);
}

.shop-cart-drawer__empty {
  text-align: center;
  color: var(--text-muted);
  padding: var(--space-lg) 0;
  font-size: 0.95rem;
}

.shop-cart-item {
  display: flex;
  gap: var(--space-sm);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid rgba(219, 190, 168, 0.2);
}

.shop-cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-warm-dark);
}

.shop-cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-cart-item__details {
  flex: 1;
  min-width: 0;
}

.shop-cart-item__title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--duck-charcoal);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-cart-item__variant {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.shop-cart-item__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.4rem;
}

.shop-cart-item__qty {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.shop-cart-item__qty button {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(219, 190, 168, 0.5);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1;
  color: var(--duck-charcoal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shop-cart-item__qty button:hover {
  border-color: var(--duck-red);
  color: var(--duck-red);
}

.shop-cart-item__qty span {
  font-size: 0.85rem;
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}

.shop-cart-item__price {
  font-weight: 600;
  font-size: 0.9rem;
}

.shop-cart-drawer__footer {
  padding: var(--space-md);
  border-top: 1px solid rgba(219, 190, 168, 0.3);
}

.shop-cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-sm);
}

.shop-cart-drawer__subtotal span:first-child {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.shop-cart-drawer__subtotal span:last-child {
  font-size: 1.15rem;
  font-weight: 700;
}

.shop-cart-drawer__checkout {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
}

/* ========================================
   REDUCED MOTION
   ======================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .ticker-track { animation: none; }
}
