/* Freshly Squeezed — Homepage mockup design system */

@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@400;500;600;700&display=swap');

:root {
  --color-primary: #00a97f;
  --color-primary-dark: #008566;
  --color-accent: #a9ca3b;
  --color-accent-dark: #95b534;
  --color-accent-warm: #f3ec3a;
  --color-text: #191919;
  --color-text-muted: #4c5656;
  --color-bg: #ffffff;
  --color-bg-soft: #f4fdf4;
  --color-bg-card: #0f0f0f;
  --color-footer: #141414;
  --header-h: 6rem;
  --container: 72rem;
  --space-gutter: clamp(1.75rem, 6vw, 3rem);
  --carousel-inset: 1.25rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  font-size: 115%;
  scroll-behavior: smooth;
}

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

body {
  font-family: 'Kanit', system-ui, -apple-system, sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  margin: 0;
  line-height: 1.5;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

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

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

:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 0.75rem 1.25rem;
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
}

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

.container {
  width: min(calc(100% - var(--space-gutter) * 2), var(--container));
  margin-inline: auto;
  padding-inline: 0;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5);
  transition: box-shadow 0.25s var(--ease-out), height 0.25s var(--ease-out);
}

.site-header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.site-header__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header__logo img {
  display: block;
  height: clamp(3.75rem, 11vw, 4.85rem);
  width: auto;
  max-width: min(21.5rem, 68vw);
  object-fit: contain;
  transition: height 0.25s var(--ease-out), max-width 0.25s var(--ease-out);
}

.site-header.is-scrolled .site-header__logo img {
  height: clamp(3.35rem, 9vw, 4.1rem);
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.nav-desktop a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
  transition: color 0.2s;
}

.nav-desktop a:hover {
  color: var(--color-primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.625rem 1.25rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s, box-shadow 0.2s;
}

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

.btn:active {
  transform: translateY(-1px) scale(0.98);
}

.btn-primary {
  background: var(--color-accent);
  color: var(--color-text);
}

.btn-primary:hover {
  background: var(--color-accent-dark);
}

.btn-secondary {
  background: var(--color-text);
  color: #fff;
}

.btn-secondary:hover {
  background: #333;
}

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(0, 0, 0, 0.12);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn-ghost {
  background: transparent;
  color: var(--color-text);
  padding-inline: 0.75rem;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 2.75rem;
  height: 2.75rem;
  padding: 0 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.menu-toggle__label {
  display: none;
}

.menu-toggle__bar {
  display: block;
  width: 1.25rem;
  height: 2px;
  background: var(--color-text);
  position: relative;
  transition: background 0.2s;
}

.menu-toggle__bar::before,
.menu-toggle__bar::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.25s var(--ease-out), top 0.25s var(--ease-out);
}

.menu-toggle__bar::before {
  top: -6px;
}

.menu-toggle__bar::after {
  top: 6px;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__bar {
  background: transparent;
}

.menu-toggle[aria-expanded='true'] .menu-toggle__bar::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded='true'] .menu-toggle__bar::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 1100;
  pointer-events: none;
  visibility: hidden;
}

.nav-drawer.is-open {
  pointer-events: auto;
  visibility: visible;
}

.nav-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  transition: opacity 0.3s var(--ease-out);
}

.nav-drawer.is-open .nav-drawer__backdrop {
  opacity: 1;
}

.nav-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 22rem);
  height: 100%;
  background: #fff;
  padding: 1.5rem;
  padding-top: calc(var(--header-h) + 0.5rem);
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
}

.nav-drawer.is-open .nav-drawer__panel {
  transform: translateX(0);
}

.nav-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.25rem;
}

.nav-drawer__title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-text);
}

.nav-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--color-bg-soft);
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.nav-drawer__close:hover {
  background: rgba(169, 202, 59, 0.25);
  color: var(--color-text);
}

.nav-drawer__close svg {
  width: 1.25rem;
  height: 1.25rem;
}

.nav-drawer__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 1.25rem 0 0.5rem;
}

