/* ============================================================
   ARUNDA'S KITCHEN — Design System
   Colors: #3F6088 (blue), #FFFAEF (ivory), #C1272D (red accent)
   Fonts: Raleway (headings), Quicksand (body)
   ============================================================ */

:root {
  --blue: #3F6088;
  --blue-dark: #2C4460;
  --blue-light: #5A82A8;
  --ivory: #FFFAEF;
  --ivory-dark: #F5EDE0;
  --red: #C1272D;
  --warm: #8B5E3C;
  --dark: #1A1A1A;
  --text: #2D2D2D;
  --text-muted: #6B6B6B;

  --font-heading: 'Raleway', sans-serif;
  --font-body: 'Quicksand', sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.76, 0, 0.24, 1);

  --nav-h: 72px;
}

/* ---- RESET ---- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 500;
  color: var(--text);
  background: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }
ul { list-style: none; }

::selection {
  background: var(--blue);
  color: var(--ivory);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--blue-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }

/* ---- UTILITIES ---- */
.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 1rem;
  position: relative;
  padding-left: 2rem;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 1.25rem;
  height: 2px;
  background: var(--blue);
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--blue-dark);
  margin-bottom: 1.5rem;
}
.section-title--center { text-align: center; }

/* ---- REVEAL ANIMATION ---- */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}
.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__inner { text-align: center; }
.loader__logo {
  width: 180px;
  margin-bottom: 2rem;
  animation: loaderPulse 1.5s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.4; transform: scale(0.96); }
  50% { opacity: 1; transform: scale(1); }
}
.loader__bar {
  width: 120px;
  height: 3px;
  background: var(--ivory-dark);
  border-radius: 2px;
  overflow: hidden;
  margin: 0 auto;
}
.loader__fill {
  width: 0%;
  height: 100%;
  background: var(--blue);
  border-radius: 2px;
  animation: loaderFill 1.2s var(--ease-out) forwards;
}
@keyframes loaderFill {
  to { width: 100%; }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(255, 250, 239, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 1px 0 rgba(63, 96, 136, 0.08);
}
.nav__inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__logo-img {
  height: 40px;
  width: auto;
  transition: transform 0.3s var(--ease-out);
}
.nav__logo:hover .nav__logo-img { transform: scale(1.05); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
  position: relative;
  transition: color 0.3s;
}
.nav__links a:not(.nav__cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after { width: 100%; }
.nav__links a:not(.nav__cta):hover { color: var(--blue); }

.nav__cta {
  background: var(--blue);
  color: var(--ivory) !important;
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  font-size: 0.85rem !important;
  transition: background 0.3s, transform 0.3s !important;
}
.nav__cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav__toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.active span:nth-child(2) { opacity: 0; }
.nav__toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ivory);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(63,96,136,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 80%, rgba(193,39,45,0.03) 0%, transparent 50%);
}
.hero__grain {
  position: absolute;
  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.4'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero__content {
  position: relative;
  text-align: center;
  padding: 2rem;
  z-index: 2;
}
.hero__napkin {
  margin-bottom: -1rem;
}
.hero__napkin-img {
  width: 90px;
  height: auto;
  margin: 0 auto;
  animation: napkinFloat 4s ease-in-out infinite;
}
@keyframes napkinFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}
.hero__title {
  margin-bottom: 1.5rem;
}
.hero__title-main {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(3.5rem, 10vw, 8rem);
  letter-spacing: 0.06em;
  color: var(--blue-dark);
  line-height: 0.95;
}
.hero__title-sub {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.45em;
  color: var(--blue-light);
  margin-top: 0.3rem;
}
.hero__tagline {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
  transition: transform 0.3s;
}
.hero__scroll:hover { transform: translateY(4px); }
.hero__scroll svg {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}


/* ============================================================
   MARQUEE
   ============================================================ */
.marquee {
  background: var(--blue);
  padding: 1rem 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee__track {
  display: inline-flex;
  align-items: center;
  gap: 2rem;
  animation: marqueeScroll 20s linear infinite;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ivory);
}
.marquee__dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,250,239,0.4);
  flex-shrink: 0;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 8rem 2rem;
  background: var(--ivory);
}
.about__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}
.about__image {
  position: relative;
}
.about__image-frame {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: 0 30px 60px rgba(63,96,136,0.15);
}
.about__image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.about__image:hover .about__image-frame img { transform: scale(1.03); }
.about__image-accent {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--blue-light);
  border-radius: 16px;
  opacity: 0.3;
  z-index: -1;
}

.about__text p {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 1rem;
}

.about__stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(63,96,136,0.1);
}
.about__stat { text-align: center; }
.about__stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue);
}
.about__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

/* ============================================================
   PRODUCTS
   ============================================================ */
.products {
  padding: 6rem 2rem 4rem;
  background: var(--ivory);
}
.products__header {
  max-width: 1200px;
  margin: 0 auto 4rem;
  text-align: center;
}

.product-showcase {
  max-width: 1200px;
  margin: 0 auto 6rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.product-showcase--reverse { direction: rtl; }
.product-showcase--reverse > * { direction: ltr; }

.product-showcase__visual {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(63,96,136,0.12);
  position: relative;
}
.product-showcase__visual img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.product-showcase__visual:hover img { transform: scale(1.04); }

.product-showcase__badge {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  background: rgba(193,39,45,0.08);
  color: var(--red);
  margin-bottom: 1rem;
}
.product-showcase__badge--blue {
  background: rgba(63,96,136,0.08);
  color: var(--blue);
}
.product-showcase__badge--warm {
  background: rgba(139,94,60,0.08);
  color: var(--warm);
}
.product-showcase__badge--dark {
  background: rgba(26,26,26,0.08);
  color: var(--dark);
}

.product-showcase__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--blue-dark);
  margin-bottom: 1rem;
}
.product-showcase__desc {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 2rem;
}

