@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito:wght@400;600;700;800&family=Fredoka+One&display=swap');

*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --offer-banner-offset: 0px;
  --primary: #d4856b;
  --primary-dark: #b86a50;
  --primary-light: #e8ad94;
  --primary-pale: #f5d5c5;
  --glow: rgba(212, 133, 107, 0.45);
  --glow-soft: rgba(212, 133, 107, 0.25);
  --warm-cream: #1a1210;
  --warm-peach: #231a16;
  --warm-blush: #2d211b;
  --warm-soft: #1e1512;
  --white: #ffffff;
  --surface: #241b16;
  --surface-light: #2e231d;
  --surface-hover: #352a23;
  --brown-dark: #3e2c22;
  --brown: #5a4235;
  --brown-light: #7a6355;
  --text: #f0e6df;
  --text-soft: #d4c4b8;
  --text-muted: #a89485;
  --border: rgba(255, 255, 255, 0.07);
  --shadow-sm: 0 2px 15px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.3);
  --shadow-lg: 0 16px 50px rgba(0, 0, 0, 0.4);
  --radius: 16px;
  --radius-lg: 24px;
  --ease: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--warm-cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ╔══════════════════════════════════════════════╗
   ║            SPECIAL OFFER BANNER               ║
   ╚══════════════════════════════════════════════╝ */
.offer-banner {
  background: linear-gradient(90deg, #b86a50, #d4856b, #b86a50);
  background-size: 200% 100%;
  animation: offerShimmer 4s linear infinite;
  position: relative;
  z-index: 1002;
  padding-top: max(0.55rem, env(safe-area-inset-top, 0px));
  padding-bottom: 0.55rem;
  padding-left: max(1rem, env(safe-area-inset-left, 0px));
  padding-right: max(1rem, env(safe-area-inset-right, 0px));
}

@keyframes offerShimmer {
  0% { background-position: 0% 0; }
  100% { background-position: 200% 0; }
}

.offer-inner {
  display: flex; align-items: center; justify-content: center;
  gap: 0.6rem; max-width: 900px; margin: 0 auto;
}

.offer-icon { font-size: 1.1rem; flex-shrink: 0; }

.offer-text {
  color: #fff; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.3px; text-align: center; line-height: 1.4;
}

.offer-text strong { font-weight: 900; }

.offer-close {
  background: none; border: none; color: rgba(255,255,255,0.8);
  font-size: 1.3rem; cursor: pointer; padding: 0 0.3rem;
  line-height: 1; flex-shrink: 0;
  transition: color 0.2s ease, transform 0.2s ease;
}

.offer-close:hover { color: #fff; transform: scale(1.2); }

/* ╔══════════════════════════════════════════════╗
   ║              PHOTO LIGHTBOX                   ║
   ╚══════════════════════════════════════════════╝ */
.lightbox-overlay {
  position: fixed; inset: 0; z-index: 10050;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  padding-top: max(1.5rem, env(safe-area-inset-top));
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  touch-action: manipulation;
  -webkit-overflow-scrolling: touch;
}

.lightbox-overlay.active {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}

.lightbox-overlay:not(.active) {
  pointer-events: none;
}

.lightbox-content {
  position: relative; max-width: 720px; width: 100%;
  transform: scale(0.9); transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: auto;
}

.lightbox-overlay.active .lightbox-content { transform: scale(1); }

.lightbox-img {
  width: 100%; max-height: 75vh; min-height: 200px; object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  background: rgba(0, 0, 0, 0.35);
  opacity: 0; transition: opacity 0.35s ease;
}

.lightbox-img.lb-ready { opacity: 1; }

.lightbox-caption {
  text-align: center; padding: 1rem 0.5rem 0;
}

.lightbox-caption h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 0.3rem;
}

.lightbox-caption p {
  font-size: 0.88rem; color: rgba(255,255,255,0.55);
  line-height: 1.5;
}

.lightbox-close {
  position: absolute; top: -14px; right: -14px;
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  border: none; cursor: pointer;
  font-size: 1.3rem; display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(212, 133, 107, 0.4);
  transition: all 0.2s ease; z-index: 1;
}

.lightbox-close:hover {
  background: var(--primary-dark);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.2s ease;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.lightbox-nav:hover {
  background: rgba(212, 133, 107, 0.25);
  border-color: rgba(212, 133, 107, 0.4);
}

.lightbox-prev { left: -60px; }
.lightbox-next { right: -60px; }

@media (max-width: 768px) {
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close {
    position: fixed;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    width: 44px; height: 44px; font-size: 1.25rem;
    z-index: 10052;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
  }
  .lightbox-nav { width: 38px; height: 38px; }
  .offer-text { font-size: 0.72rem; }
  .offer-icon { font-size: 0.9rem; }
  .reviews-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .offer-text { font-size: 0.65rem; letter-spacing: 0; }
  .lightbox-caption h3 { font-size: 1.1rem; }
}

/* ╔══════════════════════════════════════════════╗
   ║              LOADING SCREEN                  ║
   ╚══════════════════════════════════════════════╝ */
.loader-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: linear-gradient(135deg, #3e2c22 0%, #5a4235 40%, #4a3428 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-screen::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(212, 133, 107, 0.15) 0%, transparent 60%);
  pointer-events: none;
}

.loader-screen.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-center {
  position: relative;
  width: 170px; height: 170px;
  display: flex; align-items: center; justify-content: center;
}

.loader-logo {
  width: 100px; height: 100px; border-radius: 50%;
  position: relative; z-index: 2;
  animation: loaderPulse 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 25px rgba(212, 133, 107, 0.5));
}

.loader-ring {
  position: absolute; inset: 10px;
  border: 3px solid transparent;
  border-top-color: var(--primary);
  border-right-color: var(--primary-light);
  border-radius: 50%;
  animation: spinRing 1.2s linear infinite;
  z-index: 1;
}

.loader-ring-outer {
  position: absolute; inset: 0;
  border: 2px solid transparent;
  border-bottom-color: rgba(232, 173, 148, 0.4);
  border-left-color: rgba(212, 133, 107, 0.6);
  border-radius: 50%;
  animation: spinRing 2s linear infinite reverse;
  z-index: 1;
}

.loader-bar-track {
  width: 200px; height: 2px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin-top: 2.5rem; overflow: hidden;
}

.loader-bar {
  width: 0%; height: 100%;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light));
  background-size: 200% 100%;
  border-radius: 3px;
  animation: loadBar 2.2s ease-in-out forwards, shimmerBar 1.5s ease-in-out infinite;
}

