:root {
  --ink: #6f5236;
  --deep: #3f3126;
  --muted: #7f746a;
  --paper: #fbfaf8;
  --panel: #ffffff;
  --soft: #f1ece6;
  --line: rgba(20, 20, 20, 0.1);
  --champagne: #c7a46f;
  --rose: #d69d8a;
  --mist: #dfe8e5;
  --shadow: 0 22px 64px rgba(20, 20, 20, 0.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  position: relative;
  color: var(--ink);
  background: var(--paper);
  font-family: "Avenir Next", Montserrat, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

img { display: block; max-width: 100%; }
a { color: inherit; }

.balloon-sky {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.float-balloon {
  position: absolute;
  width: 92px;
  height: 92px;
  padding: 0;
  border: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  left: var(--balloon-x, 0);
  top: var(--balloon-y, 0);
  transform: translate3d(0, 0, 0) scale(var(--balloon-scale, 1));
  will-change: transform, opacity;
}

.float-balloon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  pointer-events: none;
  filter: drop-shadow(0 14px 20px rgba(63,49,38,.12));
}

.float-balloon.b1 { width: 66px; height: 156px; animation-delay: 120ms, 0s; }
.float-balloon.b2 { width: 60px; height: 82px; animation-delay: 360ms, 1.2s; }
.float-balloon.b3 { width: 74px; height: 98px; animation-delay: 620ms, .7s; }
.float-balloon.b4 { width: 96px; height: 78px; animation-delay: 780ms, 1.8s; }
.float-balloon.b5 { width: 76px; height: 104px; animation-delay: 980ms, .3s; }
.float-balloon.b6 { width: 80px; height: 54px; animation-delay: 420ms, 1.6s; }
.float-balloon.b7 { width: 86px; height: 82px; animation-delay: 840ms, .9s; }
.float-balloon.b8 { width: 90px; height: 78px; animation-delay: 560ms, 2s; }

.float-balloon.is-hidden {
  display: none;
}

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

main {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 72px);
  background: rgba(251, 250, 248, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand { display: flex; align-items: center; text-decoration: none; }
.brand-logo {
  width: clamp(160px, 16vw, 218px);
  height: auto;
}

.nav, .footer-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav {
  justify-content: center;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.nav a, .footer-links a { text-decoration: none; }

.header-cta, .button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
}

.header-cta, .button.primary {
  color: #fff;
  background: var(--deep);
  box-shadow: 0 16px 34px rgba(88, 63, 38, .18);
}

.button.secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.hero {
  order: 1;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(380px, .86fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  padding: clamp(48px, 7vw, 90px) clamp(18px, 5vw, 72px) clamp(38px, 6vw, 76px);
  background:
    radial-gradient(circle at 82% 28%, rgba(199,164,111,.18), transparent 34%),
    linear-gradient(135deg, rgba(223,232,229,.42), transparent 34%),
    var(--paper);
}

.floating-balloons { display: none; }
.hero-copy { max-width: 720px; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--champagne);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .18em;
  text-transform: uppercase;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin: 0 0 18px;
  max-width: 760px;
  font-size: clamp(50px, 7vw, 96px);
  font-weight: 850;
  line-height: .94;
  letter-spacing: 0;
  color: var(--deep);
}

h2 {
  margin-bottom: 16px;
  max-width: 760px;
  font-size: clamp(34px, 4.5vw, 58px);
  font-weight: 850;
  line-height: 1;
  letter-spacing: 0;
  color: var(--deep);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0;
}

.hero-text {
  max-width: 610px;
  color: #74675d;
  font-size: clamp(18px, 1.5vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 22px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span, .card-label, .gallery-card span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 850;
}

.hero-showcase {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}

.profile-hero-image {
  width: min(640px, 100%);
  filter: drop-shadow(0 28px 54px rgba(20,20,20,.14));
}

.hero-media { display: none; }

.flow-bar {
  order: 2;
  width: min(1120px, calc(100% - 36px));
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin: 0 auto;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 50px rgba(20,20,20,.08);
}

.flow-bar a {
  min-height: 76px;
  display: grid;
  place-items: center;
  gap: 4px;
  padding: 12px;
  border-radius: 8px;
  background: var(--paper);
  text-align: center;
  text-decoration: none;
}

.flow-bar strong {
  color: var(--champagne);
  font-size: 17px;
  font-weight: 900;
}
.flow-bar span { font-weight: 900; }

.section { padding: clamp(54px, 7vw, 92px) clamp(18px, 5vw, 72px); }

.gallery-section { order: 3; }
.custom-builder { order: 4; }
.split { order: 5; }
.product-grid { order: 6; }
.process { order: 7; }
.timing-section { order: 8; }
.ai-section { order: 9; }
.order-section { order: 10; }

.split {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, .74fr);
  gap: clamp(30px, 6vw, 88px);
  align-items: end;
}

.split p, .section-heading p, .order-copy p, .product-card p, .gallery-card p, .footer p, .ai-panel p {
  color: var(--muted);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 7vw, 90px);
}

.product-card, .gallery-card, .order-form, .ai-panel, .chat-demo {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.product-card {
  min-height: 232px;
  padding: 30px;
}

.product-card::before, .product-card::after, .balloon-icon { display: none; }
.product-card .card-label { margin-bottom: 42px; }

.process {
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-heading { max-width: 820px; margin-bottom: 38px; }

.timing-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(214,157,138,.16), transparent 32%),
    #fff;
  border-bottom: 1px solid var(--line);
}

.occasion-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.occasion-strip span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 16px;
  border: 1px solid rgba(111,82,54,.18);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(251,250,248,.82);
  font-size: 14px;
  font-weight: 900;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.steps div {
  min-height: 158px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.steps strong {
  display: block;
  margin-bottom: 20px;
  color: var(--champagne);
  font-size: 28px;
  font-weight: 900;
}
.steps span { font-weight: 850; }

.gallery-section {
  background: var(--paper);
  padding-top: clamp(62px, 7vw, 92px);
}

.gallery-order-note {
  width: min(980px, 100%);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: -16px 0 28px;
  padding: 12px;
  border: 1px solid rgba(111,82,54,.16);
  border-radius: 14px;
  background: rgba(255,255,255,.78);
}

.gallery-order-note strong,
.gallery-order-note span,
.gallery-order-note a {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
}

.gallery-order-note strong {
  color: #fff;
  background: var(--deep);
}

.gallery-order-note span {
  color: var(--deep);
  background: var(--paper);
}

.gallery-order-note a {
  color: #fff;
  background: var(--champagne);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-card {
  min-height: 456px;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease;
  box-shadow: 0 12px 36px rgba(63,49,38,.05);
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.gallery-card.is-extra-reference {
  display: none;
}

.gallery-section.is-expanded .gallery-card.is-extra-reference {
  display: block;
}

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

.gallery-card:focus-visible {
  outline: 3px solid rgba(199,164,111,.65);
  outline-offset: 4px;
}

.gallery-card img, .gallery-fallback {
  display: block;
  width: 100%;
  height: clamp(260px, 24vw, 360px);
  object-fit: contain;
  object-position: center;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.96), rgba(247,241,232,.78) 68%),
    var(--soft);
}

.gallery-meta, .gallery-card h3, .gallery-card p, .gallery-actions {
  margin-left: 18px;
  margin-right: 18px;
}

.gallery-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  margin-bottom: 14px;
}

.gallery-meta span:first-child {
  color: #fff;
  background: var(--deep);
  border-color: var(--deep);
}

.gallery-meta .price-pill {
  color: #fff;
  background: var(--champagne);
  border-color: var(--champagne);
}

.gallery-card h3 { font-size: 18px; }
.gallery-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.gallery-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  margin-bottom: 18px;
}

.reference-button,
.reference-link {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(111,82,54,.2);
  border-radius: 999px;
  color: var(--deep);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}

.reference-button:hover,
.reference-link:hover {
  color: #fff;
  background: var(--deep);
}

.reference-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 112px;
}

