/* ==========================================================================
   MR. GADIWALA (मि. गाडीवाला) - KIDS CLAYMORPHISM DESIGN SYSTEM
   Soft 3D Tactile Clay Surfaces, Kids Vibrant Palette, Stacking Overlays
   Default: Light Mode (Warm Marshmallow Clay) | Primary: Marathi
   ========================================================================== */

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

/* --- Kids Claymorphism Design Tokens --- */
:root {
  /* Refined Cool Automotive Luxury Palette (Royal Cobalt & Azure) */
  --clay-brand: #2563EB;          /* Royal Cobalt Blue - primary, serene & premium */
  --clay-brand-hover: #1D4ED8;
  --clay-brand-light: #EFF6FF;    /* Ice blue tint */
  --clay-brand-shadow: rgba(37, 99, 235, 0.22);

  --clay-cyan: #0284C7;           /* Sky Cyan */
  --clay-cyan-light: #E0F2FE;
  --clay-cyan-shadow: rgba(2, 132, 199, 0.2);

  --clay-amber: #F59E0B;          /* Soft Honey / Gold for stars & rating */
  --clay-amber-light: #FEF3C7;
  --clay-amber-shadow: rgba(245, 158, 11, 0.2);

  --clay-green: #10B981;          /* WhatsApp / Verified Green */
  --clay-green-light: #D1FAE5;
  --clay-green-shadow: rgba(16, 185, 129, 0.22);

  --clay-purple: #8B5CF6;
  --clay-purple-light: #EDE9FE;

  --clay-coral: #F43F5E;
  --clay-coral-light: #FFE4E6;

  /* Official Instagram Brand Gradient */
  --gradient-instagram: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  --instagram-shadow: 0 8px 24px rgba(220, 39, 67, 0.35);

  /* Aliases for smooth compatibility */
  --clay-orange: var(--clay-brand);
  --clay-orange-light: var(--clay-brand-light);
  --clay-orange-shadow: var(--clay-brand-shadow);
  --clay-yellow: var(--clay-amber);
  --clay-yellow-light: var(--clay-amber-light);
  --clay-yellow-shadow: var(--clay-amber-shadow);
  --clay-blue: var(--clay-cyan);
  --clay-blue-light: var(--clay-cyan-light);
  --clay-blue-shadow: var(--clay-cyan-shadow);

  /* Primary Theme Bindings */
  --primary: var(--clay-brand);
  --primary-hover: var(--clay-brand-hover);
  --primary-light: var(--clay-brand-light);
  --primary-glow: var(--clay-brand-shadow);

  /* Light Porcelain Mode (Crisp, Soothing, Less Loud than Orange) */
  --bg-body: #F8FAFC;             /* Clean porcelain slate */
  --bg-surface: #FFFFFF;
  --bg-surface-secondary: #F1F5F9; /* Subtle cool slate */
  --bg-surface-elevated: #FFFFFF;
  --bg-surface-glass: rgba(248, 250, 252, 0.94);

  /* Clean Slate 3D Soft Surfaces (Subtle & Crisp, No Orange Mud) */
  --clay-shadow-sm: 4px 6px 16px rgba(15, 23, 42, 0.05), 
                    -3px -3px 12px rgba(255, 255, 255, 0.95), 
                    inset 1px 1px 2px rgba(255, 255, 255, 0.8), 
                    inset -1px -1px 2px rgba(15, 23, 42, 0.03);

  --clay-shadow-md: 8px 14px 26px rgba(15, 23, 42, 0.07), 
                    -6px -6px 18px rgba(255, 255, 255, 0.95), 
                    inset 2px 2px 4px rgba(255, 255, 255, 0.8), 
                    inset -2px -2px 4px rgba(15, 23, 42, 0.04);

  --clay-shadow-lg: 14px 22px 38px rgba(15, 23, 42, 0.09), 
                    -8px -8px 24px rgba(255, 255, 255, 0.95), 
                    inset 3px 3px 6px rgba(255, 255, 255, 0.85), 
                    inset -3px -3px 6px rgba(15, 23, 42, 0.05);

  --clay-btn-orange: 6px 8px 18px var(--clay-brand-shadow),
                     inset 1px 1px 2px rgba(255, 255, 255, 0.4),
                     inset -1px -1px 2px rgba(0, 0, 0, 0.1);

  --clay-btn-brand: 6px 8px 18px var(--clay-brand-shadow),
                    inset 1px 1px 2px rgba(255, 255, 255, 0.4),
                    inset -1px -1px 2px rgba(0, 0, 0, 0.1);

  --clay-btn-green: 6px 8px 18px var(--clay-green-shadow),
                    inset 1px 1px 2px rgba(255, 255, 255, 0.4),
                    inset -1px -1px 2px rgba(0, 0, 0, 0.1);

  /* Typography */
  --text-main: #0F172A;
  --text-muted: #475569;
  --text-subtle: #94A3B8;
  --text-inverse: #FFFFFF;

  /* Borders */
  --border-clay: rgba(255, 255, 255, 0.85);
  --border-subtle: #E2E8F0;
  --border-strong: #CBD5E1;

  /* Rounded Radii for Playful Surfaces */
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --radius-xl: 36px;
  --radius-pill: 9999px;

  /* Fonts */
  --font-main: 'Mukta', 'Fredoka', sans-serif;
  --font-display: 'Fredoka', 'Mukta', sans-serif;

  /* Layout */
  --header-height: 80px;
  --max-width: 1240px;
  --transition-clay: 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Dark Clay Mode Variables --- */
[data-theme="dark"] {
  --bg-body: #0E131F;
  --bg-surface: #171E2E;
  --bg-surface-secondary: #1F293D;
  --bg-surface-elevated: #242E44;
  --bg-surface-glass: rgba(23, 30, 46, 0.94);

  --text-main: #F8FAFC;
  --text-muted: #94A3B8;
  --text-subtle: #64748B;
  --text-inverse: #0F172A;

  --border-clay: rgba(255, 255, 255, 0.08);
  --border-subtle: #242E44;
  --border-strong: #334155;

  --clay-shadow-sm: 6px 8px 18px rgba(0, 0, 0, 0.45), 
                    -4px -4px 12px rgba(255, 255, 255, 0.03), 
                    inset 2px 2px 4px rgba(255, 255, 255, 0.08), 
                    inset -2px -2px 4px rgba(0, 0, 0, 0.3);

  --clay-shadow-md: 12px 16px 32px rgba(0, 0, 0, 0.6), 
                    -6px -6px 18px rgba(255, 255, 255, 0.04), 
                    inset 3px 3px 6px rgba(255, 255, 255, 0.1), 
                    inset -3px -3px 6px rgba(0, 0, 0, 0.4);

  --clay-shadow-lg: 18px 24px 44px rgba(0, 0, 0, 0.7), 
                    -8px -8px 22px rgba(255, 255, 255, 0.05), 
                    inset 4px 4px 8px rgba(255, 255, 255, 0.12), 
                    inset -4px -4px 8px rgba(0, 0, 0, 0.5);
}

/* --- Base Reset & Box Sizing --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 500;
  overflow-x: hidden;
  transition: background-color 0.3s ease, color 0.3s ease;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  box-sizing: border-box;
}

/* --- Container Utility --- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
}

.text-gradient {
  background: linear-gradient(135deg, #2563EB 0%, #0284C7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold-gradient {
  background: linear-gradient(135deg, var(--clay-amber) 0%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* --- Crisp, Sharp SVG Icons (Fixed stroke outlines, no weird solid blobs) --- */
.svg-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.svg-icon-sm { width: 16px; height: 16px; }
.svg-icon-md { width: 22px; height: 22px; }
.svg-icon-lg { width: 28px; height: 28px; }

/* Dedicated class for genuinely solid icons (stars, brand marks) */
.svg-icon.fill-current,
.svg-icon-solid {
  fill: currentColor;
  stroke: none;
}

/* ==========================================================================
   STACKING SECTION OVERLAY ARCHITECTURE (Cool Scroll Overlays)
   ========================================================================== */
.clay-stack-section {
  position: relative;
  border-top-left-radius: var(--radius-xl);
  border-top-right-radius: var(--radius-xl);
  box-shadow: 0 -12px 30px rgba(15, 23, 42, 0.05);
  margin-top: -32px;
  z-index: 1;
  background-color: var(--bg-surface);
  transition: transform 0.3s ease;
}

.stack-level-1 { z-index: 2; }
.stack-level-2 { z-index: 3; background-color: var(--bg-body); }
.stack-level-3 { z-index: 4; background-color: var(--bg-surface); }
.stack-level-4 { z-index: 5; background-color: var(--bg-body); }
.stack-level-5 { z-index: 6; background-color: var(--bg-surface); }
.stack-level-6 { z-index: 7; background-color: var(--bg-body); }

/* --- Top Notification Bar --- */
.top-announcement {
  background: linear-gradient(90deg, #1E293B 0%, #0F172A 100%);
  color: #F8FAFC;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.announcement-inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  justify-content: space-between;
}
.announcement-badge {
  background: var(--clay-orange);
  color: #FFF;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.72rem;
  box-shadow: var(--clay-btn-orange);
}
.announcement-links {
  display: flex;
  align-items: center;
  gap: 16px;
}
.announcement-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #CBD5E1;
  transition: color 0.2s;
}
.announcement-link:hover {
  color: var(--clay-orange);
}

/* --- Main Navigation Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 2px solid var(--border-subtle);
  height: var(--header-height);
  box-shadow: 0 4px 20px rgba(180, 100, 60, 0.05);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}
.brand-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
  transition: transform var(--transition-clay);
}
.brand-logo-img:hover {
  transform: scale(1.06) rotate(-2deg);
}
.brand-titles {
  display: flex;
  flex-direction: column;
}
.brand-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.3px;
  color: var(--text-main);
  line-height: 1.1;
}
.brand-subtitle {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--clay-orange);
  letter-spacing: 0.3px;
}

/* Desktop Nav Links */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  transition: all var(--transition-clay);
  position: relative;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--clay-orange);
  background: var(--clay-orange-light);
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Clay Toggle Pill */
.lang-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-surface);
  border: 2px solid var(--border-clay);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-main);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.85rem;
  transition: all var(--transition-clay);
}
.lang-toggle-btn:hover {
  transform: translateY(-2px);
  color: var(--clay-orange);
}
.lang-active-tag {
  background: var(--clay-orange);
  color: #FFF;
  padding: 2px 8px;
  border-radius: 99px;
  font-size: 0.72rem;
}