.loader-text {
  margin-top: 1.4rem;
  font-weight: 700; font-size: 0.72rem;
  letter-spacing: 4px; text-transform: uppercase;
  color: rgba(232, 173, 148, 0.7);
  animation: loaderFade 1.5s ease-in-out infinite;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(212,133,107,0.35)); }
  50% { transform: scale(1.06); filter: drop-shadow(0 0 40px rgba(212,133,107,0.65)); }
}

@keyframes spinRing { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }

@keyframes loadBar {
  0% { width: 0%; } 30% { width: 45%; } 60% { width: 72%; } 100% { width: 100%; }
}

@keyframes shimmerBar {
  0% { background-position: -200% 0; } 100% { background-position: 200% 0; }
}

@keyframes loaderFade { 0%, 100% { opacity: 0.35; } 50% { opacity: 1; } }

/* ╔══════════════════════════════════════════════╗
   ║                  NAVBAR                      ║
   ╚══════════════════════════════════════════════╝ */
.navbar {
  position: fixed;
  top: var(--offer-banner-offset, 0px);
  left: 0; right: 0;
  z-index: 1001;
  background: rgba(26, 18, 16, 0.85);
  backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3);
  padding: 0.8rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: all var(--ease);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.scrolled {
  padding: 0.55rem 2.5rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3), 0 1px 0 rgba(212, 133, 107, 0.1);
  background: rgba(26, 18, 16, 0.95);
}

.navbar .logo { display: flex; align-items: center; gap: 0.7rem; }

.navbar .logo img {
  height: 46px; width: 46px; border-radius: 50%;
  object-fit: cover; transition: all var(--ease);
}

.navbar .logo:hover img {
  transform: rotate(-8deg) scale(1.1);
  filter: drop-shadow(0 0 8px var(--glow-soft));
}

.logo-text { font-family: 'Fredoka One', cursive; font-size: 1.35rem; color: var(--white); }
.logo-text .dot { color: var(--primary); }

.nav-links { display: flex; list-style: none; gap: 0.2rem; align-items: center; }

.nav-links a {
  color: var(--text-soft); font-weight: 700; font-size: 0.82rem;
  text-transform: uppercase; letter-spacing: 1.2px;
  padding: 0.5rem 0.9rem; border-radius: 8px;
  transition: all var(--ease);
  position: relative;
}

.nav-links a::after {
  content: ''; position: absolute;
  bottom: 2px; left: 50%; width: 0; height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--ease);
  transform: translateX(-50%);
}

.nav-links a:hover { color: var(--primary-light); background: rgba(212,133,107,0.1); }
.nav-links a:hover::after { width: 60%; }

.nav-links a.active { color: var(--primary-light); }
.nav-links a.active::after { width: 60%; background: var(--primary); }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
  cursor: pointer;
  min-width: 48px; min-height: 48px;
  padding: 10px; border-radius: 8px;
  border: none; background: none; transition: background var(--ease);
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:hover { background: rgba(212,133,107,0.08); }

.menu-toggle span {
  display: block; width: 24px; height: 2.5px;
  background: var(--text-soft); border-radius: 3px;
  transition: all 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55);
}

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

/* ╔══════════════════════════════════════════════╗
   ║                   HERO                       ║
   ╚══════════════════════════════════════════════╝ */
.hero {
  position: relative; min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background: url('public/background.png') center/cover no-repeat;
  filter: brightness(0.6) saturate(1.15);
  transform: scale(1.05);
  transition: transform 12s ease;
  will-change: transform;
}

.hero:hover .hero-bg { transform: scale(1.12); }

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 31, 23, 0.25) 0%,
    rgba(62, 44, 34, 0.05) 35%,
    rgba(62, 44, 34, 0.12) 65%,
    rgba(46, 31, 23, 0.6) 100%
  );
}

.hero-particles {
  position: absolute; inset: 0; z-index: 1;
  overflow: hidden; pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px; height: 6px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  animation: particleFloat linear infinite;
}

.particle:nth-child(1) { left: 10%; width: 4px; height: 4px; animation-duration: 12s; animation-delay: 0s; }
.particle:nth-child(2) { left: 25%; width: 6px; height: 6px; animation-duration: 15s; animation-delay: 2s; }
.particle:nth-child(3) { left: 40%; width: 3px; height: 3px; animation-duration: 10s; animation-delay: 4s; }
.particle:nth-child(4) { left: 55%; width: 5px; height: 5px; animation-duration: 14s; animation-delay: 1s; }
.particle:nth-child(5) { left: 70%; width: 4px; height: 4px; animation-duration: 11s; animation-delay: 3s; }
.particle:nth-child(6) { left: 85%; width: 7px; height: 7px; animation-duration: 16s; animation-delay: 5s; }
.particle:nth-child(7) { left: 15%; width: 3px; height: 3px; animation-duration: 13s; animation-delay: 6s; }
.particle:nth-child(8) { left: 60%; width: 5px; height: 5px; animation-duration: 9s; animation-delay: 2s; }

@keyframes particleFloat {
  0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10% { opacity: 0.6; }
  90% { opacity: 0.6; }
  100% { transform: translateY(-20vh) rotate(360deg); opacity: 0; }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 750px; padding: 2rem;
  animation: heroContentIn 1s ease-out 0.3s both;
}

@keyframes heroContentIn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-logo {
  width: 140px; height: 140px; border-radius: 50%;
  margin: 0 auto 1.8rem;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 60px rgba(212, 133, 107, 0.2);
  animation: heroFloat 4s ease-in-out infinite, heroGlow 3s ease-in-out infinite alternate;
}

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

@keyframes heroGlow {
  0% { box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 40px rgba(212, 133, 107, 0.15); }
  100% { box-shadow: 0 8px 40px rgba(0,0,0,0.2), 0 0 70px rgba(212, 133, 107, 0.35); }
}

