/* ============================================
   Toyas Tasty Treats — Dark Gray + Pink + Gold
   Inspired by brand flyer aesthetic
   ============================================ */

:root {
  /* Brand pink — #CF0E5C */
  --pink-50: #fdf0f5;
  --pink-100: #f9cce0;
  --pink-200: #f294bc;
  --pink-300: #e84d88;
  --pink-400: #db1f6f;
  --pink-500: #cf0e5c;
  --pink-600: #a80b4a;
  --pink-glow: rgba(207, 14, 92, 0.45);

  /* Dark grays (flyer background) */
  --gray-50: #f5f4f5;
  --gray-100: #e8e6e9;
  --gray-200: #c4c0c6;
  --gray-300: #9a959d;
  --gray-400: #7a7580;
  --gray-500: #b8b4bc;
  --gray-600: #8e8994;
  --gray-700: #d0ccd4;
  --gray-800: #2e2e32;
  --gray-850: #252528;
  --gray-900: #1a1a1d;
  --gray-950: #121214;

  /* Gold accent (flyer script) */
  --gold-light: #fce9a8;
  --gold: #e8c547;
  --gold-deep: #c9a227;
  --gold-glow: rgba(232, 197, 71, 0.35);

  --white: #ffffff;
  --surface: #222226;
  --surface-raised: #2c2c31;
  --surface-card: #323238;

  --font-script: "Great Vibes", cursive;
  --font-sans: "Outfit", system-ui, sans-serif;

  --container: min(1140px, 92vw);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.45);
  --shadow-pink: 0 8px 32px var(--pink-glow);
  --shadow-gold: 0 0 28px var(--gold-glow);

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.4s var(--ease-out);
}

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-500);
  background: var(--gray-900);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Subtle sparkle texture (flyer ornaments) */
.bg-sparkles {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    radial-gradient(1px 1px at 8% 12%, rgba(207, 14, 92, 0.5) 0, transparent 100%),
    radial-gradient(1px 1px at 92% 8%, rgba(232, 197, 71, 0.45) 0, transparent 100%),
    radial-gradient(1.5px 1.5px at 75% 45%, rgba(207, 14, 92, 0.35) 0, transparent 100%),
    radial-gradient(1px 1px at 20% 70%, rgba(232, 197, 71, 0.3) 0, transparent 100%),
    radial-gradient(1px 1px at 50% 90%, rgba(207, 14, 92, 0.25) 0, transparent 100%);
  opacity: 0.7;
}

main,
.site-header,
.site-footer {
  position: relative;
  z-index: 1;
}

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

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

ul { list-style: none; }

.container {
  width: var(--container);
  margin-inline: auto;
}

.script {
  font-family: var(--font-script);
  font-weight: 400;
}

.script-heading {
  font-family: var(--font-script);
  font-weight: 400;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1.15;
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 40%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 24px var(--gold-glow));
}

/* Page loader */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  background: var(--gray-950);
  transition: opacity 0.6s var(--ease-out), visibility 0.6s;
}

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

.loader-ring {
  width: 48px;
  height: 48px;
  border: 3px solid var(--gray-800);
  border-top-color: var(--pink-500);
  border-right-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}

.loader-text {
  font-family: var(--font-script);
  font-size: 1.8rem;
  background: linear-gradient(165deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.9) 0%, transparent 100%);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(26, 26, 29, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
  border-bottom: 1px solid rgba(207, 14, 92, 0.2);
  padding: 0.6rem 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-script {
  font-family: var(--font-script);
  font-size: 1.6rem;
  background: linear-gradient(165deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.logo-sans {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.25s;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--pink-400);
  border-radius: var(--radius-full);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--pink-300);
}

.nav-cta {
  background: var(--pink-500);
  color: var(--white) !important;
  padding: 0.55rem 1.5rem;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pink);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover {
  transform: translateY(-2px);
  background: var(--pink-400);
  box-shadow: 0 12px 40px var(--pink-glow);
  color: var(--white) !important;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn-primary {
  background: var(--pink-500);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: var(--shadow-pink);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.85rem;
}

.btn-primary:hover {
  transform: translateY(-3px);
  background: var(--pink-400);
  box-shadow: 0 14px 44px var(--pink-glow);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--pink-400);
}

.btn-outline:hover {
  background: rgba(207, 14, 92, 0.15);
  border-color: var(--pink-300);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--pink-500);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow-pink);
}

