:root {
  --petal: #fff8f4;
  --paper: #ffffff;
  --ink: #2b1827;
  --muted: #746970;
  --line: #ded4d8;
  --pink: #e84482;
  --pink-surface: #e84482;
  --pink-soft: #f7c6d6;
  --cobalt: #3157c8;
  --cobalt-surface: #3157c8;
  --blue-soft: #cbd9f3;
  --marigold: #f3c642;
  --sage: #a7bc96;
  --deep: #2b1827;
  --header: rgba(255, 248, 244, 0.96);
  --glass: rgba(255, 255, 255, 0.92);
  --shell: min(1400px, calc(100% - 80px));
  --display: "Bricolage Grotesque", sans-serif;
  --body: "Manrope", sans-serif;
  --mono: "DM Mono", monospace;
}

html[data-theme="dark"] {
  --petal: #171118;
  --paper: #231a23;
  --ink: #fff1f7;
  --muted: #c8bac3;
  --line: #493845;
  --pink: #ff6fa4;
  --pink-surface: #c92b67;
  --pink-soft: #4a2536;
  --cobalt: #8ba8ff;
  --cobalt-surface: #263f91;
  --blue-soft: #26365a;
  --deep: #0e0a10;
  --header: rgba(23, 17, 24, 0.94);
  --glass: rgba(35, 26, 35, 0.94);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--petal);
  font-family: var(--body);
  -webkit-font-smoothing: antialiased;
}

body.menu-open,
body.drawer-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--cobalt);
  outline-offset: 4px;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 12px 18px;
  color: white;
  background: var(--deep);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.announcement {
  height: 38px;
  overflow: hidden;
  color: white;
  background: var(--deep);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.announcement-track {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: center;
  gap: 36px;
  padding-left: 36px;
  animation: ticker 26s linear infinite;
}

.announcement-track i {
  color: var(--marigold);
  font-style: normal;
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  min-height: 86px;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
}

.brand > span:last-child {
  display: grid;
  line-height: 1;
}

.brand strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.brand small {
  margin-top: 5px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-flower {
  position: relative;
  display: block;
  width: 35px;
  height: 35px;
  rotate: 12deg;
}

.brand-flower i,
.brand-flower b {
  position: absolute;
  display: block;
}

.brand-flower i {
  width: 17px;
  height: 17px;
  border-radius: 12px 12px 5px 12px;
  background: var(--pink);
}

.brand-flower i:nth-child(1) { top: 0; left: 9px; }
.brand-flower i:nth-child(2) { top: 9px; right: 0; rotate: 90deg; }
.brand-flower i:nth-child(3) { bottom: 0; left: 9px; rotate: 180deg; }
.brand-flower i:nth-child(4) { top: 9px; left: 0; rotate: -90deg; }
.brand-flower b { inset: 13px; border-radius: 50%; background: var(--marigold); }

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.instagram-link {
  position: relative;
}

.desktop-nav a::after,
.instagram-link::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.instagram-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  font-size: 12px;
  font-weight: 700;
}

.theme-toggle {
  display: inline-grid;
  width: 54px;
  height: 32px;
  flex: none;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  background: var(--paper);
  cursor: pointer;
}

.theme-toggle-track {
  position: relative;
  display: grid;
  width: 46px;
  height: 24px;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  border-radius: inherit;
}

.theme-toggle-icon {
  z-index: 1;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.theme-toggle-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--marigold);
  box-shadow: 0 2px 7px rgba(43, 24, 39, 0.22);
  transition: transform 180ms ease;
}

.theme-toggle[aria-pressed="true"] .theme-toggle-thumb {
  transform: translateX(22px);
}

.theme-toggle[aria-pressed="false"] .theme-toggle-moon,
.theme-toggle[aria-pressed="true"] .theme-toggle-sun {
  opacity: 0.55;
}

.cart-button,
.mobile-bag {
  border: 0;
  color: white;
  background: var(--deep);
  cursor: pointer;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-button {
  min-width: 86px;
  padding: 13px 15px;
}

.cart-button span,
.mobile-bag span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 8px;
  place-items: center;
  border-radius: 50%;
  color: var(--deep);
  background: var(--marigold);
}

.menu-button,
.mobile-menu {
  display: none;
}