/* Hero Slider */
.hero-slider {
  position: relative;
  min-height: 320px;
  margin-bottom: 2rem;
}

.hero-slide-thumb {
  display: block;
  width: min(280px, 82vw);
  height: 180px;
  margin: 0 auto 1.25rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(255, 255, 255, 0.2);
  isolation: isolate;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.hero-slide-thumb:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(212, 133, 107, 0.55);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4), 0 0 28px rgba(212, 133, 107, 0.25);
}

.hero-slide-thumb:focus-visible {
  outline: 2px solid var(--primary-pale);
  outline-offset: 4px;
}

.hero-slide-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  display: block;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.hero-slide {
  position: absolute; inset: 0;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  pointer-events: none;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

.hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem; font-weight: 700; color: var(--white);
  line-height: 1.2; margin-bottom: 1rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.12);
}

.hero-content h1 .accent { color: var(--primary-pale); font-style: italic; }

.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.88);
  font-weight: 600; line-height: 1.7;
  max-width: 560px;
}

.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.hero-dots {
  display: flex; gap: 0.5rem; justify-content: center;
  margin-top: 1.8rem;
}

.hero-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none; cursor: pointer;
  transition: all 0.35s ease;
  padding: 0;
}

.hero-dot.active {
  background: var(--white);
  width: 28px; border-radius: 5px;
  box-shadow: 0 0 10px rgba(255,255,255,0.4);
}

.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 0.85rem;
  border-radius: 50px; letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: all var(--ease);
  cursor: pointer; border: none;
  position: relative; overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before { left: 100%; }

.btn-primary {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 133, 107, 0.35);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px var(--glow);
}

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

.btn-outline {
  background: rgba(255,255,255,0.1); color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.55);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255,255,255,0.1);
}

.btn-warm {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 133, 107, 0.3);
}

.btn-warm:hover {
  background: var(--primary-dark);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 35px var(--glow);
}

.hero-scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 3;
  animation: scrollBounce 2s ease-in-out infinite;
}

.hero-scroll span {
  display: block; width: 26px; height: 42px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 13px; position: relative;
}

.hero-scroll span::after {
  content: ''; position: absolute; top: 8px; left: 50%;
  transform: translateX(-50%); width: 3px; height: 7px;
  background: rgba(255,255,255,0.6); border-radius: 3px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }
@keyframes scrollDot { 0%, 100% { opacity: 1; top: 8px; } 50% { opacity: 0.3; top: 18px; } }

/* ╔══════════════════════════════════════════════╗
   ║               SPECIALTIES                    ║
   ╚══════════════════════════════════════════════╝ */
.specialties {
  padding: 6rem 2rem;
  background: var(--warm-cream);
  position: relative;
}

.specialties::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 133, 107, 0.3), transparent);
}

.specialties-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; max-width: 1100px; margin: 0 auto;
}

.specialty-card {
  text-align: center; padding: 2.5rem 1.5rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--surface) 0%, var(--surface-light) 100%);
  transition: all var(--ease);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.specialty-card::before {
  content: ''; position: absolute; inset: -1px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, transparent, rgba(212, 133, 107, 0.2), transparent);
  opacity: 0; transition: opacity var(--ease); z-index: -1;
}

.specialty-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 133, 107, 0.1);
  border-color: rgba(212, 133, 107, 0.2);
}

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

.specialty-icon {
  width: 70px; height: 70px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.2rem; font-size: 1.8rem; color: var(--white);
  box-shadow: 0 6px 20px rgba(212, 133, 107, 0.3);
  transition: all var(--ease);
}

.specialty-card:hover .specialty-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 8px 30px var(--glow);
}

.specialty-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem; color: var(--text); margin-bottom: 0.5rem;
  transition: color var(--ease);
}

.specialty-card:hover h3 { color: var(--primary-light); }

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

/* ╔══════════════════════════════════════════════╗
   ║                 SECTIONS                     ║
   ╚══════════════════════════════════════════════╝ */
.section { padding: 6rem 2rem; position: relative; }

.section-header { text-align: center; margin-bottom: 3.5rem; }

.section-header .label {
  display: inline-block; font-size: 0.68rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 4px;
  color: var(--primary-light); margin-bottom: 0.8rem;
  background: rgba(212, 133, 107, 0.12);
  padding: 0.35rem 1rem; border-radius: 20px;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.8rem; line-height: 1.2;
}

.section-header .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
  background-size: 200% 100%;
  border-radius: 3px; margin: 0 auto 1.2rem;
  animation: shimmerDivider 3s ease-in-out infinite;
}

@keyframes shimmerDivider {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 200% 0; }
}

.section-header p {
  font-size: 1.02rem; color: var(--text-muted);
  max-width: 520px; margin: 0 auto; line-height: 1.7;
}

.section-peach {
  background: linear-gradient(180deg, var(--warm-peach) 0%, var(--warm-soft) 100%);
}

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

.section-dark {
  background: linear-gradient(135deg, #2e1f17 0%, #4a3428 40%, #3e2c22 100%);
  position: relative; overflow: hidden;
}

.section-dark::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212, 133, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.section-dark .section-header .label { color: var(--primary-light); background: rgba(232, 173, 148, 0.1); }
.section-dark .section-header h2 { color: var(--white); }
.section-dark .section-header p { color: rgba(255,255,255,0.55); }
.section-dark .section-header .divider { background: linear-gradient(90deg, transparent, var(--primary), transparent); }

/* ╔══════════════════════════════════════════════╗
   ║              PRODUCT CARDS                   ║
   ╚══════════════════════════════════════════════╝ */
.product-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}

.product-card {
  background: var(--surface);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
}

.product-card::after {
  content: ''; position: absolute; inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 0 var(--glow);
  transition: box-shadow 0.5s ease;
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 133, 107, 0.12);
  border-color: rgba(212, 133, 107, 0.25);
}

.product-card:hover::after {
  box-shadow: 0 0 30px rgba(212, 133, 107, 0.1), inset 0 0 0 1px rgba(212, 133, 107, 0.15);
}

.product-card .card-image {
  position: relative; height: 240px; overflow: hidden;
  cursor: zoom-in;
}

