@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("fonts/SpaceGrotesk-Bold.ttf") format("truetype");
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "IBM Plex Sans";
  src: url("fonts/IBMPlexSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-display: swap;
}

:root {
  color-scheme: light dark;
  --ink: #18151f;
  --ink-soft: #5f5968;
  --ink-faint: #7a7384;
  --paper: #f5f3ff;
  --paper-solid: #fbfaff;
  --surface: #ece8fb;
  --surface-high: #ffffff;
  --lavender: #a99bea;
  --lavender-strong: #7765cb;
  --lavender-soft: #ddd7fa;
  --lime: #d9ff67;
  --line: rgba(24, 21, 31, 0.16);
  --line-strong: rgba(24, 21, 31, 0.28);
  --shadow: rgba(59, 45, 92, 0.16);
  --header: rgba(245, 243, 255, 0.88);
  --error: #a92337;
  --radius-panel: 22px;
  --radius-control: 12px;
  --font-display: "Space Grotesk", Arial, sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

button,
input {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:active,
.button:active,
.header-cta:active {
  transform: translateY(1px) scale(0.98);
}

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

::selection {
  color: var(--ink);
  background: var(--lime);
}

:focus-visible {
  outline: 3px solid var(--lavender-strong);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 16px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--lime);
  border-radius: var(--radius-control);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 50%;
  width: min(100% - 64px, 1440px);
  height: 72px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: var(--header);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.055em;
  white-space: nowrap;
}

.brand > span:last-child {
  font-weight: 400;
}

.brand-flower {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--lime);
  background: var(--ink);
  border-radius: 50%;
  font-size: 13px;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 2.3vw, 36px);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

.site-header nav a {
  color: var(--ink-soft);
  transition: color 180ms ease;
}

.site-header nav a:hover {
  color: var(--ink);
}

.header-cta {
  justify-self: end;
  padding: 11px 17px;
  color: var(--paper-solid);
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--shadow);
}

.header-cta span,
.button span,
.text-link span {
  margin-left: 10px;
}

.menu-button {
  display: none;
}

.section {
  padding: clamp(96px, 10vw, 152px) max(32px, calc((100vw - 1320px) / 2));
}

.hero {
  min-height: 100dvh;
  padding: 96px max(32px, calc((100vw - 1440px) / 2)) 32px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: clamp(28px, 4vw, 72px);
  position: relative;
  background:
    radial-gradient(circle at 9% 28%, rgba(255, 255, 255, 0.9), transparent 29%),
    var(--paper);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 20px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 25px;
  height: 2px;
  background: currentColor;
}

.hero h1,
.about-copy h2,
.occasion-copy h2,
.section-intro h2,
.customizer-title h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(52px, 5.2vw, 80px);
}

.hero h1 em,
.section-intro h2 em,
.customizer-title h2 em {
  color: var(--lavender-strong);
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
}

