/* =============================================
   Dalle Burguer — Design System Tokens
   ============================================= */
:root {
  --brand-primary: #ECB62B;
  --brand-secondary: #EAA22F;
  --brand-accent: #DC5F1F;
  --brand-accent-dark: #B54716;
  --brand-dark: #312319;
  --brand-dark-secondary: #5B4107;

  --text-primary: #312319;
  --text-body: #555555;
  --text-muted: #666666;
  --text-nav: #707070;
  --text-on-dark: #FFFFFF;
  --text-on-primary: #312319;

  --surface-white: #FFFFFF;
  --surface-cream: #FAF6EF;
  --surface-dark: #312319;
  --surface-dark-overlay: rgba(49, 35, 25, 0.83);

  --border-light: #E4E4E4;
  --border-primary: #ECB62B;
  --border-accent: #DC5F1F;

  --shadow-sm: 0 0 10px rgba(0, 0, 0, 0.2);
  --shadow-md: 2px 3px 35px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 10px 3px hsl(0deg 0% 0% / 16%);
  --shadow-card: 0 0 50px -13px rgba(0, 0, 0, 0.2);

  --radius-sm: 10px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 25px;
  --radius-2xl: 30px;
  --radius-pill: 50px;

  --font-display: 'Fredoka One', cursive;
  --font-body: 'Epilogue', sans-serif;

  --ease-smooth: cubic-bezier(0.3, 0.58, 0.55, 1);
  --ease-bounce: cubic-bezier(0.2, 1, 0.22, 1);

  --section-gap: 120px;
  --container-max: 1200px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.875;
  color: var(--text-body);
  background: var(--surface-white);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  width: min(100% - 40px, var(--container-max));
  margin-inline: auto;
}

/* =============================================
   Header
   ============================================= */
.header-top {
  background: var(--brand-primary);
  padding: 8px 0;
  color: var(--brand-dark);
  font-size: 14px;
}

.header-top__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.header-top__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}

.header-top__badge svg {
  flex-shrink: 0;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface-white);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s;
}

.navbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}

.navbar__logo img {
  height: 64px;
  width: auto;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.navbar__links a {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-nav);
  padding: 12px 20px;
  border-bottom: 3px solid transparent;
  text-transform: capitalize;
  transition: all 0.3s var(--ease-smooth);
}

.navbar__links a:hover,
.navbar__links a.active {
  color: var(--brand-dark);
  border-bottom-color: var(--brand-primary);
}

.navbar__cta {
  display: none;
  flex-shrink: 0;
}

.navbar__mobile-cta {
  display: none;
  width: 100%;
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--border-light);
}

.navbar__mobile-cta .btn {
  width: 100%;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--brand-dark);
  border-radius: 2px;
  transition: transform 0.3s var(--ease-smooth), opacity 0.3s;
  margin-inline: auto;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =============================================
   Buttons
   ============================================= */
.btn {
  font-family: var(--font-display);
  font-size: 16px;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 36px;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: background 0.3s var(--ease-smooth), color 0.3s var(--ease-smooth);
}

.btn::before,
.btn::after {
  content: none;
  display: none;
}

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

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

.btn--secondary {
  background: var(--brand-primary);
  color: var(--text-on-primary);
}

.btn--secondary:hover {
  background: var(--brand-secondary);
}

.btn--outline {
  background: transparent;
  color: var(--text-on-dark);
  border: 2px solid var(--text-on-dark);
}

.btn--outline:hover {
  background: var(--text-on-dark);
  color: var(--brand-dark);
}

.btn--sm {
  padding: 12px 24px;
  font-size: 14px;
}

/* =============================================
   Hero
   ============================================= */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--brand-dark);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(49, 35, 25, 0.92) 0%, rgba(49, 35, 25, 0.75) 45%, rgba(49, 35, 25, 0.4) 100%),
    url('../assets/img/DSC08384.jpg') center / cover no-repeat;
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  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)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 100px 0 80px;
}

.hero__text {
  animation: fadeUp 0.8s var(--ease-bounce) both;
}

.hero__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.1;
  color: var(--text-on-dark);
  margin-bottom: 24px;
}

.hero__title span {
  color: var(--brand-primary);
  display: block;
}

.hero__subtitle {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 520px;
}

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

.hero__visual {
  position: relative;
  animation: fadeUp 0.8s 0.2s var(--ease-bounce) both;
}