.product-card .card-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
  opacity: 0; transition: opacity var(--ease);
  pointer-events: none;
}

.product-card:hover .card-image::after { opacity: 1; }

.product-card .card-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.5s ease;
}

.product-card:hover .card-image img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.product-card .badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary); color: var(--white);
  font-weight: 800; font-size: 0.68rem;
  padding: 0.3rem 0.85rem; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 1px;
  z-index: 1;
  animation: badgePulse 2.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%, 100% { box-shadow: 0 2px 10px rgba(212, 133, 107, 0.3); }
  50% { box-shadow: 0 2px 20px rgba(212, 133, 107, 0.5); }
}

.card-body { padding: 1.4rem 1.5rem 1.5rem; }

.card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.4rem;
  transition: color var(--ease);
}

.product-card:hover .card-body h3 { color: var(--primary-light); }

.card-body .description {
  font-size: 0.85rem; color: var(--text-muted);
  margin-bottom: 1.1rem; line-height: 1.6;
}

.price-row { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.price-tag {
  display: flex; flex-direction: column; align-items: center;
  background: rgba(255, 255, 255, 0.06);
  padding: 0.45rem 0.85rem; border-radius: 12px;
  min-width: 72px; border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all var(--ease);
}

.product-card:hover .price-tag {
  background: rgba(212, 133, 107, 0.12);
  border-color: rgba(212, 133, 107, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 3px 12px rgba(212, 133, 107, 0.15);
}

.price-tag .size-label {
  font-size: 0.62rem; font-weight: 800; text-transform: uppercase;
  color: var(--text-muted); letter-spacing: 0.5px;
}

.price-tag .price {
  font-family: 'Fredoka One', cursive;
  font-size: 0.95rem; color: var(--primary-light);
  transition: color var(--ease);
}

.product-card:hover .price-tag .price { color: var(--primary-pale); }

/* Dark section cards */
.section-dark .product-card {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.08);
}

.section-dark .product-card:hover {
  background: rgba(255,255,255,0.09);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 30px rgba(212, 133, 107, 0.1);
  border-color: rgba(232, 173, 148, 0.3);
}

.section-dark .product-card:hover::after {
  box-shadow: 0 0 30px rgba(212, 133, 107, 0.08), inset 0 0 0 1px rgba(232, 173, 148, 0.15);
}

.section-dark .card-body h3 { color: var(--white); }
.section-dark .product-card:hover .card-body h3 { color: var(--primary-pale); }
.section-dark .card-body .description { color: rgba(255,255,255,0.55); }
.section-dark .price-tag { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.06); }
.section-dark .product-card:hover .price-tag { background: rgba(255,255,255,0.12); border-color: rgba(232,173,148,0.2); }
.section-dark .price-tag .size-label { color: rgba(255,255,255,0.45); }
.section-dark .price-tag .price { color: var(--primary-light); }

/* ╔══════════════════════════════════════════════╗
   ║                ICE CREAM                     ║
   ╚══════════════════════════════════════════════╝ */
.ice-cream-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 900px; margin: 0 auto;
}

.ice-cream-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden; text-align: center;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.ice-cream-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 133, 107, 0.1);
  border-color: rgba(212, 133, 107, 0.25);
}

.ice-cream-image {
  height: 220px; overflow: hidden;
  position: relative;
  cursor: zoom-in;
}

.ice-cream-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease, filter 0.5s ease;
}

.ice-cream-card:hover .ice-cream-image img {
  transform: scale(1.08);
  filter: brightness(1.05) saturate(1.1);
}

.ice-cream-body {
  padding: 1.5rem 1.2rem;
}

.ice-cream-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; color: var(--text); margin-bottom: 0.5rem;
  transition: color var(--ease);
}

.ice-cream-card:hover h3 { color: var(--primary-light); }

.ice-cream-card .ice-price {
  font-family: 'Fredoka One', cursive;
  font-size: 1.9rem; color: var(--primary-light);
  transition: all var(--ease);
}

.ice-cream-card:hover .ice-price {
  color: var(--primary-pale);
  text-shadow: 0 0 20px rgba(212, 133, 107, 0.25);
  transform: scale(1.05);
}

/* ╔══════════════════════════════════════════════╗
   ║                  STATS                       ║
   ╚══════════════════════════════════════════════╝ */
.stats-banner {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2e1f17 0%, var(--primary-dark) 50%, #3e2c22 100%);
  position: relative; overflow: hidden;
}

.stats-banner::before {
  content: ''; position: absolute; inset: 0;
  background: url('public/background.png') center/cover no-repeat;
  opacity: 0.04;
}

.stats-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(212, 133, 107, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 70% 50%, rgba(212, 133, 107, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1000px; margin: 0 auto;
  position: relative; z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  font-family: 'Fredoka One', cursive;
  font-size: 2.6rem; color: var(--white);
  line-height: 1; margin-bottom: 0.5rem;
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.stat-number .plus { color: var(--primary-pale); }

.stat-label {
  font-size: 0.8rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.55);
}

/* ╔══════════════════════════════════════════════╗
   ║             SHOWCASE STRIP                   ║
   ╚══════════════════════════════════════════════╝ */
.showcase-strip {
  padding: 6rem 2rem;
  background: linear-gradient(135deg, #1e1512 0%, #241b16 50%, #1a1210 100%);
  overflow: hidden;
  position: relative;
}

.showcase-strip::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 133, 107, 0.3), transparent);
}

.showcase-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center;
}

.showcase-text .label {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--primary); margin-bottom: 0.7rem;
}

.showcase-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 700;
  color: var(--text); margin-bottom: 1rem; line-height: 1.3;
}

.showcase-text p {
  color: var(--text-muted); line-height: 1.8; margin-bottom: 2rem; font-size: 0.95rem;
}

.showcase-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: all var(--ease);
}

.showcase-image::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212,133,107,0.08), transparent);
  pointer-events: none;
}

.showcase-image:hover {
  transform: scale(1.02) rotate(-1deg);
  box-shadow: 0 20px 60px rgba(212,133,107,0.2);
}

.showcase-image img {
  width: 100%; height: 380px; object-fit: cover;
  transition: transform 0.8s ease;
}

.showcase-image:hover img { transform: scale(1.06); }

