/* ============================================
   BigDay.by — Design System
   Aesthetic: Warm festive premium · terracotta + cream + gold
   ============================================ */

:root {
  /* Colors */
  --c-cream: #faf5ec;
  --c-cream-2: #f4ecd8;
  --c-ivory: #fffdf7;
  --c-terracotta: #c8542a;
  --c-terracotta-dark: #a8401d;
  --c-burgundy: #6b1e2c;
  --c-gold: #c9a04c;
  --c-gold-light: #e6c878;
  --c-ink: #2a1a1a;
  --c-ink-soft: #4a3838;
  --c-mute: #8a7a72;
  --c-line: #e8ddc7;
  --c-pink: #f4c8b4;
  --c-mint: #b8d4c0;
  --c-blue: #9bb8d4;

  /* Typography */
  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Manrope', system-ui, -apple-system, sans-serif;

  /* Spacing & layout */
  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(42, 26, 26, 0.06);
  --sh-md: 0 8px 24px rgba(42, 26, 26, 0.08);
  --sh-lg: 0 20px 48px rgba(42, 26, 26, 0.12);
  --sh-glow: 0 12px 32px rgba(200, 84, 42, 0.25);

  /* Transitions */
  --t-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --t-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============================================ RESET ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font: inherit; }

::selection { background: var(--c-terracotta); color: white; }

/* ============================================ LAYOUT ============================================ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}
.section--cream { background: var(--c-cream); }
.section--cream-2 { background: var(--c-cream-2); }
.section--dark {
  background: var(--c-burgundy);
  color: white;
  position: relative;
  overflow: hidden;
}
.section--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(201, 160, 76, 0.15), transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(200, 84, 42, 0.18), transparent 40%);
  pointer-events: none;
}

.section__head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}
.section__head--light { color: white; }

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-terracotta);
  margin-bottom: 16px;
}
.eyebrow--gold { color: var(--c-gold-light); }

.section__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.section__sub {
  font-size: 1.15rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}
.section__head--light .section__sub { color: rgba(255, 255, 255, 0.8); }

/* ============================================ TOP STRIP ============================================ */
.top-strip {
  background: var(--c-burgundy);
  color: var(--c-cream);
  font-size: 13px;
  font-weight: 500;
  padding: 8px 0;
}
.top-strip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.top-strip__phone {
  font-weight: 700;
  color: var(--c-gold-light);
  transition: color var(--t-base);
}
.top-strip__phone:hover { color: white; }

/* ============================================ HEADER ============================================ */
.header {
  background: rgba(255, 253, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow var(--t-base);
}
.header--scrolled { box-shadow: var(--sh-md); }
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  max-width: 1240px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--c-burgundy);
  flex-shrink: 0;
}
.logo__mark {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-terracotta), var(--c-burgundy));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.1rem;
  font-family: var(--f-body);
  box-shadow: 0 4px 12px rgba(200, 84, 42, 0.35);
}
.logo__text { letter-spacing: -0.01em; }
.logo__dot { color: var(--c-gold); }
.logo--light { color: var(--c-cream); }

.nav {
  display: flex;
  gap: 4px;
  align-items: center;
}
.nav__link {
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--c-ink-soft);
  border-radius: var(--r-pill);
  transition: all var(--t-base);
  position: relative;
}
.nav__link:hover {
  color: var(--c-terracotta);
  background: var(--c-cream);
}
.nav__link--active {
  color: var(--c-terracotta);
  font-weight: 600;
}
.nav__link--active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-terracotta);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
}
.burger span {
  display: block;
  height: 2px;
  background: var(--c-ink);
  border-radius: 2px;
  transition: all var(--t-base);
}
.burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2) { opacity: 0; }
.burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================ BUTTONS ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--f-body);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: all var(--t-base);
  white-space: nowrap;
  border: 2px solid transparent;
  text-align: center;
}
.btn--sm { padding: 10px 20px; font-size: 14px; }
.btn--lg { padding: 18px 36px; font-size: 16px; }

