/* ==========================================================================
   YAAL FOOD — styles.css (B&S-inspired, light theme, parallax + morph)
   ========================================================================== */

:root {
  --orange: #E30613;
  --orange-dark: #B30510;
  --gold: #FFFFFF;
  --white: #FFFFFF;
  --black: #111111;

  --cream: #F5F5F5;
  --cream-2: #EFEFEF;
  --ink: #111111;
  --ink-soft: #52504c;

  --font-title: 'Bebas Neue', 'Oswald', sans-serif;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Inter', 'Segoe UI', sans-serif;

  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(26,26,26,0.08);
  --shadow-strong: 0 25px 55px rgba(26,26,26,0.18);
  --ease: cubic-bezier(.25,.8,.25,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--orange); color: var(--white); }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 28px; }

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 32px; border-radius: 50px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.95rem;
  letter-spacing: 0.5px; text-transform: uppercase;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 8px 22px rgba(227,6,19,0.35); }
.btn-primary:hover { background: var(--orange-dark); transform: translateY(-3px); box-shadow: 0 14px 30px rgba(227,6,19,0.45); }
.btn-sm { padding: 11px 22px; font-size: 0.8rem; }
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-outline-dark {
  border: 2px solid var(--ink); color: var(--ink); background: transparent;
}
.btn-outline-dark:hover { background: var(--ink); color: var(--white); transform: translateY(-2px); }
.btn-glow {
  background: var(--gold); color: var(--black);
  box-shadow: 0 0 0 rgba(227,6,19,0.6);
  animation: glowPulse 2.4s ease-in-out infinite;
}
.btn-glow:hover { transform: translateY(-3px) scale(1.03); }
@keyframes glowPulse {
  0%,100% { box-shadow: 0 0 18px rgba(227,6,19,0.5); }
  50% { box-shadow: 0 0 36px rgba(227,6,19,0.85); }
}
.btn-glow-orange {
  background: var(--orange); color: var(--white);
  animation: glowPulseOrange 2.4s ease-in-out infinite;
}
.btn-glow-orange:hover { transform: translateY(-3px) scale(1.03); background: var(--orange-dark); }
@keyframes glowPulseOrange {
  0%,100% { box-shadow: 0 0 16px rgba(227,6,19,0.45); }
  50% { box-shadow: 0 0 32px rgba(227,6,19,0.8); }
}

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 900;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 4px 20px rgba(26,26,26,0.08); border-color: rgba(26,26,26,0.06); }
.header-inner {
  max-width: 1280px; margin: 0 auto; padding: 14px 28px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; object-fit: contain; }
.brand-text { font-family: var(--font-title); font-size: 1.5rem; letter-spacing: 1px; color: var(--ink); }
.brand-text em { color: var(--orange); font-style: normal; }

