/* ============================================
   Floral Pop — Stylesheet
   Brand: light pink · white · gold
   ============================================ */

/* Palette and fonts sampled from floralpop.shop */
:root {
  --pink-50:  #FBF4F5;
  --pink-100: #F5E4E7;
  --pink-200: #ECB0B6;   /* primary brand blush */
  --pink-300: #DEB7C2;   /* soft rose */
  --pink-400: #BC909D;   /* dusty pink */
  --pink-500: #9A4458;   /* mauve */
  --gold-300: #8E2840;   /* wine highlight */
  --gold-400: #5C1B2E;   /* primary wine accent */
  --gold-500: #3C131E;   /* deep wine */
  --ink-900: #2A1A1E;
  --ink-700: #4A4840;
  --ink-500: #858176;
  --ink-300: #CEC9B9;
  --bg: #F4F2EC;         /* cream */
  --white: #FFFEFB;
  --champagne: #E7E2D2;
  --shadow-sm: 0 2px 8px rgba(60, 19, 30, 0.06);
  --shadow-md: 0 10px 30px rgba(60, 19, 30, 0.10);
  --shadow-lg: 0 28px 70px rgba(60, 19, 30, 0.18);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 28px;
  --serif: 'Archivo', -apple-system, BlinkMacSystemFont, sans-serif;
  --sans:  'Outfit',  -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

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

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ----- Typography ----- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 800;
  line-height: 1.05;
  color: var(--ink-900);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem);
  letter-spacing: -0.015em;
  font-weight: 900;
}
h1 em {
  font-style: normal;
  color: var(--gold-400);
  display: inline-block;
}

h2.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 12px;
  font-weight: 800;
}
h2.section-title.left { text-align: left; }

h3 { font-weight: 700; font-size: 1.2rem; letter-spacing: 0.02em; }
h4 { font-weight: 700; font-size: 0.95rem; letter-spacing: 0.04em; }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

.section-sub {
  text-align: center;
  color: var(--ink-700);
  max-width: 580px;
  margin: 0 auto 48px;
  font-size: 1.05rem;
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 100px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-ghost {
  background: var(--white);
  color: var(--ink-900);
  border: 1px solid var(--pink-200);
}
.btn-ghost:hover { background: var(--pink-50); border-color: var(--pink-300); }
.btn.full { width: 100%; }

.link-arrow {
  display: inline-block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--gold-500);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}
.link-arrow:hover { color: var(--pink-500); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(251, 244, 245, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(236, 176, 182, 0.25);
  transition: all 0.3s;
}
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink-900);
}
.brand-mark {
  font-size: 1.4rem;
  color: var(--gold-400);
  display: inline-block;
  line-height: 1;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--ink-700);
  text-decoration: none;
  font-size: 0.93rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-500); }
.cart-pill {
  background: var(--pink-100);
  padding: 8px 16px !important;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-900) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--ink-900);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background:
    radial-gradient(ellipse at 20% 15%, rgba(236, 176, 182, 0.45), transparent 55%),
    radial-gradient(ellipse at 85% 75%, rgba(231, 226, 210, 0.55), transparent 55%),
    linear-gradient(180deg, #FBF4F5 0%, #F4F2EC 70%);
  overflow: hidden;
}

.hero-content {
  max-width: 820px;
  position: relative;
  z-index: 3;
  animation: fadeUp 1s ease-out;
}