.btn--primary {
  background: var(--c-terracotta);
  color: white;
  box-shadow: var(--sh-glow);
}
.btn--primary:hover {
  background: var(--c-terracotta-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(200, 84, 42, 0.35);
}

.btn--secondary {
  background: var(--c-burgundy);
  color: white;
}
.btn--secondary:hover {
  background: #8a2839;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--c-ink);
  border-color: var(--c-ink);
}
.btn--ghost:hover {
  background: var(--c-ink);
  color: white;
}

.btn--white {
  background: white;
  color: var(--c-burgundy);
}
.btn--white:hover {
  background: var(--c-cream);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--outline-white:hover {
  background: white;
  color: var(--c-burgundy);
  border-color: white;
}

.btn--block { width: 100%; }

/* ============================================ HERO ============================================ */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(ellipse at top right, rgba(244, 200, 180, 0.4), transparent 60%),
    radial-gradient(ellipse at bottom left, rgba(230, 200, 120, 0.3), transparent 60%),
    linear-gradient(180deg, var(--c-ivory) 0%, var(--c-cream) 100%);
  overflow: hidden;
}

.hero__bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.confetti {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.confetti--1 { width: 12px; height: 12px; background: var(--c-terracotta); top: 15%; left: 8%; animation: float 6s ease-in-out infinite; }
.confetti--2 { width: 16px; height: 4px; background: var(--c-gold); top: 25%; right: 15%; transform: rotate(45deg); animation: float 7s ease-in-out infinite 0.5s; }
.confetti--3 { width: 10px; height: 10px; background: var(--c-burgundy); top: 70%; left: 12%; animation: float 8s ease-in-out infinite 1s; }
.confetti--4 { width: 20px; height: 6px; background: var(--c-pink); top: 50%; right: 8%; transform: rotate(-30deg); animation: float 9s ease-in-out infinite 1.5s; }
.confetti--5 { width: 8px; height: 8px; background: var(--c-mint); top: 80%; right: 25%; animation: float 7s ease-in-out infinite 2s; }
.confetti--6 { width: 14px; height: 4px; background: var(--c-blue); top: 35%; left: 45%; transform: rotate(60deg); animation: float 10s ease-in-out infinite 2.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

.hero__container {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero__content { animation: fadeInUp 0.8s ease-out; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-burgundy);
  margin-bottom: 24px;
  box-shadow: var(--sh-sm);
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--c-ink);
  margin-bottom: 24px;
}
.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-terracotta);
  position: relative;
  display: inline-block;
}
.hero__title em::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 4px;
  height: 8px;
  background: var(--c-gold-light);
  z-index: -1;
  opacity: 0.6;
  border-radius: 2px;
}

.hero__lead {
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
}
.hero__lead b { color: var(--c-burgundy); font-weight: 700; }

.hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero__trust {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
}
.trust-item__num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 2rem;
  color: var(--c-burgundy);
  line-height: 1;
}
.trust-item__label {
  font-size: 13px;
  color: var(--c-mute);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Hero visual */
.hero__visual {
  position: relative;
  height: 540px;
}
.hero__circle {
  position: absolute;
  border-radius: 50%;
}
.hero__circle--1 {
  width: 380px;
  height: 380px;
  background: linear-gradient(135deg, var(--c-terracotta), var(--c-burgundy));
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: var(--sh-lg);
}
.hero__circle--2 {
  width: 140px;
  height: 140px;
  background: var(--c-gold);
  top: 18%;
  right: 8%;
  opacity: 0.85;
}

.hero__card {
  position: absolute;
  background: white;
  border-radius: var(--r-lg);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--sh-lg);
  z-index: 2;
  animation: floatCard 4s ease-in-out infinite;
}
.hero__card-emoji { font-size: 2rem; }
.hero__card-text { font-size: 13px; color: var(--c-ink-soft); line-height: 1.4; }
.hero__card-text b { color: var(--c-burgundy); font-size: 15px; }

.hero__card--1 { top: 8%; left: 0; animation-delay: 0s; }
.hero__card--2 { bottom: 22%; left: 8%; animation-delay: 1.3s; }
.hero__card--3 { top: 38%; right: 0; animation-delay: 2.6s; }

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

.hero__balloon {
  position: absolute;
  font-size: 2.5rem;
  z-index: 1;
  animation: balloonFloat 8s ease-in-out infinite;
}
.hero__balloon--1 { top: 5%; right: 30%; animation-delay: 0s; }
.hero__balloon--2 { top: 15%; right: 0; animation-delay: 2s; font-size: 2rem; }
.hero__balloon--3 { bottom: 5%; right: 35%; animation-delay: 4s; font-size: 2.2rem; }