.theme-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-muted);
  transition: all var(--transition-clay);
}
.theme-toggle-btn:hover {
  color: var(--clay-yellow);
  transform: rotate(20deg) scale(1.08);
}

/* Clay Buttons */
.btn-clay {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  transition: all var(--transition-clay);
  white-space: nowrap;
  border: 2px solid rgba(255, 255, 255, 0.4);
}
.btn-clay:active {
  transform: scale(0.96) translateY(2px);
}

.btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFFFFF;
  box-shadow: var(--clay-btn-brand);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 8px 12px 24px var(--clay-brand-shadow);
}

.btn-secondary {
  background: var(--bg-surface);
  color: var(--text-main);
  box-shadow: var(--clay-shadow-sm);
}
.btn-secondary:hover {
  color: var(--clay-orange);
  transform: translateY(-3px);
  box-shadow: var(--clay-shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  box-shadow: var(--clay-btn-green);
}
.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 8px 12px 24px rgba(37, 211, 102, 0.35);
}

/* Mobile Hamburger Button */
.menu-toggle-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-main);
}

/* Mobile Drawer */
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(85vw, 340px);
  height: 100vh;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-lg);
  z-index: 1001;
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow-y: auto;
}
.mobile-nav-drawer.open {
  right: 0;
}
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-nav-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-subtle);
  margin-bottom: 16px;
}
/* Mobile Drawer Controls (Language & Theme in Hamburger) */
.mobile-drawer-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--border-subtle);
}
.drawer-control-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 8px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  border: 2px solid var(--border-clay);
  color: var(--text-main);
  transition: all var(--transition-clay);
  cursor: pointer;
}
.drawer-control-btn:hover, .drawer-control-btn:active {
  transform: translateY(-2px);
  box-shadow: var(--clay-shadow-md);
  border-color: var(--clay-orange);
}
.drawer-btn-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
}
.drawer-btn-badge {
  background: var(--clay-orange);
  color: #FFF;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 2px 10px;
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-btn-orange);
}
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.mobile-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  transition: all var(--transition-clay);
}
.mobile-nav-link:hover, .mobile-nav-link.active {
  background: var(--clay-orange);
  color: #FFF;
  transform: translateX(4px);
}