.hero-content .lede {
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-700);
  margin: 28px auto 40px;
  max-width: 580px;
  font-weight: 400;
  line-height: 1.65;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-meta {
  display: flex;
  gap: 48px;
  justify-content: center;
  margin-top: 56px;
  flex-wrap: wrap;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-meta strong {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold-400);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-meta span {
  font-size: 0.85rem;
  color: var(--ink-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* Floating balloons in hero */
.hero-balloons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.balloon {
  position: absolute;
  width: 70px;
  height: 88px;
  border-radius: 50% 50% 48% 48%;
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
.balloon::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid currentColor;
  opacity: 0.7;
}
.balloon::after {
  content: '';
  position: absolute;
  top: 12px;
  left: 18px;
  width: 14px;
  height: 18px;
  background: rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  filter: blur(1px);
}
/* Sizing via width/height (transform is reserved for the float animation) */
.b1  { top: 12%;    left: 6%;   width: 70px; height: 88px; background: var(--pink-200); color: var(--pink-300); animation-delay: 0s; }
.b2  { top: 22%;    right: 9%;  width: 56px; height: 70px; background: #F4E4C1;         color: #C8A85C;          animation-delay: 1.2s; }
.b3  { bottom: 22%; left: 12%;  width: 50px; height: 62px; background: var(--pink-100); color: var(--pink-200); animation-delay: 2.4s; }
.b4  { top: 50%;    right: 4%;  width: 42px; height: 52px; background: #FBE4E7;         color: var(--pink-300); animation-delay: 3.6s; }
.b5  { bottom: 35%; right: 22%; width: 36px; height: 44px; background: #F4E4C1;         color: #C8A85C;          animation-delay: 1.8s; }
.b6  { top: 7%;     left: 38%;  width: 38px; height: 48px; background: #FFCDB0;         color: #BC8F7A;          animation-delay: 2.6s; }
.b7  { top: 36%;    left: 20%;  width: 44px; height: 56px; background: #F4A6B8;         color: var(--pink-400); animation-delay: 4.2s; }
.b8  { bottom: 12%; right: 38%; width: 40px; height: 50px; background: var(--pink-300); color: var(--pink-400); animation-delay: 0.5s; }
.b9  { top: 62%;    left: 4%;   width: 32px; height: 40px; background: var(--pink-200); color: var(--pink-400); animation-delay: 5.1s; }
.b10 { top: 16%;    left: 64%;  width: 38px; height: 48px; background: #D8C4DE;         color: #A38FAB;          animation-delay: 3.8s; }
.b11 { bottom: 28%; left: 58%;  width: 46px; height: 58px; background: var(--pink-300); color: var(--pink-500); animation-delay: 1.4s; }
.b12 { top: 44%;    left: 8%;   width: 30px; height: 38px; background: var(--gold-300); color: var(--gold-400); animation-delay: 4.6s; }

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

/* ----- Background flowers (decorative) ----- */
.hero-flower {
  position: absolute;
  display: block;
  pointer-events: none;
  z-index: 1;
  animation: flowerDrift 14s ease-in-out infinite;
  will-change: transform;
}
.hero-flower svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-flower.leaf { color: #B5C5A5; }

/* Positions, sizes, colors, timing offsets */
.hf1  { top: 6%;    left: 14%;  width: 64px; height: 64px; color: #ECB0B6; opacity: 0.55; animation-delay: 0s;   }
.hf2  { top: 14%;   left: 48%;  width: 42px; height: 42px; color: #DEB7C2; opacity: 0.45; animation-delay: 2.1s; }
.hf3  { top: 9%;    right: 16%; width: 56px; height: 56px; color: #ECB0B6; opacity: 0.50; animation-delay: 3.6s; }
.hf4  { top: 30%;   left: 3%;   width: 36px; height: 36px;                opacity: 0.50; animation-delay: 1.4s; }
.hf5  { top: 48%;   left: 30%;  width: 46px; height: 46px; color: #DEB7C2; opacity: 0.45; animation-delay: 5.2s; }
.hf6  { top: 42%;   right: 8%;  width: 52px; height: 52px; color: #BC909D; opacity: 0.40; animation-delay: 2.8s; }
.hf7  { top: 30%;   right: 38%; width: 32px; height: 32px;                opacity: 0.50; animation-delay: 6.2s; }
.hf8  { bottom: 14%; left: 36%; width: 38px; height: 38px; color: #ECB0B6; opacity: 0.50; animation-delay: 4.4s; }
.hf9  { bottom: 22%; right: 4%; width: 58px; height: 58px; color: #DEB7C2; opacity: 0.50; animation-delay: 0.9s; }
.hf10 { bottom: 8%;  left: 10%; width: 42px; height: 42px;                opacity: 0.55; animation-delay: 3.2s; }

@keyframes flowerDrift {
  0%, 100% { transform: translateY(0)    rotate(-6deg); }
  50%      { transform: translateY(-14px) rotate(6deg); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Brand image showcase (real Floral Pop imagery from Wix CDN) */
.hero-showcase {
  position: relative;
  z-index: 2;
  margin-top: 64px;
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--champagne);
}
.showcase-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(60, 19, 30, 0.08);
  pointer-events: none;
}
.showcase-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Editorial 13-photo cinematic strip — 7 cols × 2 rows w/ feature center */
.showcase-collage {
  width: 100%;
  aspect-ratio: 12 / 5;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1.5fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
    "c11 c21 c31 feat c51 c61 c71"
    "c12 c22 c32 feat c52 c62 c72";
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(236, 176, 182, 0.35), rgba(231, 226, 210, 0.55));
  box-shadow: var(--shadow-lg);
}
.collage-cell {
  overflow: hidden;
  border-radius: var(--radius-sm);
  background: var(--pink-100);
  position: relative;
  isolation: isolate;
}
.collage-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.34, 1.15, 0.64, 1);
}
.collage-cell:hover { z-index: 2; }
.collage-cell:hover img { transform: scale(1.06); }
.collage-feature { border-radius: var(--radius-md); }
.collage-feature::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-md);
  box-shadow: inset 0 0 0 1px rgba(60, 19, 30, 0.15);
  pointer-events: none;
}

@media (max-width: 900px) {
  .showcase-collage {
    aspect-ratio: auto;
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "feat feat feat"
      "c11 c21 c31"
      "c12 c22 c32"
      "c51 c61 c71"
      "c52 c62 c72";
    gap: 6px;
    padding: 6px;
  }
  .collage-cell { aspect-ratio: 1 / 1; }
  .collage-feature { aspect-ratio: 16 / 10; }
}
@media (max-width: 480px) {
  .showcase-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      "feat feat"
      "c11 c21"
      "c31 c12"
      "c22 c32"
      "c51 c61"
      "c71 c52"
      "c62 c72";
  }
}
.bar-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-500);
  margin-top: 28px;
  font-weight: 500;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  padding: 100px 0;
  background: var(--white);
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  padding: 40px 32px;
  background: var(--pink-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-100);
  text-align: center;
  transition: all 0.3s;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink-200);
}
.service-card.highlight {
  background: linear-gradient(135deg, var(--pink-100), #fff);
  border-color: var(--gold-300);
}
.service-icon {
  font-size: 2.6rem;
  margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--ink-700);
  font-size: 0.96rem;
}

/* ============================================
   BALLOON BUILDER
   ============================================ */
.builder {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--pink-50), var(--bg));
}
.builder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 24px;
}
.builder-controls,
.flower-form {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
}
.control-block { margin-bottom: 28px; }
.control-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.hint {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--ink-500);
  font-size: 0.85rem;
  margin-left: 8px;
}

/* Size buttons */
.size-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.size-options-flowers {
  grid-template-columns: repeat(3, 1fr);
}
.size-btn {
  background: var(--white);
  border: 2px solid var(--pink-100);
  padding: 16px 8px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-family: var(--sans);
}
.size-btn strong {
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink-900);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.size-btn span {
  font-size: 0.78rem;
  color: var(--ink-500);
}
.size-btn:hover { border-color: var(--pink-300); }
.size-btn.active {
  border-color: var(--gold-400);
  background: linear-gradient(180deg, #fff, var(--pink-50));
  box-shadow: var(--shadow-sm);
}

/* Color swatches */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 8px;
}
.swatch {
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  position: relative;
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.08), 0 2px 4px rgba(0,0,0,0.06);
}
.swatch:hover { transform: scale(1.15); }
.swatch.selected {
  border-color: var(--gold-400);
  transform: scale(1.1);
  box-shadow: inset 0 -4px 8px rgba(0,0,0,0.08), 0 0 0 3px var(--white), 0 0 0 5px var(--gold-400);
}
.swatch.selected::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
}

/* Check boxes */
.check-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--pink-100);
  background: var(--pink-50);
  font-size: 0.93rem;
  transition: all 0.2s;
}
.check:hover { background: var(--pink-100); }
.check input { accent-color: var(--gold-400); width: 16px; height: 16px; }