.hero-lede {
  max-width: 525px;
  margin: 26px 0 30px;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark {
  color: var(--paper-solid);
  background: var(--ink);
  box-shadow: 0 12px 28px var(--shadow);
}

.button-dark:hover {
  box-shadow: 0 16px 34px var(--shadow);
}

.text-link {
  width: max-content;
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.hero-art {
  min-width: 0;
  height: min(72dvh, 730px);
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1200px;
  contain: layout paint;
}

.hero-disc {
  position: absolute;
  width: min(42vw, 610px);
  aspect-ratio: 1;
  background: var(--lavender);
  border-radius: 50%;
  box-shadow: inset -32px -32px 76px rgba(84, 64, 170, 0.18), 0 34px 84px rgba(84, 64, 170, 0.16);
}

.bouquet-3d {
  position: relative;
  z-index: 2;
  height: 96%;
  max-width: 100%;
  filter: drop-shadow(0 30px 24px rgba(31, 22, 50, 0.25));
  transform-style: preserve-3d;
  transition: transform 140ms ease-out;
}

.bouquet-3d img {
  width: auto;
  height: 100%;
  max-width: min(100%, 620px);
  object-fit: contain;
  mix-blend-mode: multiply;
}

.orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
}

.orbit-one {
  width: 92%;
  height: 38%;
  transform: rotate(-18deg);
}

.orbit-two {
  width: 76%;
  height: 26%;
  transform: rotate(45deg);
}

.spark {
  position: absolute;
  z-index: 4;
  color: var(--lime);
  font-size: 34px;
}

.spark-one {
  top: 14%;
  right: 8%;
}

.spark-two {
  bottom: 16%;
  left: 6%;
  color: var(--lavender-strong);
  font-size: 23px;
}

.ticker {
  overflow: hidden;
  padding: 14px 0;
  color: var(--paper-solid);
  background: var(--ink);
}

.ticker-track {
  width: max-content;
  display: flex;
  will-change: transform;
}

.ticker-track > span {
  padding-right: 34px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  word-spacing: 18px;
  white-space: nowrap;
}

.ticker b {
  color: var(--lime);
}

@media (prefers-reduced-motion: no-preference) {
  .ticker-track {
    animation: ticker-move 24s linear infinite;
  }
}

@keyframes ticker-move {
  to { transform: translateX(-50%); }
}

.about {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  align-items: center;
  gap: clamp(52px, 8vw, 120px);
}

.about-media {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.38;
  object-fit: cover;
  border-radius: var(--radius-panel);
  box-shadow: 0 24px 60px var(--shadow);
}

.about-note {
  max-width: 430px;
  color: var(--ink-soft);
  font-size: 12px;
}

.section-label {
  margin: 0 0 22px;
  color: var(--lavender-strong);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.about-copy h2 {
  font-size: clamp(44px, 4.4vw, 68px);
}

.about-copy > p:not(.section-label) {
  max-width: 560px;
  margin: 25px 0 38px;
  color: var(--ink-soft);
  font-size: 17px;
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 17px 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.65fr) 1fr;
  gap: 24px;
  border-top: 1px solid var(--line);
}

.about-list li:last-child {
  padding-bottom: 0;
}

.about-list strong {
  font-family: var(--font-display);
  font-size: 14px;
  line-height: 1.35;
}

.about-list span {
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.55;
}

.occasions {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(0, 1.22fr);
  align-items: stretch;
  gap: clamp(36px, 6vw, 84px);
  background: var(--surface);
}

.occasion-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.occasion-copy h2 {
  max-width: 590px;
  font-size: clamp(44px, 4.6vw, 70px);
}

.occasion-copy > p {
  max-width: 530px;
  margin: 25px 0 40px;
  color: var(--ink-soft);
  font-size: 16px;
}

.occasion-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px 34px;
}

.occasion-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line-strong);
}

.occasion-list strong,
.occasion-list span {
  display: block;
}

.occasion-list strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 16px;
}

.occasion-list span {
  color: var(--ink-soft);
  font-size: 13px;
}

.occasion-media {
  min-width: 0;
}

.occasion-media img {
  width: 100%;
  height: 100%;
  min-height: 610px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius-panel);
}

.section-intro {
  max-width: 800px;
  margin-bottom: 64px;
}

.section-intro h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.section-intro > p:last-child {
  max-width: 570px;
  margin: 23px 0 0;
  color: var(--ink-soft);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  align-items: start;
  gap: 24px;
}

.step-choice {
  grid-column: span 4;
}

.step-arrange {
  grid-column: span 5;
  margin-top: 68px;
}

.step-delivery {
  grid-column: span 3;
  margin-top: 14px;
}

.step-visual {
  height: 330px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
  background: var(--lavender-soft);
  border-radius: var(--radius-panel);
}

.step-arrange .step-visual {
  height: 430px;
}

.step-delivery .step-visual {
  height: 380px;
  background: #dfe7fa;
}

.step > p {
  margin: 0 0 7px;
  color: var(--lavender-strong);
  font-size: 12px;
  font-weight: 600;
}