.nav-drawer__link {
  display: block;
  padding: 0.65rem 0;
  font-size: 1.05rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-drawer__link--cat {
  font-size: 0.95rem;
  font-weight: 400;
  padding-left: 0.5rem;
}

.nav-drawer__cta {
  margin-top: 1.5rem;
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(28rem, 85vh, 40rem);
  margin-top: var(--header-h);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #1a1a1a;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video,
.hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__poster {
  display: none;
}

.hero__video {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__poster {
    display: block;
  }
}

@media (max-width: 767px) {
  .hero {
    min-height: clamp(26rem, 92vh, 36rem);
    align-items: flex-end;
  }

  .hero__video,
  .hero__poster {
    object-position: center 30%;
  }

  .hero__content {
    padding-bottom: 2.5rem;
  }

  .hero__title {
    max-width: none;
  }
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.1) 0%,
    rgba(0, 0, 0, 0.4) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 2.5rem 0 3.5rem;
  color: #fff;
}

.hero__inner {
  max-width: 38rem;
}

.hero__card {
  position: absolute;
  left: 3rem;
  bottom: 3.5rem;
  max-width: 24rem;
  text-align: left;
  z-index: 5;
}

@media (max-width: 1024px) {
  .hero__card {
    left: 2rem;
    bottom: 2.5rem;
  }
}

@media (max-width: 767px) {
  .hero__card {
    position: relative;
    left: auto;
    bottom: auto;
    max-width: 100%;
  }
}

.hero__badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-size: clamp(1.35rem, 3.2vw, 1.85rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.55rem;
  max-width: 100%;
}

.hero__subtitle {
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  font-weight: 400;
  opacity: 0.9;
  margin: 0 0 1.2rem;
  max-width: 100%;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-outline--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
}

.btn-outline--on-dark:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: #fff;
  color: #fff;
}

/* Quick paths */
.quick-paths {
  display: flex;
  gap: 0.5rem;
  padding: 0.75rem 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.quick-paths::-webkit-scrollbar {
  display: none;
}

.quick-paths__chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 1rem;
  background: var(--color-bg-soft);
  border: 1px solid rgba(0, 169, 127, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  white-space: nowrap;
}

.quick-paths__chip svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

/* Sections */
.section {
  padding: 4rem 0;
}

.section--soft {
  background: var(--color-bg-soft);
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin: 0 0 0.5rem;
}

.section__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  line-height: 1.15;
}

.section__lead {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 0 2rem;
  max-width: 42ch;
}

.section__footer-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 2rem;
  font-weight: 600;
  color: var(--color-accent);
}

.section__footer-link:hover {
  color: var(--color-accent-dark);
  text-decoration: underline;
}

/* Category carousel (Jugo-style horizontal scroll, all breakpoints) */
.category-carousel-wrap {
  position: relative;
}

.category-carousel__edge {
  position: absolute;
  top: 0;
  bottom: 1.25rem;
  width: clamp(4rem, 14vw, 6.5rem);
  display: flex;
  align-items: center;
  pointer-events: none;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s var(--ease-out);
}

.category-carousel__edge--start {
  left: 0;
  justify-content: flex-start;
  padding-left: 0.65rem;
  background: linear-gradient(
    90deg,
    var(--color-bg-soft) 0%,
    rgba(244, 253, 244, 0.92) 35%,
    rgba(244, 253, 244, 0) 100%
  );
}

.category-carousel__edge--end {
  right: 0;
  justify-content: flex-end;
  padding-right: 0.65rem;
  background: linear-gradient(
    270deg,
    var(--color-bg-soft) 0%,
    rgba(244, 253, 244, 0.92) 35%,
    rgba(244, 253, 244, 0) 100%
  );
}

.category-carousel__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  margin: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  pointer-events: auto;
  -webkit-tap-highlight-color: transparent;
}

.category-carousel__btn:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: 50%;
}

.category-carousel__btn:disabled {
  cursor: default;
}

.category-carousel__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary);
  border: 1px solid rgba(0, 169, 127, 0.2);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}

.category-carousel__btn:hover:not(:disabled) .category-carousel__chevron {
  transform: scale(1.06);
  box-shadow: 0 6px 20px rgba(0, 169, 127, 0.22);
}

.category-carousel-wrap:not(.has-overflow) .category-carousel__edge {
  opacity: 0;
  visibility: hidden;
}

.category-carousel-wrap.is-at-start .category-carousel__edge--start {
  opacity: 0;
  visibility: hidden;
}

.category-carousel-wrap.is-at-end .category-carousel__edge--end {
  opacity: 0;
  visibility: hidden;
}

.category-carousel {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--space-gutter);
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 169, 127, 0.45) transparent;
  padding-bottom: 1.25rem;
  margin-bottom: 0.25rem;
  cursor: grab;
}

.category-carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  user-select: none;
}

.category-carousel.is-dragging .category-card {
  pointer-events: none;
}