.category-nav {
  display: flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  gap: 44px;
  border-top: 1px solid var(--line);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-nav a:hover {
  color: var(--pink);
}

.hero {
  display: grid;
  min-height: 720px;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(48px, 6vw, 110px);
  align-items: center;
  padding-block: 58px 70px;
}

.eyebrow {
  margin: 0 0 22px;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.13em;
  line-height: 1.5;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.editorial-copy h2,
.custom-intro h2,
.story-copy h2,
.faq-intro h2,
.newsletter-shell h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.065em;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(58px, 7.3vw, 112px);
  line-height: 0.84;
}

.hero h1 em,
.custom-intro h2 em {
  color: var(--pink);
  font-style: normal;
  font-weight: 500;
}

.hero-lead {
  max-width: 570px;
  margin: 32px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.75;
}

.hero-actions,
.builder-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 36px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-dark { color: white; background: var(--deep); }
.button-dark:hover { background: var(--pink-surface); }
.button-pink { color: white; background: var(--pink-surface); }
.button-pink:hover { background: #cc2d6a; }
.button-light { color: var(--deep); background: white; }
.button-light:hover { color: white; background: var(--deep); }
.button-outline { border-color: var(--ink); background: transparent; }
.button-outline:hover { color: white; background: var(--deep); }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-block: 5px;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
}

.text-link-light { color: white; }

.hero-proof {
  display: flex;
  gap: 24px;
  margin-top: 54px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  line-height: 1.5;
}

.hero-proof span {
  display: grid;
  min-width: 90px;
}

.hero-proof strong {
  font-size: 11px;
}

.hero-gallery {
  position: relative;
  min-height: 610px;
}

.hero-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 570px;
  margin: 0;
  overflow: hidden;
  background: var(--pink-soft);
}

.hero-primary img,
.hero-secondary img {
  height: 100%;
  object-fit: cover;
}

.hero-primary img { object-position: center 42%; }

.hero-secondary {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 37%;
  height: 330px;
  margin: 0;
  overflow: hidden;
  border: 12px solid var(--petal);
  background: var(--cobalt);
}

.hero-secondary img { object-position: center 40%; }

.hero-stamp {
  position: absolute;
  top: 44px;
  left: 14%;
  display: grid;
  width: 128px;
  height: 128px;
  place-content: center;
  rotate: -9deg;
  border-radius: 50%;
  color: var(--deep);
  background: var(--marigold);
  text-align: center;
  text-transform: uppercase;
}

.hero-stamp span { font-family: var(--mono); font-size: 8px; letter-spacing: 0.1em; }
.hero-stamp strong { margin: 2px 0; font-family: var(--display); font-size: 24px; letter-spacing: -0.06em; text-transform: none; }

.hero-product {
  position: absolute;
  right: 6%;
  bottom: 3px;
  display: grid;
  width: 330px;
  min-height: 85px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  background: var(--paper);
  box-shadow: 0 22px 60px rgba(43, 24, 39, 0.15);
}

.mini-swatch { width: 34px; height: 48px; background: linear-gradient(var(--pink) 0 55%, var(--cobalt) 55%); }
.hero-product > span:nth-child(2) { display: grid; gap: 4px; }
.hero-product small { font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.hero-product strong { font-family: var(--display); font-size: 17px; }
.hero-product b { font-size: 11px; }

.category-showcase,
.shop-section,
.occasion-section,
.new-section,
.story-section,
.faq-section {
  padding-block: 105px;
}

.category-showcase { border-top: 1px solid var(--line); }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 42px;
}