/* --- Hero Section --- */
.hero-section {
  position: relative;
  padding: 50px 0 80px;
  overflow: hidden;
  background: radial-gradient(circle at 85% 20%, var(--clay-cyan-light) 0%, transparent 45%),
              radial-gradient(circle at 10% 80%, var(--clay-brand-light) 0%, transparent 40%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: center;
}
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.hero-badge-strip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  padding: 6px 16px 6px 8px;
  border-radius: var(--radius-pill);
  width: fit-content;
  border: 1px solid var(--border-subtle);
}
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: var(--clay-amber-light);
  color: var(--clay-amber);
  border-radius: 50%;
  box-shadow: 0 2px 8px var(--clay-amber-shadow);
}
.hero-badge-text {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3.3rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
}
.hero-description {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 580px;
}
.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 8px;
}

/* Clay Stats Cards */
.hero-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 16px;
}
.hero-stat-item {
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  padding: 16px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-clay);
}
.hero-stat-item:hover {
  transform: translateY(-4px);
}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 800;
  color: var(--clay-orange);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* Hero Media Clay Card */
.hero-media-wrapper {
  position: relative;
}
.hero-media-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--clay-shadow-lg);
  border: 6px solid #FFF;
  background: var(--bg-surface-secondary);
  transition: transform 0.4s ease;
}
.hero-media-card:hover {
  transform: translateY(-4px) rotate(1deg);
}
.hero-media-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center top;
}
.hero-media-overlay-tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(15, 23, 42, 0.82);
  backdrop-filter: blur(8px);
  color: #FFF;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero-media-float-badge {
  position: absolute;
  bottom: -18px;
  right: 18px;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-md);
  border: 4px solid #FFF;
  padding: 14px 20px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
  animation: floatBounce 4s ease-in-out infinite alternate;
}
@keyframes floatBounce {
  0% { transform: translateY(0); }
  100% { transform: translateY(-8px); }
}
.float-badge-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--clay-yellow-light);
  color: var(--clay-yellow);
  box-shadow: var(--clay-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.float-badge-title {
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
.float-badge-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Miniature Brand Strip --- */
.brand-strip-section {
  background: var(--bg-surface);
  border-top: 2px solid var(--border-subtle);
  border-bottom: 2px solid var(--border-subtle);
  padding: 18px 0;
  overflow: hidden;
}
.brand-ticker-inner {
  display: flex;
  gap: 28px;
  align-items: center;
  animation: tickerSlide 26s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.brand-ticker-inner:hover {
  animation-play-state: paused;
}
.brand-ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-muted);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  transition: all var(--transition-clay);
}
.brand-ticker-item:hover {
  color: var(--clay-orange);
  transform: translateY(-3px) scale(1.04);
}
@keyframes tickerSlide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Section Title Header --- */
.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
.section-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--clay-orange-light);
  color: var(--clay-orange);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-shadow-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.5px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
}