.gallery-actions .reference-button {
  flex: 1 1 156px;
}

.gallery-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.gallery-more span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.custom-builder {
  background: #fff;
  border-top: 1px solid var(--line);
}

.builder-toolbar {
  width: min(760px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(111,82,54,.14);
  border-radius: 12px;
  background: rgba(251,250,248,.82);
}

.builder-toolbar label {
  color: var(--deep);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.option-grid button {
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(111,82,54,.18);
  border-radius: 999px;
  color: var(--deep);
  background: var(--paper);
  font: inherit;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
}

.option-grid button:hover,
.option-grid button.is-selected {
  color: #fff;
  background: var(--deep);
}

.design-modal[hidden] { display: none; }

.design-modal {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  overflow: auto;
}

.design-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 29, 22, .52);
  backdrop-filter: blur(10px);
}

.design-modal__panel {
  position: relative;
  width: min(1120px, 100%);
  max-height: min(860px, calc(100vh - 36px));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, .9fr);
  gap: 0;
  overflow: auto;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 32px 90px rgba(20,20,20,.28);
}

.design-modal__close {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 2;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(63,49,38,.9);
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.design-preview {
  position: relative;
  min-height: 0;
  height: clamp(520px, 72vh, 720px);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgba(255,255,255,.96), rgba(247,241,232,.74) 70%),
    var(--soft);
}

