/* ============================================
   TATA CREATIONS — handcrafted party crafts
   ============================================ */

:root {
  /* Brand palette pulled from logo gradient */
  --teal: #2EC4B6;
  --teal-deep: #1A8F85;
  --magenta: #E63A9E;
  --magenta-deep: #B82A7E;
  --orange: #F77F4B;
  --gold: #F9C846;
  --purple: #9B5DE5;

  /* Surfaces */
  --cream: #FFF9F5;
  --cream-2: #FDF4F8;
  --paper: #FFFFFF;
  --ink: #2A1B3D;
  --ink-soft: #574A6B;
  --line: rgba(42, 27, 61, 0.10);

  /* Brand gradient */
  --grad-brand: linear-gradient(115deg, var(--teal) 0%, var(--purple) 30%, var(--magenta) 60%, var(--orange) 85%, var(--gold) 100%);
  --grad-soft: linear-gradient(135deg, #FFF9F5 0%, #FDF4F8 50%, #F5F3FF 100%);

  /* Type */
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --script: 'Caveat', cursive;

  /* Misc */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 40px;
  --shadow-sm: 0 4px 14px rgba(42, 27, 61, 0.08);
  --shadow-md: 0 14px 40px rgba(42, 27, 61, 0.12);
  --shadow-lg: 0 30px 80px rgba(42, 27, 61, 0.18);
  --transition: 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ====== TYPOGRAPHY HELPERS ====== */
.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variation-settings: 'opsz' 80, 'SOFT' 60;
}
.section-title em {
  font-style: italic;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-lead {
  font-size: 1.05rem;
  color: var(--ink-soft);
  max-width: 56ch;
  margin-top: 14px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--magenta);
  margin-bottom: 18px;
}
.eyebrow--light { color: rgba(255,255,255,0.85); }
.eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--grad-brand);
  box-shadow: 0 0 0 4px rgba(230, 58, 158, 0.15);
}
.signature {
  font-family: var(--script);
  font-size: 1.8rem;
  color: var(--magenta);
}

.section-head { margin-bottom: 56px; text-align: center; }
.section-head .section-lead { margin: 14px auto 0; }
.section-head--light { color: white; }
.section-head--light .section-title,
.section-head--light .section-lead { color: rgba(255,255,255,0.92); }
.section-head--light .section-title em {
  background: linear-gradient(115deg, #FFD86B, #FF9A8B, #FF6BCB);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 1rem; }
.btn--primary {
  background: var(--grad-brand);
  color: white;
  background-size: 200% 200%;
  background-position: 0% 50%;
  box-shadow: 0 10px 30px rgba(230, 58, 158, 0.35);
}
.btn--primary:hover {
  background-position: 100% 50%;
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(230, 58, 158, 0.45);
}
.btn--ghost {
  background: white;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn--ghost:hover {
  border-color: var(--magenta);
  color: var(--magenta);
  transform: translateY(-2px);
}

/* ============================================
   NAV
   ============================================ */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1240px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px 12px 20px;
  background: rgba(255, 249, 245, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 999px;
  box-shadow: 0 6px 30px rgba(42, 27, 61, 0.08);
  z-index: 100;
  transition: top var(--transition), box-shadow var(--transition);
}
.nav.is-scrolled {
  box-shadow: 0 10px 40px rgba(42, 27, 61, 0.15);
}
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 500;
  color: var(--ink);
}
.nav__brand img {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; background: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.nav__links {
  display: flex; gap: 28px;
}
.nav__links a {
  font-size: 0.92rem; font-weight: 500;
  color: var(--ink-soft);
  position: relative;
  transition: color var(--transition);
}
.nav__links a:hover { color: var(--magenta); }
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; background: var(--grad-brand);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--transition);
}
.nav__links a:hover::after { transform: scaleX(1); }

.nav__cta { padding: 10px 18px; font-size: 0.88rem; }
.nav__burger {
  display: none;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
}
.nav__burger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: 140px 0 80px;
  background: var(--grad-soft);
  overflow: hidden;
  isolation: isolate;
}
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  z-index: -1;
  animation: float 18s ease-in-out infinite;
}
.hero__blob--1 {
  width: 500px; height: 500px;
  background: var(--magenta);
  top: -100px; left: -150px;
  opacity: 0.25;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--teal);
  top: 200px; right: -100px;
  opacity: 0.22;
  animation-delay: -6s;
}
.hero__blob--3 {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -80px; left: 30%;
  opacity: 0.22;
  animation-delay: -12s;
}
@keyframes float {
  0%, 100% { transform: translate(0,0) scale(1); }
  33%  { transform: translate(40px, -30px) scale(1.05); }
  66%  { transform: translate(-30px, 30px) scale(0.95); }
}

