/* ═══════════════════════════════════════════════════
   TINY TAILS STUDIO — MASTER STYLESHEET
   ═══════════════════════════════════════════════════ */

/* ── DESIGN TOKENS ──────────────────────────────── */
:root {
  --clr-bg:        #FEFAF7;
  --clr-bg2:       #FFF5EE;
  --clr-primary:   #C4714F;
  --clr-primary-d: #A05530;
  --clr-secondary: #8B4513;
  --clr-gold:      #D4A853;
  --clr-gold-l:    #F0C878;
  --clr-dark:      #1C0F08;
  --clr-text:      #3D2217;
  --clr-muted:     #7A5C4A;
  --clr-card:      #FFF8F3;
  --clr-border:    #EDD9C8;
  --clr-purple:    #7B5EA7;

  --font-head:  'Playfair Display', Georgia, serif;
  --font-body:  'Poppins', system-ui, sans-serif;
  --font-script:'Dancing Script', cursive;

  --rad-sm:  8px;
  --rad-md:  16px;
  --rad-lg:  24px;
  --rad-xl:  40px;
  --rad-pill:999px;

  --shadow-sm: 0 2px 12px rgba(28,15,8,.07);
  --shadow-md: 0 8px 32px rgba(28,15,8,.12);
  --shadow-lg: 0 20px 60px rgba(28,15,8,.18);
  --shadow-gold: 0 8px 32px rgba(212,168,83,.35);

  --transition: all .35s cubic-bezier(.4,0,.2,1);
  --transition-fast: all .2s cubic-bezier(.4,0,.2,1);
}

/* ── RESET & BASE ───────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background: var(--clr-bg);
  color: var(--clr-text);
  overflow-x: hidden;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

::selection { background: var(--clr-gold); color: var(--clr-dark); }

/* ── CURSOR GLOW ────────────────────────────────── */
.cursor-glow {
  position: fixed; width: 400px; height: 400px;
  border-radius: 50%; pointer-events: none; z-index: 0;
  background: radial-gradient(circle, rgba(196,113,79,.12) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  transition: transform .1s ease, opacity .3s;
  top: 0; left: 0;
}

/* ── PAGE LOADER ────────────────────────────────── */
.page-loader {
  position: fixed; inset: 0; background: var(--clr-dark);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity .6s, visibility .6s;
}
.page-loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; color: white; }
.loader-paw { font-size: 3.5rem; animation: loaderBounce 1s ease-in-out infinite; }
.loader-text { font-family: var(--font-head); font-size: 1.2rem; color: var(--clr-gold); margin: 1rem 0; }
.loader-bar {
  width: 200px; height: 4px; background: rgba(255,255,255,.2);
  border-radius: var(--rad-pill); overflow: hidden; margin: 0 auto;
}
.loader-bar span {
  display: block; height: 100%; background: var(--clr-gold);
  animation: loaderFill 1.8s ease forwards;
}
@keyframes loaderBounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-12px)} }
@keyframes loaderFill { from{width:0} to{width:100%} }

/* ── SCROLLBAR ──────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--clr-bg); }
::-webkit-scrollbar-thumb { background: var(--clr-primary); border-radius: var(--rad-pill); }

/* ══════════════════════════════════════════════════
   NAVBAR
══════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(254,250,247,.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 24px rgba(28,15,8,.08);
  padding: .8rem 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: 1.35rem; font-weight: 700;
  color: var(--clr-dark);
}
.nav-logo em { color: var(--clr-primary); font-style: italic; }
.logo-icon { font-size: 1.6rem; animation: pawWiggle 3s ease-in-out infinite; }
@keyframes pawWiggle { 0%,100%{transform:rotate(0)} 20%{transform:rotate(-10deg)} 40%{transform:rotate(10deg)} 60%{transform:rotate(-5deg)} }

.nav-links {
  display: flex; align-items: center; gap: 2rem;
}
.nav-links a {
  font-size: .92rem; font-weight: 500; color: var(--clr-text);
  position: relative; transition: var(--transition-fast);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--clr-primary); border-radius: var(--rad-pill);
  transform: scaleX(0); transition: transform .3s ease;
}
.nav-links a:hover { color: var(--clr-primary); }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta {
  background: var(--clr-primary) !important; color: white !important;
  padding: .6rem 1.4rem; border-radius: var(--rad-pill);
  font-weight: 600 !important; transition: var(--transition) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--clr-primary-d) !important; transform: translateY(-2px); box-shadow: var(--shadow-md); }

.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--clr-dark); border-radius: var(--rad-pill);
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════ */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #FFF8F3 0%, #FEF0E7 40%, #FEFAF7 100%);
  padding: 7rem 0 4rem;
}