.design-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: clamp(18px, 3vw, 34px);
}

.design-preview__label {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px;
  border-radius: 12px;
  color: #fff;
  background: rgba(63,49,38,.82);
  backdrop-filter: blur(14px);
}

.design-preview__message {
  position: absolute;
  left: 24px;
  top: 92px;
  max-width: min(72%, 360px);
  padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  color: #fff;
  background: rgba(63,49,38,.74);
  backdrop-filter: blur(12px);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.05;
  text-align: left;
  text-shadow: 0 2px 8px rgba(20,20,20,.25);
  pointer-events: none;
}

.design-preview__label span,
.design-preview__label strong {
  font-weight: 950;
}

.design-preview__palette {
  position: absolute;
  left: 24px;
  top: 24px;
  display: flex;
  gap: 8px;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 14px 28px rgba(20,20,20,.12);
}

.design-preview__palette i {
  width: 26px;
  height: 26px;
  border: 1px solid rgba(63,49,38,.14);
  border-radius: 50%;
  background: var(--dot);
}

.design-controls {
  padding: clamp(24px, 4vw, 44px);
}

.design-controls h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  word-break: normal;
  overflow-wrap: normal;
  hyphens: none;
}

.modal-note {
  color: var(--muted);
}

.modal-price {
  width: fit-content;
  max-width: 100%;
  margin: -4px 0 16px;
  padding: 10px 14px;
  border: 1px solid rgba(199,164,111,.42);
  border-radius: 999px;
  color: var(--deep);
  background: rgba(199,164,111,.12);
  font-size: 14px;
  font-weight: 900;
}