/* ==========================================================================
   INSTAGRAM REELS SHOWCASE SECTION (Real Videos Embeds)
   ========================================================================== */
.reels-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.reels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  align-items: start;
}
.reel-clay-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--clay-shadow-md);
  border: 4px solid #FFF;
  overflow: hidden;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: all var(--transition-clay);
}
.reel-clay-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--clay-shadow-lg);
}
.reel-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 8px;
}
.reel-branch-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--clay-blue-light);
  color: var(--clay-blue);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.reel-embed-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  display: flex;
  justify-content: center;
  min-height: 480px;
}
.reel-action-btn {
  width: 100%;
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--bg-surface-secondary);
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid var(--border-subtle);
  transition: all 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
}
.reel-action-btn svg {
  transition: stroke 0.2s ease, transform 0.2s ease;
  stroke: var(--text-muted);
}
.reel-action-btn:hover {
  background: var(--gradient-instagram);
  color: #FFFFFF !important;
  border-color: transparent;
  box-shadow: var(--instagram-shadow);
  transform: translateY(-3px) scale(1.02);
}
.reel-action-btn:hover svg {
  stroke: #FFFFFF !important;
  transform: scale(1.15) rotate(-3deg);
}
.reel-action-btn:active {
  transform: scale(0.97) translateY(0);
}