.btn-secondary:hover {
  background: var(--pink-400);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px var(--pink-glow);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn-disabled {
  opacity: 0.55;
  cursor: default;
  pointer-events: none;
}

.btn-full { width: 100%; }

.btn-whatsapp {
  background: #25d366;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.45);
}

.btn-large {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}

/* Hero — flyer-inspired dark + pink + gold */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--gray-950);
  padding: 6rem 0 4rem;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 15% 40%, rgba(207, 14, 92, 0.22) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 60%, rgba(232, 197, 71, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, var(--gray-950) 0%, var(--gray-900) 100%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 2.5rem;
  align-items: center;
  padding-top: 2rem;
}

.hero-content {
  text-align: center;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0.25rem;
}

.hero-title-main {
  font-size: clamp(2rem, 8vw, 3.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.05;
  color: var(--pink-400);
  text-shadow:
    -1px -1px 0 rgba(255, 255, 255, 0.9),
    1px -1px 0 rgba(255, 255, 255, 0.9),
    -1px 1px 0 rgba(255, 255, 255, 0.9),
    1px 1px 0 rgba(255, 255, 255, 0.9),
    0 0 40px var(--pink-glow);
}

.hero-title-script {
  font-size: clamp(2.8rem, 10vw, 5rem);
  line-height: 1.1;
  margin-top: 0.15rem;
  background: linear-gradient(165deg, var(--gold-light) 0%, var(--gold) 45%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px var(--gold-glow));
}

.hero-tagline {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--pink-300);
  margin-bottom: 1.25rem;
}

.hero-desc {
  max-width: 480px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-500);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-brand {
  display: flex;
  justify-content: center;
}

.hero-brand-frame {
  position: relative;
  max-width: 340px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    var(--shadow-lg),
    0 0 0 3px rgba(207, 14, 92, 0.35),
    0 0 60px var(--pink-glow);
  transition: transform 0.5s var(--ease-out);
}

.hero-brand-frame::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--pink-500), var(--gold));
  z-index: -1;
  opacity: 0.6;
}

.hero-brand-frame:hover {
  transform: scale(1.02) translateY(-4px);
}

.hero-brand-frame img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.25rem 1.75rem;
  background: var(--surface-raised);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(207, 14, 92, 0.25);
  max-width: 480px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--pink-300);
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--gray-400);
  letter-spacing: 0.05em;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(207, 14, 92, 0.35);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--pink-500), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    text-align: left;
  }

  .hero-content {
    text-align: left;
  }

  .hero-title {
    align-items: flex-start;
  }

  .hero-desc {
    margin-left: 0;
  }

  .hero-actions {
    justify-content: flex-start;
  }

  .hero-stats {
    margin-left: 0;
  }

  .hero-brand-frame {
    max-width: 420px;
  }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(0.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink-400);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-sub {
  max-width: 520px;
  margin: 0 auto;
  color: var(--gray-400);
}

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

/* About */
.about {
  background: var(--gray-900);
  border-top: 1px solid rgba(207, 14, 92, 0.15);
}

.about-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

.about-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

.about-img-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 40px var(--pink-glow);
  border: 2px solid rgba(207, 14, 92, 0.3);
  background: var(--surface-card);
  line-height: 0;
}

.about-img-wrap img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
  vertical-align: middle;
}

@media (min-width: 900px) {
  .about-visual {
    max-width: none;
    margin-inline: 0;
  }

  .about-img-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .about-img-wrap img {
    width: auto;
    max-width: 100%;
    max-height: min(85vh, 780px);
    height: auto;
  }
}

.about-accent-card {
  position: absolute;
  bottom: -1.5rem;
  right: -0.5rem;
  background: var(--pink-500);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-pink);
  max-width: 200px;
  border: 2px solid rgba(255, 255, 255, 0.25);
}

.about-accent-card .accent-icon {
  font-size: 1.2rem;
  color: var(--gold-light);
}

.about-accent-card p {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 0.25rem;
}

.about-text p {
  margin-bottom: 1rem;
  color: var(--gray-500);
}

.about-features {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--surface-card);
  border-radius: var(--radius-md);
  border: 1px solid rgba(207, 14, 92, 0.2);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s, border-color 0.3s;
}

.about-features li:hover {
  transform: translateX(6px);
  border-color: var(--pink-500);
  box-shadow: var(--shadow-pink);
}

.feature-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-features strong {
  display: block;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.15rem;
}

.about-features span {
  font-size: 0.85rem;
  color: var(--gray-400);
}

/* Treats */
.treats {
  background: var(--gray-950);
  border-top: 1px solid rgba(207, 14, 92, 0.1);
}

.treats-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.treat-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, border-color 0.4s;
}

.treat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg), 0 0 32px var(--pink-glow);
  border-color: rgba(207, 14, 92, 0.35);
}

.treat-img {
  position: relative;
  overflow: hidden;
}