.hero__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__copy { max-width: 600px; }
.hero__title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
  font-variation-settings: 'opsz' 100, 'SOFT' 50, 'WONK' 1;
}
.hero__title em {
  font-style: italic;
  font-family: var(--serif);
  font-variation-settings: 'opsz' 144;
}
.shine {
  background: var(--grad-brand);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 6s linear infinite;
}
@keyframes shimmer {
  0%   { background-position: 0% center; }
  100% { background-position: 200% center; }
}
.hero__lead {
  font-size: 1.1rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 52ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.hero__meta {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.hero__meta > div { display: flex; flex-direction: column; gap: 2px; }
.hero__meta strong {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--ink);
}
.hero__meta span {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
}

/* Hero collage */
.hero__collage {
  position: relative;
  width: 100%;
  height: 580px;
}
.hero__collage .card {
  position: absolute;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: white;
  transition: transform var(--transition);
}
.hero__collage .card img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.08) contrast(1.03);
}
.hero__collage .card--a {
  top: 0; left: 8%;
  width: 56%; aspect-ratio: 4/5;
  transform: rotate(-3deg);
  z-index: 2;
}
.hero__collage .card--b {
  top: 20%; right: 0;
  width: 50%; aspect-ratio: 4/5;
  transform: rotate(4deg);
  z-index: 3;
}
.hero__collage .card--c {
  bottom: 12%; left: 0;
  width: 38%; aspect-ratio: 1/1;
  transform: rotate(-6deg);
  z-index: 4;
  padding: 12px;
  background: white;
}
.hero__collage .card--c img {
  border-radius: var(--r-md);
}
.hero__collage .card--d {
  bottom: 0; right: 12%;
  width: 38%; aspect-ratio: 4/5;
  transform: rotate(6deg);
  z-index: 1;
}
.hero__collage .card:hover { transform: rotate(0) scale(1.03); z-index: 10; }

.float {
  position: absolute;
  font-size: 3rem;
  pointer-events: none;
  animation: spin 12s linear infinite;
  z-index: 5;
}
.float--star { top: 5%; right: 5%; color: var(--gold); animation-duration: 14s; }
.float--heart { bottom: 35%; right: -5%; color: var(--magenta); animation-duration: 10s; animation-direction: reverse; font-size: 2.5rem; }
.float--sparkle { top: 50%; left: -5%; color: var(--teal); font-size: 2rem; animation-duration: 8s; }
@keyframes spin {
  0% { transform: rotate(0deg) scale(1); }
  50% { transform: rotate(180deg) scale(1.2); }
  100% { transform: rotate(360deg) scale(1); }
}

/* Marquee */
.marquee {
  margin-top: 80px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  white-space: nowrap;
  animation: scroll-left 60s linear infinite;
  font-family: var(--serif);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 100;
}
.marquee__track span:nth-child(even) { color: var(--magenta); font-style: normal; }
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding: 120px 0;
  background: var(--cream);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 18px;
  max-width: 52ch;
}
.about__signature {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}
.ig-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #feda75, #fa7e1e, #d62976, #962fbf, #4f5bd5);
  color: white;
  font-size: 0.88rem;
  font-weight: 500;
  transition: transform var(--transition);
}
.ig-pill:hover { transform: scale(1.05); }