.category-carousel.is-dragging .category-card,
.category-carousel.is-dragging .category-card:hover {
  transform: none;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.category-carousel::-webkit-scrollbar {
  height: 6px;
}

.category-carousel::-webkit-scrollbar-thumb {
  background: rgba(0, 169, 127, 0.35);
  border-radius: 999px;
}

.category-carousel__track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  padding-left: var(--space-gutter);
  padding-right: var(--space-gutter);
}

.category-carousel .category-card {
  flex: 0 0 min(88vw, 21rem);
  scroll-snap-align: start;
}

.category-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  border-color: rgba(0, 169, 127, 0.35);
}

.category-card__media {
  aspect-ratio: 3 / 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: linear-gradient(165deg, var(--color-bg-soft) 0%, #fff 55%, #eef8f2 100%);
  overflow: hidden;
}

.category-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
}

.category-card__label {
  padding: 1rem 0.75rem;
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--color-text);
  background: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#menu .section__lead {
  margin-bottom: 1.75rem;
}

/* Trust strip */
.trust-strip {
  background: linear-gradient(135deg, var(--color-primary) 0%, #a9ca3b 100%);
  color: #fff;
  padding: 2rem 0;
}

.trust-strip__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  text-align: center;
}

.trust-strip__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.trust-strip__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  background: #fff;
  color: var(--color-primary-dark);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.trust-strip__icon svg {
  width: 2.2rem;
  height: 2.2rem;
  stroke-width: 2;
}

.trust-strip__item strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.trust-strip__item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* Full-width promo banner */
.promo-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: var(--color-bg-soft);
}

.promo-banner__link {
  display: block;
  width: min(100%, 1920px);
  max-width: 1920px;
  margin-inline: auto;
}

.promo-banner__link:focus-visible {
  outline-offset: -3px;
}

.promo-banner__img {
  width: 100%;
  max-width: 1920px;
  height: auto;
  display: block;
  margin-inline: auto;
}

/* Refreshments promo */
.refreshments-section {
  background: #fff;
}

.refreshments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.refreshments-grid__media {
  margin-inline: auto;
  max-width: 22rem;
  border-radius: 1.25rem;
  overflow: hidden;
}

.refreshments-grid__media img {
  display: block;
  width: 100%;
  height: auto;
}

.refreshments-grid__content .section__title {
  margin-bottom: 1rem;
}

.refreshments-grid__content p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
  margin: 0 0 1.5rem;
  max-width: 52ch;
}

/* Franchise banner (full-width strip, Teaspoon-style) */
.franchise-banner {
  width: 100%;
  padding: 0;
  margin: 0 0 3rem 0;
  background: var(--color-bg-soft);
}

.franchise-banner__grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: none;
  margin: 0;
}

.franchise-banner__media {
  display: flex;
  min-height: clamp(14rem, 42vw, 28rem);
  overflow: hidden;
  background: #1a1a1a;
}

.franchise-banner__media img {
  flex: 1 1 auto;
  width: 100%;
  min-height: clamp(14rem, 50vw, 28rem);
  max-width: none;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.franchise-banner__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  padding: clamp(2rem, 5vw, 3.5rem) var(--space-gutter);
  background: var(--color-bg-soft);
}

.franchise-banner__title {
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 1rem;
  max-width: 22ch;
}

.franchise-banner__body p {
  color: var(--color-text-muted);
  font-size: clamp(1rem, 2.2vw, 1.05rem);
  line-height: 1.65;
  margin: 0 0 1rem;
  max-width: 52ch;
}

.franchise-banner__body p strong {
  color: var(--color-text);
  font-weight: 600;
}

.franchise-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

@media (min-width: 768px) {
  .franchise-banner__grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    align-items: stretch;
    min-height: clamp(22rem, 36vw, 30rem);
  }

  .franchise-banner__media {
    min-height: 100%;
    align-self: stretch;
  }

  .franchise-banner__media img {
    min-height: clamp(22rem, 36vw, 30rem);
  }

  .franchise-banner__body {
    padding: clamp(2.5rem, 4vw, 4rem) clamp(2rem, 5vw, 4rem);
  }
}

@media (min-width: 1200px) {
  .franchise-banner__grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Story (legacy / other pages) */
.story-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.story-grid__image {
  border-radius: 1.25rem;
  overflow: hidden;
  background: var(--color-bg-card);
  aspect-ratio: 4/3;
}

.story-grid__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  background: radial-gradient(ellipse at 50% 90%, #2a2a2a, #0f0f0f);
}

.story-grid__text p {
  color: var(--color-text-muted);
  margin: 0 0 1.25rem;
  font-size: 1.05rem;
}

.story-grid__text p strong {
  color: var(--color-text);
  font-weight: 600;
}

.story-grid__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.25rem;
}