@keyframes balloonFloat {
  0%, 100% { transform: translateY(0) rotate(-5deg); }
  50% { transform: translateY(-20px) rotate(5deg); }
}

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

/* ============================================ SERVICES GRID ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.service-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 32px 26px;
  border: 1px solid var(--c-line);
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--c-gold-light), transparent);
  border-radius: 0 0 50% 0;
  opacity: 0;
  transition: opacity var(--t-base);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-terracotta);
}
.service-card:hover::before { opacity: 0.4; }

.service-card__icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--c-cream);
  border-radius: var(--r-md);
  transition: transform var(--t-bounce);
}
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.05); }

.service-card__title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-ink);
  margin-bottom: 8px;
}
.service-card__desc {
  font-size: 0.92rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.service-card__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-terracotta);
  transition: gap var(--t-base);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.service-card:hover .service-card__link { gap: 8px; }

/* ============================================ STEPS ============================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-terracotta) 0, var(--c-terracotta) 8px, transparent 8px, transparent 16px);
  z-index: 0;
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-terracotta);
  color: white;
  display: grid;
  place-items: center;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.4rem;
  margin: 0 auto 20px;
  box-shadow: var(--sh-glow);
  border: 4px solid var(--c-ivory);
}
.step__title {
  font-family: var(--f-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__desc {
  font-size: 0.95rem;
  color: var(--c-ink-soft);
  line-height: 1.6;
}

/* ============================================ TESTIMONIALS ============================================ */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}
.testimonial {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: transform var(--t-base);
}
.testimonial:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.1);
}
.testimonial__stars {
  color: var(--c-gold-light);
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 16px;
}
.testimonial__text {
  font-size: 1rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-gold), var(--c-terracotta));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--f-display);
}
.testimonial__name { font-weight: 600; font-size: 0.95rem; }
.testimonial__role {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

/* ============================================ CTA BAND ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--c-terracotta) 0%, var(--c-burgundy) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1), transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(201, 160, 76, 0.2), transparent 40%);
}
.cta-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.cta-band__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 8px;
}
.cta-band__sub { color: rgba(255, 255, 255, 0.85); font-size: 1.05rem; }
.cta-band__actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================ FOOTER ============================================ */
.footer {
  background: var(--c-ink);
  color: var(--c-cream);
  padding-top: 80px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer__about {
  font-size: 0.95rem;
  line-height: 1.65;
  color: rgba(250, 245, 236, 0.65);
  margin: 20px 0 24px;
  max-width: 320px;
}
.footer__title {
  font-family: var(--f-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-gold-light);
  margin-bottom: 20px;
}
.footer__link {
  display: block;
  font-size: 0.95rem;
  color: rgba(250, 245, 236, 0.7);
  padding: 6px 0;
  transition: color var(--t-base);
}
.footer__link:hover { color: var(--c-gold-light); }
.footer__link--strong { color: var(--c-gold-light); font-weight: 700; font-size: 1.05rem; }

.footer__socials {
  display: flex;
  gap: 10px;
}
.social {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(250, 245, 236, 0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  transition: all var(--t-base);
}
.social:hover {
  background: var(--c-terracotta);
  transform: translateY(-3px);
}

.footer__bottom {
  border-top: 1px solid rgba(250, 245, 236, 0.1);
  padding: 24px 0;
  font-size: 0.85rem;
  color: rgba(250, 245, 236, 0.5);
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer__small-link {
  color: rgba(250, 245, 236, 0.5);
  margin-left: 24px;
  transition: color var(--t-base);
}
.footer__small-link:hover { color: var(--c-gold-light); }

/* ============================================ FLOATING CALL ============================================ */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-terracotta);
  color: white;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  z-index: 90;
  box-shadow: var(--sh-glow);
  transition: transform var(--t-base);
}
.float-call:hover { transform: scale(1.1); }
.float-call__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--c-terracotta);
  animation: pulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ============================================ PAGE HEADERS (inner pages) ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.page-header::before, .page-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: var(--c-terracotta);
  opacity: 0.08;
}
.page-header::before { width: 320px; height: 320px; top: -100px; left: -80px; }
.page-header::after { width: 240px; height: 240px; bottom: -80px; right: -60px; background: var(--c-gold); opacity: 0.1; }
.page-header__crumbs {
  font-size: 13px;
  color: var(--c-mute);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-header__crumbs a { color: var(--c-terracotta); }
.page-header__crumbs a:hover { text-decoration: underline; }
.page-header__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.page-header__title em { color: var(--c-terracotta); font-style: italic; font-weight: 400; }
.page-header__sub {
  font-size: 1.15rem;
  color: var(--c-ink-soft);
  max-width: 680px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ============================================ TABS ============================================ */
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}
.tab {
  padding: 12px 24px;
  background: white;
  border: 1.5px solid var(--c-line);
  border-radius: var(--r-pill);
  font-weight: 600;
  font-size: 14px;
  color: var(--c-ink-soft);
  transition: all var(--t-base);
  cursor: pointer;
}
.tab:hover { border-color: var(--c-terracotta); color: var(--c-terracotta); }
.tab.is-active {
  background: var(--c-terracotta);
  color: white;
  border-color: var(--c-terracotta);
}

/* ============================================ CARD GRID (animators, cakes, gifts) ============================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card-grid--4 { grid-template-columns: repeat(4, 1fr); }

.product-card {
  background: white;
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--c-line);
  transition: all var(--t-base);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
  border-color: var(--c-terracotta);
}
.product-card__image {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  display: grid;
  place-items: center;
  font-size: 4.5rem;
  position: relative;
  overflow: hidden;
}
.product-card__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.6), transparent 60%);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: var(--c-terracotta);
  color: white;
  border-radius: var(--r-pill);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 1;
}
.product-card__badge--gold { background: var(--c-gold); color: var(--c-ink); }
.product-card__body { padding: 24px; flex-grow: 1; display: flex; flex-direction: column; }
.product-card__title {
  font-family: var(--f-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.3;
}
.product-card__desc {
  font-size: 0.9rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
  margin-bottom: 16px;
  flex-grow: 1;
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.product-card__price {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--c-burgundy);
}
.product-card__price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--c-mute);
  font-family: var(--f-body);
}

/* ============================================ FORM ============================================ */
.form-card {
  background: white;
  border-radius: var(--r-xl);
  padding: 48px;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--c-line);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-grid--full { grid-column: 1 / -1; }
.form-row { margin-bottom: 16px; }
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-ink-soft);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-cream);
  border: 1.5px solid transparent;
  border-radius: var(--r-md);
  font-size: 15px;
  color: var(--c-ink);
  transition: all var(--t-base);
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  background: white;
  border-color: var(--c-terracotta);
  box-shadow: 0 0 0 4px rgba(200, 84, 42, 0.1);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-help {
  font-size: 12px;
  color: var(--c-mute);
  margin-top: 6px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--c-ink-soft);
  cursor: pointer;
  line-height: 1.5;
}
.form-checkbox input { margin-top: 3px; }
.form-checkbox a { color: var(--c-terracotta); text-decoration: underline; }