/* Builder summary */
.builder-summary {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--pink-100);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.93rem;
  color: var(--ink-700);
}
.summary-row.total {
  border-top: 1px solid var(--pink-100);
  margin-top: 8px;
  padding-top: 16px;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink-900);
}
.summary-row.total span:last-child { color: var(--gold-400); font-family: var(--serif); font-size: 1.4rem; font-weight: 800; }
.builder-summary .btn { margin-top: 20px; }

/* Builder preview */
.builder-preview {
  background: linear-gradient(180deg, #fff, var(--pink-50));
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  position: sticky;
  top: 100px;
}
.preview-stage {
  position: relative;
  height: 460px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
}
.balloon-cluster {
  position: relative;
  width: 320px;
  max-width: 100%;
  height: 440px;
}
.cluster-strings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  overflow: visible;
}
.balloon-wrap {
  position: absolute;
  width: 56px;
  height: 70px;
  margin-left: -28px;  /* center on left position */
  z-index: 2;
  transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
              top 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.cluster-balloon {
  width: 100%;
  height: 100%;
  border-radius: 50% 50% 48% 48%;
  position: relative;
  animation: floatBalloon 5s ease-in-out infinite;
  box-shadow: inset -6px -10px 14px rgba(0,0,0,0.14), 0 4px 8px rgba(0,0,0,0.05);
  transform-origin: 50% 95%;
}
.cluster-balloon::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 7px solid currentColor;
  opacity: 0.75;
  filter: brightness(0.85);
}
.cluster-balloon::after {
  content: '';
  position: absolute;
  top: 10px;
  left: 12px;
  width: 14px;
  height: 18px;
  background: rgba(255,255,255,0.55);
  border-radius: 50%;
  filter: blur(1.5px);
}
@keyframes floatBalloon {
  0%, 100% { transform: translateY(0) rotate(-3deg); }
  25%      { transform: translateY(-4px) rotate(1deg); }
  50%      { transform: translateY(-7px) rotate(3deg); }
  75%      { transform: translateY(-3px) rotate(-1deg); }
}