.about__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-xl);
  overflow: hidden;
}
.about__photo {
  width: 100%; height: 100%;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-2), white);
  box-shadow: var(--shadow-lg);
}
.about__photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
/* Variant for transparent PNG cutouts — center, contain, soft glow backdrop */
.about__photo--cutout {
  background:
    radial-gradient(circle at 50% 45%, rgba(230, 58, 158, 0.18) 0%, transparent 55%),
    radial-gradient(circle at 30% 80%, rgba(46, 196, 182, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 75% 20%, rgba(249, 200, 70, 0.18) 0%, transparent 50%),
    linear-gradient(135deg, #FFF6FB 0%, #FFFBF3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8% 10%;
}
.about__photo--cutout img {
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(42, 27, 61, 0.18))
          drop-shadow(0 8px 16px rgba(42, 27, 61, 0.10))
          saturate(1.1);
  animation: gentle-bob 6s ease-in-out infinite;
}
@keyframes gentle-bob {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50%      { transform: translateY(-12px) rotate(1deg); }
}
.about__badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-family: var(--script);
  font-size: 1.5rem;
  line-height: 1.1;
  box-shadow: var(--shadow-md);
  animation: pulse 4s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(-6deg); }
  50% { transform: scale(1.06) rotate(-3deg); }
}

/* ============================================
   PRODUCTS
   ============================================ */
.products {
  padding: 120px 0;
  background: var(--cream-2);
  background-image:
    radial-gradient(circle at 10% 10%, rgba(46, 196, 182, 0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(230, 58, 158, 0.06) 0%, transparent 40%);
}
.grid--products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product {
  background: white;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  isolation: isolate;
}
.product::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--accent, var(--magenta)) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
  border-radius: var(--r-lg);
}
.product:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(42, 27, 61, 0.15);
}
.product:hover::before { opacity: 0.06; }
.product__media {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: linear-gradient(135deg, #FFF, #FDF4F8);
}
.product__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.06) 100%);
  pointer-events: none;
}
.product__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.8s var(--transition);
  filter: saturate(1.1) contrast(1.04);
}
.product:hover .product__media img { transform: scale(1.06); }
.product__body { padding: 24px 26px 28px; }
.product__body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.product__body p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   PRICING
   ============================================ */
.pricing {
  padding: 120px 0;
  background: var(--cream);
  position: relative;
}
.price-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: start;
}
.price-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 26px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.price-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.price-card__icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: white;
  background: var(--accent, var(--magenta));
  box-shadow: 0 6px 16px color-mix(in srgb, var(--accent, var(--magenta)) 40%, transparent);
}
.price-card__head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}
.price-list {
  list-style: none;
}
.price-list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.price-list li + li { border-top: 1px dashed var(--line); }
.price-list li span { flex: 1; }
.price-list li span em { font-style: italic; color: var(--magenta); }
.price-list li b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--ink);
  white-space: nowrap;
}
.pricing__cta {
  margin-top: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.pricing__cta p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--ink-soft);
}

/* ============================================
   FEATURED
   ============================================ */
.featured {
  padding: 140px 0;
  background:
    radial-gradient(ellipse at top, rgba(155, 93, 229, 0.5) 0%, transparent 50%),
    linear-gradient(135deg, #1a0e2a 0%, #2A1B3D 50%, #4a1a3a 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(230, 58, 158, 0.15) 0%, transparent 25%),
    radial-gradient(circle at 80% 70%, rgba(46, 196, 182, 0.15) 0%, transparent 25%);
  pointer-events: none;
}
.featured__layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}
.featured__hero {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}
.featured__hero img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1);
}
.featured__side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.featured__side > * {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.featured__side img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.1);
}

.featured__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.featured__list > div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.featured__list strong {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
  background: linear-gradient(135deg, var(--gold), var(--magenta));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}
.featured__list span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
}