.story-grid__image--photo {
  aspect-ratio: 950 / 541;
}

.story-grid__image--photo img {
  object-fit: cover;
  object-position: center;
  background: #e5e5e5;
}

/* Instagram feed */
.instagram-section {
  background: #fff;
}

.instagram-section__header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.instagram-hashtag {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 700;
}

.instagram-section__lead {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  max-width: 48ch;
  margin: 0.5rem 0 0;
}

.instagram-section__follow {
  align-self: flex-start;
  flex-shrink: 0;
}

/* Dense grid for clickable thumbnails */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 991px) {
  .instagram-grid {
    grid-template-columns: repeat(4, 1fr); /* 4 columns on tablet screens */
  }
}

@media (max-width: 575px) {
  .instagram-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile screens */
    gap: 0.5rem;
  }
}

.instagram-grid__item {
  display: block;
  width: 100%;
}

.instagram-card {
  position: relative;
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  background: var(--color-bg-soft);
  line-height: 0;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
}

.instagram-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 169, 127, 0.18);
}

.instagram-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.instagram-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  background: var(--color-bg-soft);
}

.instagram-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  transition: opacity 0.25s var(--ease-out);
}

.instagram-card__overlay::after {
  content: '';
  width: 2rem;
  height: 2rem;
  background: #fff;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm6.5-.75a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='black'%3E%3Cpath d='M7 2h10a5 5 0 0 1 5 5v10a5 5 0 0 1-5 5H7a5 5 0 0 1-5-5V7a5 5 0 0 1 5-5zm5 5a4 4 0 1 0 0 8 4 4 0 0 0 0-8zm6.5-.75a1 1 0 1 0 0 2 1 1 0 0 0 0-2z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.instagram-card:hover .instagram-card__overlay,
.instagram-card:focus-visible .instagram-card__overlay {
  opacity: 1;
}

.instagram-card__badge {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  padding: 0.2rem 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 0.35rem;
}

@media (min-width: 640px) {
  .instagram-grid__item {
    margin-bottom: 0;
  }
}

@media (min-width: 1200px) {
  .instagram-grid__item {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .instagram-section__header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}


/* Newsletter */
.newsletter {
  text-align: center;
  max-width: 28rem;
  margin-inline: auto;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.newsletter__form input {
  width: 100%;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
}

.newsletter__form input:focus {
  border-color: var(--color-primary);
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 169, 127, 0.2);
}

.newsletter__fine {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--color-footer);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 1.5rem;
}

.site-footer a:hover {
  color: #fff;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-grid h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 1rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid li {
  margin-bottom: 0.5rem;
}

.footer-grid a {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}

.footer-brand__logo-wrap {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  padding: 0.5rem 0.75rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  line-height: 0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.footer-brand__logo-wrap:hover {
  background: #f8f8f8;
}

.footer-brand__logo-wrap:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

.footer-brand__logo {
  height: auto;
  width: auto;
  max-height: 4.75rem;
  max-width: 15.5rem;
  display: block;
  object-fit: contain;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

/* Wave divider */
.wave-divider {
  display: block;
  width: 100%;
  line-height: 0;
  margin-top: -1px;
}

.wave-divider svg {
  display: block;
  width: 100%;
  height: auto;
}

/* Stub page */
.page-stub {
  margin-top: var(--header-h);
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1rem;
}

.page-stub h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.page-stub p {
  color: var(--color-text-muted);
  margin-bottom: 1.5rem;
}

/* Responsive */
@media (min-width: 640px) {
  .category-carousel .category-card {
    flex: 0 0 22.5rem;
  }

  .newsletter__form {
    flex-direction: row;
  }

  .newsletter__form input {
    flex: 1;
  }

  .newsletter__form .btn {
    flex-shrink: 0;
  }
}

@media (max-width: 767px) {
  .site-header__logo {
    flex-shrink: 0;
  }

  .header-actions {
    flex-shrink: 0;
  }

  .menu-toggle__label {
    display: inline;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .quick-paths {
    display: none;
  }

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

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

  .story-grid--store {
    grid-template-columns: 1.05fr 1fr;
    gap: 2.5rem;
  }

  .refreshments-grid {
    grid-template-columns: minmax(16rem, 22rem) 1fr;
    gap: 3rem;
  }

  .refreshments-grid__media {
    margin-inline: 0;
    max-width: none;
  }

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

@media (min-width: 1024px) {
  :root {
    --carousel-inset: 1.5rem;
  }

  .category-carousel .category-card {
    flex: 0 0 24.5rem;
  }

  .category-card__label {
    font-size: 1.25rem;
    padding: 1.15rem 0.85rem;
  }

  .refreshments-grid {
    grid-template-columns: minmax(18rem, 26rem) 1fr;
    gap: 4rem;
  }

  .hero__content {
    padding-bottom: 4.5rem;
  }

  .hero__inner {
    max-width: 42rem;
  }
}

@media (max-width: 767px) {
  .section {
    padding: 3rem 0;
  }

  .section__title {
    font-size: clamp(1.5rem, 5.5vw, 1.85rem);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hero__actions .btn {
    justify-content: center;
    padding-inline: 0.75rem;
    font-size: 0.85rem;
  }

  .hero__title {
    max-width: 100%;
    text-wrap: balance;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .instagram-section__follow {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .franchise-banner__actions {
    flex-direction: column;
  }

  .franchise-banner__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .newsletter__form {
    width: 100%;
    max-width: 100%;
  }

  .newsletter__form .btn {
    width: 100%;
  }

  .trust-strip__grid {
    gap: 1.25rem;
  }

  .quick-paths {
    padding-block: 0.75rem 0.25rem;
  }

  .quick-paths__chip {
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
    font-size: 0.8rem;
    padding-inline: 0.65rem;
  }
}

/* Feature Split Layout */
.feature-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 992px) {
  .feature-split {
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: flex-start;
  }
}
.feature-split__sticky {
  position: sticky;
  top: calc(var(--header-h) + 4rem);
}
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.feature-list__item {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) {
  .feature-list__item {
    grid-template-columns: 40px 1fr;
    gap: 2rem;
  }
}
.feature-list__item:first-child {
  padding-top: 0;
}
.feature-list__item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.feature-list__icon {
  width: 40px;
  height: 40px;
  background: var(--color-bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.feature-list__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 1rem;
}
.feature-list__desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
  max-width: 45ch;
}

/* Audit Polish Utilities */
.py-hero {
  padding-top: calc(var(--header-h) + 5rem);
  padding-bottom: 5rem;
}
.grid-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .grid-bento { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .grid-bento { grid-template-columns: repeat(3, 1fr); }
}
.card-bento {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}
.card-bento:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
  border-color: rgba(0,0,0,0.15);
}

/* Reveal Animation */
.reveal-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal-up.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    transform: none;
    transition: opacity 0.6s linear;
  }
}


/* ==========================================================================
   MENU BENTO GRID (Impeccable & Taste Guidelines applied)
   ========================================================================== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}
@media (max-width: 767px) {
  .bento-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.bento-tile {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 24px -8px rgba(0, 0, 0, 0.05);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  /* Inner shadow for "Liquid Glass" feel */
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.8), 0 4px 20px rgba(0,0,0,0.03);
}

.bento-tile:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 12px 32px rgba(0,0,0,0.06);
}

/* 
  Featured tiles span larger areas for editorial rhythm 
  Avoiding identical grid repetition per anti-slop rules
*/
@media (min-width: 768px) {
  .bento-tile.featured-tile {
    grid-column: span 2;
    grid-row: span 2;
    flex-direction: row;
    align-items: center;
  }
  
  .bento-tile.featured-tile .bento-tile__img-wrap {
    flex: 0 0 50%;
    height: 100%;
    aspect-ratio: auto;
  }
}

.bento-tile__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.bento-tile__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.bento-tile:hover .bento-tile__img-wrap img {
  transform: scale(1.05);
}

.bento-tile__content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
  justify-content: center;
}

.bento-tile__title {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-text);
  margin: 0;
  text-wrap: balance;
}

@media (min-width: 768px) {
  .bento-tile.featured-tile .bento-tile__title {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    letter-spacing: -0.03em;
  }
}

.bento-tile__ingd {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.4;
  margin: 0;
}

.bento-tile__cals {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-primary);
  margin-top: 0.5rem;
}


/* ==========================================================================
   CATEGORY FILTER PILLS
   ========================================================================== */
.filter-pills {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  scrollbar-width: none; /* Firefox */
  -webkit-overflow-scrolling: touch;
}
@media (min-width: 768px) {
  .filter-pills {
    flex-wrap: wrap;
    overflow-x: visible;
  }
}
.filter-pills::-webkit-scrollbar {
  display: none;
}
.filter-pill {
  flex: 0 0 auto;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: var(--color-text);
  padding: 0.5rem 1.25rem;
  border-radius: 9999px; /* full pill */
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6), 0 2px 8px rgba(0,0,0,0.02);
}
.filter-pill:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateY(-1px);
}
.filter-pill.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