.step h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 25px);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.step > span {
  display: block;
  max-width: 370px;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

.choice-visual {
  padding: 56px;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 12px;
}

.chip {
  padding: 13px 18px;
  color: var(--ink);
  background: var(--surface-high);
  border: 1px solid rgba(88, 72, 144, 0.25);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(60, 46, 115, 0.1);
  font-size: 13px;
  font-weight: 600;
}

.chip.active {
  color: var(--paper-solid);
  background: var(--ink);
  transform: rotate(-5deg);
}

.cursor {
  position: absolute;
  right: 18%;
  bottom: 23%;
  font-size: 26px;
}

.process-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
}

.process-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 56%, rgba(24, 21, 31, 0.22));
  pointer-events: none;
}

.delivery-visual {
  display: grid;
  place-items: center;
}

.door {
  width: min(62%, 165px);
  height: 75%;
  display: grid;
  place-items: center;
  background: var(--paper-solid);
  border: 6px solid rgba(255, 255, 255, 0.75);
  border-radius: 90px 90px 16px 16px;
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.door span {
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
}

.parcel {
  position: absolute;
  right: 9%;
  bottom: 8%;
  width: 66px;
  height: 53px;
  display: grid;
  place-items: center;
  color: var(--lime);
  background: var(--lavender-strong);
  border-radius: var(--radius-control);
  box-shadow: 0 12px 20px rgba(60, 40, 80, 0.2);
  transform: rotate(7deg);
}

.customizer {
  background: var(--surface);
}

.customizer-title {
  max-width: 830px;
  margin: 0 auto 62px;
  text-align: center;
}

.customizer-title h2 {
  font-size: clamp(48px, 5vw, 76px);
}

.customizer-title > p {
  max-width: 610px;
  margin: 24px auto 0;
  color: var(--ink-soft);
}

.builder {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(480px, 1fr);
  overflow: hidden;
  background: var(--paper-solid);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  box-shadow: 0 24px 70px var(--shadow);
}

.preview-panel {
  min-height: 730px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--lavender);
  perspective: 900px;
}

.preview-halo {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  box-shadow: 0 0 0 52px rgba(255, 255, 255, 0.07), 0 0 0 104px rgba(255, 255, 255, 0.04);
}

.preview-product {
  position: relative;
  height: 78%;
  max-width: 88%;
  filter: drop-shadow(0 30px 30px rgba(42, 27, 67, 0.28));
  transform-style: preserve-3d;
  transition: height 260ms ease, transform 140ms ease-out;
}

.preview-product img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: opacity 140ms ease, transform 140ms ease;
}

.preview-product img.swapping {
  opacity: 0;
  transform: scale(0.97);
}

.preview-note {
  position: absolute;
  top: 17%;
  right: 7%;
  max-width: 185px;
  padding: 12px 15px;
  color: #18151f;
  background: #ffffff;
  border-radius: var(--radius-control);
  box-shadow: 0 10px 25px rgba(36, 26, 58, 0.16);
  transform: rotate(5deg);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}

.controls {
  padding: 34px 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.control-block {
  display: grid;
  gap: 12px;
}

.control-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.control-head small,
.builder-total small {
  display: block;
  margin-bottom: 3px;
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 600;
}

.control-head strong {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
}

.control-head > b {
  color: var(--lavender-strong);
  font-size: 13px;
}

.option-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.option-row button,
.color-options button {
  min-height: 58px;
  position: relative;
  padding: 12px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--surface);
  border-radius: var(--radius-control);
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.option-row button:hover,
.color-options button:hover {
  border-color: var(--lavender-strong);
  transform: translateY(-2px);
}

.option-row button small {
  display: block;
  margin-top: 3px;
  color: var(--ink-faint);
  font-size: 9px;
}

.option-row button.selected,
.color-options button.selected {
  color: var(--paper-solid);
  background: var(--ink);
  border-color: var(--ink);
}

.option-row button.selected small {
  color: rgba(255, 255, 255, 0.7);
}

.option-row button i {
  position: absolute;
  top: -8px;
  right: 7px;
  padding: 3px 7px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  font-size: 8px;
  font-style: normal;
}

.quantity-block label,
.message-field label {
  color: var(--ink-faint);
  font-size: 10px;
  font-weight: 600;
}

.quantity-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quantity-row input {
  width: 92px;
  min-height: 46px;
  padding: 9px 12px;
  color: var(--ink);
  background: var(--surface-high);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
}

.quantity-row strong {
  font-family: var(--font-display);
  font-size: 14px;
}

.field-helper,
.field-error {
  min-height: 1.2em;
  color: var(--ink-faint);
  font-size: 10px;
}

.field-error {
  color: var(--error);
}

.color-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.color-options button {
  min-height: 68px;
  padding: 9px 6px;
  text-align: center;
}

.color-options i {
  width: 25px;
  height: 25px;
  display: block;
  margin: 0 auto 6px;
  background: var(--swatch);
  border: 3px solid var(--surface);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line-strong);
}