.hero__image-wrap {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 4px solid var(--brand-primary);
}

.hero__image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__seal {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 140px;
  filter: drop-shadow(var(--shadow-sm));
  animation: float 4s ease-in-out infinite;
}

.hero__mascot {
  position: absolute;
  top: -40px;
  right: -20px;
  width: 160px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.3));
  animation: float 5s ease-in-out infinite reverse;
}

/* =============================================
   Section Heading
   ============================================= */
.section-heading {
  text-align: center;
  margin-bottom: 60px;
}

.section-heading__label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--brand-accent);
  margin-bottom: 12px;
}

.section-heading__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-heading__line {
  width: 80px;
  height: 6px;
  background: var(--brand-primary);
  border-radius: var(--radius-pill);
  margin: 0 auto 20px;
}

.section-heading__desc {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--text-muted);
}

/* =============================================
   About / Heritage
   ============================================= */
.heritage {
  padding: var(--section-gap) 0;
  background: var(--surface-cream);
  position: relative;
}

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

.heritage__visual {
  position: relative;
}

.heritage__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 4px solid var(--brand-primary);
  box-shadow: var(--shadow-card);
}

.heritage__image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.heritage__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--brand-accent);
  color: var(--text-on-dark);
  font-family: var(--font-display);
  font-size: 18px;
  padding: 20px 28px;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-md);
  max-width: 220px;
  text-align: center;
  line-height: 1.4;
}

.heritage__content h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--text-primary);
  margin-bottom: 24px;
  line-height: 1.2;
}

.heritage__content h2 em {
  color: var(--brand-accent);
  font-style: normal;
}

.heritage__content p {
  margin-bottom: 20px;
  font-size: 17px;
}

.heritage__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}

.heritage__feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.heritage__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--brand-primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.heritage__feature h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.heritage__feature p {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* =============================================
   Menu
   ============================================= */
.menu {
  padding: var(--section-gap) 0;
  background: var(--surface-white);
}

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

.menu-card {
  background: var(--surface-white);
  border-radius: var(--radius-2xl);
  overflow: hidden;
  border: 2px solid var(--border-light);
  transition: all 0.4s var(--ease-smooth);
  position: relative;
}

.menu-card:hover {
  border-color: var(--brand-primary);
  transform: translateY(-8px);
  box-shadow: var(--shadow-card);
}

.menu-card--featured {
  grid-column: span 1;
  border-color: var(--brand-primary);
  border-width: 3px;
}

.menu-card__badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--brand-accent);
  color: var(--text-on-dark);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  z-index: 2;
}

.menu-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--surface-cream);
}

.menu-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-smooth);
}

.menu-card:hover .menu-card__image img {
  transform: scale(1.05);
}

.menu-card__body {
  padding: 24px;
}

.menu-card__name {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.menu-card__desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

.menu__cta {
  text-align: center;
  margin-top: 50px;
}

/* =============================================
   Gallery Strip
   ============================================= */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  height: 280px;
  overflow: hidden;
}

.gallery-strip__item {
  overflow: hidden;
}

.gallery-strip__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-smooth);
}

.gallery-strip__item:hover img {
  transform: scale(1.08);
}

/* =============================================
   Stores
   ============================================= */
.stores {
  padding: var(--section-gap) 0;
  background: var(--brand-dark);
  color: var(--text-on-dark);
  position: relative;
}

.stores::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent), var(--brand-primary));
}

.stores .section-heading__title {
  color: var(--text-on-dark);
}

.stores .section-heading__desc {
  color: rgba(255, 255, 255, 0.7);
}

.stores__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.store-card {
  background: rgba(255, 255, 255, 0.06);
  border: 2px solid rgba(236, 182, 43, 0.3);
  border-radius: var(--radius-2xl);
  padding: 40px;
  transition: all 0.4s var(--ease-smooth);
  position: relative;
  overflow: hidden;
}

.store-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease-smooth);
}

.store-card:hover {
  border-color: var(--brand-primary);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-4px);
}

.store-card:hover::before {
  transform: scaleX(1);
}

.store-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.store-card__icon {
  width: 56px;
  height: 56px;
  background: var(--brand-primary);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.store-card__name {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--brand-primary);
}

.store-card__location {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.store-card__info {
  margin-bottom: 28px;
}

.store-card__info-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.5;
}

.store-card__info-item svg {
  flex-shrink: 0;
  margin-top: 3px;
  color: var(--brand-primary);
}