.cluster-tie {
  position: absolute;
  left: 50%;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  background: var(--gold-500);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.15), inset 0 -2px 3px rgba(0,0,0,0.2);
  z-index: 3;
}
.cluster-weight {
  position: absolute;
  left: 50%;
  margin-left: -25px;
  width: 50px;
  height: 28px;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  border-radius: 8px 8px 4px 4px;
  display: none;
  box-shadow: var(--shadow-sm);
  z-index: 3;
}
.cluster-weight.show { display: block; }
.cluster-weight::before {
  content: 'FP';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--serif);
  font-weight: 600;
  font-size: 0.85rem;
}
.cluster-ribbon-tail {
  position: absolute;
  left: 50%;
  width: 2px;
  margin-left: -1px;
  background: linear-gradient(180deg, var(--gold-400), transparent);
  z-index: 2;
  border-radius: 2px;
  opacity: 0.7;
  animation: ribbonSway 4s ease-in-out infinite;
  transform-origin: 50% 0%;
}
@keyframes ribbonSway {
  0%, 100% { transform: rotate(-4deg); }
  50%      { transform: rotate(4deg); }
}
.preview-caption {
  text-align: center;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-500);
  margin-top: 18px;
  font-size: 0.74rem;
  font-weight: 500;
}

/* ============================================
   FLOWER ORDER
   ============================================ */
.flower-order {
  padding: 100px 0;
  background: var(--white);
}
.flower-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
}
.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.theme-btn {
  background: var(--white);
  border: 2px solid var(--pink-100);
  padding: 14px 10px;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
}
.theme-btn:hover { border-color: var(--pink-300); }
.theme-btn.active {
  border-color: var(--gold-400);
  background: linear-gradient(180deg, #fff, var(--pink-50));
}
.theme-dots {
  display: flex;
  gap: 4px;
}
.theme-dots i {
  display: block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.1);
}
.theme-btn span {
  font-size: 0.82rem;
  color: var(--ink-700);
  font-weight: 500;
}
textarea {
  width: 100%;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  resize: vertical;
  background: var(--white);
  transition: border-color 0.2s;
}
textarea:focus { outline: none; border-color: var(--gold-400); }