/* Animated blobs */
.hero-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
  animation: blobFloat 8s ease-in-out infinite;
}
.blob-1 {
  width: 500px; height: 500px; top: -100px; right: -100px;
  background: radial-gradient(circle, rgba(196,113,79,.18), transparent);
  animation-delay: 0s;
}
.blob-2 {
  width: 400px; height: 400px; bottom: 50px; left: -150px;
  background: radial-gradient(circle, rgba(212,168,83,.14), transparent);
  animation-delay: -3s;
}
.blob-3 {
  width: 300px; height: 300px; top: 40%; left: 40%;
  background: radial-gradient(circle, rgba(123,94,167,.08), transparent);
  animation-delay: -5s;
}
@keyframes blobFloat { 0%,100%{transform:translate(0,0) scale(1)} 33%{transform:translate(30px,-20px) scale(1.05)} 66%{transform:translate(-20px,15px) scale(.97)} }

/* Paw particles */
.paw-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.paw-particle {
  position: absolute; font-size: 1.2rem; opacity: 0;
  animation: pawFloat linear infinite;
}
@keyframes pawFloat {
  0%   { transform: translateY(100vh) rotate(0deg); opacity: 0; }
  10%  { opacity: .25; }
  90%  { opacity: .1; }
  100% { transform: translateY(-100px) rotate(360deg); opacity: 0; }
}

.hero-container {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
  position: relative; z-index: 2;
}

/* Hero Content */
.hero-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(212,168,83,.15); border: 1px solid rgba(212,168,83,.35);
  color: var(--clr-secondary); padding: .45rem 1rem; border-radius: var(--rad-pill);
  font-size: .85rem; font-weight: 600; margin-bottom: 1.5rem;
}
.badge-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-gold); animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{transform:scale(1);opacity:1} 50%{transform:scale(1.4);opacity:.7} }

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.8rem, 5vw, 4.2rem);
  line-height: 1.15; color: var(--clr-dark);
  margin-bottom: 1.5rem;
}
.title-highlight {
  color: var(--clr-primary); font-style: italic;
  display: inline-block; min-height: 1.2em;
}
.typewriter::after {
  content: '|'; animation: blink .7s step-end infinite;
  color: var(--clr-gold); margin-left: 2px;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

.hero-subtitle {
  font-size: 1.1rem; color: var(--clr-muted); max-width: 500px;
  margin-bottom: 2rem; line-height: 1.7;
}

.hero-ctas {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--clr-primary); color: white;
  padding: .85rem 2rem; border-radius: var(--rad-pill);
  font-weight: 600; font-size: 1rem;
  box-shadow: 0 6px 24px rgba(196,113,79,.4);
  transition: var(--transition); position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,.2), transparent);
  opacity: 0; transition: opacity .3s;
}
.btn-primary:hover {
  background: var(--clr-primary-d); transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(196,113,79,.5);
}
.btn-primary:hover::before { opacity: 1; }
.btn-arrow { width: 18px; height: 18px; stroke: currentColor; stroke-width: 2; fill: none; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .7rem;
  color: var(--clr-text); font-weight: 600; font-size: 1rem;
  padding: .85rem 1.5rem; border-radius: var(--rad-pill);
  border: 2px solid var(--clr-border); transition: var(--transition);
}
.btn-ghost:hover { border-color: var(--clr-primary); color: var(--clr-primary); background: rgba(196,113,79,.05); }
.play-icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--clr-gold); color: white;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .75rem; padding-left: 2px;
  box-shadow: 0 4px 12px rgba(212,168,83,.4);
}

.hero-trust {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: .4rem;
  font-size: .85rem; color: var(--clr-muted); font-weight: 500;
}
.trust-icon { font-size: 1.1rem; }

/* Hero Visual */
.hero-visual { position: relative; display: flex; justify-content: center; }

.hero-sculpture-card {
  position: relative; width: 360px; height: 440px;
  background: white; border-radius: 32px;
  box-shadow: var(--shadow-lg), inset 0 0 0 1px rgba(212,168,83,.2);
  display: flex; align-items: center; justify-content: center;
  animation: floatCard 5s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{transform:translateY(0) rotate(-1deg)} 50%{transform:translateY(-16px) rotate(1deg)} }

.sculpture-glow {
  position: absolute; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(212,168,83,.3), transparent);
  border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse { 0%,100%{transform:translate(-50%,-50%) scale(1)} 50%{transform:translate(-50%,-50%) scale(1.2)} }

.sculpture-display { position: relative; z-index: 2; }
.sculpture-svg { width: 260px; height: 340px; filter: drop-shadow(0 20px 30px rgba(28,15,8,.15)); }

.sculpt-body, .sculpt-head { filter: drop-shadow(0 4px 8px rgba(28,15,8,.12)); }
.sculpt-tail { animation: tailWag 1.5s ease-in-out infinite; transform-origin: 195px 270px; }
@keyframes tailWag { 0%,100%{transform:rotate(-5deg)} 50%{transform:rotate(8deg)} }

.sparkle-group { animation: sparkleRotate 8s linear infinite; transform-origin: 150px 200px; }
@keyframes sparkleRotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.float-badge {
  position: absolute; background: white; border-radius: var(--rad-pill);
  padding: .5rem 1rem; font-size: .78rem; font-weight: 600;
  box-shadow: var(--shadow-md); white-space: nowrap;
}
.badge-handmade { top: 16px; right: -20px; color: var(--clr-primary); border: 1px solid rgba(196,113,79,.2); animation: badgeFloat1 4s ease-in-out infinite; }
.badge-love { bottom: 24px; left: -20px; color: var(--clr-secondary); border: 1px solid rgba(139,69,19,.15); animation: badgeFloat2 4s ease-in-out infinite; }
@keyframes badgeFloat1 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
@keyframes badgeFloat2 { 0%,100%{transform:translateY(0)} 50%{transform:translateY(8px)} }