/* ╔══════════════════════════════════════════════╗
   ║                  ABOUT                       ║
   ╚══════════════════════════════════════════════╝ */
.about-section {
  padding: 6rem 2rem; background: var(--warm-soft);
  position: relative;
}

.about-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 133, 107, 0.3), transparent);
}

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; max-width: 1100px; margin: 0 auto; align-items: center;
}

.about-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); position: relative;
  transition: all var(--ease);
}

.about-image:hover {
  box-shadow: 0 20px 60px rgba(212, 133, 107, 0.2);
  transform: scale(1.02);
}

.about-image img {
  width: 100%; height: 400px; object-fit: cover;
  transition: transform 0.7s ease;
}

.about-image:hover img { transform: scale(1.05); }

.about-image .float-badge {
  position: absolute; bottom: -15px; right: -15px;
  width: 110px; height: 110px; border-radius: 50%;
  background: var(--primary);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  color: var(--white);
  box-shadow: 0 8px 30px var(--glow);
  animation: badgeFloat 3s ease-in-out infinite;
}

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

.float-badge .big { font-family: 'Fredoka One', cursive; font-size: 1.8rem; line-height: 1; }
.float-badge .small { font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.about-text .label {
  display: inline-block; font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--primary); margin-bottom: 0.7rem;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.1rem; font-weight: 700;
  color: var(--text); margin-bottom: 1rem; line-height: 1.3;
}

.about-text p { color: var(--text-muted); line-height: 1.8; margin-bottom: 1.3rem; font-size: 0.95rem; }

.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; margin-top: 0.8rem; }

.about-feature {
  display: flex; align-items: center; gap: 0.6rem;
  transition: transform var(--ease);
}

.about-feature:hover { transform: translateX(5px); }

.about-feature .check {
  width: 30px; height: 30px; min-width: 30px; border-radius: 50%;
  background: rgba(212, 133, 107, 0.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary-light); font-weight: 800; font-size: 0.75rem;
  transition: all var(--ease);
}

.about-feature:hover .check {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 3px 12px rgba(212, 133, 107, 0.3);
}

.about-feature span { font-weight: 700; font-size: 0.88rem; color: var(--text-soft); }

/* ╔══════════════════════════════════════════════╗
   ║              PROMO BANNER                    ║
   ╚══════════════════════════════════════════════╝ */
.promo-banner {
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #2d211b 0%, #241b16 50%, #1e1512 100%);
  text-align: center;
  position: relative;
}

.promo-banner::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 133, 107, 0.3), transparent);
}

.promo-banner::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 133, 107, 0.3), transparent);
}

.promo-inner { max-width: 650px; margin: 0 auto; }

.promo-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--text); margin-bottom: 0.8rem;
}

.promo-inner p { color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 1.8rem; }

.highlight-box {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--surface); padding: 0.9rem 1.8rem;
  border-radius: 50px; box-shadow: var(--shadow-sm);
  font-weight: 800; color: var(--primary-light); font-size: 0.95rem;
  border: 1px solid rgba(212, 133, 107, 0.15);
  transition: all var(--ease);
  animation: highlightGlow 3s ease-in-out infinite;
}

@keyframes highlightGlow {
  0%, 100% { box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2); }
  50% { box-shadow: 0 4px 25px rgba(212, 133, 107, 0.3); }
}

.highlight-box:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(212, 133, 107, 0.3);
  border-color: rgba(212, 133, 107, 0.3);
}

.highlight-box .icon { font-size: 1.2rem; }

.promo-inner-wide {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto; align-items: center;
}

.promo-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}

.promo-image img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.7s ease;
}

.promo-image:hover img { transform: scale(1.06); }

.promo-text { text-align: left; }
.promo-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--text); margin-bottom: 0.8rem;
}
.promo-text p {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.6; margin-bottom: 1.8rem;
}

/* ── GALLERY STRIP (seamless CSS marquee) ── */
.gallery-strip {
  overflow: hidden; position: relative;
  padding: 1.2rem 0;
  background: #110e0c;
}