.treat-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.treat-card:hover .treat-img img {
  transform: scale(1.06);
}

.treat-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--pink-500);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
}

.treat-body {
  padding: 1.5rem;
}

.treat-body h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.treat-body p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.treat-price {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--pink-300);
  letter-spacing: 0.04em;
}

/* Gallery */
.gallery {
  background: var(--gray-900);
  border-top: 1px solid rgba(207, 14, 92, 0.12);
}

.gallery-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.3s;
}

.gallery-item:hover {
  border-color: var(--pink-500);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 38, 35, 0.7), transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.4s;
}

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

.gallery-overlay span {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}

.gallery-item.wide {
  grid-column: span 2;
}

.gallery-item.tall {
  grid-row: span 2;
}

/* Gallery — one photo per treat category (5 items) */
.gallery-grid--five {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 900px) {
  .gallery-grid--five {
    grid-template-columns: repeat(6, 1fr);
    grid-auto-rows: 200px;
  }

  .gallery-grid--five .gallery-item:nth-child(1) {
    grid-column: span 3;
  }

  .gallery-grid--five .gallery-item:nth-child(2),
  .gallery-grid--five .gallery-item:nth-child(3) {
    grid-column: span 1;
  }

  .gallery-grid--five .gallery-item:nth-child(4) {
    grid-column: span 2;
  }

  .gallery-grid--five .gallery-item:nth-child(5) {
    grid-column: span 4;
  }

  .gallery-grid--five .gallery-item.wide {
    grid-column: span 3;
  }

  .gallery-grid--five .gallery-item:nth-child(5).wide {
    grid-column: span 4;
  }
}

.gallery-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Pricing */
.pricing {
  background: var(--gray-950);
}

.pricing-banner {
  background: linear-gradient(145deg, var(--gray-850) 0%, var(--gray-900) 40%, rgba(207, 14, 92, 0.25) 100%);
  border-radius: var(--radius-lg);
  padding: 2.5rem 1.5rem;
  color: var(--white);
  display: grid;
  gap: 2.5rem;
  border: 2px solid rgba(207, 14, 92, 0.35);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.pricing-content .section-label {
  color: var(--pink-300);
}

.pricing-content .section-title {
  color: var(--white);
}

.pricing-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 480px;
}

.pricing-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}

.pricing-perks li {
  font-size: 0.9rem;
  font-weight: 500;
}

.pricing-cards {
  display: grid;
  gap: 1rem;
}

.price-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  transition: transform 0.3s, background 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.15);
}

.price-card.featured {
  background: rgba(207, 14, 92, 0.2);
  border-color: var(--pink-500);
  box-shadow: 0 0 0 2px var(--pink-glow), var(--shadow-pink);
}

.price-popular {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--pink-500);
  color: var(--white);
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.price-tier {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.75rem;
}

.price-amount span {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: 0.7;
}

.price-card p {
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 1.25rem;
}

.price-card .btn {
  width: 100%;
}

/* Testimonials */
.testimonials {
  background: var(--gray-900);
  overflow: hidden;
  border-top: 1px solid rgba(207, 14, 92, 0.1);
}

.testimonials-track {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.testimonial-card {
  background: var(--surface-card);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--pink-500);
  border: 1px solid rgba(207, 14, 92, 0.15);
  border-left: 4px solid var(--pink-500);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pink);
}

.stars {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  font-style: italic;
  color: var(--gray-500);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.testimonial-card footer strong {
  display: block;
  font-weight: 600;
  color: var(--white);
}

.testimonial-card footer span {
  font-size: 0.85rem;
  color: var(--pink-300);
}

/* Contact */
.contact {
  background: var(--gray-950);
  border-top: 1px solid rgba(207, 14, 92, 0.15);
}

.contact-centered {
  text-align: center;
  max-width: 560px;
  margin-inline: auto;
}

.contact-intro {
  color: var(--gray-500);
  margin-bottom: 2rem;
  line-height: 1.75;
}

.contact-intro strong {
  color: var(--pink-300);
}

.whatsapp-card {
  background: var(--surface-card);
  border: 2px solid rgba(37, 211, 102, 0.35);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-md), 0 0 40px rgba(37, 211, 102, 0.12);
}

.whatsapp-owner {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.whatsapp-card .btn-large {
  width: 100%;
  max-width: 360px;
  margin-inline: auto;
}

.whatsapp-phone {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gray-500);
  transition: color 0.25s;
}

.whatsapp-phone:hover {
  color: var(--pink-300);
}

.contact-details--center {
  justify-content: center;
  margin-bottom: 1.5rem;
}

.social-links--center {
  justify-content: center;
}

.contact-grid {
  display: grid;
  gap: 3rem;
}