.mini-card {
  position: absolute; background: white; border-radius: var(--rad-md);
  padding: .8rem 1.2rem; box-shadow: var(--shadow-md);
  border: 1px solid var(--clr-border);
}
.mini-card-1 { bottom: -20px; right: -40px; min-width: 160px; }
.mini-card-2 { top: 20px; left: -50px; text-align: center; }
.mini-icon { font-size: .9rem; color: var(--clr-gold); margin-bottom: .2rem; }
.mini-text { font-size: .82rem; color: var(--clr-text); font-style: italic; font-weight: 500; }
.mini-author { font-size: .75rem; color: var(--clr-muted); margin-top: .2rem; }
.mini-stat { font-family: var(--font-head); font-size: 1.8rem; font-weight: 700; color: var(--clr-primary); }
.mini-label { font-size: .75rem; color: var(--clr-muted); font-weight: 500; }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: .5rem;
  color: var(--clr-muted); font-size: .8rem; animation: scrollBounce 2s ease-in-out infinite;
}
.scroll-mouse {
  width: 24px; height: 38px; border: 2px solid var(--clr-muted);
  border-radius: 12px; display: flex; justify-content: center; padding-top: 6px;
}
.scroll-wheel {
  width: 4px; height: 8px; background: var(--clr-primary);
  border-radius: var(--rad-pill); animation: scrollWheel 1.5s ease-in-out infinite;
}
@keyframes scrollBounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }
@keyframes scrollWheel { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(14px);opacity:0} }

/* ══════════════════════════════════════════════════
   TRUST MARQUEE STRIP
══════════════════════════════════════════════════ */
.trust-strip {
  background: var(--clr-dark); padding: .9rem 0; overflow: hidden;
}
.marquee-track { overflow: hidden; }
.marquee-content {
  display: flex; align-items: center; gap: 0;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  width: max-content;
}
.marquee-item {
  color: var(--clr-bg); font-size: .88rem; font-weight: 500; padding: 0 .5rem;
}
.marquee-dot { color: var(--clr-gold); padding: 0 .5rem; font-size: .7rem; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-33.333%)} }

/* ══════════════════════════════════════════════════
   STATS SECTION
══════════════════════════════════════════════════ */
.stats-section { padding: 5rem 0; background: var(--clr-bg2); }
.section-container { max-width: 1280px; margin: 0 auto; padding: 0 2rem; }

.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem;
}
.stat-card {
  background: white; border-radius: var(--rad-lg); padding: 2.5rem 1.5rem;
  text-align: center; box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-border); position: relative; overflow: hidden;
  transition: var(--transition);
}
.stat-card::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--clr-primary), var(--clr-gold));
}
.stat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.stat-icon { font-size: 2.2rem; margin-bottom: .8rem; }
.stat-number {
  font-family: var(--font-head); font-size: 3rem; font-weight: 800;
  color: var(--clr-primary); display: inline;
}
.stat-decimal { font-size: 2.8rem; }
.stat-plus, .stat-slash { font-family: var(--font-head); font-size: 2rem; color: var(--clr-gold); display: inline; }
.stat-label { color: var(--clr-muted); font-weight: 500; margin-top: .4rem; font-size: .92rem; }

/* ══════════════════════════════════════════════════
   SECTION HEADER (SHARED)
══════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-eyebrow {
  display: inline-block; background: rgba(196,113,79,.1);
  color: var(--clr-primary); padding: .4rem 1.2rem; border-radius: var(--rad-pill);
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--clr-dark); line-height: 1.25;
  margin-bottom: .8rem;
}
.section-title span { color: var(--clr-primary); font-style: italic; }
.section-subtitle { color: var(--clr-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ══════════════════════════════════════════════════
   PRODUCTS SECTION
══════════════════════════════════════════════════ */
.products-section { padding: 6rem 0; background: var(--clr-bg); }
.products-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.product-card {
  background: white; border-radius: var(--rad-lg); overflow: hidden;
  border: 1px solid var(--clr-border); transition: var(--transition);
  position: relative; display: flex; flex-direction: column;
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.product-featured {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 2px rgba(196,113,79,.2), var(--shadow-md);
  transform: scale(1.03);
}
.product-featured:hover { transform: scale(1.03) translateY(-8px); }

.product-badge {
  position: absolute; top: 1rem; right: 1rem;
  padding: .3rem .8rem; border-radius: var(--rad-pill);
  font-size: .75rem; font-weight: 700; z-index: 2;
}
.badge-gold { background: var(--clr-gold); color: white; }
.badge-primary { background: var(--clr-primary); color: white; }
.badge-purple { background: var(--clr-purple); color: white; }

.product-visual {
  background: linear-gradient(135deg, color-mix(in srgb, var(--prod-color) 15%, white), color-mix(in srgb, var(--prod-color) 8%, white));
  height: 180px; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.product-emoji { font-size: 5rem; z-index: 2; position: relative; animation: productFloat 4s ease-in-out infinite; }
@keyframes productFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-10px)} }
.product-glow-ring {
  position: absolute; width: 140px; height: 140px;
  border: 2px dashed rgba(196,113,79,.25); border-radius: 50%;
  animation: ringRotate 10s linear infinite;
}
@keyframes ringRotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.product-info { padding: 1.8rem; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-family: var(--font-head); font-size: 1.3rem; color: var(--clr-dark); margin-bottom: .4rem; }
.product-size { font-size: .85rem; color: var(--clr-muted); margin-bottom: 1.2rem; }