.gallery-strip::before,
.gallery-strip::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px;
  z-index: 2; pointer-events: none;
}
.gallery-strip::before { left: 0; background: linear-gradient(90deg, #110e0c, transparent); }
.gallery-strip::after { right: 0; background: linear-gradient(-90deg, #110e0c, transparent); }

.gallery-marquee {
  display: block;
  width: max-content;
  animation: galleryMarquee 75s linear infinite;
  will-change: transform;
}

.gallery-marquee:hover { animation-play-state: paused; }

@keyframes galleryMarquee {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

@media (prefers-reduced-motion: reduce) {
  .gallery-marquee { animation: none; transform: none; }
}

.gallery-track {
  display: flex; flex-direction: row;
  flex-wrap: nowrap; gap: 0.75rem;
  width: max-content;
}

.gallery-item {
  flex: 0 0 auto; width: 260px; height: 180px;
  border-radius: 14px; overflow: hidden;
  position: relative; display: block;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  border-color: rgba(212,133,107,0.3);
  box-shadow: 0 8px 30px rgba(212,133,107,0.15);
}

.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  pointer-events: none;
}

.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(1.1) saturate(1.15);
}

.gallery-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: #fff; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.3px;
  opacity: 0; transition: opacity 0.3s ease;
  pointer-events: none;
}

.gallery-item:hover .gallery-label { opacity: 1; }

/* Product jump-to highlight (from gallery links) */
.product-card.product-highlight-pulse,
.ice-cream-card.product-highlight-pulse {
  position: relative; z-index: 5;
  animation: productHighlightGlow 1.2s ease-in-out 3;
  outline: 2px solid var(--primary);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
  box-shadow: 0 0 0 0 rgba(212, 133, 107, 0.5), 0 20px 50px rgba(0, 0, 0, 0.35);
}

@keyframes productHighlightGlow {
  0%, 100% {
    box-shadow: 0 0 25px rgba(212, 133, 107, 0.35), 0 20px 50px rgba(0, 0, 0, 0.35);
  }
  50% {
    box-shadow: 0 0 45px rgba(212, 133, 107, 0.65), 0 24px 60px rgba(212, 133, 107, 0.2);
  }
}

.section-dark .product-card.product-highlight-pulse {
  outline-color: var(--primary-light);
}

/* ╔══════════════════════════════════════════════╗
   ║           EMAIL / NEWSLETTER                ║
   ╚══════════════════════════════════════════════╝ */
.newsletter-section {
  padding: 5rem 2rem;
  padding-left: max(2rem, env(safe-area-inset-left, 0px));
  padding-right: max(2rem, env(safe-area-inset-right, 0px));
  background: linear-gradient(180deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
}

.newsletter-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.newsletter-botcheck {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.newsletter-input {
  flex: 1 1 220px;
  min-width: 0;
  max-width: 100%;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  min-height: 48px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  transition: border-color var(--ease), box-shadow var(--ease);
}

.newsletter-input::placeholder {
  color: var(--text-muted);
}

.newsletter-input:focus {
  outline: none;
  border-color: rgba(212, 133, 107, 0.55);
  box-shadow: 0 0 0 3px rgba(212, 133, 107, 0.2);
}

.newsletter-submit {
  flex: 0 0 auto;
  min-height: 48px;
  min-width: 8rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  touch-action: manipulation;
}

.newsletter-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.newsletter-privacy {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  max-width: 420px;
  margin: 0 auto 0.5rem;
}

.newsletter-msg {
  font-size: 0.9rem;
  font-weight: 700;
  min-height: 1.35em;
  margin-top: 0.35rem;
}

.newsletter-msg--ok { color: #7ecf9a; }
.newsletter-msg--err { color: #f0a8a8; }
.newsletter-msg--info { color: var(--primary-light); }

/* ╔══════════════════════════════════════════════╗
   ║                VISIT US                      ║
   ╚══════════════════════════════════════════════╝ */
.visit-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, #1e1512 0%, #1a1210 100%);
}

.visit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1000px; margin: 0 auto; align-items: start;
}

.visit-map {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: all var(--ease);
}

.visit-map:hover {
  box-shadow: 0 16px 50px rgba(212, 133, 107, 0.15);
  transform: translateY(-4px);
}

.visit-map iframe { width: 100%; height: 380px; border: 0; display: block; }

.visit-info { padding: 1rem 0; }

.visit-info-item {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.8rem;
  transition: transform var(--ease);
}

.visit-info-item:hover { transform: translateX(6px); }

.visit-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 50%;
  background: var(--primary);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 1.1rem;
  box-shadow: 0 3px 12px rgba(212, 133, 107, 0.25);
  transition: all var(--ease);
}

.visit-info-item:hover .visit-info-icon {
  box-shadow: 0 6px 20px var(--glow);
  transform: scale(1.1);
}

.visit-info-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--text); margin-bottom: 0.25rem;
}

.visit-info-item p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; }

.visit-info-item a {
  color: var(--primary-light); font-weight: 700;
  transition: all var(--ease);
}

.visit-info-item a:hover { color: var(--primary); text-shadow: 0 0 8px rgba(212, 133, 107, 0.15); }

/* ╔══════════════════════════════════════════════╗
   ║                MENU CTA                      ║
   ╚══════════════════════════════════════════════╝ */
.menu-cta {
  padding: 5.5rem 2rem;
  background: linear-gradient(135deg, #241b16 0%, #2d211b 100%);
  text-align: center;
  position: relative;
}

.menu-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 133, 107, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.menu-cta-wide {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 3rem; max-width: 1100px; margin: 0 auto; align-items: center;
}

.menu-cta-image {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); position: relative;
}

.menu-cta-image img {
  width: 100%; height: 320px; object-fit: cover;
  transition: transform 0.7s ease;
}

.menu-cta-image:hover img { transform: scale(1.06); }

.menu-cta-inner { text-align: left; }

.menu-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: var(--text); margin-bottom: 0.8rem;
}

.menu-cta-inner p {
  color: var(--text-muted); font-size: 1rem; line-height: 1.6; margin-bottom: 2rem;
}

.menu-cta-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

/* ╔══════════════════════════════════════════════╗
   ║                  FOOTER                      ║
   ╚══════════════════════════════════════════════╝ */
.footer {
  background: linear-gradient(180deg, #3e2c22 0%, #2a1e16 100%);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 2rem 1.5rem;
  position: relative;
}

.footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--primary-dark), var(--primary), var(--primary-light), var(--primary), var(--primary-dark));
}

.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 2.5rem; max-width: 1100px; margin: 0 auto 2.5rem;
}

.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 0.6rem; margin-bottom: 0.8rem;
}

.footer-brand .footer-logo img { width: 40px; height: 40px; border-radius: 50%; }
.footer-brand .footer-logo span { font-family: 'Fredoka One', cursive; font-size: 1.3rem; color: var(--white); }
.footer-brand > p { font-size: 0.85rem; line-height: 1.7; color: rgba(255,255,255,0.45); }

.social-links { display: flex; gap: 0.6rem; margin-top: 1rem; }

.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--ease);
  border: 1px solid rgba(255,255,255,0.07); overflow: hidden;
}

.social-link:hover {
  background: var(--primary); border-color: var(--primary);
  transform: translateY(-3px) scale(1.1);
  box-shadow: 0 4px 20px rgba(212, 133, 107, 0.4);
}

.social-link svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); transition: fill var(--ease); }
.social-link:hover svg { fill: var(--white); }

.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: var(--white); font-size: 0.95rem; margin-bottom: 1rem;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }

.footer-col ul li a {
  color: rgba(255,255,255,0.45); font-size: 0.85rem;
  transition: all var(--ease); display: inline-block;
}

.footer-col ul li a:hover {
  color: var(--primary-light);
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem; text-align: center;
  max-width: 1100px; margin: 0 auto;
}

.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin-bottom: 0.3rem; }

.footer-bottom a {
  color: var(--primary-light); font-weight: 700;
  transition: all var(--ease);
}

.footer-bottom a:hover {
  color: var(--primary-pale);
  text-shadow: 0 0 8px rgba(212, 133, 107, 0.3);
}

.footer-location {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem; color: rgba(255,255,255,0.55);
  margin-bottom: 0.8rem;
}