.control-group {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.modal-select-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.modal-select-row label {
  color: var(--deep);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.control-group > span {
  font-size: 13px;
  font-weight: 950;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.option-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.palette-options button {
  border-radius: 8px;
}

.modal-order-form {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.ai-section {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, .8fr);
  gap: clamp(24px, 5vw, 70px);
  background: #fff;
}

.ai-panel, .chat-demo { padding: clamp(24px, 4vw, 42px); }
.chat-demo { display: grid; align-content: center; gap: 12px; background: var(--paper); }

.zone-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.zone-list span {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(111,82,54,.18);
  border-radius: 999px;
  color: var(--deep);
  background: #fff;
  font-size: 12px;
  font-weight: 850;
}

.bubble {
  max-width: 88%;
  padding: 14px 16px;
  border-radius: 18px;
  font-weight: 750;
}
.bubble.customer { justify-self: start; background: #fff; }
.bubble.bot { justify-self: end; color: #fff; background: var(--ink); }

.order-section {
  display: grid;
  grid-template-columns: minmax(0, .72fr) minmax(320px, 1fr);
  gap: clamp(32px, 6vw, 86px);
  background: var(--paper);
}
.order-copy { max-width: 560px; }

.order-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

label { display: grid; gap: 8px; font-weight: 850; }

input, select, textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--deep) 50%),
    linear-gradient(135deg, var(--deep) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 22px,
    calc(100% - 12px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 42px;
  font-weight: 850;
}

input:focus, textarea:focus {
  outline: 2px solid rgba(199, 164, 111, .34);
  outline-offset: 2px;
}

textarea { resize: vertical; }
.full { grid-column: 1 / -1; }

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 72px);
  background: var(--deep);
  color: #fff;
}
.footer p { margin: 6px 0 0; color: rgba(255,255,255,.68); }
.footer-links { color: rgba(255,255,255,.82); }

@media (max-width: 1180px) {
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: 1fr auto; }
  .nav { display: none; }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .hero-showcase {
    min-height: auto;
  }
  .profile-hero-image { width: min(620px, 100%); }
  .split, .order-section, .ai-section { grid-template-columns: 1fr; }
  .flow-bar, .product-grid, .steps { grid-template-columns: 1fr 1fr; }
  .builder-toolbar { grid-template-columns: 1fr; }
  .design-modal__panel { grid-template-columns: 1fr; }
  .design-preview { height: min(560px, 58vh); }
}

@media (max-width: 640px) {
  main {
    display: flex;
    flex-direction: column;
  }
  .site-header { gap: 10px; padding: 10px 14px; }
  .brand-logo { width: 154px; }
  .header-cta { min-height: 40px; padding-inline: 14px; font-size: 14px; }
  .hero {
    order: 1;
    gap: 18px;
    padding: 28px 18px 18px;
  }
  h1 {
    font-size: clamp(38px, 11vw, 50px);
    line-height: .98;
  }
  h2 { font-size: clamp(32px, 10vw, 44px); }
  .hero-text { font-size: 16px; }
  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    margin: 18px 0 0;
  }
  .hero-actions .button { width: 100%; }
  .hero-actions .button.secondary:last-child,
  .trust-row,
  .flow-bar,
  .product-grid,
  .process {
    display: none;
  }
  .hero-showcase { display: none; }
  .gallery-section {
    order: 2;
    padding-top: 26px;
  }
  .custom-builder { order: 3; }
  .split { order: 4; }
  .timing-section { order: 5; }
  .ai-section { order: 6; }
  .order-section { order: 7; }
  .flow-bar {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
  }
  .flow-bar a {
    min-height: 56px;
    display: flex;
    justify-content: space-between;
  }
  .steps, .gallery-grid, .order-form {
    grid-template-columns: 1fr;
  }
  .section { padding: 42px 18px; }
  .section-heading { margin-bottom: 22px; }
  .gallery-order-note { display: none; }
  .gallery-card {
    min-height: auto;
  }
  .gallery-meta,
  .gallery-card h3,
  .gallery-card p,
  .gallery-actions {
    margin-left: 16px;
    margin-right: 16px;
  }
  .gallery-actions {
    display: grid;
    grid-template-columns: 1fr;
  }
  .reference-button,
  .reference-link {
    width: 100%;
  }
  .gallery-card p {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .modal-select-row { grid-template-columns: 1fr; }
  .design-modal { padding: 10px; }
  .design-modal {
    align-items: flex-start;
  }
  .design-preview { height: min(430px, 48vh); }
  .design-preview img { padding: 16px; }
  .design-preview__label {
    left: 12px;
    right: 12px;
    bottom: 12px;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
    padding: 10px 12px;
  }
  .design-preview__message {
    left: 12px;
    top: 76px;
    max-width: calc(100% - 96px);
    padding: 8px 10px;
    font-size: 14px;
  }
  .design-controls { padding: 22px; }
  .design-controls h2 { font-size: clamp(28px, 8vw, 34px); }
  .product-card { min-height: 205px; }
  .product-card .card-label { margin-bottom: 30px; }
  .gallery-card img, .gallery-fallback { height: min(360px, 84vw); }
  .footer { align-items: flex-start; flex-direction: column; }
  .float-balloon { width: 58px; height: 58px; }
  .float-balloon.b1 { width: 48px; height: 112px; }
  .float-balloon.b2 { width: 56px; height: 78px; }
  .float-balloon.b4,
  .float-balloon.b7,
  .float-balloon.b8 { width: 64px; height: 58px; }
}

@keyframes inflateIn {
  from { opacity: 0; transform: scale(.18); }
  to { opacity: .38; transform: scale(1); }
}

@keyframes drift {
  0%, 100% { translate: 0 0; rotate: -2deg; }
  50% { translate: 10px -18px; rotate: 3deg; }
}