.product-features { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1.5rem; flex: 1; }
.product-features li { display: flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--clr-text); }
.check { color: var(--clr-primary); font-weight: 700; font-size: 1rem; }

.product-footer { display: flex; align-items: center; justify-content: space-between; margin-bottom: .6rem; }
.product-price { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; color: var(--clr-primary); }
.btn-order {
  background: var(--clr-primary); color: white; padding: .5rem 1.2rem;
  border-radius: var(--rad-pill); font-size: .88rem; font-weight: 600;
  transition: var(--transition);
}
.btn-order:hover { background: var(--clr-primary-d); transform: translateX(4px); }
.product-delivery { font-size: .8rem; color: var(--clr-muted); }

/* ══════════════════════════════════════════════════
   GALLERY SECTION
══════════════════════════════════════════════════ */
.gallery-section { padding: 6rem 0; background: var(--clr-bg2); }

.gallery-tabs {
  display: flex; align-items: center; gap: .75rem; flex-wrap: wrap;
  justify-content: center; margin-bottom: 2.5rem;
}
.tab {
  padding: .55rem 1.4rem; border-radius: var(--rad-pill);
  border: 2px solid var(--clr-border); background: white;
  font-size: .88rem; font-weight: 600; color: var(--clr-muted);
  transition: var(--transition);
}
.tab:hover { border-color: var(--clr-primary); color: var(--clr-primary); }
.tab.active { background: var(--clr-primary); border-color: var(--clr-primary); color: white; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1.2rem;
  margin-bottom: 3rem;
}
.gallery-item { border-radius: var(--rad-lg); overflow: hidden; cursor: pointer; transition: var(--transition); }
.gallery-tall { grid-row: span 2; }
.gallery-item:hover { transform: scale(1.02); }

.gallery-thumb {
  width: 100%; height: 100%;
  position: relative; display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.gallery-emoji { font-size: 4rem; z-index: 2; position: relative; transition: var(--transition); }
.gallery-item:hover .gallery-emoji { transform: scale(1.2) rotate(-5deg); }

.gallery-shimmer {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.2) 50%, transparent 70%);
  animation: shimmerSlide 3s linear infinite;
}
@keyframes shimmerSlide { 0%{transform:translateX(-100%)} 100%{transform:translateX(200%)} }

.gallery-overlay {
  position: absolute; inset: 0; background: rgba(28,15,8,.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: var(--transition); border-radius: var(--rad-lg);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-content { text-align: center; color: white; padding: 1rem; }
.gallery-pet-name { font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; margin-bottom: .3rem; }
.gallery-pet-breed { font-size: .85rem; opacity: .8; margin-bottom: .8rem; }
.gallery-cta {
  display: inline-block; background: var(--clr-primary); color: white;
  padding: .4rem 1rem; border-radius: var(--rad-pill); font-size: .82rem; font-weight: 600;
  transition: var(--transition);
}
.gallery-cta:hover { background: var(--clr-gold); transform: scale(1.05); }

.gallery-footer { text-align: center; }
.gallery-footer p { color: var(--clr-muted); margin-bottom: 1.5rem; font-size: .95rem; }

/* ══════════════════════════════════════════════════
   PROCESS SECTION
══════════════════════════════════════════════════ */
.process-section { padding: 6rem 0; background: var(--clr-dark); position: relative; overflow: hidden; }
.process-section::before {
  content: '🐾'; position: absolute; font-size: 30rem; opacity: .02;
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.process-section .section-eyebrow { background: rgba(212,168,83,.2); color: var(--clr-gold); }
.process-section .section-title { color: white; }
.process-section .section-subtitle { color: rgba(255,255,255,.6); }

.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.timeline-line {
  position: absolute; left: 50%; top: 40px; bottom: 40px; width: 2px;
  background: linear-gradient(180deg, var(--clr-gold), var(--clr-primary), var(--clr-gold));
  transform: translateX(-50%); opacity: .4;
}

.process-step {
  display: grid; grid-template-columns: 1fr 60px 1fr;
  gap: 0; margin-bottom: 3rem; align-items: start;
}
.process-step .step-content {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--rad-lg); padding: 2rem;
  backdrop-filter: blur(10px);
  grid-column: 1; transition: var(--transition);
}
.process-step.step-right .step-content { grid-column: 3; }
.process-step .step-connector { grid-column: 2; display: flex; justify-content: center; padding-top: 1.5rem; }
.process-step.step-right .step-connector { grid-row: 1; grid-column: 2; }

.process-step .step-content:hover {
  background: rgba(255,255,255,.1); border-color: rgba(196,113,79,.4);
  transform: scale(1.02);
}

.step-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.step-icon { font-size: 2.5rem; }
.step-num { font-family: var(--font-head); font-size: 3rem; font-weight: 800; color: rgba(212,168,83,.3); line-height: 1; }
.process-step .step-content h3 { font-family: var(--font-head); font-size: 1.2rem; color: white; margin-bottom: .6rem; }
.process-step .step-content p { color: rgba(255,255,255,.6); font-size: .92rem; line-height: 1.65; }
.step-time {
  margin-top: 1rem; display: inline-block;
  background: rgba(212,168,83,.15); color: var(--clr-gold);
  padding: .3rem .8rem; border-radius: var(--rad-pill); font-size: .8rem; font-weight: 600;
}

.connector-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--clr-gold); border: 3px solid var(--clr-dark);
  box-shadow: 0 0 0 3px var(--clr-gold); position: relative; z-index: 2;
}