/* ============================================ INFO BOX / FAQ ============================================ */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.info-card {
  background: white;
  border-radius: var(--r-lg);
  padding: 24px;
  border-left: 4px solid var(--c-terracotta);
  box-shadow: var(--sh-sm);
}
.info-card__icon { font-size: 1.8rem; margin-bottom: 8px; }
.info-card__title { font-weight: 700; margin-bottom: 4px; font-family: var(--f-display); font-size: 1.05rem; }
.info-card__desc { font-size: 0.9rem; color: var(--c-ink-soft); }

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}
.faq__item {
  background: white;
  border-radius: var(--r-md);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: all var(--t-base);
}
.faq__item.is-open { border-color: var(--c-terracotta); }
.faq__q {
  width: 100%;
  padding: 20px 24px;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--c-ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: color var(--t-base);
}
.faq__q:hover { color: var(--c-terracotta); }
.faq__icon {
  flex-shrink: 0;
  font-size: 1.3rem;
  color: var(--c-terracotta);
  transition: transform var(--t-base);
}
.faq__item.is-open .faq__icon { transform: rotate(45deg); }
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-base);
}
.faq__item.is-open .faq__a { max-height: 400px; }
.faq__a-inner {
  padding: 0 24px 20px;
  color: var(--c-ink-soft);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ============================================ CONTACTS ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-info {
  background: var(--c-burgundy);
  color: white;
  border-radius: var(--r-xl);
  padding: 48px;
  position: sticky;
  top: 100px;
}
.contact-info__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 12px;
  line-height: 1.2;
}
.contact-info__sub {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  line-height: 1.6;
}
.contact-info__list { display: flex; flex-direction: column; gap: 20px; }
.contact-info__item { display: flex; gap: 14px; align-items: flex-start; }
.contact-info__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.contact-info__label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--c-gold-light);
  margin-bottom: 2px;
  font-weight: 600;
}
.contact-info__val {
  font-weight: 600;
  font-size: 1.05rem;
  display: block;
  line-height: 1.4;
}
.contact-info__val a:hover { color: var(--c-gold-light); }