/* ==========================================================================
   INTERACTIVE PRODUCT CATALOG SECTION
   ========================================================================== */
.catalog-section {
  padding: 80px 0;
  background: var(--bg-body);
}

/* Clay Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-muted);
  transition: all var(--transition-clay);
}
.filter-btn:hover {
  color: var(--clay-orange);
  transform: translateY(-2px);
}
.filter-btn.active {
  background: var(--clay-orange);
  color: #FFF;
  box-shadow: var(--clay-btn-orange);
  transform: scale(1.04);
}

/* Clickable Clay Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.product-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--clay-shadow-md);
  border: 4px solid #FFF;
  overflow: hidden;
  transition: all var(--transition-clay);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: var(--clay-shadow-lg);
}

.product-media-container {
  position: relative;
  height: 250px;
  background: var(--bg-surface-secondary);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img {
  transform: scale(1.08);
}
.product-badges-top {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.74rem;
  font-weight: 700;
  box-shadow: var(--clay-shadow-sm);
  text-transform: uppercase;
}
.badge-hot {
  background: var(--clay-orange);
  color: #FFF;
  box-shadow: var(--clay-btn-orange);
}
.badge-vip {
  background: #1E293B;
  color: var(--clay-yellow);
}
.badge-deal {
  background: var(--clay-green);
  color: #FFF;
  box-shadow: var(--clay-btn-green);
}

.product-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 14px;
}
.product-category-tag {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--clay-orange);
  letter-spacing: 0.5px;
}
.product-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
}
.product-specs-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spec-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 600;
}

.product-footer {
  margin-top: auto;
  padding-top: 18px;
  border-top: 2px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-price-box {
  display: flex;
  flex-direction: column;
}
.price-label {
  font-size: 0.74rem;
  color: var(--text-muted);
  font-weight: 600;
}
.price-value {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--clay-orange);
  line-height: 1.1;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-card-buy {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563EB 0%, #1D4ED8 100%);
  color: #FFF;
  box-shadow: var(--clay-btn-brand);
  transition: all var(--transition-clay);
}
.btn-card-buy:hover {
  transform: translateY(-2px) scale(1.03);
}
.btn-card-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #25D366;
  color: #FFF;
  box-shadow: var(--clay-btn-green);
  transition: all var(--transition-clay);
}
.btn-card-wa:hover {
  transform: translateY(-2px) scale(1.08);
}

/* --- Real vs Kids Viral Spotlight Section --- */
.spotlight-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.spotlight-card {
  background: var(--bg-surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--clay-shadow-lg);
  border: 6px solid #FFF;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}
.spotlight-media {
  position: relative;
  height: 100%;
  min-height: 420px;
  background: #000;
}
.spotlight-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.spotlight-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--clay-pink);
  color: #FFF;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  box-shadow: var(--clay-shadow-sm);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.spotlight-content {
  padding: 44px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spotlight-heading {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
}
.spotlight-text {
  font-size: 1.1rem;
  color: var(--text-muted);
}
.spotlight-perks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.spotlight-perk-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  padding: 16px;
  border-radius: var(--radius-md);
}
.perk-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: var(--clay-orange-light);
  color: var(--clay-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.perk-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.2;
}
.perk-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Features Section --- */
.features-section {
  padding: 80px 0;
  background: var(--bg-body);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.feature-box {
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-md);
  border: 4px solid #FFF;
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  transition: all var(--transition-clay);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--clay-shadow-lg);
}
.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--clay-yellow-light);
  color: var(--clay-yellow);
  box-shadow: var(--clay-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
}
.feature-desc {
  font-size: 0.94rem;
  color: var(--text-muted);
}