.section-heading .eyebrow { margin-bottom: 12px; color: var(--pink); }
.section-heading h2,
.faq-intro h2 { font-size: clamp(40px, 4.4vw, 68px); line-height: 0.95; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.category-card {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: var(--pink-soft);
}

.category-card:nth-child(2) { background: #f4a699; }
.category-card:nth-child(3) { background: var(--blue-soft); }
.category-card:nth-child(4) { background: #e5d4b9; }

.category-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 550ms cubic-bezier(.2,.7,.2,1);
}

.category-card:hover img { transform: scale(1.035); }

.category-card > span {
  position: absolute;
  right: 15px;
  bottom: 15px;
  left: 15px;
  display: grid;
  gap: 4px;
  padding: 18px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.category-card small { font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.category-card strong { font-family: var(--display); font-size: 25px; letter-spacing: -0.05em; }

.shop-section { border-top: 1px solid var(--line); }

.price-note {
  max-width: 370px;
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.65;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -12px 0 30px;
}

.filter-button {
  min-height: 39px;
  padding: 0 18px;
  border: 1px solid var(--line);
  background: transparent;
  cursor: pointer;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filter-button:hover,
.filter-button.active {
  border-color: var(--ink);
  color: white;
  background: var(--deep);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 46px 18px;
}

.product-card[hidden] { display: none; }

.product-image {
  position: relative;
  height: 430px;
  overflow: hidden;
  background: #f2d8df;
}

.product-image-blue { background: var(--blue-soft); }
.product-image-rose { background: #f7d7df; }
.product-image-coral { background: #f1aaa0; }
.product-image-mini { background: #e1d1b7; }
.product-image-rainbow { background: #f2d56f; }
.product-image-stem { background: #f6b1bd; }
.product-image-signature { background: #c6d2ee; }

.product-image img {
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.product-image-coral img,
.product-image-rainbow img,
.product-image-stem img { object-position: center; }
.product-image-rainbow img { width: 178%; max-width: none; margin-left: -39%; }
.product-image-stem img { width: 150%; max-width: none; margin-left: -25%; }

.product-card:hover .product-image img { transform: scale(1.025); }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 9px;
  color: white;
  background: var(--pink-surface);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.badge-new { color: var(--deep); background: var(--marigold); }

.quick-add {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  min-height: 48px;
  border: 0;
  color: white;
  background: var(--deep);
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.product-card:hover .quick-add,
.quick-add:focus-visible {
  opacity: 1;
  transform: translateY(0);
}

.quick-add:hover { background: var(--pink-surface); }

.product-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  padding-top: 17px;
}

.product-info > div { display: grid; gap: 5px; }
.product-info p { margin: 0; color: var(--muted); font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }
.product-info h3 { margin: 0; font-family: var(--display); font-size: 20px; letter-spacing: -0.04em; }
.product-info > strong { flex: none; padding-top: 18px; font-size: 11px; }

.empty-filter {
  padding: 50px;
  border: 1px solid var(--line);
  text-align: center;
}

.editorial-banner {
  display: grid;
  min-height: 690px;
  grid-template-columns: 1.28fr 0.72fr;
  background: var(--cobalt-surface);
}

.editorial-image { min-width: 0; overflow: hidden; }
.editorial-image img { height: 100%; object-fit: cover; }

.editorial-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(50px, 7vw, 115px);
  color: white;
}

.editorial-copy .eyebrow { color: var(--marigold); }
.editorial-copy h2 { max-width: 550px; font-size: clamp(52px, 5.2vw, 84px); line-height: 0.92; }
.editorial-copy > p:not(.eyebrow) { max-width: 500px; margin: 28px 0 34px; color: #e1e7fb; font-size: 14px; line-height: 1.8; }

.occasion-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.occasion-card {
  position: relative;
  display: flex;
  min-height: 330px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 36px;
  overflow: hidden;
  transition: transform 180ms ease;
}

.occasion-card:hover { transform: translateY(-4px); }
.occasion-card::before { position: absolute; width: 210px; height: 210px; border-radius: 50%; content: ""; }
.occasion-card::after { position: absolute; width: 120px; height: 190px; border-radius: 60% 40% 55% 45%; content: ""; rotate: 36deg; }
.occasion-birthday { color: var(--deep); background: var(--marigold); }
.occasion-birthday::before { top: -45px; right: 9%; background: var(--pink); }
.occasion-birthday::after { top: 34px; right: 23%; background: #ff8aa6; }
.occasion-love { color: white; background: var(--pink-surface); }
.occasion-love::before { top: 30px; right: 12%; background: var(--deep); }
.occasion-love::after { top: -60px; right: 30%; background: #ffb5cb; }
.occasion-thanks { color: var(--deep); background: var(--sage); }
.occasion-thanks::before { top: -35px; right: 7%; background: var(--cobalt); }
.occasion-thanks::after { top: 10px; right: 28%; background: #e9f1df; }
.occasion-custom { color: white; background: var(--deep); }
.occasion-custom::before { top: -40px; right: 10%; background: var(--marigold); }
.occasion-custom::after { top: 45px; right: 28%; background: var(--pink); }
.occasion-card span,
.occasion-card small,
.occasion-card b { position: relative; z-index: 2; }
.occasion-card span { font-family: var(--display); font-size: clamp(31px, 3vw, 45px); font-weight: 700; letter-spacing: -0.055em; }
.occasion-card small { margin-top: 7px; font-size: 11px; }
.occasion-card b { margin-top: 22px; font-size: 10px; text-transform: uppercase; }

.custom-section {
  padding-block: 110px;
  color: white;
  background: var(--deep);
}

.custom-shell {
  display: grid;
  grid-template-columns: 0.67fr 1.33fr;
  gap: clamp(50px, 7vw, 120px);
  align-items: start;
}

.custom-intro {
  position: sticky;
  top: 190px;
}

.custom-intro .eyebrow { color: var(--marigold); }
.custom-intro h2 { font-size: clamp(58px, 6.2vw, 94px); line-height: 0.9; }
.custom-intro > p:not(.eyebrow) { max-width: 500px; margin-top: 28px; color: #c9bdc6; font-size: 14px; line-height: 1.8; }

.custom-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin-top: 35px;
  padding-top: 24px;
  border-top: 1px solid #57434f;
}

.custom-note span { color: var(--marigold); }
.custom-note p { margin: 0; color: #b9aab4; font-size: 10px; line-height: 1.7; }

.bouquet-builder {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  min-height: 690px;
  color: var(--ink);
  background: var(--paper);
}

.builder-preview {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  background: var(--pink-soft);
}

.builder-preview.palette-blue { background: var(--blue-soft); }
.builder-preview.palette-pop { background: #f5afa5; }
.builder-preview.is-changing img { opacity: 0; transform: scale(1.03); }

.builder-preview img {
  height: 100%;
  object-fit: cover;
  transition: opacity 160ms ease, transform 240ms ease;
}

.builder-preview > div {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: grid;
  padding: 18px;
  background: var(--glass);
  backdrop-filter: blur(10px);
}

.builder-preview small { font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.builder-preview strong { margin: 5px 0 2px; font-family: var(--display); font-size: 23px; text-transform: capitalize; }
.builder-preview span { color: var(--muted); font-size: 10px; text-transform: capitalize; }

.builder-form { padding: clamp(36px, 4vw, 58px); }

.builder-progress {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 700;
}

.builder-progress small { color: var(--muted); font-family: var(--mono); font-size: 9px; font-weight: 400; text-transform: uppercase; }

fieldset {
  min-width: 0;
  margin: 0 0 32px;
  padding: 0;
  border: 0;
}

legend {
  width: 100%;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 700;
}

legend b { margin-right: 9px; color: var(--pink); font-family: var(--mono); font-size: 9px; }

.swatch-row,
.choice-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.swatch,
.choice {
  min-height: 48px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
}

.swatch {
  display: flex;
  align-items: center;
  gap: 8px;
}

.swatch i { width: 22px; height: 22px; border-radius: 50%; }
.swatch-blush { background: linear-gradient(135deg, #f06ca0 50%, #e7b9cb 50%); }
.swatch-blue { background: linear-gradient(135deg, #77bddb 50%, #4a66c6 50%); }
.swatch-pop { background: linear-gradient(135deg, #f05881 33%, #f5b93d 33% 66%, #e54b2c 66%); }
.swatch:hover,
.choice:hover,
.swatch.active,
.choice.active { border-color: var(--ink); box-shadow: inset 0 0 0 1px var(--ink); }

.builder-actions { margin-top: 8px; }
.status-message { min-height: 20px; margin: 14px 0 0; color: var(--cobalt); font-size: 10px; line-height: 1.5; }

.new-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.82fr 0.82fr;
  gap: 18px;
}

.new-card {
  display: grid;
  min-width: 0;
  grid-template-rows: 520px auto;
  background: var(--paper);
}

.new-card img { height: 100%; object-fit: cover; }
.new-card:nth-child(2) img { object-position: center 35%; }
.new-card:nth-child(3) img { object-position: center; }
.new-card > div { padding: 22px; }
.new-card small { font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.new-card h3 { margin: 8px 0 20px; font-family: var(--display); font-size: 26px; letter-spacing: -0.05em; }
.new-card a { font-size: 10px; font-weight: 700; text-transform: uppercase; }

.values-section {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-block: 80px;
  border-block: 1px solid var(--line);
}

.values-section article {
  min-height: 200px;
  padding: 10px 32px;
  border-right: 1px solid var(--line);
}

.values-section article:first-child { padding-left: 0; }
.values-section article:last-child { padding-right: 0; border-right: 0; }
.values-section span { color: var(--pink); font-family: var(--mono); font-size: 9px; }
.values-section h3 { margin: 44px 0 10px; font-family: var(--display); font-size: 25px; letter-spacing: -0.05em; }
.values-section p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.7; }

.story-section {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  gap: clamp(60px, 8vw, 140px);
  align-items: center;
}

.story-images {
  position: relative;
  min-height: 620px;
}

.story-main { position: absolute; top: 0; left: 0; width: 88%; height: 520px; object-fit: cover; }
.story-inset { position: absolute; right: 0; bottom: 0; width: 35%; height: 330px; object-fit: cover; border: 12px solid var(--petal); }
.story-copy .eyebrow { color: var(--pink); }
.story-copy h2 { font-size: clamp(50px, 5.5vw, 82px); line-height: 0.92; }
.story-copy p { color: var(--muted); font-size: 13px; line-height: 1.85; }
.story-copy .story-lead { margin-top: 27px; color: var(--ink); font-size: 16px; }
.story-copy .button { margin-top: 17px; }

.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: clamp(60px, 8vw, 140px);
  border-top: 1px solid var(--line);
}

.faq-intro .eyebrow { color: var(--pink); }
.faq-intro > p:last-child { max-width: 390px; color: var(--muted); font-size: 12px; line-height: 1.8; }

.faq-list details { border-top: 1px solid var(--line); }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { display: flex; min-height: 80px; align-items: center; justify-content: space-between; gap: 30px; cursor: pointer; list-style: none; font-family: var(--display); font-size: 21px; font-weight: 600; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: none; color: var(--pink); font-family: var(--body); font-size: 25px; font-weight: 400; transition: rotate 180ms ease; }
.faq-list details[open] summary span { rotate: 45deg; }
.faq-list details p { max-width: 720px; margin: -8px 50px 25px 0; color: var(--muted); font-size: 12px; line-height: 1.75; }

.newsletter-section {
  padding-block: 75px;
  color: white;
  background: var(--pink-surface);
}

.newsletter-shell {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 80px;
  align-items: end;
}

.newsletter-shell .eyebrow { color: var(--marigold); }
.newsletter-shell h2 { max-width: 760px; font-size: clamp(39px, 4.4vw, 66px); line-height: 0.96; }
.newsletter-form { display: grid; grid-template-columns: 1fr auto; border-bottom: 1px solid rgba(255,255,255,0.75); }
.newsletter-form input { min-width: 0; padding: 17px 0; border: 0; outline: 0; color: white; background: transparent; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.7); }
.newsletter-form button { border: 0; color: white; background: transparent; cursor: pointer; font-size: 11px; font-weight: 700; }
.newsletter-form p { grid-column: 1 / -1; min-height: 18px; margin: 5px 0; font-size: 9px; }

.site-footer { padding-block: 80px 25px; color: white; background: var(--deep); }
.footer-main { display: grid; grid-template-columns: 1.45fr 0.7fr 0.7fr 1fr; gap: 55px; }
.brand-footer strong { font-size: 25px; }
.footer-brand > p { margin: 32px 0 0; color: #cdbfc7; font-family: var(--display); font-size: 28px; line-height: 1.15; letter-spacing: -0.04em; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 13px; }
.footer-column h3 { margin: 0 0 13px; color: var(--marigold); font-family: var(--mono); font-size: 9px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-column a,
.footer-column p { color: #cdbfc7; font-size: 10px; line-height: 1.6; }
.footer-column a:hover { color: white; }
.footer-order .button { margin-top: 9px; color: var(--deep); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 70px; padding-top: 22px; border-top: 1px solid #55424e; color: #9f8e99; font-family: var(--mono); font-size: 8px; letter-spacing: 0.08em; text-transform: uppercase; }

.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(43,24,39,0.5);
  opacity: 0;
  transition: opacity 220ms ease;
}

.drawer-overlay.is-visible { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 310;
  display: flex;
  width: min(520px, 100%);
  height: 100dvh;
  flex-direction: column;
  padding: 28px;
  background: var(--petal);
  box-shadow: -20px 0 70px rgba(43,24,39,0.2);
  transform: translateX(105%);
  transition: transform 260ms cubic-bezier(.2,.8,.2,1);
}

.cart-drawer.is-open { transform: translateX(0); }

.cart-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.cart-header p { margin: 0 0 5px; font-family: var(--mono); font-size: 8px; text-transform: uppercase; }
.cart-header h2 { margin: 0; font-family: var(--display); font-size: 35px; letter-spacing: -0.055em; }
.cart-header button { width: 38px; height: 38px; border: 1px solid var(--line); border-radius: 50%; background: transparent; cursor: pointer; font-size: 25px; line-height: 1; }

.cart-items { flex: 1; overflow-y: auto; }
.cart-item { display: grid; grid-template-columns: 82px 1fr auto; gap: 15px; align-items: center; padding-block: 18px; border-bottom: 1px solid var(--line); }
.cart-item img { width: 82px; height: 105px; object-fit: cover; }
.cart-item-info { display: grid; gap: 6px; }
.cart-item-info h3 { margin: 0; font-family: var(--display); font-size: 17px; line-height: 1.15; }
.cart-item-info p { margin: 0; color: var(--muted); font-size: 9px; }
.cart-item-info > strong { font-size: 9px; font-weight: 700; }
.quantity-control { display: inline-flex; width: fit-content; align-items: center; border: 1px solid var(--line); }
.quantity-control button { width: 28px; height: 28px; border: 0; background: transparent; cursor: pointer; }
.quantity-control button:disabled { cursor: not-allowed; opacity: 0.35; }
.quantity-control span { min-width: 20px; text-align: center; font-size: 9px; }
.cart-item > button { align-self: start; border: 0; background: transparent; cursor: pointer; font-size: 17px; }

.cart-empty { display: grid; flex: 1; place-content: center; justify-items: center; padding: 50px 20px; text-align: center; }
.cart-empty[hidden] { display: none; }
.cart-empty > span { color: var(--pink); font-size: 48px; }
.cart-empty h3 { margin: 20px 0 7px; font-family: var(--display); font-size: 29px; letter-spacing: -0.05em; }
.cart-empty p { max-width: 320px; margin: 0 0 24px; color: var(--muted); font-size: 11px; line-height: 1.7; }

.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-total { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
.cart-total strong { font-family: var(--display); font-size: 25px; }
.cart-price-note { margin: 7px 0 16px; color: var(--muted); font-size: 9px; line-height: 1.55; }
.order-form { display: grid; gap: 12px; }
.order-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.order-field { display: grid; gap: 6px; }
.order-field > span { font-family: var(--mono); font-size: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.order-field input { min-width: 0; width: 100%; min-height: 42px; padding: 10px 11px; border: 1px solid var(--line); border-radius: 0; color: var(--ink); background: var(--paper); }
.order-field input::placeholder { color: var(--muted); opacity: 0.8; }
.order-privacy { margin: -3px 0 0; color: var(--muted); font-size: 8px; line-height: 1.5; }
.whatsapp-handoff { display: grid; grid-template-columns: auto 1fr; gap: 12px; padding: 15px; border: 1px solid var(--line); background: var(--blue-soft); }
.whatsapp-handoff > span { display: grid; width: 30px; height: 30px; place-content: center; border-radius: 50%; color: white; background: var(--cobalt-surface); font-weight: 700; }
.whatsapp-handoff p { margin: 0; color: var(--ink); font-size: 9px; line-height: 1.6; }
.whatsapp-handoff strong { display: block; margin-bottom: 3px; font-family: var(--display); font-size: 14px; line-height: 1.2; }
.cart-footer .button { width: 100%; margin-top: 12px; }
.cart-footer .status-message { min-height: 16px; margin: 8px 0 0; color: var(--muted); font-size: 9px; line-height: 1.5; }

.toast {
  position: fixed;
  z-index: 500;
  right: 25px;
  bottom: 25px;
  max-width: 340px;
  padding: 15px 19px;
  color: white;
  background: var(--deep);
  font-size: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible { opacity: 1; transform: translateY(0); }
.mobile-bag { display: none; }

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1180px) {
  :root { --shell: min(100% - 48px, 1180px); }
  .desktop-nav { gap: 22px; }
  .category-nav { gap: 28px; }
  .hero { min-height: 650px; gap: 42px; }
  .hero-gallery { min-height: 540px; }
  .hero-primary { height: 510px; }
  .hero-secondary { height: 290px; }
  .hero-product { width: 295px; }
  .category-card { min-height: 390px; }
  .product-image { height: 350px; }
  .custom-shell { grid-template-columns: 0.55fr 1.45fr; gap: 55px; }
  .bouquet-builder { grid-template-columns: 0.72fr 1.28fr; }
  .new-card { grid-template-rows: 430px auto; }
}

@media (max-width: 960px) {
  :root { --shell: calc(100% - 40px); }
  .header-main { grid-template-columns: auto 1fr auto; min-height: 75px; }
  .menu-button { display: grid; width: 38px; height: 38px; place-content: center; gap: 6px; border: 0; background: transparent; cursor: pointer; }
  .menu-button i { display: block; width: 21px; height: 2px; background: var(--ink); transition: transform 180ms ease; }
  .menu-open .menu-button i:first-of-type { transform: translateY(4px) rotate(45deg); }
  .menu-open .menu-button i:last-of-type { transform: translateY(-4px) rotate(-45deg); }
  .brand { justify-self: center; }
  .desktop-nav,
  .instagram-link,
  .category-nav { display: none; }
  .header-actions { justify-self: end; }
  .mobile-menu { position: fixed; top: 113px; right: 0; left: 0; display: flex; height: calc(100dvh - 113px); flex-direction: column; padding: 35px 24px; background: var(--petal); opacity: 0; pointer-events: none; transform: translateY(-10px); transition: opacity 180ms ease, transform 180ms ease; }
  .menu-open .mobile-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .mobile-menu a { padding: 18px 0; border-bottom: 1px solid var(--line); font-family: var(--display); font-size: 27px; font-weight: 650; letter-spacing: -0.04em; }
  .hero { grid-template-columns: 1fr; padding-top: 75px; }
  .hero-copy { max-width: 720px; }
  .hero-gallery { min-height: 660px; }
  .hero-primary { width: 75%; height: 620px; }
  .hero-secondary { width: 37%; height: 360px; }
  .category-grid,
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-card { min-height: 470px; }
  .product-image { height: 520px; }
  .quick-add { opacity: 1; transform: none; }
  .editorial-banner { grid-template-columns: 1fr; }
  .editorial-image { min-height: 560px; }
  .editorial-copy { min-height: 530px; }
  .custom-shell { grid-template-columns: 1fr; }
  .custom-intro { position: static; max-width: 680px; }
  .bouquet-builder { grid-template-columns: 0.78fr 1.22fr; }
  .new-grid { grid-template-columns: 1fr 1fr; }
  .new-card:first-child { grid-column: 1 / -1; }
  .new-card { grid-template-rows: 480px auto; }
  .values-section { grid-template-columns: 1fr 1fr; }
  .values-section article { border-bottom: 1px solid var(--line); }
  .values-section article:nth-child(2) { border-right: 0; }
  .values-section article:nth-child(3) { padding-left: 0; border-bottom: 0; }
  .values-section article:nth-child(4) { border-bottom: 0; }
  .story-section { grid-template-columns: 1fr; }
  .story-copy { max-width: 700px; }
  .faq-section { grid-template-columns: 1fr; gap: 55px; }
  .newsletter-shell { grid-template-columns: 1fr; gap: 45px; }
  .footer-main { grid-template-columns: 1.3fr 0.7fr 0.7fr; }
  .footer-order { grid-column: 1 / -1; margin-top: 25px; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 28px); }
  html { scroll-padding-top: 110px; }
  .announcement { height: 32px; }
  .announcement-track { gap: 24px; padding-left: 24px; font-size: 8px; }
  .site-header { top: 0; }
  .header-main { min-height: 70px; gap: 10px; }
  .header-actions { gap: 8px; }
  .theme-toggle { width: 46px; }
  .theme-toggle-track { width: 38px; }
  .theme-toggle-thumb { top: 3px; width: 18px; height: 18px; }
  .theme-toggle[aria-pressed="true"] .theme-toggle-thumb { transform: translateX(16px); }
  .brand { gap: 8px; }
  .brand-flower { width: 30px; height: 30px; transform: scale(.85); }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 7px; }
  .cart-button { min-width: 66px; padding: 10px; }
  .cart-button span { margin-left: 4px; }
  .mobile-menu { top: 102px; height: calc(100dvh - 102px); }
  .hero { min-height: auto; gap: 40px; padding-block: 58px 45px; }
  .hero h1 { font-size: clamp(53px, 17vw, 78px); }
  .hero-lead { margin-top: 24px; font-size: 14px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 28px; }
  .hero-proof { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 38px; }
  .hero-proof span { min-width: 0; }
  .hero-gallery { min-height: 500px; }
  .hero-primary { width: 82%; height: 455px; }
  .hero-secondary { width: 45%; height: 260px; border-width: 8px; }
  .hero-stamp { top: 28px; left: 0; width: 96px; height: 96px; }
  .hero-stamp strong { font-size: 19px; }
  .hero-product { right: 0; width: 270px; min-height: 72px; padding: 12px; }
  .hero-product b { display: none; }
  .category-showcase,
  .shop-section,
  .occasion-section,
  .new-section,
  .story-section,
  .faq-section { padding-block: 75px; }
  .section-heading { align-items: flex-start; flex-direction: column; margin-bottom: 30px; }
  .section-heading h2,
  .faq-intro h2 { font-size: 43px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card { min-height: 300px; }
  .category-card > span { right: 8px; bottom: 8px; left: 8px; padding: 12px; }
  .category-card strong { font-size: 19px; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 35px 10px; }
  .product-image { height: 310px; }
  .quick-add { right: 8px; bottom: 8px; left: 8px; min-height: 42px; font-size: 9px; }
  .product-info { display: grid; padding-top: 12px; }
  .product-info h3 { font-size: 17px; }
  .product-info > strong { padding-top: 0; }
  .price-note { max-width: none; }
  .editorial-banner { min-height: 0; }
  .editorial-image { min-height: 360px; }
  .editorial-copy { min-height: 490px; padding: 54px 28px; }
  .editorial-copy h2 { font-size: 53px; }
  .occasion-grid { grid-template-columns: 1fr; gap: 10px; }
  .occasion-card { min-height: 280px; padding: 26px; }
  .custom-section { padding-block: 75px; }
  .custom-intro h2 { font-size: 61px; }
  .bouquet-builder { grid-template-columns: 1fr; }
  .builder-preview { min-height: 480px; }
  .builder-form { padding: 30px 20px; }
  .swatch-row,
  .choice-row { grid-template-columns: 1fr; }
  .builder-actions { align-items: stretch; flex-direction: column; gap: 18px; }
  .new-grid { grid-template-columns: 1fr; gap: 12px; }
  .new-card:first-child { grid-column: auto; }
  .new-card { grid-template-rows: 380px auto; }
  .values-section { grid-template-columns: 1fr; padding-block: 55px; }
  .values-section article,
  .values-section article:first-child,
  .values-section article:nth-child(3),
  .values-section article:last-child { min-height: 0; padding: 30px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .values-section article:last-child { border-bottom: 0; }
  .values-section h3 { margin-top: 22px; }
  .story-images { min-height: 480px; }
  .story-main { width: 94%; height: 400px; }
  .story-inset { width: 42%; height: 245px; border-width: 8px; }
  .story-copy h2 { font-size: 53px; }
  .faq-list summary { min-height: 72px; font-size: 18px; }
  .newsletter-shell { gap: 35px; }
  .newsletter-shell h2 { font-size: 40px; }
  .newsletter-form { grid-template-columns: 1fr; }
  .newsletter-form button { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.35); text-align: left; }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 45px 25px; }
  .footer-brand,
  .footer-order { grid-column: 1 / -1; }
  .footer-order { margin-top: 0; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
  .cart-drawer { padding: 22px 17px; }
  .order-field-grid { grid-template-columns: 1fr; }
  .mobile-bag { position: fixed; right: 14px; bottom: 14px; z-index: 90; display: block; padding: 12px 14px; box-shadow: 0 10px 30px rgba(43,24,39,.25); }
  .toast { right: 14px; bottom: 72px; left: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