.store-card__info-item a {
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.3s;
}

.store-card__info-item a:hover {
  color: var(--brand-primary);
}

.store-card__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.store-card__actions .btn--outline {
  border-color: var(--brand-primary);
  color: var(--brand-primary);
}

.store-card__actions .btn--outline:hover {
  background: var(--brand-primary);
  color: var(--brand-dark);
}

/* =============================================
   CTA Banner
   ============================================= */
.cta-banner {
  padding: 60px 0;
  background: var(--brand-primary);
  position: relative;
  overflow: hidden;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.cta-banner__mascot {
  width: 220px;
  flex-shrink: 0;
  opacity: 1;
  filter: drop-shadow(0 8px 24px rgba(49, 35, 25, 0.15));
}

.cta-banner__content {
  text-align: left;
  max-width: 520px;
}

.cta-banner__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.cta-banner__desc {
  font-size: 18px;
  color: var(--brand-dark-secondary);
  margin-bottom: 32px;
}

/* =============================================
   Order Modal
   ============================================= */
.order-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-smooth), visibility 0.3s;
}

.order-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.order-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(49, 35, 25, 0.75);
  backdrop-filter: blur(4px);
}

.order-modal__dialog {
  position: relative;
  background: var(--surface-white);
  border-radius: var(--radius-2xl);
  padding: 40px;
  width: min(100%, 520px);
  box-shadow: var(--shadow-card);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease-bounce);
}

.order-modal.is-open .order-modal__dialog {
  transform: translateY(0) scale(1);
}

.order-modal__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 32px;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.2s;
}

.order-modal__close:hover {
  color: var(--brand-accent);
}

.order-modal__title {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--text-primary);
  margin-bottom: 8px;
  padding-right: 32px;
}

.order-modal__desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.order-modal__stores {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-modal__store {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 2px solid var(--border-light);
  border-radius: var(--radius-lg);
  transition: all 0.3s var(--ease-smooth);
}

.order-modal__store:hover {
  border-color: var(--brand-primary);
  background: var(--surface-cream);
  transform: translateX(4px);
}

.order-modal__store-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.order-modal__store-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.order-modal__store-info strong {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--text-primary);
}

.order-modal__store-info span {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.4;
}

.order-modal__store-arrow {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--brand-accent);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.order-modal__store:hover .order-modal__store-arrow {
  transform: translateX(4px);
}

/* =============================================
   Footer
   ============================================= */
.footer {
  background: var(--brand-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 30px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer__brand img {
  height: 80px;
  margin-bottom: 16px;
}

.footer__brand p {
  font-size: 15px;
  line-height: 1.7;
  max-width: 320px;
}

.footer__heading {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--brand-primary);
  margin-bottom: 20px;
}

.footer__links li {
  margin-bottom: 10px;
}

.footer__links a {
  font-size: 15px;
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--brand-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.footer__bottom a {
  color: var(--brand-primary);
}

/* =============================================
   WhatsApp Float
   ============================================= */
.whatsapp-widget {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 99;
}

.whatsapp-widget__menu {
  position: absolute;
  bottom: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: var(--surface-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  padding: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px) scale(0.96);
  transition: opacity 0.25s var(--ease-smooth), transform 0.25s var(--ease-bounce), visibility 0.25s;
  pointer-events: none;
}

.whatsapp-widget__menu.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.whatsapp-widget__menu::after {
  content: '';
  position: absolute;
  bottom: -8px;
  right: 22px;
  width: 16px;
  height: 16px;
  background: var(--surface-white);
  transform: rotate(45deg);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.06);
}

.whatsapp-widget__label {
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  padding: 4px 10px 8px;
  margin: 0;
}

.whatsapp-widget__store {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.2s, color 0.2s;
}

.whatsapp-widget__store:hover {
  background: var(--surface-cream);
  color: var(--brand-accent);
}

.whatsapp-float {
  width: 60px;
  height: 60px;
  background: #25D366;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: transform 0.3s var(--ease-bounce);
  cursor: pointer;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-bounce), transform 0.6s var(--ease-bounce);
}

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

/* =============================================
   Responsive
   ============================================= */