.process-cta { text-align: center; margin-top: 1rem; }
.timeline-badge {
  display: inline-block; background: rgba(212,168,83,.15); color: var(--clr-gold);
  border: 1px solid rgba(212,168,83,.3); padding: .6rem 1.5rem;
  border-radius: var(--rad-pill); font-size: .9rem; font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════════
   REVIEWS SECTION
══════════════════════════════════════════════════ */
.reviews-section { padding: 6rem 0; background: var(--clr-bg); }

.rating-summary { display: flex; align-items: center; gap: 1.5rem; justify-content: center; flex-wrap: wrap; margin-top: 1rem; }
.rating-stars { font-size: 2rem; color: var(--clr-gold); letter-spacing: 4px; }
.rating-score { font-family: var(--font-head); font-size: 2rem; font-weight: 700; color: var(--clr-primary); }
.rating-count { color: var(--clr-muted); font-size: .9rem; }

.reviews-carousel { position: relative; overflow: hidden; }
.carousel-track { display: flex; gap: 1.5rem; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.review-slide { min-width: calc(33.333% - 1rem); }

.review-card {
  background: white; border-radius: var(--rad-lg); padding: 2rem;
  border: 1px solid var(--clr-border); height: 100%;
  box-shadow: var(--shadow-sm); transition: var(--transition);
  position: relative; overflow: hidden;
}
.review-card::before {
  content: '"'; position: absolute; top: -20px; right: 20px;
  font-family: var(--font-head); font-size: 10rem; color: rgba(196,113,79,.06);
  line-height: 1;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--review-color); }

.review-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.reviewer-avatar {
  width: 50px; height: 50px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0; color: white;
}
.reviewer-name { font-weight: 700; font-size: .95rem; color: var(--clr-dark); }
.reviewer-loc { font-size: .82rem; color: var(--clr-muted); }
.review-date { font-size: .8rem; color: var(--clr-muted); margin-left: auto; white-space: nowrap; }

.review-stars { color: var(--clr-gold); font-size: 1.1rem; margin-bottom: .5rem; letter-spacing: 2px; }
.review-pet { font-size: .82rem; color: var(--clr-muted); margin-bottom: 1rem; }
.review-text { font-size: .92rem; color: var(--clr-text); line-height: 1.7; font-style: italic; }
.review-verified { margin-top: 1rem; font-size: .78rem; color: var(--clr-primary); font-weight: 600; }

.carousel-controls { display: flex; align-items: center; justify-content: center; gap: 1rem; margin-top: 2.5rem; }
.carousel-btn {
  width: 48px; height: 48px; border-radius: 50%;
  background: white; border: 2px solid var(--clr-border);
  font-size: 1.5rem; color: var(--clr-text);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); line-height: 1;
}
.carousel-btn:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: white; transform: scale(1.1); }

.carousel-dots { display: flex; gap: .5rem; }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--clr-border); transition: var(--transition); cursor: pointer;
}
.dot.active { background: var(--clr-primary); width: 24px; border-radius: var(--rad-pill); }