/* ╔══════════════════════════════════════════════╗
   ║              ANIMATIONS                      ║
   ╚══════════════════════════════════════════════╝ */
.fade-in {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible { opacity: 1; transform: translateY(0); }

.fade-in-left {
  opacity: 0; transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-left.visible { opacity: 1; transform: translateX(0); }

.fade-in-right {
  opacity: 0; transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

.fade-in-scale {
  opacity: 0; transform: scale(0.9);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in-scale.visible { opacity: 1; transform: scale(1); }

/* Stagger delays for cards */
.product-card.fade-in:nth-child(1) { transition-delay: 0s; }
.product-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.product-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.product-card.fade-in:nth-child(4) { transition-delay: 0.25s; }
.product-card.fade-in:nth-child(5) { transition-delay: 0.3s; }
.product-card.fade-in:nth-child(6) { transition-delay: 0.35s; }
.product-card.fade-in:nth-child(7) { transition-delay: 0.4s; }
.product-card.fade-in:nth-child(8) { transition-delay: 0.45s; }

.specialty-card.fade-in:nth-child(1) { transition-delay: 0s; }
.specialty-card.fade-in:nth-child(2) { transition-delay: 0.1s; }
.specialty-card.fade-in:nth-child(3) { transition-delay: 0.2s; }
.specialty-card.fade-in:nth-child(4) { transition-delay: 0.3s; }

.ice-cream-card.fade-in:nth-child(1) { transition-delay: 0s; }
.ice-cream-card.fade-in:nth-child(2) { transition-delay: 0.15s; }
.ice-cream-card.fade-in:nth-child(3) { transition-delay: 0.3s; }

/* ╔══════════════════════════════════════════════╗
   ║              BACK TO TOP                     ║
   ╚══════════════════════════════════════════════╝ */
.back-to-top {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  box-shadow: 0 4px 20px var(--glow);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--ease); z-index: 500;
}

.back-to-top.show {
  opacity: 1; visibility: visible; transform: translateY(0);
  animation: backTopPulse 2s ease-in-out infinite;
}

@keyframes backTopPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(212, 133, 107, 0.35); }
  50% { box-shadow: 0 4px 30px rgba(212, 133, 107, 0.55); }
}

.back-to-top:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 8px 30px var(--glow);
}

/* ╔══════════════════════════════════════════════╗
   ║              MENU PAGE                       ║
   ╚══════════════════════════════════════════════╝ */
.menu-page { background: var(--warm-cream); min-height: 100vh; }

.menu-page-header {
  padding: 7rem 2rem 2rem; text-align: center;
  background: var(--warm-peach);
}

.menu-page-header h1 { color: var(--text); }
.menu-page-header p { color: var(--text-muted); }

.menu-page-content {
  padding: 3rem 2rem 5rem; text-align: center;
  max-width: 1000px; margin: 0 auto;
}

.menu-page-content img {
  width: 100%; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); margin-bottom: 2.5rem;
  transition: all var(--ease);
}

.menu-page-content img:hover {
  box-shadow: 0 20px 60px rgba(212, 133, 107, 0.2);
  transform: scale(1.01);
}

.menu-page-actions {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-bottom: 2rem;
}

/* ╔══════════════════════════════════════════════╗
   ║           LANGUAGE SELECTOR                   ║
   ╚══════════════════════════════════════════════╝ */
.lang-toggle-btn {
  display: flex; align-items: center; gap: 0.4rem;
  justify-content: center;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-soft);
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem; font-weight: 700;
  min-height: 44px;
  padding: 0.45rem 0.9rem; border-radius: 20px;
  cursor: pointer; transition: all var(--ease);
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
}

.lang-toggle-btn:hover {
  background: rgba(212, 133, 107, 0.12);
  border-color: rgba(212, 133, 107, 0.25);
  color: var(--primary-light);
}

.lang-label { pointer-events: none; }

.lang-modal-overlay {
  position: fixed; inset: 0; z-index: 10000;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  display: flex; align-items: center; justify-content: center;
  padding: 1.5rem;
  animation: langFadeIn 0.4s ease;
}

.lang-modal-overlay.lang-hidden {
  animation: langFadeOut 0.3s ease forwards;
  pointer-events: none;
}

@keyframes langFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes langFadeOut {
  from { opacity: 1; }
  to { opacity: 0; }
}