.color-options button.selected i {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.option-row.multi {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-row.multi button {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.option-row.multi span {
  color: var(--lavender-strong);
}

.option-row.multi button.selected span {
  color: var(--lime);
}

.message-field {
  display: grid;
  gap: 8px;
}

.message-input-row {
  min-height: 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-strong);
}

.message-field input {
  width: 100%;
  padding: 8px 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.message-field b {
  color: var(--ink-faint);
  font-size: 10px;
}

.builder-total {
  margin-top: auto;
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
}

.builder-total strong {
  display: block;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.04em;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
  box-shadow: 0 12px 28px rgba(121, 154, 26, 0.18);
}

.button-lime:hover {
  box-shadow: 0 16px 34px rgba(121, 154, 26, 0.25);
}

.stories {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  align-items: center;
  gap: clamp(54px, 8vw, 120px);
}

.quote-mark {
  display: block;
  color: var(--lavender);
  font-family: var(--font-display);
  font-size: 74px;
  font-weight: 700;
  line-height: 0.6;
}

.story-quote blockquote {
  max-width: 850px;
  margin: 28px 0 38px;
  font-family: var(--font-display);
  font-size: clamp(36px, 3.7vw, 58px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.08;
}

.story-quote > div {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 12px;
}

.story-quote > div span {
  color: var(--ink-soft);
}

.story-art {
  display: grid;
  gap: 17px;
}

.story-frame {
  overflow: hidden;
  aspect-ratio: 0.9;
  background: var(--lavender);
  border-radius: var(--radius-panel);
}

.story-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
  mix-blend-mode: multiply;
}

.story-art p {
  max-width: 390px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.faq {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  align-items: start;
  gap: clamp(56px, 9vw, 130px);
  background: var(--surface);
}

.faq-intro {
  position: sticky;
  top: 116px;
}

.faq-intro h2 {
  max-width: 570px;
  font-size: clamp(44px, 4.4vw, 68px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 23px 0 30px;
  color: var(--ink-soft);
}

.faq-list {
  border-top: 1px solid var(--line-strong);
}

.faq-item {
  border-bottom: 1px solid var(--line-strong);
}

.faq-item summary {
  padding: 23px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.65vw, 21px);
  font-weight: 700;
  letter-spacing: -0.025em;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 19px;
  font-weight: 400;
  transition: transform 180ms ease, background-color 180ms ease;
}

.faq-item[open] summary span {
  color: var(--ink);
  background: var(--lime);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 650px;
  margin: -3px 58px 24px 0;
  color: var(--ink-soft);
  font-size: 14px;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 50px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(245, 243, 255, 0.9) 0%, rgba(245, 243, 255, 0.72) 43%, rgba(245, 243, 255, 0.16) 100%),
    url("images/lavender-campaign-banner.webp");
  background-position: center;
  background-size: cover;
}

.final-cta h2 {
  max-width: 940px;
  font-size: clamp(48px, 5.7vw, 84px);
}

.final-cta p {
  max-width: 540px;
  margin: 24px 0 0;
  color: rgba(24, 21, 31, 0.72);
}

.final-cta .button {
  margin-bottom: 8px;
}

.site-footer {
  padding: 64px max(32px, calc((100vw - 1320px) / 2)) 34px;
  display: grid;
  grid-template-columns: minmax(240px, 1.5fr) 0.55fr 0.55fr;
  gap: 50px;
  color: var(--ink);
  background: var(--paper-solid);
  border-top: 1px solid var(--line);
}

.footer-brand p {
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
}

.footer-links strong {
  margin-bottom: 5px;
  font-family: var(--font-display);
  font-size: 13px;
}

.footer-links a {
  color: var(--ink-soft);
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-legal {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 24px;
  color: var(--ink-faint);
  border-top: 1px solid var(--line);
  font-size: 11px;
}

.toast {
  position: fixed;
  z-index: 50;
  bottom: 22px;
  left: 50%;
  max-width: calc(100% - 32px);
  padding: 12px 18px;
  color: var(--ink);
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 12px 30px var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 25px);
  transition: opacity 220ms ease, transform 220ms ease;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0);
}

.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms cubic-bezier(0.16, 1, 0.3, 1), transform 650ms cubic-bezier(0.16, 1, 0.3, 1);
}

.js .reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .site-header nav,
  .header-cta {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 42px;
    height: 42px;
    padding: 11px;
    display: block;
    color: var(--ink);
    background: var(--surface-high);
    border: 1px solid var(--line);
    border-radius: 50%;
    cursor: pointer;
  }

  .menu-button i {
    width: 100%;
    height: 1.5px;
    display: block;
    margin: 5px 0;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .site-header.menu-open nav {
    position: fixed;
    top: 72px;
    left: -32px;
    width: calc(100% + 64px);
    min-height: calc(100dvh - 72px);
    padding: 42px max(32px, calc((100vw - 760px) / 2));
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    background: var(--paper-solid);
    border-top: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 700;
  }

  .site-header.menu-open nav a {
    width: 100%;
    padding: 14px 0;
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .site-header.menu-open .menu-button i:first-child {
    transform: translateY(3px) rotate(45deg);
  }

  .site-header.menu-open .menu-button i:last-child {
    transform: translateY(-3px) rotate(-45deg);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 120px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .hero-art {
    height: 610px;
  }

  .hero-disc {
    width: min(74vw, 570px);
  }

  .about,
  .occasions,
  .stories,
  .faq {
    grid-template-columns: 1fr;
  }

  .about-copy {
    max-width: 760px;
  }

  .occasion-media {
    grid-row: 1;
  }

  .occasion-media img {
    min-height: 500px;
  }

  .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

  .step-choice,
  .step-arrange,
  .step-delivery {
    grid-column: auto;
    margin-top: 0;
  }

  .step-arrange {
    grid-row: span 2;
  }

  .step-arrange .step-visual {
    height: 520px;
  }

  .builder {
    grid-template-columns: 1fr;
    max-width: 760px;
  }

  .preview-panel {
    min-height: 620px;
  }

  .story-art {
    max-width: 620px;
  }

  .story-frame {
    aspect-ratio: 1.2;
  }

  .faq-intro {
    position: static;
    max-width: 700px;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta .button {
    justify-self: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    width: calc(100% - 36px);
  }

  .section,
  .hero {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .hero {
    min-height: 100dvh;
    padding-top: 110px;
    padding-bottom: 30px;
    gap: 28px;
  }

  .hero h1 {
    max-width: 600px;
    font-size: clamp(45px, 13vw, 62px);
  }

  .hero-lede {
    margin-top: 22px;
    font-size: 15px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .hero-art {
    height: 430px;
    margin: 0 -8px;
  }

  .hero-disc {
    width: min(88vw, 420px);
  }

  .spark {
    font-size: 25px;
  }

  .ticker-track > span {
    font-size: 10px;
  }

  .about,
  .occasions,
  .stories,
  .faq {
    gap: 46px;
  }

  .about-copy h2,
  .occasion-copy h2,
  .section-intro h2,
  .customizer-title h2,
  .faq-intro h2 {
    font-size: clamp(40px, 11vw, 52px);
  }

  .about-copy > p:not(.section-label),
  .occasion-copy > p {
    font-size: 15px;
  }

  .about-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .occasion-media img {
    min-height: 360px;
    aspect-ratio: 1.08;
  }

  .occasion-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .section-intro {
    margin-bottom: 42px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
  }

  .step-arrange {
    grid-row: auto;
  }

  .step-visual,
  .step-arrange .step-visual,
  .step-delivery .step-visual {
    height: 320px;
  }

  .choice-visual {
    padding: 44px;
  }

  .customizer-title {
    margin-bottom: 42px;
    text-align: left;
  }

  .customizer-title > p {
    margin-left: 0;
    margin-right: 0;
  }

  .builder {
    border-radius: 16px;
  }

  .preview-panel {
    min-height: 460px;
  }

  .preview-product {
    height: 75%;
  }

  .preview-note {
    top: 12%;
    right: 5%;
    max-width: 145px;
    font-size: 10px;
  }

  .controls {
    padding: 30px 18px;
  }

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

  .color-options,
  .option-row.multi {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .builder-total {
    align-items: stretch;
    flex-direction: column;
  }

  .builder-total .button {
    width: 100%;
  }

  .story-quote blockquote {
    font-size: clamp(34px, 9vw, 46px);
  }

  .story-frame {
    aspect-ratio: 0.95;
  }

  .faq-item summary {
    padding: 20px 0;
  }

  .faq-item p {
    margin-right: 0;
  }

  .final-cta h2 {
    font-size: clamp(45px, 12vw, 62px);
  }

  .final-cta {
    background-position: 66% center;
    background-image:
      linear-gradient(90deg, rgba(245, 243, 255, 0.94) 0%, rgba(245, 243, 255, 0.78) 62%, rgba(245, 243, 255, 0.2) 100%),
      url("images/lavender-campaign-banner.webp");
  }

  .site-footer {
    padding: 52px 20px 28px;
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand,
  .footer-legal {
    grid-column: 1 / -1;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 44px;
  }

  .hero-art {
    height: 390px;
  }

  .about-media img,
  .occasion-media img {
    border-radius: 16px;
  }

  .step-visual {
    border-radius: 16px;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #f2f0f7;
    --ink-soft: #bdb7c7;
    --ink-faint: #9891a3;
    --paper: #17141d;
    --paper-solid: #1d1923;
    --surface: #24202d;
    --surface-high: #2a2533;
    --lavender: #9180de;
    --lavender-strong: #b8aaff;
    --lavender-soft: #312a49;
    --line: rgba(242, 240, 247, 0.13);
    --line-strong: rgba(242, 240, 247, 0.23);
    --shadow: rgba(0, 0, 0, 0.32);
    --header: rgba(23, 20, 29, 0.88);
    --error: #ff8798;
  }

  .hero {
    background:
      radial-gradient(circle at 9% 28%, rgba(145, 128, 222, 0.13), transparent 29%),
      var(--paper);
  }

  .button-dark,
  .header-cta {
    color: #18151f;
    background: #f2f0f7;
  }

  .brand-flower {
    color: #18151f;
    background: var(--lime);
  }

  .bouquet-3d img,
  .preview-product img,
  .story-frame img {
    mix-blend-mode: normal;
  }

  .ticker {
    color: #18151f;
    background: #f2f0f7;
  }

  .step-delivery .step-visual {
    background: #293247;
  }

  .door {
    color: #18151f;
    background: #f2f0f7;
  }

  .option-row button.selected,
  .color-options button.selected {
    color: #18151f;
    background: #f2f0f7;
    border-color: #f2f0f7;
  }

  .option-row button.selected small {
    color: #5f5968;
  }

  .color-options button.selected i {
    border-color: #f2f0f7;
    box-shadow: 0 0 0 1px rgba(24, 21, 31, 0.5);
  }

  .final-cta {
    background-image:
      linear-gradient(90deg, rgba(23, 20, 29, 0.88) 0%, rgba(23, 20, 29, 0.68) 48%, rgba(23, 20, 29, 0.26) 100%),
      url("images/lavender-campaign-banner.webp");
    background-position: center;
    background-size: cover;
  }

  .final-cta h2,
  .final-cta p {
    color: #f2f0f7;
  }

  .final-cta .button-dark {
    color: #f2f0f7;
    background: #18151f;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    transform: none;
  }
}

@media (prefers-reduced-transparency: reduce) {
  .site-header {
    background: var(--paper);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}