/* --- Branches Locator Section --- */
.branches-section {
  padding: 80px 0;
  background: var(--bg-surface);
}
.branch-tabs-container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 14px;
  margin-bottom: 30px;
  scrollbar-width: thin;
}
.branch-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.94rem;
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-sm);
  color: var(--text-muted);
  white-space: nowrap;
  transition: all var(--transition-clay);
}
.branch-tab-btn:hover {
  color: var(--clay-orange);
  transform: translateY(-2px);
}
.branch-tab-btn.active {
  background: var(--clay-blue);
  color: #FFF;
  box-shadow: var(--clay-blue-shadow);
  transform: scale(1.04);
}

.branch-display-card {
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-lg);
  border: 4px solid #FFF;
  border-radius: var(--radius-xl);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 34px;
  align-items: center;
}
.branch-detail-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.branch-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.branch-card-title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 800;
}
.branch-badge-main {
  background: var(--clay-yellow-light);
  color: var(--clay-yellow);
  box-shadow: var(--clay-shadow-sm);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
}
.branch-address-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  padding: 18px;
  border-radius: var(--radius-md);
}
.branch-address-text {
  font-size: 1rem;
  color: var(--text-main);
  line-height: 1.5;
}
.branch-phones-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.branch-phone-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--clay-orange);
}
.branch-actions-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.branch-service-highlight {
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #FFF;
  border-radius: var(--radius-lg);
  box-shadow: var(--clay-shadow-md);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}
.service-high-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: #FFF;
}
.service-high-desc {
  font-size: 0.9rem;
  color: #CBD5E1;
  line-height: 1.5;
}
.service-helpline-box {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.helpline-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--clay-yellow);
}

/* --- Quick Booking Form Section --- */
.booking-section {
  padding: 80px 0 100px;
  background: var(--bg-body);
}
.booking-card {
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-xl);
  border: 6px solid #FFF;
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 900px;
  margin: 0 auto;
}
.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-top: 24px;
}
.form-group-full {
  grid-column: span 2;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  border: 2px solid transparent;
  color: var(--text-main);
  transition: all var(--transition-clay);
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--clay-orange);
  background: #FFF;
  transform: translateY(-2px);
}
.btn-submit-booking {
  width: 100%;
  padding: 16px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFF;
  box-shadow: var(--clay-btn-green);
  transition: all var(--transition-clay);
}
.btn-submit-booking:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

/* --- Pitch Mode Pill --- */
.pitch-mode-pill {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 1050;
  background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  color: #F8FAFC;
  border: 2px solid var(--clay-yellow);
  box-shadow: var(--clay-shadow-md);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-clay);
}
.pitch-mode-pill:hover {
  transform: scale(1.06);
}