.contact-info p {
  color: var(--gray-500);
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--gray-500);
  transition: color 0.25s;
}

a.contact-link:hover {
  color: var(--pink-300);
}

.contact-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(207, 14, 92, 0.2);
  border: 1px solid rgba(207, 14, 92, 0.35);
  border-radius: var(--radius-sm);
  font-size: 1rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-links a,
.social-links .social-link-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-500);
  color: var(--white);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.25s, box-shadow 0.25s, background 0.25s;
}

.social-links .social-link-icon {
  opacity: 0.55;
  cursor: default;
}

.social-links a .social-icon,
.social-links .social-link-icon .social-icon {
  width: 22px;
  height: 22px;
  display: block;
}

.social-links a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-pink);
  background: var(--pink-400);
}

/* Form */
.contact-form {
  background: var(--surface-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(207, 14, 92, 0.2);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-500);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--white);
  background: var(--gray-900);
  border: 2px solid var(--gray-800);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--gray-400);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--pink-500);
  box-shadow: 0 0 0 4px var(--pink-glow);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-row {
  display: grid;
  gap: 1.25rem;
}

.form-note {
  text-align: center;
  font-size: 0.9rem;
  margin-top: 1rem;
  min-height: 1.4em;
}

.form-note.success { color: var(--pink-300); font-weight: 500; }

/* Footer */
.site-footer {
  background: var(--gray-950);
  color: var(--gray-400);
  padding: 3rem 0 2rem;
  text-align: center;
  border-top: 2px solid rgba(207, 14, 92, 0.3);
}

.footer-logo {
  font-size: 1.5rem;
  color: var(--white);
  display: inline-block;
  margin-bottom: 0.5rem;
}

.footer-logo .script {
  font-family: var(--font-script);
  background: linear-gradient(165deg, var(--gold-light), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-tagline {
  font-family: var(--font-script);
  font-size: 1.2rem;
  color: var(--pink-300);
  margin-bottom: 0.75rem;
}

.footer-social {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--pink-400);
  margin-bottom: 1.5rem;
  transition: color 0.25s;
}

.footer-social:hover {
  color: var(--gold);
}

.footer-whatsapp {
  display: block;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  transition: color 0.25s;
}

.footer-nav a:hover {
  color: var(--pink-400);
}

.footer-copy {
  font-size: 0.8rem;
  opacity: 0.6;
}

/* Scroll reveal animations */
.reveal,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal {
  transform: translateY(32px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0);
}

/* Stagger children */
.treats-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.treats-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.treats-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.treats-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.treats-grid .reveal:nth-child(5) { transition-delay: 0.16s; }

/* ============================================
   Responsive — Tablet
   ============================================ */
@media (min-width: 600px) {
  .treats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid {
    grid-auto-rows: 200px;
  }

  .pricing-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-track {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-track .testimonial-card:last-child {
    grid-column: span 2;
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

/* ============================================
   Responsive — Desktop
   ============================================ */
@media (min-width: 900px) {
  .nav-links {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .about-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .about-accent-card {
    right: -2rem;
  }

  .treats-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
  }

  .pricing-banner {
    grid-template-columns: 1fr 1.2fr;
    padding: 3.5rem;
    align-items: center;
  }

  .testimonials-track {
    grid-template-columns: repeat(3, 1fr);
  }

  .testimonials-track .testimonial-card:last-child {
    grid-column: auto;
    max-width: none;
    margin: 0;
  }

}

/* Mobile menu */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease-out), visibility 0.3s;
  pointer-events: none;
}

.nav-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.menu-open {
  overflow: hidden;
}

@media (max-width: 899px) {
  .nav-toggle {
    z-index: 1003;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(280px, 85vw);
    height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 5.5rem 1.75rem 2rem;
    list-style: none;
    background: var(--gray-950);
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
    border-left: 2px solid var(--pink-500);
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.35s var(--ease-out), visibility 0.35s;
    z-index: 1002;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-links.open {
    transform: translateX(0);
    visibility: visible;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0.65rem 0;
    font-size: 1.05rem;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-links .nav-cta {
    justify-content: center;
    margin-top: 1rem;
    width: 100%;
  }
}

/* Scroll to top */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--pink-500);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-pink);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.35s var(--ease-out), visibility 0.35s, transform 0.35s var(--ease-out), background 0.25s, box-shadow 0.25s;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--pink-400);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px var(--pink-glow);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

  html { scroll-behavior: auto; }

  .reveal, .reveal-left, .reveal-right {
    opacity: 1;
    transform: none;
  }

  .scroll-top {
    transition-duration: 0.01ms;
  }

  .scroll-top.visible {
    transform: none;
  }
}