/* ══════════════════════════════════════════════════
   WHY CHOOSE US
══════════════════════════════════════════════════ */
.why-section { padding: 6rem 0; background: var(--clr-bg2); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

.why-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
.why-item { display: flex; gap: 1rem; align-items: flex-start; transition: var(--transition); }
.why-item:hover { transform: translateX(6px); }
.why-icon { font-size: 1.8rem; flex-shrink: 0; }
.why-text { display: flex; flex-direction: column; gap: .3rem; }
.why-text strong { font-size: 1rem; color: var(--clr-dark); font-weight: 600; }
.why-text span { font-size: .9rem; color: var(--clr-muted); line-height: 1.55; }

.comparison-card {
  background: white; border-radius: var(--rad-xl); padding: 2.5rem;
  box-shadow: var(--shadow-lg); border: 1px solid var(--clr-border); position: relative;
}
.comparison-card h4 { font-family: var(--font-head); font-size: 1.1rem; color: var(--clr-dark); margin-bottom: 1.5rem; text-align: center; }

.compare-labels {
  display: grid; grid-template-columns: 1fr 60px 60px;
  text-align: center; margin-bottom: .5rem;
}
.label-us { font-size: .82rem; font-weight: 700; color: var(--clr-primary); }
.label-them { font-size: .82rem; font-weight: 700; color: var(--clr-muted); }

.compare-table { display: flex; flex-direction: column; gap: .6rem; margin-bottom: 1rem; }
.compare-row {
  display: grid; grid-template-columns: 1fr 60px 60px;
  align-items: center; padding: .7rem 1rem; border-radius: var(--rad-md);
  background: var(--clr-bg); font-size: .88rem;
  transition: var(--transition);
}
.compare-row:hover { background: rgba(196,113,79,.06); }
.compare-feature { color: var(--clr-text); font-weight: 500; }
.compare-us { text-align: center; color: var(--clr-primary); font-size: 1.1rem; font-weight: 700; }
.compare-them { text-align: center; color: #E57373; font-size: 1.1rem; font-weight: 700; }

/* ══════════════════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════════════════ */
.faq-section { padding: 6rem 0; background: var(--clr-bg); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; max-width: 1000px; margin: 0 auto; }

.faq-item {
  background: white; border-radius: var(--rad-md);
  border: 1px solid var(--clr-border); overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--clr-primary); }
.faq-item.open { border-color: var(--clr-primary); box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.2rem 1.5rem; cursor: pointer; gap: 1rem;
  font-weight: 600; font-size: .95rem; color: var(--clr-dark);
  user-select: none;
}
.faq-chevron { width: 20px; height: 20px; flex-shrink: 0; transition: transform .3s ease; color: var(--clr-primary); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  border-top: 0px solid transparent;
}
.faq-item.open .faq-answer { max-height: 200px; border-top: 1px solid var(--clr-border); }
.faq-answer p { padding: 1.2rem 1.5rem; color: var(--clr-muted); font-size: .92rem; line-height: 1.65; }

/* ══════════════════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════════════════ */
.newsletter-section { padding: 5rem 0; background: var(--clr-bg2); position: relative; overflow: hidden; }
.newsletter-blobs { position: absolute; inset: 0; pointer-events: none; }
.nl-blob {
  position: absolute; border-radius: 50%; filter: blur(80px);
}
.nl-blob-1 { width: 400px; height: 400px; top: -100px; left: -100px; background: rgba(196,113,79,.12); animation: blobFloat 9s ease-in-out infinite; }
.nl-blob-2 { width: 300px; height: 300px; bottom: -80px; right: -80px; background: rgba(212,168,83,.1); animation: blobFloat 7s ease-in-out infinite reverse; }

.newsletter-card {
  background: linear-gradient(135deg, var(--clr-primary) 0%, #A05530 100%);
  border-radius: var(--rad-xl); padding: 4rem; text-align: center;
  position: relative; overflow: hidden; max-width: 780px; margin: 0 auto;
  box-shadow: 0 30px 80px rgba(196,113,79,.4);
}
.newsletter-card::before {
  content: ''; position: absolute; top: -50px; right: -50px;
  width: 200px; height: 200px; border-radius: 50%;
  background: rgba(255,255,255,.07);
}
.newsletter-card::after {
  content: ''; position: absolute; bottom: -60px; left: -60px;
  width: 250px; height: 250px; border-radius: 50%;
  background: rgba(255,255,255,.05);
}
.nl-paws { font-size: 2rem; margin-bottom: 1rem; position: relative; z-index: 2; }
.newsletter-card h2 {
  font-family: var(--font-head); font-size: 2.2rem; color: white;
  margin-bottom: .8rem; position: relative; z-index: 2;
}
.newsletter-card p { color: rgba(255,255,255,.8); max-width: 480px; margin: 0 auto 2rem; font-size: 1rem; position: relative; z-index: 2; }

.nl-form { position: relative; z-index: 2; }
.nl-input-group { display: flex; gap: .8rem; max-width: 520px; margin: 0 auto; }
.nl-input-group input {
  flex: 1; padding: .9rem 1.4rem; border-radius: var(--rad-pill);
  border: 2px solid rgba(255,255,255,.3); background: rgba(255,255,255,.15);
  color: white; font-size: .95rem; font-family: var(--font-body);
  backdrop-filter: blur(10px); outline: none; transition: var(--transition);
}
.nl-input-group input::placeholder { color: rgba(255,255,255,.6); }
.nl-input-group input:focus { border-color: white; background: rgba(255,255,255,.25); }
.nl-input-group .btn-primary { background: white; color: var(--clr-primary); white-space: nowrap; box-shadow: none; }
.nl-input-group .btn-primary:hover { background: var(--clr-gold); color: white; transform: translateY(-2px); }

.nl-note { color: rgba(255,255,255,.6); font-size: .8rem; margin-top: 1rem; position: relative; z-index: 2; }

.nl-success { position: relative; z-index: 2; }
.success-icon { font-size: 3rem; margin-bottom: .5rem; }
.nl-success h3 { font-family: var(--font-head); font-size: 1.4rem; color: white; margin-bottom: .5rem; }
.nl-success p { color: rgba(255,255,255,.8); }

/* ══════════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════════ */
.final-cta { padding: 5rem 0; background: var(--clr-bg); text-align: center; }
.fcta-content h2 { font-family: var(--font-head); font-size: clamp(1.8rem,4vw,2.8rem); color: var(--clr-dark); margin-bottom: .8rem; }
.fcta-content p { color: var(--clr-muted); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }
.fcta-buttons { display: flex; flex-direction: column; align-items: center; gap: 1.2rem; }
.btn-large { padding: 1.1rem 2.8rem; font-size: 1.1rem; }
.fcta-trust { display: flex; gap: 1.5rem; flex-wrap: wrap; justify-content: center; }
.fcta-trust span { font-size: .85rem; color: var(--clr-muted); font-weight: 500; }

/* ══════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════ */
.footer { background: var(--clr-dark); position: relative; }
.footer-wave { line-height: 0; margin-bottom: -2px; }
.footer-wave svg { display: block; width: 100%; height: 60px; }

.footer-body { max-width: 1280px; margin: 0 auto; padding: 3rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; margin-bottom: 3rem; }

.footer-logo { font-family: var(--font-head); font-size: 1.4rem; color: white; margin-bottom: 1rem; }
.footer-logo em { color: var(--clr-primary); font-style: italic; }
.footer-brand p { color: rgba(255,255,255,.5); font-size: .88rem; line-height: 1.65; margin-bottom: 1.5rem; }

.footer-socials { display: flex; gap: .8rem; }
.social-btn {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.6); transition: var(--transition);
}
.social-btn svg { width: 18px; height: 18px; }
.social-btn:hover { background: var(--clr-primary); border-color: var(--clr-primary); color: white; transform: translateY(-3px); }

.footer-links-col h4 { color: white; font-size: .95rem; font-weight: 600; margin-bottom: 1.2rem; }
.footer-links-col ul { display: flex; flex-direction: column; gap: .6rem; }
.footer-links-col a { color: rgba(255,255,255,.5); font-size: .88rem; transition: var(--transition-fast); }
.footer-links-col a:hover { color: var(--clr-gold); padding-left: 4px; }

.footer-newsletter h4 { color: white; font-size: .95rem; font-weight: 600; margin-bottom: .8rem; }
.footer-newsletter p { color: rgba(255,255,255,.5); font-size: .85rem; margin-bottom: 1.2rem; line-height: 1.55; }
.footer-form { display: flex; gap: .6rem; margin-bottom: .8rem; }
.footer-form input {
  flex: 1; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--rad-pill); padding: .6rem 1rem; color: white;
  font-size: .85rem; font-family: var(--font-body); outline: none; transition: var(--transition);
}
.footer-form input::placeholder { color: rgba(255,255,255,.35); }
.footer-form input:focus { border-color: var(--clr-primary); background: rgba(255,255,255,.12); }
.footer-form button {
  background: var(--clr-primary); color: white; padding: .6rem 1.2rem;
  border-radius: var(--rad-pill); font-size: .85rem; font-weight: 600;
  transition: var(--transition);
}
.footer-form button:hover { background: var(--clr-primary-d); }