/* Bouquet preview */
.bouquet-preview {
  position: sticky;
  top: 100px;
  background: linear-gradient(180deg, var(--pink-50), #fff);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--pink-100);
  text-align: center;
}
.bouquet-vase {
  position: relative;
  height: 420px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}
.bouquet-flowers {
  position: relative;
  width: 220px;
  height: 240px;
  margin-bottom: -20px;
}
.bouquet-flowers .flower {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  filter: drop-shadow(0 3px 4px rgba(0,0,0,0.15))
          drop-shadow(0 1px 1px rgba(0,0,0,0.08));
  animation: bouquetSway 4s ease-in-out infinite;
  transform-origin: 50% 90%;
  transition: left 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
              top 0.45s cubic-bezier(0.34, 1.4, 0.64, 1),
              width 0.3s ease, height 0.3s ease,
              font-size 0.3s ease;
  --rot: 0deg;
}
@keyframes bouquetSway {
  0%, 100% { transform: rotate(calc(var(--rot) - 2deg)); }
  50%      { transform: rotate(calc(var(--rot) + 2deg)); }
}
.vase-shape {
  width: 140px;
  height: 110px;
  background: linear-gradient(180deg, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0.6) 100%);
  border-radius: 12px 12px 50% 50% / 12px 12px 30% 30%;
  border-top: 3px solid var(--gold-400);
  position: relative;
  box-shadow: var(--shadow-md);
}
.vase-shine {
  position: absolute;
  bottom: 30px;
  left: calc(50% - 50px);
  width: 8px;
  height: 60px;
  background: rgba(255,255,255,0.5);
  border-radius: 4px;
  filter: blur(1px);
}

/* ============================================
   DELIVERY
   ============================================ */
.delivery {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), var(--pink-50));
}
.delivery-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list {
  list-style: none;
  margin-top: 24px;
}
.check-list li {
  padding: 8px 0 8px 28px;
  position: relative;
  color: var(--ink-700);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 8px;
  color: var(--gold-400);
  font-weight: 700;
  font-size: 1.1rem;
}
.zip-check {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--pink-100);
}
.zip-check h3 { font-size: 1.4rem; margin-bottom: 20px; }
.zip-input-row {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
}
.zip-input-row input,
.row-2 input, .row-2 select,
.checkout-form input, .checkout-form select,
.contact-form input, .contact-form select,
.payment-block input {
  flex: 1;
  border: 2px solid var(--pink-100);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 0.95rem;
  background: var(--white);
  width: 100%;
  transition: border-color 0.2s;
}
.zip-input-row input:focus,
.row-2 input:focus, .row-2 select:focus,
.checkout-form input:focus, .checkout-form select:focus,
.contact-form input:focus, .contact-form select:focus,
.payment-block input:focus {
  outline: none;
  border-color: var(--gold-400);
}
.zip-result {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  min-height: 24px;
}
.zip-result.success { background: #e8f5e8; color: #2d6e2d; }
.zip-result.warning { background: var(--pink-100); color: var(--pink-500); }
.zip-map {
  position: relative;
  height: 180px;
  margin-top: 20px;
  background: linear-gradient(135deg, #f0f4ef, #e8f0e6);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-radius {
  width: 140px;
  height: 140px;
  border: 2px dashed var(--gold-400);
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  animation: pulseMap 3s ease-in-out infinite;
}
@keyframes pulseMap {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
}
.map-center {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--gold-400);
  border-radius: 50%;
  border: 3px solid var(--white);
  box-shadow: var(--shadow-md);
}
.map-label {
  position: absolute;
  bottom: 16px;
  font-size: 0.78rem;
  color: var(--ink-500);
  font-weight: 500;
}

/* ============================================
   CART
   ============================================ */
.cart {
  padding: 100px 0;
  background: var(--white);
}
.cart-wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 24px;
}
.cart-items {
  background: var(--pink-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  min-height: 200px;
}
.cart-empty {
  color: var(--ink-500);
  text-align: center;
  padding: 40px 20px;
  font-family: var(--sans);
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}
.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  align-items: center;
  border: 1px solid var(--pink-100);
}
.cart-item-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--pink-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.cart-item-desc {
  font-size: 0.85rem;
  color: var(--ink-500);
}
.cart-item-price {
  font-weight: 600;
  color: var(--gold-500);
  font-size: 1.05rem;
}
.cart-item-remove {
  background: none;
  border: none;
  color: var(--ink-300);
  cursor: pointer;
  font-size: 1.2rem;
  padding: 4px 8px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--pink-500); }