.lang-modal-card {
  background: linear-gradient(145deg, #2e231d, #1a1210);
  border: 1px solid rgba(212, 133, 107, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.6), 0 0 40px rgba(212, 133, 107, 0.08);
  animation: langCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes langCardIn {
  from { opacity: 0; transform: scale(0.85) translateY(20px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}

.lang-modal-logo {
  margin-bottom: 1.2rem;
}

.lang-modal-logo img {
  width: 70px; height: 70px; border-radius: 50%;
  box-shadow: 0 4px 20px rgba(212, 133, 107, 0.3);
}

.lang-modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; font-weight: 700;
  color: var(--text); margin-bottom: 1.8rem;
}

.lang-modal-options {
  display: flex; flex-direction: column; gap: 0.6rem;
}

.lang-option {
  display: flex; align-items: center; gap: 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  padding: 0.9rem 1.2rem;
  cursor: pointer; transition: all var(--ease);
  color: var(--text-soft);
  font-family: 'Nunito', sans-serif;
  font-size: 1rem; font-weight: 700;
}

.lang-option:hover {
  background: rgba(212, 133, 107, 0.12);
  border-color: rgba(212, 133, 107, 0.25);
  color: var(--text);
  transform: translateX(6px);
}

.lang-flag { font-size: 1.6rem; line-height: 1; }
.lang-name { flex: 1; text-align: left; }

/* ── RTL SUPPORT ── */
[dir="rtl"] .nav-links { direction: rtl; }
[dir="rtl"] .navbar { flex-direction: row-reverse; }
[dir="rtl"] .nav-links a::after { left: auto; right: 50%; transform: translateX(50%); }
[dir="rtl"] .hero-content { direction: rtl; }
[dir="rtl"] .section-header { direction: rtl; }
[dir="rtl"] .card-body { direction: rtl; text-align: right; }
[dir="rtl"] .price-row { direction: rtl; }
[dir="rtl"] .about-text { direction: rtl; text-align: right; }
[dir="rtl"] .about-features { direction: rtl; }
[dir="rtl"] .about-feature { flex-direction: row-reverse; }
[dir="rtl"] .showcase-text { direction: rtl; text-align: right; }
[dir="rtl"] .promo-text { direction: rtl; text-align: right; }
[dir="rtl"] .menu-cta-inner { direction: rtl; text-align: right; }
[dir="rtl"] .visit-info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .visit-info-item:hover { transform: translateX(-6px); }
[dir="rtl"] .footer { direction: rtl; text-align: right; }
[dir="rtl"] .footer-col ul li a:hover { transform: translateX(-4px); }
[dir="rtl"] .footer-bottom { direction: rtl; }
[dir="rtl"] .lang-option:hover { transform: translateX(-6px); }
[dir="rtl"] .lang-name { text-align: right; }
[dir="rtl"] .specialty-card p,
[dir="rtl"] .specialty-card h3 { direction: rtl; }
[dir="rtl"] .ice-cream-body { direction: rtl; }
[dir="rtl"] .highlight-box { direction: rtl; }
[dir="rtl"] .gallery-strip { direction: ltr; }
[dir="rtl"] .gallery-label { direction: rtl; text-align: right; }
[dir="rtl"] .newsletter-inner { direction: rtl; }
[dir="rtl"] .newsletter-form { flex-direction: row-reverse; }
[dir="rtl"] .newsletter-input { text-align: right; }

/* ╔══════════════════════════════════════════════╗
   ║           CUSTOMER REVIEWS                   ║
   ╚══════════════════════════════════════════════╝ */

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.review-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: all var(--ease);
}

.review-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(212, 133, 107, 0.25);
}

.review-stars {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.review-text {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.review-author {
  font-weight: 700;
  color: var(--text-muted);
}

/* ╔══════════════════════════════════════════════╗
   ║              RESPONSIVE                      ║
   ╚══════════════════════════════════════════════╝ */
@media (max-width: 1024px) {
  .specialties-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-image .float-badge { bottom: -10px; right: 10px; width: 95px; height: 95px; }
  .float-badge .big { font-size: 1.5rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map iframe { height: 300px; }
  .showcase-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .showcase-image { order: -1; }
  .showcase-image img { height: 280px; }
  .promo-inner-wide { grid-template-columns: 1fr; gap: 2rem; }
  .promo-text { text-align: center; }
  .promo-image img { height: 260px; }
  .menu-cta-wide { grid-template-columns: 1fr; gap: 2rem; }
  .menu-cta-inner { text-align: center; }
  .menu-cta-image img { height: 260px; }
  .gallery-item { width: 220px; height: 155px; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(26, 18, 16, 0.98);
    backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 0.8rem 1.2rem 1.2rem; gap: 0.2rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; animation: menuSlideIn 0.3s ease-out; }
  @keyframes menuSlideIn { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
  .nav-links a { padding: 0.7rem 1rem; width: 100%; border-radius: 10px; }
  .menu-toggle { display: flex; }
  .lang-toggle-btn { padding: 0.35rem 0.65rem; font-size: 0.72rem; }
  .lang-label { display: none; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-sub { font-size: 1rem; }
  .hero-logo { width: 110px; height: 110px; }
  .hero-slider { min-height: 280px; }
  .hero-slide-thumb { height: 150px; width: min(240px, 85vw); }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 260px; justify-content: center; }
  .section { padding: 3.5rem 1.25rem; }
  .newsletter-section {
    padding: 3.5rem 1.25rem;
    padding-left: max(1.25rem, env(safe-area-inset-left, 0px));
    padding-right: max(1.25rem, env(safe-area-inset-right, 0px));
  }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  [dir="rtl"] .newsletter-form { flex-direction: column; }
  .newsletter-submit { width: 100%; max-width: 100%; }
  .section-header h2 { font-size: 2rem; }
  .specialties-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .specialty-card { padding: 1.5rem 1rem; }
  .product-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ice-cream-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .stat-number { font-size: 2rem; }
  .about-image img { height: 260px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 1.8rem; }
  .visit-grid { grid-template-columns: 1fr; }
  .menu-cta-inner h2 { font-size: 1.8rem; }
  .menu-cta-buttons { flex-direction: column; align-items: center; }
  .promo-image img { height: 220px; }
  .menu-cta-image img { height: 220px; }
  .gallery-item { width: 200px; height: 140px; }
  .hero-particles .particle { display: none; }
  .hero-particles .particle:nth-child(-n+4) { display: block; }
  .showcase-inner { grid-template-columns: 1fr; gap: 2rem; }
  .showcase-image { order: -1; }
  .showcase-image img { height: 240px; }
  .showcase-text h2 { font-size: 1.8rem; }
  .nav-links a.active { background: rgba(212,133,107,0.12); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 1.8rem; }
  .hero-slider { min-height: 260px; }
  .hero-slide-thumb { height: 130px; width: min(200px, 88vw); margin-bottom: 1rem; }
  .logo-text { font-size: 1.1rem; }
  .specialties-grid { grid-template-columns: 1fr 1fr; }
  .specialty-icon { width: 50px; height: 50px; font-size: 1.3rem; }
  .section-header h2 { font-size: 1.65rem; }
  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.68rem; }
  .showcase-text h2 { font-size: 1.5rem; }
  .showcase-image img { height: 200px; }
  .promo-image img { height: 180px; }
  .promo-text h2 { font-size: 1.6rem; }
  .menu-cta-image img { height: 180px; }
  .menu-cta-inner h2 { font-size: 1.5rem; }
  .gallery-item { width: 160px; height: 115px; border-radius: 10px; }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .footer { padding-bottom: calc(1.5rem + env(safe-area-inset-bottom)); }
  .back-to-top {
    bottom: calc(2rem + env(safe-area-inset-bottom));
    right: max(2rem, env(safe-area-inset-right, 0px));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .fade-in, .fade-in-left, .fade-in-right, .fade-in-scale { opacity: 1; transform: none; }
}

@media print {
  .navbar, .loader-screen, .back-to-top, .hero-scroll, .hero-particles { display: none !important; }
  .hero { min-height: auto; padding: 2rem; }
}