.footer-trust { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-trust span { color: rgba(255,255,255,.4); font-size: .78rem; }

.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
  padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.08);
}
.footer-bottom p { color: rgba(255,255,255,.35); font-size: .82rem; }
.footer-badges { display: flex; gap: .6rem; flex-wrap: wrap; }
.badge {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.5); padding: .3rem .8rem; border-radius: var(--rad-pill);
  font-size: .75rem; font-weight: 500;
}

/* ══════════════════════════════════════════════════
   AOS (ANIMATE ON SCROLL) — CUSTOM IMPLEMENTATION
══════════════════════════════════════════════════ */
[data-aos] { opacity: 0; transition: opacity .7s ease, transform .7s ease; }
[data-aos="fade-up"]    { transform: translateY(40px); }
[data-aos="fade-right"] { transform: translateX(-40px); }
[data-aos="fade-left"]  { transform: translateX(40px); }
[data-aos="zoom-in"]    { transform: scale(.9); }
[data-aos].aos-animate  { opacity: 1; transform: none; }

/* ══════════════════════════════════════════════════
   CUSTOMIZE PAGE STYLES
══════════════════════════════════════════════════ */
.customize-hero {
  background: linear-gradient(135deg, var(--clr-dark) 0%, #3D1A08 100%);
  padding: 8rem 0 4rem; text-align: center; position: relative; overflow: hidden;
}
.customize-hero::before {
  content: '🐾'; font-size: 25rem; position: absolute;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  opacity: .03; pointer-events: none;
}
.customize-hero h1 { font-family: var(--font-head); font-size: 3rem; color: white; margin-bottom: 1rem; position: relative; }
.customize-hero p { color: rgba(255,255,255,.6); max-width: 520px; margin: 0 auto; font-size: 1.05rem; position: relative; }

.customize-main { padding: 5rem 0; }
.customize-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.order-form {
  background: white; border-radius: var(--rad-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--clr-border);
}
.form-title { font-family: var(--font-head); font-size: 1.6rem; color: var(--clr-dark); margin-bottom: 1.8rem; }
.form-group { margin-bottom: 1.4rem; }
.form-label { display: block; font-size: .88rem; font-weight: 600; color: var(--clr-text); margin-bottom: .5rem; }
.form-label span { color: var(--clr-primary); }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: .85rem 1rem; border-radius: var(--rad-md);
  border: 2px solid var(--clr-border); background: var(--clr-bg);
  font-size: .95rem; font-family: var(--font-body); color: var(--clr-text);
  outline: none; transition: var(--transition);
}
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--clr-primary); background: white; }
.form-textarea { min-height: 100px; resize: vertical; }