/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: 120px 0;
  background: var(--cream);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--magenta), var(--orange), var(--gold));
  opacity: 0.2;
  z-index: 0;
}
.step {
  position: relative;
  background: white;
  padding: 32px 26px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
  z-index: 1;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.step__num {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  font-weight: 400;
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}
.step h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ============================================
   PRAISE MARQUEE
   ============================================ */
.praise {
  padding: 50px 0;
  background: var(--grad-brand);
  overflow: hidden;
}
.praise__track {
  display: flex;
  gap: 60px;
  animation: scroll-left 50s linear infinite;
  white-space: nowrap;
}
.praise__item {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: white;
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-variation-settings: 'opsz' 80;
}
.praise__item span {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 120px 0;
  background: var(--cream-2);
  position: relative;
}
.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.contact__copy p {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 18px;
  margin-bottom: 36px;
  max-width: 48ch;
}
.contact__channels {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 22px;
  border-radius: var(--r-md);
  background: white;
  border: 1px solid var(--line);
  transition: transform var(--transition), box-shadow var(--transition);
}
.channel:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-sm);
}
.channel__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel strong {
  display: block;
  font-family: var(--sans);
  font-size: 0.95rem;
  margin-bottom: 2px;
}
.channel span {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.contact__form {
  background: white;
  padding: 40px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.contact__form h3 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 28px;
  letter-spacing: -0.01em;
}
.contact__form label {
  display: block;
  margin-bottom: 18px;
}
.contact__form label span {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: var(--cream);
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  transition: border-color var(--transition);
}
.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: var(--magenta);
}
.contact__form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact__form .btn { width: 100%; margin-top: 8px; }
.form__note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 12px;
}

/* ============================================
   FOOTER
   ============================================ */
.foot {
  padding: 80px 0 32px;
  background: var(--ink);
  color: rgba(255,255,255,0.7);
}
.foot__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.foot__brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: white;
  margin-bottom: 14px;
}
.foot__brand img {
  width: 40px; height: 40px; border-radius: 50%;
  background: white;
  object-fit: cover;
}
.foot__tag {
  font-family: var(--script);
  font-size: 1.4rem;
  color: var(--magenta);
}
.foot h4 {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: white;
  margin-bottom: 16px;
}
.foot a {
  display: block;
  padding: 6px 0;
  font-size: 0.92rem;
  transition: color var(--transition);
}
.foot a:hover { color: white; }
.foot__bottom {
  padding-top: 28px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 50;
  animation: wa-pulse 2.5s ease-in-out infinite;
  transition: transform var(--transition);
}
.wa-float:hover { transform: scale(1.1); }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--transition), transform 0.8s var(--transition);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__collage { height: 460px; max-width: 540px; margin: 0 auto; }
  .hero { padding: 120px 0 60px; }
  .about__grid { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 480px; margin: 0 auto; }
  .grid--products { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .featured__layout { grid-template-columns: 1fr; }
  .featured__side { grid-template-rows: auto; grid-template-columns: 1fr 1fr; }
  .featured__list { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .steps::before { display: none; }
  .contact__grid { grid-template-columns: 1fr; gap: 50px; }
  .foot__grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__burger { display: flex; }

  .nav__links.is-open {
    display: flex; flex-direction: column;
    position: absolute; top: 70px; left: 0; right: 0;
    background: white;
    border-radius: var(--r-md);
    padding: 24px;
    box-shadow: var(--shadow-md);
    gap: 16px;
  }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero { padding: 110px 0 50px; }
  .hero__meta { gap: 18px; }
  .hero__meta strong { font-size: 1.4rem; }
  .grid--products { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; }
  .featured__side { grid-template-columns: 1fr; }
  .featured__list { grid-template-columns: 1fr; gap: 14px; }
  .steps { grid-template-columns: 1fr; }
  .praise__item { font-size: 1.1rem; }
  .contact__form { padding: 28px; }
  .contact__form .row { grid-template-columns: 1fr; }
  .about__badge { width: 140px; height: 140px; font-size: 1.2rem; bottom: -10px; right: -10px; }
  .foot__grid { grid-template-columns: 1fr; gap: 28px; }
  .marquee__track { font-size: 1.1rem; gap: 20px; }
}