.cart-summary {
  background: linear-gradient(180deg, var(--pink-50), #fff);
  padding: 32px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-100);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 100px;
}
.cart-summary h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--pink-100);
}
.checkout-form {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--pink-100);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.payment-block {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px dashed var(--pink-100);
}
.pay-title {
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-900);
  margin-bottom: 12px;
}
.card-row { margin-bottom: 10px; }
.pay-methods {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.pay-methods span {
  font-size: 0.82rem;
  color: var(--ink-500);
}
.pay-btn {
  padding: 8px 14px;
  border: 1px solid var(--ink-300);
  background: var(--white);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  cursor: pointer;
  font-family: var(--sans);
  transition: all 0.2s;
}
.pay-btn:hover { border-color: var(--gold-400); background: var(--pink-50); }
.secure-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--ink-500);
  margin-top: 12px;
}

/* ============================================
   EVENT CALLOUT (flower bar cart graphic + CTA)
   ============================================ */
.event-callout {
  margin-top: 64px;
  padding: 44px 48px;
  background: linear-gradient(135deg, var(--pink-50) 0%, var(--champagne) 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--pink-200);
  display: grid;
  grid-template-columns: minmax(0, 260px) 1fr;
  gap: 48px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.event-callout-graphic {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flower-bar-stand {
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(60, 19, 30, 0.10));
}
.event-callout-text h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
  color: var(--gold-400);
}
.event-callout-text > p {
  color: var(--ink-700);
  margin-bottom: 24px;
  font-size: 1rem;
  line-height: 1.7;
}
/* Alt variant: text on left, graphic on right */
.event-callout-alt {
  grid-template-columns: 1fr minmax(0, 260px);
  margin-top: 32px;
  background: linear-gradient(135deg, var(--champagne) 0%, var(--pink-50) 100%);
}
.callout-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 720px) {
  .callout-cta-group { justify-content: center; }
}
.workshop-scene {
  width: 100%;
  max-width: 240px;
  height: auto;
  filter: drop-shadow(0 6px 12px rgba(60, 19, 30, 0.10));
}

@media (max-width: 720px) {
  .event-callout {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 24px;
    text-align: center;
  }
  .event-callout-graphic { order: -1; }
  .flower-bar-stand,
  .workshop-scene { max-width: 200px; }
}

/* ============================================
   LOGO STRIP (client logos under hero)
   ============================================ */
.logo-strip {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
  min-height: 32px;
}
.logo-strip-empty {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--ink-500);
  font-style: normal;
  letter-spacing: 0.04em;
}
.logo-tile {
  position: relative;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s ease;
}
.logo-tile:hover { filter: grayscale(0) opacity(1); }
.logo-tile img {
  height: 100%;
  width: auto;
  max-width: 120px;
  object-fit: contain;
  display: block;
}
.logo-tile-remove {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(60, 19, 30, 0.85);
  color: var(--white);
  border: none;
  font-size: 0.8rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.logo-tile:hover .logo-tile-remove { opacity: 1; }

.logo-upload-row {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}
.logo-upload {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border: 1px solid var(--ink-300);
  color: var(--ink-700);
  background: transparent;
  border-radius: 100px;
  font-size: 0.74rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.04em;
  font-family: var(--sans);
}
.logo-upload:hover {
  border-color: var(--gold-400);
  color: var(--gold-400);
}
.logo-clear {
  background: transparent;
  border: none;
  color: var(--ink-500);
  font-size: 0.74rem;
  cursor: pointer;
  padding: 6px 10px;
  font-family: var(--sans);
}
.logo-clear:hover { color: var(--pink-500); }

/* ============================================
   PHOTO GALLERY (per-section strip)
   ============================================ */
.gallery {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--pink-100);
}
.gallery-head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.gallery-label {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--ink-700);
  font-weight: 600;
  margin: 0;
}
.gallery-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.gallery-upload {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border: 1.5px solid var(--gold-400);
  color: var(--gold-400);
  background: transparent;
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
}
.gallery-upload:hover {
  background: var(--gold-400);
  color: var(--white);
}
.gallery-clear {
  background: transparent;
  border: none;
  color: var(--ink-500);
  font-size: 0.82rem;
  cursor: pointer;
  padding: 8px 10px;
  font-family: var(--sans);
  font-weight: 500;
  transition: color 0.2s;
}
.gallery-clear:hover { color: var(--pink-500); }