.main-nav { display: flex; gap: 4px; }
.nav-link {
  position: relative; padding: 10px 16px;
  font-family: var(--font-heading); font-weight: 600; font-size: 0.85rem;
  letter-spacing: 0.5px; text-transform: uppercase; color: var(--ink);
  transition: color 0.3s var(--ease);
}
.nav-link::after {
  content: ''; position: absolute; left: 16px; right: 16px; bottom: 4px; height: 2px;
  background: var(--orange); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav-link:hover { color: var(--orange); }
.nav-link:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.social-mini { display: flex; gap: 10px; }
.social-mini a {
  width: 30px; height: 30px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.62rem; font-weight: 700; letter-spacing: 0.5px; color: var(--ink);
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.social-mini a:hover { background: var(--orange); color: var(--white); }

.burger { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 950; }
.burger span { display: block; height: 2.5px; width: 100%; background: var(--ink); border-radius: 2px; transition: transform 0.3s var(--ease), opacity 0.3s var(--ease); }
.burger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ==========================================================================
   Hero
   ========================================================================== */
/* ==========================================================================
   Hero — product carousel (kebab / pizza / burger / tacos)
   ========================================================================== */
.hero {
  position: relative;
  margin-top: 72px;
  height: calc(100vh - 72px); height: calc(100svh - 72px);
}

.carousel-track {
  display: flex; height: 100%;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.product-slide {
  flex: 0 0 33.3334%;
  scroll-snap-align: start;
  height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 5%;
  padding: 40px 30px;
  background: var(--white);
  transition: background 0.5s var(--ease);
}
.product-slide.is-center { background: #F7C7C9; }

.product-slide img {
  width: 100%; max-width: 560px; object-fit: contain;
  flex: 1 1 auto; min-height: 0;
  filter: drop-shadow(0 20px 30px rgba(0,0,0,0.15));
  opacity: 1; transform: scale(0.86);
  transition: transform 0.5s var(--ease);
}
.product-slide:hover img { transform: scale(0.9) translateY(-8px); }
.product-slide.is-center img { transform: scale(1); }
.product-slide.is-center:hover img { transform: scale(1.03) translateY(-8px); }

.product-slide img.pulse { animation: heroSlidePopIn 0.7s cubic-bezier(.22,1.4,.36,1); }
@keyframes heroSlidePopIn {
  0% { transform: scale(0.8) rotate(-4deg); }
  55% { transform: scale(1.07) rotate(2deg); }
  100% { transform: scale(1) rotate(0deg); }
}

.slide-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  letter-spacing: 1px; line-height: 1.15;
  text-align: center; position: relative; padding-bottom: 18px;
  color: #b7b4ae;
  transition: color 0.5s var(--ease);
}
.product-slide.is-center .slide-title { color: #e8737a; }
.slide-title::after, .slide-title::before {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 64%; height: 3px; background: currentColor; border-radius: 2px;
}
.slide-title::after { bottom: 0; }
.slide-title::before { bottom: 7px; opacity: 0.6; }

.variant-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; max-width: 340px; }
.variant-thumb {
  width: 46px; height: 46px; border-radius: 50%; overflow: hidden;
  border: 2.5px solid transparent; padding: 0;
  opacity: 0.6; transition: opacity 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.variant-thumb img { width: 100%; height: 100%; object-fit: cover; }
.variant-thumb:hover { opacity: 1; transform: translateY(-3px); }
.variant-thumb.active { opacity: 1; border-color: #e8737a; }

.carousel-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
  width: 48px; height: 48px; border-radius: 50%;
  border: none; background: rgba(255,255,255,0.85); color: var(--ink);
  box-shadow: 0 8px 22px rgba(0,0,0,0.12);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.hero:hover .carousel-arrow { opacity: 1; }
.carousel-arrow:hover { background: var(--orange); color: var(--white); transform: translateY(-50%) scale(1.08); }
.carousel-arrow.prev { left: 18px; }
.carousel-arrow.next { right: 18px; }

.slide-cta {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--orange); color: var(--white);
  box-shadow: 0 10px 24px rgba(255,107,53,0.4);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}
.slide-cta:hover { background: var(--orange-dark); transform: scale(1.08); box-shadow: 0 14px 30px rgba(255,107,53,0.5); }
.slide-cta svg { transition: transform 0.3s var(--ease); }
.slide-cta:hover svg { transform: translateX(3px); }

.hero-dots {
  position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: none; gap: 8px;
}
.hero-dots .zz-hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(17,17,17,0.2);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.hero-dots .zz-hero-dot.active { background: var(--orange); transform: scale(1.3); }

@media (max-width: 860px) {
  .product-slide { flex-basis: 50%; }
}
@media (max-width: 560px) {
  .hero { height: 100vh; height: 100svh; }
  .product-slide { flex-basis: 100%; height: 100%; padding: 30px 24px; }
  .carousel-arrow { width: 38px; height: 38px; opacity: 1; }
  .slide-cta { width: 46px; height: 46px; }
  .hero-dots { display: flex; }
  .variant-row { max-width: 280px; }
}

.nav-link.active-link { color: var(--orange); }
.nav-link.active-link::after { transform: scaleX(1); }

/* ==========================================================================
   Page Hero (secondary pages)
   ========================================================================== */
.page-hero {
  padding: 160px 24px 70px; text-align: center; background: var(--black);
  background-image: radial-gradient(circle at 50% 0%, rgba(227,6,19,0.18), transparent 60%);
}
.page-hero-title { font-family: var(--font-title); font-size: clamp(2.6rem, 5vw, 4.2rem); letter-spacing: 1px; color: var(--white); margin: 10px 0 14px; }
.page-hero-sub { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* ==========================================================================
   Reveal on scroll
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(46px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.zoom { transform: scale(0.82); }
.reveal.zoom.in-view { transform: scale(1); }

/* ==========================================================================
   Section heads
   ========================================================================== */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.section-kicker {
  display: inline-block; color: var(--orange); font-family: var(--font-heading);
  font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 10px;
}
.section-title { font-family: var(--font-title); font-size: clamp(2.1rem, 4vw, 3rem); letter-spacing: 1px; color: var(--ink); margin-bottom: 14px; }
.section-desc { color: var(--ink-soft); font-size: 1rem; }

/* ==========================================================================
   Morph / Transformation Section
   ========================================================================== */
.morph-section { height: 280vh; position: relative; }
.morph-sticky {
  position: sticky; top: 0; height: 100vh; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: var(--orange);
  transition: background 0.4s linear;
}
.morph-bg {
  position: absolute; inset: 0; z-index: 0; opacity: 0.9;
  transition: background 0.5s ease;
}

.morph-stage-wrap {
  position: relative; z-index: 1;
  display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 80px;
  width: 100%; max-width: 1180px; padding: 0 40px;
}
.morph-image-wrap {
  position: relative; width: min(42vw, 440px); height: min(42vw, 440px); flex-shrink: 0;
}
.morph-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; opacity: 0; transform: scale(0.75) translateX(50px) rotate(-6deg);
  filter: drop-shadow(0 30px 55px rgba(0,0,0,0.55));
  transition: opacity 0.7s cubic-bezier(.34,1.2,.4,1), transform 0.7s cubic-bezier(.34,1.2,.4,1);
  will-change: opacity, transform;
}
.morph-img.active { opacity: 1; transform: scale(1) translateX(0) rotate(0deg); transition-duration: 0.8s; }
.morph-img:not(.active) { transform: scale(0.75) translateX(-50px) rotate(6deg); }

.morph-text-wrap {
  text-align: left; max-width: 440px;
  opacity: 1; transform: translateY(0) translateX(0);
  transition: opacity 0.35s ease, transform 0.35s ease;
}
.morph-text-wrap.switching { opacity: 0; transform: translateY(14px); }
.morph-kicker {
  display: inline-block; color: var(--gold); font-family: var(--font-heading);
  font-weight: 700; letter-spacing: 3px; font-size: 0.85rem; margin-bottom: 12px;
}
.morph-title {
  font-family: var(--font-title); font-size: clamp(2.4rem, 5vw, 4.2rem);
  letter-spacing: 1px; color: var(--white); margin-bottom: 14px; line-height: 1.05;
}
.morph-desc { color: rgba(255,255,255,0.8); font-size: 1.05rem; max-width: 420px; }

.morph-progress {
  position: absolute; bottom: 44px; left: 50%; transform: translateX(-50%); z-index: 2;
  display: flex; gap: 10px;
}
.morph-dot { width: 34px; height: 4px; border-radius: 4px; background: rgba(255,255,255,0.3); transition: background 0.3s var(--ease); }
.morph-dot.active { background: var(--white); }

/* ==========================================================================
   Menu Section
   ========================================================================== */
.menu-section { padding: 120px 0 100px; background: var(--cream); }

.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 50px; }
.filter-pill {
  padding: 11px 24px; border-radius: 50px; background: var(--white);
  border: 1.5px solid rgba(26,26,26,0.1);
  font-family: var(--font-heading); font-weight: 600; font-size: 0.82rem; letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--ink-soft); transition: all 0.3s var(--ease);
}
.filter-pill:hover { border-color: var(--orange); color: var(--orange); }
.filter-pill.active { background: var(--orange); border-color: var(--orange); color: var(--white); box-shadow: 0 8px 20px rgba(227,6,19,0.35); }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 26px; }
.product-grid + .subsection-title { margin-top: 60px; }

.subsection-title {
  font-family: var(--font-title); font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: 1px; color: var(--ink); margin: 0 0 26px;
  padding-bottom: 14px; border-bottom: 2px solid rgba(227,6,19,0.25);
}

.product-card.promo {
  background: linear-gradient(160deg, var(--black), #2a2a2a);
  border: 2px solid var(--orange);
}
.product-card.promo .card-image { background: rgba(255,255,255,0.08); }
.product-card.promo .card-name { color: var(--white); font-size: 1.6rem; }
.product-card.promo .card-desc { color: rgba(255,255,255,0.7); font-weight: 500; }
.product-card.promo .price-pill.single { background: var(--orange); color: var(--white); font-size: 1rem; padding: 8px 18px; }
.product-card.promo .card-tag { background: var(--white); color: var(--black); }

.product-card {
  position: relative;
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft);
  cursor: pointer; text-align: center;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  opacity: 0; transform: translateY(40px);
}
.product-card.in-view { opacity: 1; transform: translateY(0); }
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-strong); }