/* ============================================ PORTFOLIO ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  grid-auto-rows: 280px;
}
.gallery__item {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, var(--c-cream) 0%, var(--c-cream-2) 100%);
  display: grid;
  place-items: center;
  font-size: 5rem;
  cursor: pointer;
  transition: transform var(--t-base);
}
.gallery__item:hover { transform: scale(1.02); }
.gallery__item--tall { grid-row: span 2; }
.gallery__item--wide { grid-column: span 2; }
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(42, 26, 26, 0.85) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: white;
  opacity: 0;
  transition: opacity var(--t-base);
}
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__title { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; }
.gallery__meta { font-size: 0.85rem; opacity: 0.85; margin-top: 2px; }
.gallery__tag {
  display: inline-block;
  background: var(--c-terracotta);
  color: white;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
  align-self: flex-start;
}
.gallery__emoji {
  font-size: 5rem;
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.25));
  transition: transform var(--t-base);
}
.gallery__item:hover .gallery__emoji { transform: scale(1.15) rotate(-5deg); }
.gallery__item .gallery__overlay { opacity: 1; }
.gallery__item .gallery__emoji { opacity: 0.5; transition: opacity var(--t-base), transform var(--t-base); }
.gallery__item:hover .gallery__emoji { opacity: 1; }
@media (hover: none) {
  .gallery__overlay { opacity: 1; }
  .gallery__emoji { opacity: 1; }
}

/* ============================================ SUCCESS / ALERT ============================================ */
.alert {
  padding: 16px 20px;
  border-radius: var(--r-md);
  margin-bottom: 16px;
  display: none;
}
.alert.is-visible { display: block; animation: fadeInUp 0.4s ease-out; }
.alert--success { background: #e6f4ea; color: #1e6b3c; border-left: 4px solid #2ea356; }
.alert--error { background: #fde7e7; color: #8b1f1f; border-left: 4px solid #c84343; }

/* ============================================ RESPONSIVE ============================================ */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .card-grid--4 { grid-template-columns: repeat(3, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav { display: none; }
  .nav.is-open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: white;
    box-shadow: var(--sh-lg);
    padding: 16px;
    gap: 4px;
    border-top: 1px solid var(--c-line);
  }
  .nav.is-open .nav__link { padding: 14px 18px; border-radius: var(--r-md); }
  .burger { display: flex; }
  .header__inner { position: relative; }

  .hero { padding: 56px 0 80px; }
  .hero__container { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { height: 380px; max-width: 460px; margin: 0 auto; }
  .hero__circle--1 { width: 280px; height: 280px; }

  .testimonials { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3, .card-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .gallery__item--wide { grid-column: span 1; }

  .section { padding: 72px 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-info { position: static; padding: 32px; }
  .form-card { padding: 32px 24px; }
  .form-grid { grid-template-columns: 1fr; }

  .cta-band__inner { flex-direction: column; text-align: center; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 40px; }
  .footer { padding-top: 60px; }

  .top-strip__inner { justify-content: center; }
  .top-strip__item:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .services-grid, .card-grid--3, .card-grid--4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .hero__trust { gap: 28px; }
  .form-card { padding: 24px 20px; }
  .top-strip__item:not(.top-strip__phone) { display: none; }
  .top-strip__inner { justify-content: center; }
  .float-call { width: 54px; height: 54px; bottom: 18px; right: 18px; }
}

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