.gallery-strip {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--pink-300) transparent;
}
.gallery-strip::-webkit-scrollbar { height: 8px; }
.gallery-strip::-webkit-scrollbar-track { background: var(--pink-50); border-radius: 4px; }
.gallery-strip::-webkit-scrollbar-thumb { background: var(--pink-300); border-radius: 4px; }

.gallery-empty {
  width: 100%;
  text-align: center;
  padding: 36px 20px;
  background: var(--pink-50);
  border: 1.5px dashed var(--pink-200);
  border-radius: var(--radius-md);
  color: var(--ink-500);
  font-size: 0.92rem;
  font-style: normal;
}

.gallery-tile {
  position: relative;
  flex: 0 0 auto;
  width: 260px;
  height: 320px;
  border-radius: var(--radius-md);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: zoom-in;
  background: var(--pink-100);
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.gallery-tile-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(60, 19, 30, 0.7);
  color: var(--white);
  border: none;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s, background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.gallery-tile:hover .gallery-tile-remove { opacity: 1; }
.gallery-tile-remove:hover { background: var(--gold-500); }

@media (max-width: 560px) {
  .gallery-tile { width: 200px; height: 250px; }
}

/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(42, 26, 30, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  cursor: zoom-out;
  animation: lightboxIn 0.25s ease-out;
}
.lightbox[hidden] { display: none; }
@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  border-radius: var(--radius-md);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: var(--white);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-close:hover { background: rgba(255,255,255,0.3); }

/* ============================================
   INSTAGRAM / STAY CONNECTED
   ============================================ */
.instagram {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.ig-feed-wrap {
  max-width: 980px;
  margin: 48px auto 40px;
}
behold-widget {
  --behold-row-gap: 8px;
  --behold-column-gap: 8px;
  --behold-border-radius: 8px;
  display: block;
  width: 100%;
}
.ig-follow {
  display: inline-flex;
  margin: 0 auto;
}
.ig-glyph {
  margin-right: 4px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--pink-50), var(--bg));
}
.contact-form {
  max-width: 680px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form .btn {
  align-self: center;
  margin-top: 8px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--ink-900);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  padding-bottom: 40px;
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand p {
  margin-top: 12px;
  font-size: 0.93rem;
  color: rgba(255,255,255,0.6);
}
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-cols h4 {
  color: var(--gold-300);
  font-family: var(--sans);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-cols p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  text-align: center;
  font-size: 0.83rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   TOAST
   ============================================ */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink-900);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 200;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
  max-width: calc(100% - 48px);
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    gap: 16px;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--pink-100);
    transform: translateY(-110%);
    opacity: 0;
    transition: all 0.3s;
    pointer-events: none;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a { font-size: 1rem; padding: 8px 0; }

  .hero { padding: 120px 16px 60px; min-height: auto; }
  .hero-meta { gap: 28px; margin-top: 40px; }
  .hero-meta strong { font-size: 1.5rem; }

  .builder-grid,
  .flower-grid,
  .delivery-grid,
  .cart-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .builder-preview,
  .bouquet-preview,
  .cart-summary {
    position: static;
  }
  .builder-controls,
  .flower-form,
  .builder-preview,
  .bouquet-preview {
    padding: 24px;
  }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .services,
  .builder,
  .flower-order,
  .delivery,
  .cart,
  .contact { padding: 70px 0; }

  .vase { width: 60px; }
  .bouquet { font-size: 1.4rem; max-width: 80px; }
  .balloon { width: 50px; height: 64px; }
}

@media (max-width: 560px) {
  .container { padding: 0 16px; }
  .color-swatches { grid-template-columns: repeat(8, 1fr); }
  .theme-grid { grid-template-columns: repeat(2, 1fr); }
  .size-options { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .size-btn { padding: 12px 4px; }
  .size-btn strong { font-size: 1.3rem; }
  .size-btn span { font-size: 0.7rem; }
  .row-2 { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; }
  .hero-meta { gap: 20px; }
  .balloon-wrap { width: 46px; height: 58px; margin-left: -23px; }
  .balloon-cluster { width: 280px; height: 400px; }
  h1 { font-size: 2.2rem; }
}