@media (max-width: 1100px) {
  .stores__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 993px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 72px 0 56px;
    gap: 40px;
  }

  .hero__subtitle {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__visual {
    max-width: min(100%, 480px);
    margin-inline: auto;
  }

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

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

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

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

@media (max-width: 768px) {
  :root {
    --section-gap: 72px;
  }

  .container {
    width: min(100% - 32px, var(--container-max));
  }

  .header-top {
    font-size: 12px;
    padding: 10px 0;
  }

  .header-top__inner {
    justify-content: center;
    text-align: center;
  }

  .header-top__badge {
    justify-content: center;
    line-height: 1.4;
  }

  .navbar__inner {
    padding: 12px 0;
  }

  .navbar__logo img {
    height: 48px;
  }

  .navbar__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--surface-white);
    flex-direction: column;
    padding: 16px 20px 20px;
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--brand-primary);
    max-height: calc(100dvh - 72px);
    overflow-y: auto;
  }

  .navbar__links.open {
    display: flex;
  }

  .navbar__links a {
    width: 100%;
    text-align: center;
    padding: 14px 12px;
    font-size: 17px;
  }

  .navbar__mobile-cta {
    display: block;
  }

  .menu-toggle {
    display: flex;
  }

  .navbar__cta {
    display: none;
  }

  .hero {
    min-height: auto;
  }

  .hero__content {
    padding: 40px 0 36px;
    gap: 28px;
  }

  .hero__label {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 14px;
  }

  .hero__title {
    font-size: clamp(34px, 9vw, 44px);
    margin-bottom: 16px;
  }

  .hero__subtitle {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 24px;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .hero__visual {
    max-width: 100%;
    padding-inline: 4px;
  }

  .hero__image-wrap {
    border-width: 3px;
  }

  .hero__seal,
  .hero__mascot {
    width: 88px;
  }

  .hero__seal {
    bottom: -12px;
    left: -4px;
  }

  .hero__mascot {
    top: -16px;
    right: -4px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading__title {
    font-size: clamp(28px, 7vw, 36px);
  }

  .section-heading__desc {
    font-size: 16px;
    line-height: 1.6;
  }

  .heritage {
    padding: var(--section-gap) 0;
  }

  .heritage__badge {
    position: static;
    margin-top: 16px;
    max-width: none;
    font-size: 16px;
    padding: 16px 20px;
  }

  .heritage__content p {
    font-size: 16px;
  }

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

  .gallery-strip {
    grid-template-columns: repeat(3, 1fr);
    height: 110px;
  }

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

  .menu-card__body {
    padding: 20px;
  }

  .menu-card__name {
    font-size: 20px;
  }

  .menu__cta {
    margin-top: 36px;
  }

  .menu__cta .btn {
    width: 100%;
  }

  .store-card {
    padding: 24px;
  }

  .store-card__name {
    font-size: 22px;
  }

  .store-card__actions {
    flex-direction: column;
  }

  .store-card__actions .btn {
    width: 100%;
  }

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

  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .cta-banner__content {
    text-align: center;
  }

  .cta-banner__mascot {
    width: 140px;
  }

  .cta-banner__desc {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .cta-banner__content .btn {
    width: 100%;
  }

  .order-modal {
    padding: 16px;
    align-items: flex-end;
  }

  .order-modal__dialog {
    padding: 28px 20px 24px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    width: 100%;
    max-height: 85dvh;
    overflow-y: auto;
  }

  .order-modal__title {
    font-size: 24px;
  }

  .order-modal__store {
    padding: 14px 16px;
  }

  .footer {
    padding: 48px 0 24px;
  }

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

  .footer__brand p {
    max-width: none;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  .whatsapp-widget {
    bottom: max(16px, env(safe-area-inset-bottom));
    right: max(16px, env(safe-area-inset-right));
  }

  .whatsapp-widget__menu {
    min-width: min(240px, calc(100vw - 32px));
  }

  .menu-card:hover {
    transform: none;
  }

  .store-card:hover {
    transform: none;
  }
}

@media (max-width: 480px) {
  :root {
    --section-gap: 56px;
  }

  .container {
    width: min(100% - 24px, var(--container-max));
  }

  .hero__seal {
    display: none;
  }

  .hero__mascot {
    width: 64px;
  }

  .gallery-strip {
    height: 90px;
  }

  .btn {
    padding: 15px 20px;
    font-size: 15px;
  }

  .store-card__header {
    align-items: flex-start;
  }

  .store-card__icon {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .order-modal__store-info strong {
    font-size: 16px;
  }

  .order-modal__store-info span {
    font-size: 13px;
  }
}