/* Modal Styling */
.pitch-modal-overlay, .product-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(10px);
  z-index: 1200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pitch-modal-overlay.active, .product-modal-overlay.active {
  display: flex;
}
.pitch-modal-card, .product-modal-card {
  background: var(--bg-surface);
  box-shadow: var(--clay-shadow-lg);
  border: 6px solid #FFF;
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 720px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}
.pitch-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
}
.pitch-close-btn:hover {
  color: var(--clay-orange);
}
.pitch-points-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pitch-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  padding: 18px;
  border-radius: var(--radius-md);
}
.pitch-item-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--clay-yellow-light);
  color: var(--clay-yellow);
  box-shadow: var(--clay-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pitch-item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 4px;
}
.pitch-item-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.45;
}
.spec-detail-box {
  background: var(--bg-surface-secondary);
  box-shadow: var(--clay-shadow-sm);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.88rem;
  color: var(--text-main);
}

/* --- Footer --- */
.site-footer {
  background: #090D16;
  color: #F8FAFC;
  padding: 70px 0 28px;
  border-top: 4px solid var(--clay-orange);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 48px;
}
.footer-brand-desc {
  color: #94A3B8;
  font-size: 0.94rem;
  line-height: 1.6;
  margin: 16px 0;
}
.footer-social-row {
  display: flex;
  gap: 12px;
}
.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #1F2937;
  color: #CBD5E1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-clay);
}
.social-icon-btn:hover {
  background: var(--clay-orange);
  color: #FFF;
  transform: translateY(-3px) scale(1.08);
}
.footer-heading {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: #FFF;
  margin-bottom: 18px;
}
.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link-item a {
  color: #94A3B8;
  font-size: 0.92rem;
  transition: color 0.2s;
}
.footer-link-item a:hover {
  color: var(--clay-orange);
}
.footer-bottom-bar {
  padding-top: 24px;
  border-top: 1px solid #1F2937;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: #64748B;
  font-size: 0.85rem;
}

/* --- Mobile Sticky Bar --- */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--bg-surface-glass);
  backdrop-filter: blur(16px);
  border-top: 2px solid var(--border-subtle);
  padding: 10px 16px;
  z-index: 990;
  box-shadow: 0 -6px 20px rgba(180, 100, 60, 0.1);
}
.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}
.mobile-sticky-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-media-img { height: 400px; }
  .spotlight-card { grid-template-columns: 1fr; }
  .spotlight-media { min-height: 320px; }
  .branch-display-card { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-height: 68px; }
  .top-announcement, .desktop-nav { display: none !important; }
  .desktop-only-action { display: none !important; }
  .menu-toggle-btn { display: flex !important; }
  .brand-logo-img { height: 42px; }
  .brand-title { font-size: 1.15rem; }
  .brand-subtitle { font-size: 0.68rem; }
}

@media (max-width: 768px) {
  .hero-section { padding: 30px 0 45px; }
  .hero-media-img { height: 320px; }
  .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 8px; padding-top: 8px; }
  .stat-number { font-size: 1.4rem; }
  .stat-label { font-size: 0.72rem; }
  .products-grid { grid-template-columns: 1fr; }
  .spotlight-content { padding: 24px; }
  .spotlight-perks-grid { grid-template-columns: 1fr; }
  .booking-form-grid { grid-template-columns: 1fr; }
  .form-group-full { grid-column: span 1; }
  .booking-card { padding: 24px 18px; }
  .mobile-sticky-bar { display: block; }
  .site-footer { padding-bottom: 84px; }
  .pitch-mode-pill { bottom: 74px; left: 16px; padding: 8px 14px; font-size: 0.8rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .modal-responsive-grid { grid-template-columns: 1fr !important; }
  .clay-stack-section { margin-top: -20px; border-top-left-radius: 28px; border-top-right-radius: 28px; }
}

@media (max-width: 480px) {
  :root { --header-height: 64px; }
  .nav-container { padding-left: 14px; padding-right: 14px; }
  .brand-wrapper { gap: 8px; }
  .brand-logo-img { height: 38px; }
  .brand-title { font-size: 1.08rem; }
  .brand-subtitle { display: none; }
  .menu-toggle-btn { width: 42px; height: 42px; }
}