/* Sambal variant cards */
.product-showcase__variants {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.variant-card {
  text-align: center;
  padding: 1rem 0.5rem;
  border-radius: 12px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  cursor: pointer;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.variant-card:hover,
.variant-card--active {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(63,96,136,0.12);
  border: 2px solid var(--blue);
}
.variant-card img {
  width: 70px;
  height: 90px;
  border-radius: 12px;
  object-fit: contain;
  margin: 0 auto 0.6rem;
}
.variant-card span {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue-dark);
}

/* Catering menu grid */
.product-showcase__menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.menu-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.menu-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.menu-item:hover img { transform: scale(1.08); }
.menu-item span {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* Frozen food duo cards */
.product-showcase__duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.duo-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.duo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease-out);
}
.duo-card:hover img { transform: scale(1.06); }
.duo-card__label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--blue-dark);
}

/* Cookies banner */
.cookies-banner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(63,96,136,0.08);
}
.cookies-banner__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cookies-banner__text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.cookies-banner__text h3 {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--blue-dark);
  margin: 0.5rem 0 1rem;
}
.cookies-banner__text p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================================
   GALLERY
   ============================================================ */
.gallery {
  padding: 6rem 2rem 8rem;
  background: var(--ivory);
}
.gallery__header {
  max-width: 1200px;
  margin: 0 auto 3rem;
  text-align: center;
}
.gallery__grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 1rem;
}
.gallery__item {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.gallery__item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(63,96,136,0);
  transition: background 0.3s;
}
.gallery__item:hover::after {
  background: rgba(63,96,136,0.15);
}
.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.gallery__item:hover img { transform: scale(1.06); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }

/* ============================================================
   CTA / CONTACT
   ============================================================ */
.cta {
  position: relative;
  padding: 10rem 2rem;
  text-align: center;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: 0;
}
.cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(2px);
}
.cta__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,68,96,0.92), rgba(63,96,136,0.88));
}
.cta__content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  margin: 0 auto;
}
.cta__logo {
  width: 200px;
  margin: 0 auto 2rem;
}
.cta__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--ivory);
  margin-bottom: 1rem;
}
.cta__desc {
  color: rgba(255,250,239,0.7);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}
.cta__buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  transition: all 0.3s var(--ease-out);
  letter-spacing: 0.02em;
}
.btn svg { width: 20px; height: 20px; flex-shrink: 0; }

.btn--whatsapp {
  background: #25D366;
  color: white;
}
.btn--whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37,211,102,0.3);
}

.btn--outline {
  border: 2px solid rgba(255,250,239,0.4);
  color: var(--ivory);
}
.btn--outline:hover {
  background: rgba(255,250,239,0.1);
  border-color: rgba(255,250,239,0.7);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: white;
  border-top: 1px solid rgba(63,96,136,0.06);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer__brand img {
  height: 45px;
  margin-bottom: 1rem;
}
.footer__brand p {
  color: var(--text-muted);
  font-size: 0.9rem;
  max-width: 300px;
}
.footer__links h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue-dark);
  margin-bottom: 1rem;
}
.footer__links a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--blue); }

.footer__bottom {
  border-top: 1px solid rgba(63,96,136,0.06);
  padding: 1.5rem 2rem;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
  cursor: zoom-out;
}
.lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 2rem;
  color: white;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  transition: background 0.3s;
}
.lightbox__close:hover { background: rgba(255,255,255,0.2); }
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  transform: scale(0.9);
  transition: transform 0.4s var(--ease-out);
}
.lightbox.active .lightbox__img { transform: scale(1); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .about__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
    max-width: 600px;
  }
  .about__image { max-width: 400px; margin: 0 auto; }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .product-showcase--reverse { direction: ltr; }

  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 180px;
  }

  .footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    padding: 6rem 2rem 2rem;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    padding: 1rem 0;
    font-size: 1rem !important;
    border-bottom: 1px solid rgba(63,96,136,0.06);
  }
  .nav__links a::after { display: none !important; }
  .nav__cta { text-align: center; margin-top: 1rem; }

  .hero__title-main { font-size: clamp(2.8rem, 12vw, 4.5rem); }

  .about { padding: 5rem 1.5rem; }
  .about__stats { gap: 1.5rem; flex-wrap: wrap; }

  .products { padding: 4rem 1.5rem 2rem; }
  .product-showcase__variants { grid-template-columns: repeat(2, 1fr); }
  .product-showcase__menu-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery { padding: 4rem 1.5rem 6rem; }
  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__item--tall { grid-row: span 2; }
  .gallery__item--wide { grid-column: span 2; }

  .cookies-banner {
    grid-template-columns: 1fr;
  }
  .cookies-banner__img { aspect-ratio: 16/9; }
  .cookies-banner__img img { height: 100%; }
  .cookies-banner__text { padding: 2rem; }

  .cta { padding: 6rem 1.5rem; }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 140px;
  }
  .cta__buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; max-width: 280px; }
}