.card-tag {
  position: absolute; top: 14px; left: 14px; z-index: 2;
  background: var(--gold); color: var(--black);
  font-family: var(--font-heading); font-weight: 700; font-size: 0.65rem; letter-spacing: 0.5px;
  padding: 4px 10px; border-radius: 50px; text-transform: uppercase;
}
.card-image { width: 100%; height: 190px; overflow: hidden; background: var(--cream-2); padding: 14px; }
.card-image img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.6s var(--ease); }
.product-card:hover .card-image img { transform: scale(1.08); }
.card-image-placeholder {
  width: 100%; height: 100%; display: flex; align-items: center; justify-content: center;
  font-size: 2.6rem; opacity: 0.35;
}

.card-body { padding: 22px 22px 26px; }
.card-name { font-family: var(--font-title); font-size: 1.4rem; letter-spacing: 0.5px; color: var(--ink); margin-bottom: 6px; }
.card-desc { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 14px; min-height: 38px; }
.card-prices { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.price-pill { padding: 6px 13px; border-radius: 50px; font-size: 0.78rem; font-weight: 700; font-family: var(--font-heading); }
.price-pill.seul { background: transparent; border: 1.5px solid rgba(26,26,26,0.18); color: var(--ink-soft); font-weight: 600; }
.price-pill.menu { background: var(--orange); color: var(--white); box-shadow: 0 4px 12px rgba(227,6,19,0.35); }
.price-pill.single { background: var(--gold); color: var(--black); }

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

/* ==========================================================================
   Why Us
   ========================================================================== */
.why-section { padding: 100px 0; background: var(--cream-2); }
.why-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; }
.why-card {
  text-align: center; padding: 42px 26px; background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.why-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.why-icon { font-size: 2.8rem; margin-bottom: 16px; }
.why-card h3 { font-family: var(--font-title); font-size: 1.3rem; letter-spacing: 0.5px; margin-bottom: 8px; color: var(--ink); }
.why-card p { color: var(--ink-soft); font-size: 0.88rem; }

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials-section { padding: 100px 0; background: var(--white); }
.testimonial-carousel { position: relative; max-width: 720px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial-card {
  flex: 0 0 100%; text-align: center; padding: 20px 60px;
}
.stars { color: var(--orange); font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 18px; }
.testimonial-card p { font-size: 1.2rem; font-weight: 500; color: var(--ink); margin-bottom: 18px; line-height: 1.5; }
.testimonial-author { color: var(--ink-soft); font-family: var(--font-heading); font-weight: 600; letter-spacing: 0.5px; }
.testimonial-arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%; background: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.testimonial-arrow:hover { background: var(--orange); color: var(--white); }
.testimonial-arrow.prev { left: -4px; }
.testimonial-arrow.next { right: -4px; }

.testimonial-dots { display: flex; justify-content: center; gap: 9px; margin-top: 24px; }
.testimonial-dot {
  width: 9px; height: 9px; border-radius: 50%; background: rgba(26,26,26,0.15);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonial-dot.active { background: var(--orange); transform: scale(1.2); }

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner { background: var(--black); padding: 70px 0; }
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.cta-inner h2 { font-family: var(--font-title); font-size: clamp(1.8rem, 3.6vw, 2.8rem); color: var(--white); letter-spacing: 1px; margin-bottom: 8px; }
.cta-inner p { color: rgba(255,255,255,0.75); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--black); padding: 70px 0 0; color: rgba(255,255,255,0.8); }
.footer-inner { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 40px; padding-bottom: 50px; }
.footer-logo { width: 56px; margin-bottom: 14px; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 18px; }
.footer-col h4 { font-family: var(--font-title); letter-spacing: 1px; color: var(--gold); margin-bottom: 16px; font-size: 1.1rem; }
.footer-col a, .footer-col p { display: block; margin-bottom: 10px; font-size: 0.9rem; transition: color 0.3s var(--ease); }
.footer-col a:hover { color: var(--orange); }
.social-row { display: flex; gap: 12px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; font-size: 0.65rem; font-weight: 700;
  transition: background 0.3s var(--ease);
}
.social-row a:hover { background: var(--orange); }
.newsletter-form { display: flex; gap: 8px; margin-top: 6px; }
.newsletter-form input {
  flex: 1; padding: 11px 14px; border-radius: 50px; border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06); color: var(--white); font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.4); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0; text-align: center; font-size: 0.82rem; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 860px) {
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: min(320px, 80%);
    background: var(--white); flex-direction: column; align-items: flex-start; justify-content: center;
    gap: 4px; padding: 40px; transition: right 0.35s var(--ease); box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  }
  .main-nav.open { right: 0; }
  .nav-link { width: 100%; padding: 14px 0; font-size: 1rem; }
  .nav-link::after { left: 0; right: auto; width: 30px; }
  .burger { display: flex; }
  .social-mini { display: none; }
  .morph-stage-wrap { flex-direction: column; gap: 30px; text-align: center; }
  .morph-image-wrap { width: 68vw; height: 68vw; }
  .morph-text-wrap { text-align: center; max-width: 100%; }
  .morph-desc { margin: 0 auto; }
}
@media (max-width: 640px) {
  .cta-inner { flex-direction: column; text-align: center; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .social-row { justify-content: center; }
  .footer-brand { display: flex; flex-direction: column; align-items: center; }
  .testimonial-card { padding: 20px 44px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}