.product-selector { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: .8rem; margin-bottom: .5rem; }
.product-option { display: flex; flex-direction: column; align-items: center; gap: .4rem;
  padding: 1rem .5rem; border-radius: var(--rad-md); border: 2px solid var(--clr-border);
  cursor: pointer; transition: var(--transition); text-align: center;
}
.product-option input[type="radio"] { display: none; }
.product-option:has(input:checked), .product-option.selected {
  border-color: var(--clr-primary); background: rgba(196,113,79,.08);
}
.product-option:hover { border-color: var(--clr-primary); }
.po-icon { font-size: 2rem; }
.po-name { font-size: .8rem; font-weight: 600; color: var(--clr-dark); }
.po-price { font-size: .78rem; color: var(--clr-primary); font-weight: 700; }

.upload-zone {
  border: 2px dashed var(--clr-border); border-radius: var(--rad-md);
  padding: 2rem; text-align: center; cursor: pointer;
  transition: var(--transition); background: var(--clr-bg);
}
.upload-zone:hover { border-color: var(--clr-primary); background: rgba(196,113,79,.04); }
.upload-icon { font-size: 2.5rem; margin-bottom: .5rem; }
.upload-text { font-size: .9rem; color: var(--clr-muted); }
.upload-note { font-size: .78rem; color: var(--clr-border); margin-top: .4rem; }

.form-submit { width: 100%; padding: 1rem; margin-top: .5rem; font-size: 1rem; }

.order-summary {
  position: sticky; top: 6rem;
  background: white; border-radius: var(--rad-xl); padding: 2.5rem;
  box-shadow: var(--shadow-md); border: 1px solid var(--clr-border);
}
.summary-title { font-family: var(--font-head); font-size: 1.4rem; color: var(--clr-dark); margin-bottom: 1.5rem; }
.summary-pet { text-align: center; margin-bottom: 1.5rem; }
.summary-emoji { font-size: 5rem; }
.summary-pet-name { font-family: var(--font-head); font-size: 1.2rem; color: var(--clr-primary); margin-top: .5rem; }

.summary-details { display: flex; flex-direction: column; gap: .8rem; margin-bottom: 1.5rem; }
.summary-row { display: flex; justify-content: space-between; align-items: center; font-size: .9rem; }
.summary-row strong { font-weight: 600; color: var(--clr-dark); }
.summary-row span { color: var(--clr-muted); }
.summary-divider { border: none; border-top: 1px solid var(--clr-border); }
.summary-total { font-size: 1.1rem !important; }
.summary-total strong { color: var(--clr-primary) !important; font-size: 1.3rem; }

.summary-features { margin-top: 1.5rem; }
.summary-features h5 { font-size: .85rem; font-weight: 700; color: var(--clr-dark); margin-bottom: .8rem; }
.summary-features ul { display: flex; flex-direction: column; gap: .5rem; }
.summary-features li { display: flex; align-items: center; gap: .5rem; font-size: .83rem; color: var(--clr-muted); }
.summary-features .check { color: var(--clr-primary); }

/* ══════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-container { gap: 2.5rem; }
  .hero-sculpture-card { width: 300px; height: 380px; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .product-featured { transform: scale(1); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .why-grid { gap: 3rem; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 75%;
    background: white; flex-direction: column; padding: 6rem 2rem 2rem;
    box-shadow: -20px 0 60px rgba(28,15,8,.15); gap: 1.5rem;
    transition: right .4s cubic-bezier(.4,0,.2,1); z-index: 999;
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 1.1rem; }

  .hero-container { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { display: none; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-tall { grid-row: span 1; }

  .process-timeline { padding: 0 1rem; }
  .timeline-line { display: none; }
  .process-step { grid-template-columns: 1fr; }
  .process-step .step-content { grid-column: 1; }
  .process-step.step-right .step-content { grid-column: 1; }
  .step-connector { display: none; }

  .carousel-track { flex-direction: column; }
  .review-slide { min-width: 100%; }

  .why-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }

  .nl-input-group { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .customize-grid { grid-template-columns: 1fr; }
  .product-selector { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .stat-number { font-size: 2.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.4rem; }
  .newsletter-card { padding: 2.5rem 1.5rem; }
}
