/* VeMiDi crafts — mockup-aligned layout */
:root {
  --bg: #F5F1EB;
  --bg-soft: #E8DED2;
  --accent-green: #A8BFA3;
  --green-muted: #9db398;
  --script-green: #8a9a83;
  --hero-step-green: #a8bfa3;
  --hero-step-pink: #d4a8a8;
  --hero-step-gold: #e5c77a;
  --text: #5A4636;
  --accent-beige: #D8C3A5;
  --white: #FFFCF8;
  --shadow: 0 8px 32px rgba(90, 70, 54, 0.08);
  --shadow-sm: 0 4px 18px rgba(90, 70, 54, 0.06);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
  --radius-soft: 12px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-script: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Allura', cursive;
}

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

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

body {
  font-family: 'Segoe UI', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
h1, h2, h3, p, li, span, label, summary { overflow-wrap: break-word; }
label { margin-right: 0; }

.container { width: min(1100px, 92vw); margin-inline: auto; min-width: 0; }
.container--narrow { width: min(640px, 92vw); }
.anchor { position: absolute; top: -80px; visibility: hidden; }

.page { background: var(--bg); }

/* —— Typography —— */
.title-decor {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 3.5vw, 2.15rem);
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.title-decor::before,
.title-decor::after {
  content: '';
  width: 28px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 32' fill='none'%3E%3Cpath d='M24 16c-6-8-14-10-14-4s6 8 14 4M24 16c6-8 14-10 14-4s-6 8-14 4' stroke='%23A8BFA3' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.7;
}
.title-decor--light::before,
.title-decor--light::after { filter: brightness(0.9); }
.title-decor--plain::before,
.title-decor--plain::after { display: none; }

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}
.section__intro { text-align: center; font-size: 18px; opacity: 0.88; margin: -1rem 0 2rem; }

/* Subtle sales lines */
.sales-nudge {
  font-size: 0.82rem;
  line-height: 1.45;
  color: #8f7a66;
  opacity: 0.9;
  margin: 0 0 0.85rem;
  font-style: italic;
}
.sales-nudge--center {
  text-align: center;
  margin: -0.75rem 0 1.5rem;
}
.btn--block-mobile { display: inline-flex; }

/* —— UI icons (standardized line-art set in assets/icons/) —— */
.ui-icon {
  width: 1.25rem;
  height: 1.25rem;
  display: block;
  object-fit: contain;
}
.ui-icon--lg {
  width: 2rem;
  height: 2rem;
}
.ui-icon--soft {
  opacity: 0.9;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.75rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: var(--radius-soft);
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: normal;
  text-align: center;
  text-decoration: none;
}
.btn__icon,
.btn__arrow {
  flex-shrink: 0;
}
.btn--primary { background: var(--text); color: var(--bg); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--outline {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--accent-beige);
}
.btn--outline:hover { background: var(--bg-soft); }
.header__cta {
  min-height: 48px;
  padding: 0.65rem 1.15rem;
  font-size: 0.88rem;
  white-space: nowrap;
}
.btn--block { width: 100%; }
.btn--sm { min-height: 40px; padding: 0.5rem 1.2rem; font-size: 0.85rem; }
.btn--lg { min-height: 52px; padding: 0.9rem 2rem; font-size: 1rem; }

/* —— Header —— */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid rgba(216, 195, 165, 0.45);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.55rem 0;
}
.header__logo {
  display: block;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}
.header__logo:hover { opacity: 0.88; }
.header__logo img {
  width: 50px;
  height: 50px;
  display: block;
}
.header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-left: auto;
  align-items: center;
  justify-content: flex-end;
}
.header__nav a:not(.btn) { font-size: 0.82rem; font-weight: 700; opacity: 0.9; white-space: nowrap; }
.header__nav a:not(.btn):hover { opacity: 1; text-decoration: underline; }
.header__cta--mobile { display: none; }
.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
  padding: 6px;
}
.header__toggle span { width: 22px; height: 2px; background: var(--text); }
.header__toggle.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-active span:nth-child(2) { opacity: 0; }
.header__toggle.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* —— Social links —— */
.social-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.social-links__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(216, 195, 165, 0.55);
  background: var(--white);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.social-links__link:hover,
.social-links__link:focus-visible {
  border-color: rgba(90, 70, 54, 0.45);
  background: var(--bg-soft);
  opacity: 1;
}
.social-links__icon {
  display: block;
  width: 1.05rem;
  height: 1.05rem;
}
.social-links__link--text {
  width: auto;
  height: auto;
  min-height: 2rem;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  font-size: 0.84rem;
  font-weight: 600;
}
.social-links--header {
  flex-shrink: 0;
  margin-left: 0.15rem;
}
.social-links--nav {
  display: none;
}
@media (max-width: 1100px) {
  .social-links--header {
    display: none;
  }
}
.site-footer__social {
  margin: 0.85rem auto 0;
  max-width: 520px;
}
.site-footer__social-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
}
.social-links--footer {
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 0.65rem;
}

/* —— Wavy section flow —— */
.wave {
  display: block;
  width: 100%;
  line-height: 0;
  margin: 0;
  background: var(--bg);
}
.wave--from-beige { background: var(--bg-soft); }
.wave svg {
  width: 100%;
  height: clamp(28px, 4vw, 48px);
  display: block;
}
.wave--cream path { fill: var(--bg); }
.wave--beige path { fill: var(--bg-soft); }

.flow-section {
  width: 100%;
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
.flow-section--kit {
  background: var(--bg);
  padding-top: 0.25rem;
}
.flow-section--variants {
  position: relative;
  background:
    radial-gradient(ellipse 90% 55% at 50% -5%, rgba(168, 191, 163, 0.1), transparent 58%),
    radial-gradient(circle at 12% 88%, rgba(216, 195, 165, 0.18), transparent 32%),
    var(--bg);
  overflow: hidden;
}
.flow-section--config,
.flow-section--personalize,
.flow-section--reviews,
.flow-section--seo,
.flow-section--faq { background: var(--bg); }
.flow-section--faq { padding-bottom: 2rem; }
.flow-section--seo {
  padding: clamp(1.75rem, 4vw, 2.25rem) 0 0.5rem;
}
.seo-content__text {
  margin: 0.5rem auto 0;
  max-width: 62ch;
  text-align: center;
  font-size: clamp(0.88rem, 1.1vw, 0.96rem);
  line-height: 1.6;
  opacity: 0.88;
  text-wrap: pretty;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* HERO — full width, no card shell */
.hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 0;
  background:
    radial-gradient(circle at 32% 45%, rgba(168, 191, 163, 0.12), transparent 36%),
    #f5f1eb;
  overflow-x: clip;
  overflow-y: visible;
}
.hero::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: clamp(32px, 5vw, 56px);
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(245, 241, 235, 0.25) 100%);
}
.hero__backdrop {
  display: none;
}
.hero__leaves {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: url('/assets/hero-leaves.svg') no-repeat 0% center / auto 100%;
  opacity: 0.42;
}
.hero__defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  grid-template-rows: minmax(0, 1fr);
  align-items: center;
  gap: clamp(1rem, 2.5vw, 2rem);
  min-height: clamp(480px, 58vh, 640px);
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 3vw, 2rem);
  box-sizing: border-box;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.hero__copy {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  align-self: center;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  padding: clamp(1.25rem, 2.2vw, 2rem) 0;
  z-index: 4;
  position: relative;
}
.hero__copy::before {
  display: none;
}
/* Hero kicker — handmade stamp label */
.hero-kicker {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.65rem;
  max-width: 100%;
}
.hero-kicker__stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(168, 191, 163, 0.7);
  border-radius: var(--radius-soft);
  background: rgba(237, 245, 234, 0.95);
}
.hero-kicker__spark {
  font-size: 0.5rem;
  color: var(--green-muted);
  line-height: 1;
  flex-shrink: 0;
}
.hero-kicker__text {
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1.25vw, 0.76rem);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1;
  white-space: nowrap;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.3vw, 3rem);
  font-weight: 600;
  line-height: 1.08;
  margin-bottom: 0.35rem;
  text-align: left;
}
.hero__script,
.hero__script-line,
.variant__tag,
.site-footer__tagline,
#summaryName,
.modal__accent {
  font-family: var(--font-script);
  font-style: italic;
  font-weight: 400;
}
.hero__script {
  font-size: clamp(1.2rem, 2.7vw, 1.62rem);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--script-green);
  margin-bottom: 0.8rem;
}
.hero__script-line {
  display: block;
  text-align: left;
}
.hero__text {
  display: grid;
  text-align: left;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.55;
  opacity: 0.9;
  margin-bottom: 1.05rem;
  max-width: 31ch;
}
.hero__text--mobile,
.hero__meta-text--mobile {
  display: none;
}
.hero__panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  margin-top: 0.15rem;
}
.hero__steps {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.45rem 0.65rem;
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  width: 100%;
  max-width: 100%;
}
.hero__step {
  flex: 1 1 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  text-align: left;
  gap: 0.4rem;
  position: relative;
  padding: 0;
  min-width: 0;
  max-width: none;
  border: none;
  background: none;
  box-sizing: border-box;
}
.hero__step:not(:last-child)::after {
  display: none;
}
.hero__step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  margin-top: 0.12rem;
  flex-shrink: 0;
  background: none;
  border-radius: 0;
}
.hero__step-icon .ui-icon {
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.72;
}
.hero__step-icon svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  opacity: 0.72;
}
.hero__step-label {
  font-size: clamp(0.68rem, 0.9vw, 0.76rem);
  font-weight: 400;
  color: #8a7562;
  line-height: 1.35;
  min-width: 0;
  flex: 1 1 auto;
  max-width: 100%;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: auto;
}
.hero__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  font-size: clamp(0.78rem, 1vw, 0.86rem);
  font-weight: 500;
  color: #7a6654;
}
.hero__meta-deco {
  display: inline-flex;
  color: #c9a98a;
  flex-shrink: 0;
}
.hero__meta-text {
  line-height: 1.4;
  text-wrap: balance;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}
.hero__actions .btn {
  flex: 1 1 calc(50% - 0.3rem);
  min-width: min(100%, 9.5rem);
  max-width: 100%;
}
.btn--hero {
  min-height: 54px;
  padding: 0.72rem 1.1rem;
  font-size: 0.9rem;
  justify-content: center;
  white-space: nowrap;
}
.btn--hero span {
  white-space: nowrap;
}
.btn--primary.btn--hero {
  padding-inline: 1.15rem;
}
.btn--primary.btn--hero .btn__arrow {
  margin-left: auto;
}
.hero__features {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  max-width: 100%;
  margin: 0;
  padding: 0.55rem 0.35rem;
  list-style: none;
  background: rgba(255, 252, 248, 0.96);
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
}
.hero__features-band {
  margin-top: clamp(0.35rem, 1vw, 0.7rem);
  position: relative;
  z-index: 7;
}
.hero__features-band .container {
  display: flex;
  justify-content: center;
}
.hero__features-band .hero__features {
  max-width: min(1120px, 100%);
}
.hero__features li {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-width: 0;
  padding: 0.2rem 0.45rem;
  text-align: left;
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text);
  opacity: 1;
  background: none;
  border-radius: 0;
  box-shadow: none;
}
.hero__features li:not(:last-child) {
  border-right: 1px solid rgba(216, 195, 165, 0.5);
}
.hero__feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: auto;
  height: auto;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
}
.hero__feature-icon--heart {
  color: #e8a0a8;
  font-size: 1.05rem;
}
.hero__feature-icon--leaf { color: var(--hero-step-green); }
.hero__feature-icon--gift { color: var(--hero-step-gold); }

.hero__polaroids {
  position: absolute;
  left: clamp(-120px, -8vw, -80px);
  top: 46%;
  transform: translate(clamp(32px, 2.5vw, 48px), -50%);
  width: 0;
  height: clamp(200px, 24vh, 250px);
  min-width: 0;
  box-sizing: border-box;
  z-index: 4;
  pointer-events: none;
}
.hero__polaroid-card {
  position: absolute;
  margin: 0;
  padding: 0.22rem 0.22rem 0.2rem;
  background: #fff;
  border: 1px solid rgba(255, 252, 248, 0.98);
  border-radius: 8px;
  box-shadow:
    0 2px 5px rgba(90, 70, 54, 0.05),
    0 6px 14px rgba(90, 70, 54, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}
.hero__polaroid-card img {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}
.hero__polaroid-card--back {
  width: clamp(124px, 9.5vw, 144px);
  top: 30%;
  left: calc((-1 * clamp(-120px, -8vw, -80px)) - clamp(124px, 9.5vw, 144px) + clamp(12px, 1.4vw, 20px));
  transform: translateY(-50%) rotate(-7deg);
  z-index: 2;
}
.hero__polaroid-card--front {
  width: clamp(134px, 10.5vw, 156px);
  top: 58%;
  left: calc((-1 * clamp(-120px, -8vw, -80px)) - clamp(134px, 10.5vw, 156px) + clamp(18px, 1.6vw, 28px));
  transform: translateY(-50%) rotate(6deg);
  z-index: 3;
}
.hero__polaroid-card--front::after,
.hero__polaroid-card--back::after {
  content: '♥';
  position: absolute;
  bottom: 0.26rem;
  right: 0.32rem;
  font-size: 0.5rem;
  color: #e8a0a8;
  opacity: 0.7;
  pointer-events: none;
}
.hero__visual {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: clamp(420px, 52vh, 580px);
  margin: 0;
  overflow: visible;
  z-index: 1;
  display: flex;
  align-items: stretch;
  justify-content: center;
  border-radius: 0 0 0 clamp(12px, 2vw, 24px);
}
.hero__visual::before,
.hero__visual::after {
  display: none;
}
.hero__photo {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  border-radius: inherit;
}
.hero__photo-main {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: clamp(420px, 52vh, 580px);
  max-height: 100%;
  margin: 0;
  object-fit: cover;
  object-position: 55% center;
  border-radius: inherit;
  box-shadow: none;
  opacity: 1;
  clip-path: url(#hero-photo-curve);
  -webkit-clip-path: url(#hero-photo-curve);
}
.hero__float {
  position: absolute;
  bottom: 12%;
  right: 6%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: min(140px, 28%);
  max-width: calc(100% - 1rem);
  pointer-events: none;
}
.hero__float .hero__memo-stamp {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0.5rem 1rem;
}
.hero-kicker__text--lines {
  white-space: normal;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  letter-spacing: 0.1em;
  text-transform: none;
  line-height: 1.2;
  font-size: clamp(0.62rem, 1.1vw, 0.72rem);
}
.hero-kicker__text--lines > span {
  display: block;
  white-space: nowrap;
}

/* KIT — 5 small cards on cream */
.kit-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.kit-row--six {
  grid-template-columns: repeat(6, 1fr);
}
.kit-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 0 0 1.15rem;
  text-align: center;
  transition: transform 0.2s ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.kit-item:hover { transform: translateY(-4px); }
.kit-item__img {
  width: 100%;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  margin: 0 0 0.75rem;
  aspect-ratio: 1;
  background: var(--bg-soft);
  border-radius: var(--radius) var(--radius) 0 0;
}
.kit-item__img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.kit-item p {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.35;
  padding: 0 0.75rem;
}
.safety-note {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  width: 100%;
  max-width: none;
  margin: clamp(1.5rem, 3vw, 2.25rem) auto 0;
  padding: clamp(0.75rem, 1.6vw, 1rem) clamp(0.9rem, 2vw, 1.25rem);
  background: rgba(255, 252, 248, 0.96);
  border: 1px solid rgba(168, 191, 163, 0.5);
  border-left: 4px solid #9bb592;
  border-radius: var(--radius-soft);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.safety-note__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(168, 191, 163, 0.22);
}
.safety-note__text {
  margin: 0;
  font-size: clamp(0.72rem, 1vw, 0.8rem);
  line-height: 1.5;
  color: #5a4636;
}
.safety-note__text strong { color: #4a3b2e; }
.kit-item__sub {
  font-size: 0.72rem;
  font-weight: 400;
  opacity: 0.75;
  margin-top: 0.2rem;
  padding: 0 0.75rem;
  font-family: inherit;
}

/* STEPS — magical journey */
.flow-section--steps {
  position: relative;
  padding: clamp(2.75rem, 5vw, 4.25rem) 0;
  background: linear-gradient(180deg, #F5F1EB 0%, #EDE6DC 55%, #E8DED2 100%);
  overflow: hidden;
}
.flow-section--steps .container {
  position: relative;
  z-index: 1;
}

.steps-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.steps-section__heart {
  position: absolute;
  font-size: 0.85rem;
  color: var(--accent-green);
  opacity: 0.35;
  line-height: 1;
}
.steps-section__heart--1 { top: 10%; left: 6%; }
.steps-section__heart--2 { top: 14%; right: 8%; font-size: 0.7rem; opacity: 0.28; }
.steps-section__butterfly {
  position: absolute;
  width: 26px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 32' fill='none'%3E%3Cpath d='M24 16c-6-8-14-10-14-4s6 8 14 4M24 16c6-8 14-10 14-4s-6 8-14 4' stroke='%23A8BFA3' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
  opacity: 0.32;
}
.steps-section__butterfly--1 { top: 7%; left: 14%; }
.steps-section__butterfly--2 { top: 11%; right: 14%; transform: scaleX(-1); opacity: 0.25; }
.steps-section__spark {
  position: absolute;
  width: 5px;
  height: 5px;
  background: var(--accent-beige);
  transform: rotate(45deg);
  border-radius: 1px;
  opacity: 0.4;
}
.steps-section__spark--1 { top: 18%; left: 42%; }
.steps-section__spark--2 { top: 9%; right: 32%; width: 4px; height: 4px; }
.steps-section__spark--3 { top: 16%; left: 28%; opacity: 0.28; }

.steps-header {
  text-align: center;
  max-width: 34em;
  margin: 0 auto clamp(2rem, 4vw, 2.75rem);
}
.steps-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 0.55rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.5rem 0.65rem;
}
.steps-header__deco {
  font-size: 0.95rem;
  color: var(--accent-green);
  opacity: 0.65;
  line-height: 1;
}
.steps-header__intro {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.55;
  color: var(--text);
  opacity: 0.88;
}

.steps-journey {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  list-style: none;
  margin: 0;
  padding: clamp(3.5rem, 6vw, 4.5rem) 0 0;
  align-items: stretch;
}

.magic-step {
  position: relative;
  min-width: 0;
}
.magic-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: clamp(52px, 8vw, 68px);
  left: calc(50% + clamp(52px, 7vw, 72px));
  width: calc(100% - clamp(52px, 7vw, 72px) + 50%);
  height: 0;
  border-top: 2px dotted rgba(168, 191, 163, 0.45);
  pointer-events: none;
  z-index: 0;
}

.magic-step__card {
  --magic-visual-size: clamp(118px, 13vw, 148px);
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  background: var(--white);
  border-radius: 26px;
  box-shadow: 0 10px 32px rgba(90, 70, 54, 0.07);
  border: 1px solid rgba(232, 222, 210, 0.9);
  padding: 0 1rem 1.35rem;
  /* Room for photo + badge overlapping the card top (62% of visual height + badge) */
  padding-top: calc(var(--magic-visual-size) * 0.62 + 1.5rem);
  text-align: center;
  position: relative;
  z-index: 1;
}

.magic-step__visual {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -42%);
  z-index: 2;
  width: var(--magic-visual-size);
}

.magic-step__photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: 0 8px 24px rgba(90, 70, 54, 0.1);
  background: var(--bg);
}
.magic-step__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.magic-step__badge {
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 3px solid var(--white);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 4px 12px rgba(90, 70, 54, 0.12);
  z-index: 3;
}
.magic-step--1 .magic-step__badge { background: #A8BFA3; }
.magic-step--2 .magic-step__badge { background: #d4a8a8; }
.magic-step--3 .magic-step__badge { background: #A8BFA3; }
.magic-step--4 .magic-step__badge { background: #e8c4b0; }

.magic-step__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  margin-top: 0.35rem;
}
.magic-step__title {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  font-weight: 600;
  color: var(--text);
  margin: 0 0 0.45rem;
  line-height: 1.2;
}
.magic-step--1 .magic-step__title-icon { color: #A8BFA3; }
.magic-step--2 .magic-step__title-icon { color: #d4a8a8; }
.magic-step--3 .magic-step__title-icon { color: #A8BFA3; }
.magic-step--4 .magic-step__title-icon { color: #e8c4b0; }
.magic-step__title-icon { flex-shrink: 0; }

.magic-step__text {
  font-size: clamp(0.8rem, 1.35vw, 0.88rem);
  line-height: 1.5;
  color: var(--text);
  opacity: 0.88;
  max-width: 16em;
  margin: 0;
}

.steps-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  list-style: none;
  margin: clamp(1.75rem, 3.5vw, 2.5rem) auto 0;
  padding: 0.55rem 0.35rem;
  max-width: min(1100px, 100%);
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(90, 70, 54, 0.07);
  border: 1px solid rgba(232, 222, 210, 0.65);
}
.steps-benefits__item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem clamp(0.65rem, 1.4vw, 1rem);
  min-width: 0;
}
.steps-benefits__item:not(:last-child) {
  border-right: 1px solid rgba(216, 195, 165, 0.42);
}
.steps-benefits__icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  line-height: 1;
}
.steps-benefits__icon .ui-icon {
  width: 1.05rem;
  height: 1.05rem;
  opacity: 0.72;
}
.steps-benefits__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.38;
  color: #5a4636;
  text-align: left;
}

/* VARIANTS — gift-style product cards */
.flow-section--variants .container {
  position: relative;
  z-index: 1;
}

.variants-section__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.variants-section__spark,
.variants-section__butterfly,
.variants-section__dot {
  position: absolute;
  opacity: 0.45;
}
.variants-section__spark {
  width: 6px;
  height: 6px;
  background: var(--accent-beige);
  transform: rotate(45deg);
  border-radius: 1px;
}
.variants-section__spark--1 { top: 12%; left: 18%; }
.variants-section__spark--2 { top: 8%; right: 22%; width: 4px; height: 4px; opacity: 0.35; }
.variants-section__spark--3 { top: 18%; left: 42%; opacity: 0.3; }
.variants-section__butterfly {
  width: 28px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 48 32' fill='none'%3E%3Cpath d='M24 16c-6-8-14-10-14-4s6 8 14 4M24 16c6-8 14-10 14-4s-6 8-14 4' stroke='%23A8BFA3' stroke-width='1.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.variants-section__butterfly--1 { top: 6%; left: 8%; opacity: 0.35; }
.variants-section__butterfly--2 { top: 10%; right: 10%; width: 22px; opacity: 0.28; transform: scaleX(-1); }
.variants-section__dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent-green);
  opacity: 0.25;
}
.variants-section__dot--1 { top: 14%; right: 38%; }
.variants-section__dot--2 { top: 22%; left: 28%; background: var(--accent-beige); }
.variants-section__dot--3 { top: 9%; left: 55%; width: 4px; height: 4px; }

.variants-header {
  text-align: center;
  max-width: 36em;
  margin: 0 auto 2.25rem;
  padding-top: 0.25rem;
}
.variants-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text);
  margin-bottom: 0.55rem;
}
.variants-header__intro {
  font-size: clamp(1rem, 2vw, 1.12rem);
  opacity: 0.88;
  margin-bottom: 0.5rem;
}
.variants-header__nudge {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #8f7a66;
  font-style: italic;
  opacity: 0.92;
}

.variants-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: stretch;
  padding-top: 0.5rem;
}

.variant {
  --variant-accent: var(--accent-beige);
  --variant-accent-soft: rgba(216, 195, 165, 0.22);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(216, 195, 165, 0.45);
  box-shadow: 0 10px 36px rgba(90, 70, 54, 0.07);
  padding: clamp(1.5rem, 2.5vw, 2rem);
  padding-top: 2.35rem;
  min-width: 0;
}
.variant--mini {
  --variant-accent: #d4a5a5;
  --variant-accent-soft: rgba(212, 165, 165, 0.2);
}
.variant--standard {
  --variant-accent: #A8BFA3;
  --variant-accent-soft: rgba(168, 191, 163, 0.22);
}
.variant--maxi {
  --variant-accent: #c4b0c8;
  --variant-accent-soft: rgba(196, 176, 200, 0.22);
}

.variant--best {
  border-color: var(--accent-green);
  box-shadow:
    0 0 0 1px rgba(168, 191, 163, 0.35),
    0 14px 42px rgba(90, 70, 54, 0.1),
    0 0 28px rgba(168, 191, 163, 0.18);
  transform: translateY(-6px);
  z-index: 2;
}

.variant__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.35rem 0.85rem;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--text);
  background: linear-gradient(135deg, #edf5ea 0%, #dce8d8 100%);
  border: 1px solid rgba(168, 191, 163, 0.65);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(90, 70, 54, 0.08);
}

.variant__mark {
  position: absolute;
  top: 1.15rem;
  left: 1.15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--variant-accent-soft);
  color: var(--variant-accent);
  flex-shrink: 0;
}
.variant__mark svg { display: block; }

.variant__title {
  font-family: var(--font-heading);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.15rem;
  width: 100%;
}
.variant__tag {
  font-size: clamp(1.15rem, 2.2vw, 1.35rem);
  color: var(--variant-accent);
  margin: 0 0 1rem;
  line-height: 1.1;
  width: 100%;
}

.variant__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.15rem;
  padding: clamp(0.85rem, 2vw, 1.15rem);
  border-radius: var(--radius-soft);
  background: linear-gradient(160deg, #faf7f2 0%, #f0ebe3 55%, #ebe4da 100%);
  border: 1px solid rgba(232, 222, 210, 0.8);
  min-height: clamp(140px, 18vw, 180px);
  overflow: hidden;
}
.variant__visual img {
  width: 100%;
  max-height: 165px;
  object-fit: contain;
  object-position: center;
}

.variant__features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 1.15rem;
  flex: 1;
  width: 100%;
}
.variant__features li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.9;
}
.variant__feat-icon {
  flex-shrink: 0;
  margin-top: 0.12rem;
  color: var(--variant-accent);
}

.variant__price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.2rem;
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  color: var(--text);
}
.variant__price-value {
  font-size: clamp(1.65rem, 3vw, 1.95rem);
  font-weight: 600;
  line-height: 1;
}
.variant__price-currency {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.85;
}

.variant__cta {
  width: 100%;
  min-height: 48px;
  border-radius: var(--radius-pill);
  font-size: 0.86rem;
  margin-top: auto;
}
.btn--variant-soft {
  background: var(--white);
  color: var(--text);
  border: 1.5px solid var(--variant-accent);
  box-shadow: 0 2px 10px rgba(90, 70, 54, 0.04);
}
.btn--variant-soft:hover {
  background: var(--variant-accent-soft);
  transform: translateY(-2px);
}
.btn--variant-primary {
  background: linear-gradient(135deg, #8a9a83 0%, #5a4636 100%);
  color: var(--white);
  border: none;
  box-shadow: 0 6px 20px rgba(90, 70, 54, 0.15);
}
.btn--variant-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(90, 70, 54, 0.2);
}

/* CONFIG / PURCHASE */
.flow-section--purchase {
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(168, 191, 163, 0.08), transparent 55%),
    var(--bg);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
}
#configurator .container {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}
.configurator-header { text-align: center; margin-bottom: 1.25rem; }
.configurator-header__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 3.8vw, 2.35rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.configurator-header__lead {
  max-width: 36em;
  margin: -0.5rem auto 0;
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.55;
}
.configurator-panel {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: clamp(1.25rem, 2.5vw, 2rem);
  min-width: 0;
}
.configurator__layout {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: stretch;
}
.config-form {
  min-width: 0;
}

/* Kit picker cards inside configurator */
.config-group--kits legend { margin-bottom: 1rem; }
.config-kit-picker {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.65rem, 1.5vw, 1rem);
  align-items: stretch;
}
.config-kit-card {
  cursor: pointer;
  margin: 0;
  padding: clamp(1rem, 1.8vw, 1.35rem) 0.85rem 1rem;
  padding-top: 1.75rem;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.config-kit-card__input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.config-kit-card__check {
  display: none;
}
.config-kit-card__radio {
  position: absolute;
  top: 1rem;
  left: 1rem;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(168, 191, 163, 0.95);
  box-shadow: 0 3px 10px rgba(90, 70, 54, 0.08);
}
.config-kit-card__radio::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--white);
  transform: scale(0.85);
  opacity: 0;
  transition: opacity 0.2s, transform 0.2s;
}
.config-kit-card:has(.config-kit-card__input:checked) .config-kit-card__radio {
  background: var(--accent-green);
  border-color: rgba(168, 191, 163, 1);
}
.config-kit-card:has(.config-kit-card__input:checked) .config-kit-card__radio::after {
  opacity: 1;
  transform: scale(1);
}
.config-kit-card:has(.config-kit-card__input:checked) {
  border: 2.5px solid var(--accent-green);
  box-shadow: 0 12px 32px rgba(90, 70, 54, 0.09);
}
.config-kit-card:has(.config-kit-card__input:focus-visible) {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
}
.config-kit-picker .variant--best {
  transform: none;
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding-top: 2.85rem;
  overflow: visible;
}
.config-kit-picker .variant--best:has(.config-kit-card__input:checked) {
  transform: translateY(-2px);
}
.config-kit-picker .variant__badge {
  top: 0.6rem;
  transform: translateX(-50%);
  z-index: 5;
}
.config-kit-picker .variant__title,
.config-kit-picker .variant__tag {
  padding-left: 0;
  width: 100%;
}
.config-kit-picker .variant__title {
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  margin-bottom: 0.1rem;
}
.config-kit-picker .variant__tag {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  margin-bottom: 0.65rem;
}
.config-kit-picker .variant__visual {
  min-height: clamp(90px, 12vw, 120px);
  margin-bottom: 0.75rem;
  padding: 0.55rem;
}
.config-kit-picker .variant__visual img {
  max-height: 100px;
}
.config-kit-picker .variant__features {
  gap: 0.35rem;
  margin-bottom: 0.65rem;
}
.config-kit-picker .variant__features li {
  font-size: 0.76rem;
}
.config-kit-picker .variant__price {
  margin-bottom: 0;
}
.config-kit-picker .variant__price-value {
  font-size: clamp(1.35rem, 2.5vw, 1.55rem);
}

.config-extra {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 0.75rem;
  min-height: auto;
  overflow: visible;
  background: var(--bg);
  border: 1px solid rgba(216, 195, 165, 0.45);
  border-radius: var(--radius-soft);
  padding: 0.85rem 1rem;
}
.config-extra__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.75rem;
  flex: none;
  width: 100%;
  min-width: 0;
}
.config-extra__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
}
.config-extra__name {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
}
.config-extra__price {
  font-size: 0.82rem;
  color: #8f7a66;
  opacity: 0.9;
}
.config-extra .config-field {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
#nameField {
  display: block;
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  flex: none;
}
#nameField input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
@media (min-width: 769px) {
  .config-extra {
    flex-direction: row;
    align-items: flex-end;
    flex-wrap: nowrap;
    gap: 1rem;
  }
  .config-extra__row {
    flex: 1 1 auto;
    width: auto;
  }
  #nameField {
    flex: 0 1 min(360px, 48%);
    width: min(360px, 48%);
    max-width: min(360px, 48%);
  }
  #nameField.config-field--collapsed {
    flex: 0 0 0;
    width: 0;
    max-width: 0;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    overflow: hidden;
  }
}
.config-group {
  border: none;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(216, 195, 165, 0.4);
}
.config-group:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.config-group legend {
  font-family: var(--font-heading);
  font-weight: 600;
  margin-bottom: 0.65rem;
  width: 100%;
}
.config-step {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin-bottom: 0.85rem;
}
.config-step__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
}
.config-step__label {
  display: inline-block;
}
.config-group__legend-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  justify-content: space-between;
}
.config-group__addon { font-size: 0.82rem; opacity: 0.75; margin-right: auto; }

.config-options--stack { display: flex; flex-direction: column; gap: 0.5rem; }
.config-options--inline { display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem; }
.config-option input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.config-option { cursor: pointer; display: block; }
.config-option__box {
  display: block;
  padding: 0.85rem 1rem;
  background: var(--bg);
  border: 1.5px solid rgba(216, 195, 165, 0.5);
  border-radius: 12px;
  transition: border-color 0.2s, background 0.2s, box-shadow 0.2s;
}
.config-option__meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  line-height: 1.4;
  opacity: 0.88;
}
.config-option__box strong { display: block; font-family: var(--font-heading); font-size: 0.92rem; }
.config-option input:focus-visible + .config-option__box {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}
.config-option input:checked + .config-option__box {
  border-color: var(--accent-green);
  background: rgba(168, 191, 163, 0.2);
  box-shadow: 0 0 0 1px rgba(168, 191, 163, 0.35);
}
.config-option input:checked + .config-option__box strong {
  color: var(--text);
}

/* Coloring picker cards */
.config-color-picker { gap: 0.75rem; }
.config-color-card {
  cursor: pointer;
  position: relative;
  display: grid;
  grid-template-columns: 26px 1fr auto;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  background: var(--white);
  border: 1.5px solid rgba(216, 195, 165, 0.5);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(90, 70, 54, 0.06);
  min-height: 96px;
}
.config-color-card input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.config-color-card__radio {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(168, 191, 163, 0.95);
  box-shadow: 0 3px 10px rgba(90, 70, 54, 0.08);
  position: relative;
}
.config-color-card__radio::after {
  content: '';
  position: absolute;
  inset: 6px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.2s, transform 0.2s;
}
.config-color-card__text { min-width: 0; }
.config-color-card__title {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.2;
}
.config-color-card__sub {
  display: block;
  font-size: 0.82rem;
  opacity: 0.82;
  line-height: 1.35;
  margin-top: 0.25rem;
}
.config-color-card__media {
  width: clamp(110px, 14vw, 150px);
  height: 64px;
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(160deg, #faf7f2 0%, #f0ebe3 60%, #ebe4da 100%);
  border: 1px solid rgba(232, 222, 210, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
}
.config-color-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.config-color-card:has(input:focus-visible) {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
}
.config-color-card:has(input:checked) {
  border-color: var(--accent-green);
  box-shadow:
    0 0 0 1px rgba(168, 191, 163, 0.4),
    0 12px 32px rgba(90, 70, 54, 0.09);
}
.config-color-card:has(input:checked) .config-color-card__radio {
  background: var(--accent-green);
  border-color: rgba(168, 191, 163, 1);
}
.config-color-card:has(input:checked) .config-color-card__radio::after {
  opacity: 1;
  transform: scale(1);
}

.toggle { position: relative; width: 46px; height: 24px; flex-shrink: 0; text-align: center; }
.toggle input { opacity: 0; width: 0; height: 0; }
.toggle__slider {
  position: absolute;
  inset: 0;
  background: var(--bg-soft);
  border-radius: 999px;
  cursor: pointer;
}
.toggle__slider::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.toggle input:checked + .toggle__slider { background: var(--accent-green); }
.toggle input:checked + .toggle__slider::before { transform: translateX(22px); }

.config-field { margin-top: 0.65rem; max-height: 200px; overflow: hidden; transition: max-height 0.3s, opacity 0.25s; }
.config-field--collapsed { max-height: 0; opacity: 0; margin-top: 0; pointer-events: none; }
.config-field label { display: block; font-size: 0.85rem; margin-bottom: 0.3rem; }
.config-field input,
.config-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--bg-soft);
  border-radius: 10px;
  font: inherit;
  background: #fff;
}
.config-field--error input,
.config-field--error textarea { border-color: #b85c4a; }

.config-check {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.4rem 0;
  cursor: pointer;
  min-height: 40px;
}
.config-check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--text); }
.config-check__text small { display: block; font-size: 0.82rem; opacity: 0.75; }

/* Configurator summary — 3-column preview panel */
.config-summary {
  background: linear-gradient(165deg, #fff 0%, #f5f1eb 48%, #ebe4da 100%);
  border-radius: 24px;
  padding: clamp(1.25rem, 2.5vw, 1.75rem);
  box-shadow:
    0 4px 24px rgba(90, 70, 54, 0.06),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  border: 1px solid rgba(216, 195, 165, 0.55);
  position: static;
  width: 100%;
  min-width: 0;
}
.config-summary--purchase {
  border-color: rgba(168, 191, 163, 0.4);
}
.config-summary__heading {
  font-family: var(--font-heading);
  font-size: clamp(1.25rem, 2.5vw, 1.55rem);
  font-weight: 600;
  color: #5a4636;
  text-align: center;
  margin: 0 0 clamp(1rem, 2vw, 1.35rem);
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(216, 195, 165, 0.45);
}
.config-summary__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 0.9fr);
  gap: clamp(1rem, 2vw, 1.5rem);
  align-items: start;
}
.config-summary__col {
  min-width: 0;
}
.config-summary__col--preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.summary-preview {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #f5f1eb;
  box-shadow: 0 8px 28px rgba(90, 70, 54, 0.08);
  border: 1px solid rgba(216, 195, 165, 0.35);
}
.summary-preview img {
  display: block;
  width: 100%;
  height: auto;
  max-height: clamp(180px, 28vw, 280px);
  object-fit: cover;
  object-position: center;
}
.summary-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.5rem;
  justify-content: center;
}
.summary-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: #5a4636;
  border: 1px solid rgba(216, 195, 165, 0.65);
  box-shadow: 0 2px 8px rgba(90, 70, 54, 0.04);
  white-space: nowrap;
}
.summary-info {
  text-align: center;
  padding: 0.75rem 0.85rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(232, 222, 210, 0.9);
}
.summary-info__title {
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 600;
  color: #5a4636;
  margin: 0 0 0.2rem;
  line-height: 1.35;
}
.summary-info__sub {
  font-size: 0.78rem;
  color: #8f7a66;
  margin: 0;
  opacity: 0.9;
}
.summary-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.summary-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.85rem 0.9rem;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  border: 1px solid rgba(232, 222, 210, 0.85);
  box-shadow: 0 2px 12px rgba(90, 70, 54, 0.04);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.summary-row__icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.summary-row__icon--kit {
  background: rgba(216, 195, 165, 0.35);
  color: #5a4636;
}
.summary-row__icon--coloring {
  background: rgba(168, 191, 163, 0.35);
  color: #5a7a56;
}
.summary-row__icon--personal {
  background: rgba(232, 196, 176, 0.45);
  color: #9a6b58;
}
.summary-row__body {
  flex: 1;
  min-width: 0;
}
.summary-row__label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #8f7a66;
  margin-bottom: 0.2rem;
}
.summary-row__tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: #5a4636;
  margin-bottom: 0.25rem;
}
.summary-row__desc {
  font-size: 0.84rem;
  line-height: 1.45;
  color: #5a4636;
  margin: 0;
}
.summary-row__sub {
  font-size: 0.78rem;
  color: #8f7a66;
  margin: 0.15rem 0 0;
  opacity: 0.9;
}
.summary-row__arrow {
  flex-shrink: 0;
  color: rgba(90, 70, 54, 0.35);
  margin-top: 0.35rem;
}
.config-summary__col--checkout {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.25rem 0;
}
.summary-pricing {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.5rem;
}
.summary-price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  font-size: 0.88rem;
  color: #5a4636;
}
.summary-price-line__label {
  opacity: 0.88;
}
.summary-price-line__value {
  font-weight: 500;
  white-space: nowrap;
}
.summary-price-line__value--extra {
  color: #9a6b58;
}
.summary-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.85rem 0;
  margin: 0.25rem 0 0.75rem;
  border-top: 1px solid rgba(216, 195, 165, 0.55);
  border-bottom: 1px solid rgba(216, 195, 165, 0.35);
}
.summary-total__label {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: #5a4636;
}
.summary-total__value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: #5a4636;
  line-height: 1.1;
}
.summary-delivery {
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  border-radius: 14px;
  background: rgba(168, 191, 163, 0.12);
  border: 1px solid rgba(168, 191, 163, 0.28);
  text-align: center;
}
.summary-delivery__title {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: #5a4636;
  margin: 0 0 0.2rem;
}
.summary-delivery__text {
  font-size: 0.78rem;
  color: #6b5a4a;
  margin: 0;
  opacity: 0.9;
}
.summary-order-btn {
  margin-top: 0.15rem;
}
.config-summary__note {
  font-size: 0.72rem;
  opacity: 0.8;
  text-align: center;
  margin-top: 0.65rem;
  line-height: 1.45;
  color: #8f7a66;
}
.config-errors {
  background: rgba(184, 92, 74, 0.12);
  border: 1px solid rgba(184, 92, 74, 0.25);
  border-radius: 10px;
  padding: 0.75rem 0.85rem;
  margin-bottom: 0.75rem;
  font-size: 0.84rem;
  color: #8b4538;
  line-height: 1.45;
}
.config-errors p + p { margin-top: 0.35rem; }
.config-check input:checked + .config-check__text {
  color: var(--text);
  font-weight: 500;
}

/* Occasions section */
.flow-section--occasions {
  background: linear-gradient(145deg, rgba(245, 241, 235, 0.95) 0%, rgba(232, 222, 210, 0.7) 100%);
  padding: clamp(2.4rem, 5vw, 4rem) 0;
  position: relative;
  overflow: hidden;
}
.flow-section--occasions::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 9% 18%, rgba(168, 191, 163, 0.22) 0%, transparent 18%),
    radial-gradient(circle at 88% 20%, rgba(216, 195, 165, 0.24) 0%, transparent 20%);
}
.occasions {
  position: relative;
  z-index: 1;
}
.occasions__header {
  text-align: center;
  margin-bottom: clamp(1.2rem, 3vw, 2rem);
}
.occasions__eyebrow {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #8f7a66;
  margin-bottom: 0.45rem;
}
.occasions__lead {
  max-width: 56ch;
  margin: 0.75rem auto 0;
  color: #6f5b4a;
  line-height: 1.55;
}
.occasions__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.6vw, 1.15rem);
}
.occasion-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 0.95rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86) 0%, rgba(245, 241, 235, 0.9) 100%);
  border: 1px solid rgba(216, 195, 165, 0.5);
  box-shadow: 0 8px 20px rgba(90, 70, 54, 0.08);
}
.occasion-card__icon {
  width: 1.95rem;
  height: 1.95rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5a4636;
  font-size: 0.78rem;
  background: rgba(216, 195, 165, 0.45);
  border: 1px solid rgba(168, 191, 163, 0.45);
  margin-bottom: 0.55rem;
}
.occasion-card__title {
  font-family: var(--font-heading);
  font-size: 1.02rem;
  color: #5a4636;
  margin: 0 0 0.35rem;
}
.occasion-card__text {
  font-size: 0.87rem;
  line-height: 1.5;
  color: #6f5b4a;
  margin: 0 0 0.6rem;
}
.occasion-card__deco {
  font-size: 0.76rem;
  color: #8f7a66;
  opacity: 0.78;
  margin-bottom: 0.6rem;
}
.occasion-card__media {
  margin: auto 0 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(216, 195, 165, 0.55);
  background: #fff;
}
.occasion-card__media img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center;
}

/* PERSONALIZE — collage + copy */
.personalize-split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: center;
}
.personalize__visual {
  min-width: 0;
  max-width: 100%;
}
.personalize__collage {
  position: relative;
  margin: 0;
  width: 100%;
  max-width: min(520px, 100%);
  min-height: clamp(260px, 34vw, 380px);
  aspect-ratio: 5 / 4;
}
.personalize__badge {
  position: absolute;
  top: 0.65rem;
  left: 50%;
  z-index: 3;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  padding: 0.38rem 0.85rem;
  font-family: var(--font-heading);
  font-size: clamp(0.68rem, 1.1vw, 0.76rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--text);
  background: linear-gradient(135deg, #edf5ea 0%, #dce8d8 100%);
  border: 1px solid rgba(168, 191, 163, 0.65);
  border-radius: var(--radius-pill);
  box-shadow: 0 4px 14px rgba(90, 70, 54, 0.08);
  pointer-events: none;
}
.personalize__img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 14px;
  box-shadow:
    0 4px 14px rgba(90, 70, 54, 0.08),
    0 12px 28px rgba(90, 70, 54, 0.1);
}
.personalize__img--main {
  position: absolute;
  left: 0;
  top: 8%;
  width: 74%;
  z-index: 1;
}
.personalize__img--accent {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  border: 3px solid rgba(255, 252, 248, 0.95);
}
.personalize__copy {
  min-width: 0;
  max-width: 100%;
}
.personalize__lead {
  margin: 0.65rem 0 0;
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.55;
  opacity: 0.9;
  max-width: 38ch;
}
.personalize__perks {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin: 1rem 0 1.35rem;
  padding: 0;
  list-style: none;
}
.personalize__perks li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.9rem;
  line-height: 1.4;
  color: #7a6654;
}
.personalize__perks li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--accent-green);
  transform: translateY(-50%);
}

/* REVIEWS */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.review {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 1.35rem 1.2rem;
}
.review__stars { color: var(--accent-green); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 0.65rem; }
.review p { font-size: 0.9rem; font-style: italic; line-height: 1.55; margin-bottom: 1rem; }
.review footer { display: flex; align-items: center; gap: 0.6rem; }
.review__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-green);
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 600;
}
.review cite { font-size: 0.82rem; opacity: 0.85; font-style: normal; }

/* FAQ */
.flow-section--faq .container.container--narrow {
  display: flex;
  flex-direction: column;
  width: min(1100px, 94vw);
}
.faq {
  box-sizing: border-box;
  overflow-x: hidden;
}
.faq-grid {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.05rem;
  align-items: start;
  width: 100%;
  min-width: 0;
  box-sizing: border-box;
}
.faq-item {
  min-width: 0;
  box-sizing: border-box;
  background: var(--white);
  border-radius: 12px;
  margin-bottom: 0;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  font-family: var(--font-heading);
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  min-width: 0;
  box-sizing: border-box;
}
.faq-item summary::-webkit-details-marker,
.faq-item summary::marker { display: none; }
.faq-item summary::after {
  content: '+';
  flex-shrink: 0;
  margin-left: auto;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1;
  color: var(--green-muted);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after {
  content: '−';
}
.faq-item[open] summary {
  padding-bottom: 0.65rem;
}
.faq-item p {
  margin: 0;
  padding: 0 1.2rem 1.15rem;
  font-size: 0.92rem;
  line-height: 1.55;
  opacity: 0.9;
  overflow-wrap: anywhere;
  word-break: break-word;
  min-width: 0;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }
}

/* CTA FOOTER */
.cta-footer {
  padding: clamp(2rem, 4vw, 3rem) 0;
  background: var(--bg);
}
.cta-footer__card {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) auto minmax(260px, 40%);
  align-items: stretch;
  min-height: clamp(220px, 28vw, 280px);
  background: #fdf8f4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 8px 28px rgba(90, 70, 54, 0.06);
  border: 1px solid rgba(216, 195, 165, 0.35);
}
.cta-footer__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.25rem, 2.5vw, 2rem);
}
.cta-footer__copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
  color: #5a4636;
  margin: 0 0 0.5rem;
  max-width: 16em;
}
.cta-footer__copy p {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  line-height: 1.55;
  color: #7a6654;
  margin: 0 0 1.15rem;
  max-width: 34ch;
}
.cta-footer__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.7rem 1.35rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: #fff;
  background: #5a4636;
  border-radius: 12px;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}
.cta-footer__btn:hover {
  background: #4a382c;
  transform: translateY(-1px);
}
.cta-footer__btn-arrow {
  font-size: 1.05em;
  line-height: 1;
}
.cta-footer__divider {
  width: 1px;
  align-self: stretch;
  background: rgba(216, 195, 165, 0.45);
  margin: clamp(1.25rem, 2vw, 1.75rem) 0;
}
.cta-footer__features {
  list-style: none;
  margin: 0;
  padding: clamp(1.5rem, 2.5vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(0.65rem, 1.5vw, 0.85rem);
}
.cta-footer__features li {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(0.8rem, 1.1vw, 0.88rem);
  font-weight: 500;
  color: #5a4636;
  line-height: 1.35;
}
.cta-footer__feature-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  border: 1px solid rgba(168, 191, 163, 0.45);
  background: rgba(255, 252, 248, 0.9);
  color: #6f5b4a;
}
.cta-footer__visual {
  margin: 0;
  min-height: 100%;
  overflow: hidden;
}
.cta-footer__visual img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: clamp(220px, 28vw, 280px);
  object-fit: cover;
  object-position: center;
  border-radius: 0 24px 24px 0;
}

@media (max-width: 1024px) {
  .cta-footer__card {
    grid-template-columns: 1fr minmax(200px, 40%);
    grid-template-rows: auto auto;
    grid-template-areas:
      "copy visual"
      "features visual";
    min-height: 0;
  }
  .cta-footer__copy { grid-area: copy; }
  .cta-footer__divider { display: none; }
  .cta-footer__features {
    grid-area: features;
    padding-top: 0;
    padding-bottom: clamp(1.25rem, 2vw, 1.75rem);
  }
  .cta-footer__visual {
    grid-area: visual;
  }
  .cta-footer__visual img {
    min-height: 100%;
    border-radius: 0 24px 24px 0;
  }
}

.site-footer {
  background: var(--bg);
  padding: 1.75rem 0;
  text-align: center;
  border-top: 1px solid rgba(216, 195, 165, 0.35);
}
.site-footer__logo {
  margin: 0 auto 0.4rem;
  width: auto;
  height: auto;
  max-height: 4.5rem;
  max-width: min(7.5rem, 42vw);
  object-fit: contain;
}
.site-footer__tagline { font-size: 1.3rem; color: var(--green-muted); }
.site-footer__links {
  margin: 0.8rem auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem 1rem;
  max-width: 840px;
}
.site-footer__links a {
  font-size: 0.86rem;
  color: var(--text);
  opacity: 0.82;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  opacity: 1;
  border-color: rgba(90, 70, 54, 0.45);
}
.site-footer__copy { font-size: 0.8rem; opacity: 0.7; margin-top: 0.2rem; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: #5a4636;
  color: #f5f1eb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(90, 70, 54, 0.22);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover {
  background: #a8bfa3;
  color: #5a4636;
  box-shadow: 0 6px 22px rgba(90, 70, 54, 0.18);
}
.back-to-top:focus-visible {
  outline: 2px solid var(--accent-green);
  outline-offset: 3px;
}
.back-to-top__icon {
  display: block;
  flex-shrink: 0;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal__backdrop { position: absolute; inset: 0; background: rgba(90, 70, 54, 0.4); }
.modal__content {
  position: relative;
  background: var(--bg);
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow);
}
.modal__close { position: absolute; top: 0.5rem; right: 0.75rem; background: none; border: none; font-size: 1.4rem; cursor: pointer; }
.modal__content h3 { font-family: var(--font-heading); margin-bottom: 0.5rem; }
.modal__accent { font-size: 1.4rem; color: var(--green-muted); margin: 0.35rem 0 0.75rem; }
.modal__total { font-weight: 600; font-family: var(--font-heading); margin-bottom: 0.5rem; }
.modal__summary { text-align: left; background: #fff; padding: 0.75rem; border-radius: 10px; margin-bottom: 1rem; font-size: 0.86rem; }
.modal__summary li { padding: 0.2rem 0; }

/* Checkout modal */
.modal--checkout { align-items: flex-start; padding: 1rem; overflow-y: auto; }
.modal__content--checkout {
  max-width: min(960px, 96vw);
  width: 100%;
  max-height: calc(100vh - 2rem);
  overflow-y: auto;
  text-align: left;
  padding: clamp(1.25rem, 3vw, 2rem);
  margin: auto 0;
}
.checkout__title {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.checkout__lead {
  font-size: 0.9rem;
  color: #7a6654;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}
.checkout__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.85fr);
  gap: clamp(1rem, 2.5vw, 1.5rem);
  align-items: start;
}
.checkout__form { min-width: 0; }
.checkout-section {
  border: none;
  margin: 0 0 1.15rem;
  padding: 0 0 1.15rem;
  border-bottom: 1px solid rgba(216, 195, 165, 0.45);
}
.checkout-section:last-of-type { border-bottom: none; padding-bottom: 0; }
.checkout-section__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.85rem;
  color: var(--text);
}
.checkout-field { margin-bottom: 0.75rem; }
.checkout-field:last-child { margin-bottom: 0; }
.checkout-field label,
.checkout-field__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.checkout-required { color: #b85c4a; font-weight: 600; }
.checkout-optional { font-weight: 400; opacity: 0.75; font-size: 0.8rem; }
.checkout-field input[type="text"],
.checkout-field input[type="tel"],
.checkout-field input[type="email"],
.checkout-field select,
.checkout-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid rgba(216, 195, 165, 0.55);
  border-radius: 10px;
  font: inherit;
  background: var(--white);
  color: var(--text);
  min-height: 46px;
}
.checkout-field textarea {
  min-height: 88px;
  resize: vertical;
}
.checkout-field input:focus,
.checkout-field select:focus,
.checkout-field textarea:focus {
  outline: none;
  border-color: var(--accent-green);
  box-shadow: 0 0 0 2px rgba(168, 191, 163, 0.25);
}
.checkout-field--error input,
.checkout-field--error select,
.checkout-field--error textarea {
  border-color: #b85c4a;
}
.checkout-field__hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  color: rgba(90, 70, 54, 0.78);
}
.checkout-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.checkout-options--inline { flex-direction: row; }
.checkout-option { cursor: pointer; }
.checkout-option input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}
.checkout-option__box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.55rem 1rem;
  border-radius: 10px;
  border: 1.5px solid rgba(216, 195, 165, 0.55);
  background: var(--white);
  font-size: 0.88rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}
.checkout-option input:checked + .checkout-option__box {
  border-color: var(--accent-green);
  background: rgba(168, 191, 163, 0.18);
}
.checkout-option input:focus-visible + .checkout-option__box {
  outline: 2px solid var(--accent-green);
  outline-offset: 2px;
}
.checkout-section--payment { padding-bottom: 0.85rem; }
.checkout-payment {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(255, 252, 248, 0.95);
  border: 1px solid rgba(216, 195, 165, 0.45);
}
.checkout-payment__method {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
}
.checkout-payment__hint {
  font-size: 0.84rem;
  color: #7a6654;
  margin: 0;
}
.checkout-field--gdpr { margin-top: 0.5rem; }
.checkout-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.84rem;
  line-height: 1.45;
  cursor: pointer;
}
.checkout-check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--text);
}
.checkout-errors {
  background: rgba(184, 92, 74, 0.12);
  border: 1px solid rgba(184, 92, 74, 0.25);
  border-radius: 10px;
  padding: 0.75rem 0.9rem;
  margin-bottom: 0.85rem;
  font-size: 0.84rem;
  color: #8b4538;
  line-height: 1.45;
}
.checkout-errors p + p { margin-top: 0.35rem; }
.checkout-submit { margin-top: 0.25rem; }
.checkout-submit:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}
.checkout-summary {
  position: sticky;
  top: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(216, 195, 165, 0.45);
  box-shadow: var(--shadow-sm);
}
.checkout-summary__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(216, 195, 165, 0.35);
}
.checkout-summary__list {
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
  font-size: 0.86rem;
  line-height: 1.5;
}
.checkout-summary__list li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(232, 222, 210, 0.6);
}
.checkout-summary__list li:last-child { border-bottom: none; }
.checkout-summary__list strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--text);
}
.checkout-summary__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-heading);
  font-size: 1rem;
  margin: 0 0 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(216, 195, 165, 0.45);
}
.checkout-summary__total strong {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
}
.checkout-summary__payment {
  font-size: 0.8rem;
  color: #7a6654;
  margin: 0;
}
.checkout-success {
  text-align: center;
  padding: 1.5rem 0.5rem 0.5rem;
  max-width: 28em;
  margin-inline: auto;
}
.checkout-success__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  margin-bottom: 0.65rem;
}
.checkout-success__text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: #6f5b4a;
  margin-bottom: 1.25rem;
}

@media (max-width: 768px) {
  .modal--checkout { padding: 0.5rem; }
  .modal__content--checkout {
    max-height: calc(100vh - 1rem);
    padding: 1rem 1rem 1.25rem;
  }
  .checkout__layout {
    grid-template-columns: 1fr;
  }
  .checkout-summary {
    position: static;
    order: -1;
  }
  .checkout-options--inline .checkout-option { flex: 1; min-width: calc(50% - 0.25rem); }
  .checkout-options--inline .checkout-option__box { width: 100%; }
}

/* —— RESPONSIVE —— */
@media (min-width: 1280px) {
  .hero__grid {
    max-width: 1280px;
    padding-inline: 2rem;
  }
}

@media (max-width: 1024px) and (min-width: 601px) {
  .config-kit-picker {
    grid-template-columns: repeat(3, 1fr);
  }
  .config-kit-picker .config-kit-card:last-child {
    grid-column: auto;
    max-width: none;
  }
  .config-kit-picker .variant--best {
    grid-column: auto;
    max-width: none;
    width: 100%;
    margin-inline: 0;
    transform: none;
  }
  .variants-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 720px;
    margin-inline: auto;
  }
  .variant--best {
    grid-column: 1 / -1;
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
    transform: translateY(-4px);
  }
}

@media (max-width: 1024px) {
  .config-summary__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .config-summary__col--preview {
    grid-column: 1 / -1;
  }
  .summary-preview img {
    max-height: 240px;
  }
  .hero__grid {
    min-height: 0;
    gap: clamp(0.75rem, 2vw, 1.25rem);
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.5rem;
    width: 100%;
    max-width: min(400px, 100%);
    margin-inline: auto;
  }
  .hero__actions .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    padding: 0.65rem 1rem;
  }
  .hero__visual,
  .hero__photo-main {
    min-height: clamp(360px, 45vh, 480px);
  }
  .hero__polaroids {
    left: clamp(-96px, -7vw, -64px);
    top: 46%;
    transform: translate(clamp(24px, 2vw, 40px), -50%);
    height: clamp(180px, 22vh, 220px);
  }
  .hero__polaroid-card--back {
    width: clamp(112px, 9vw, 132px);
    left: calc((-1 * clamp(-96px, -7vw, -64px)) - clamp(112px, 9vw, 132px) + clamp(10px, 1.2vw, 18px));
  }
  .hero__polaroid-card--front {
    width: clamp(120px, 9.5vw, 140px);
    left: calc((-1 * clamp(-96px, -7vw, -64px)) - clamp(120px, 9.5vw, 140px) + clamp(14px, 1.4vw, 22px));
  }
  .hero__features { border-radius: var(--radius-soft); padding: 0.35rem 0.5rem; }
  .hero__features li {
    justify-content: center;
    padding: 0.5rem 0.45rem;
    font-size: 0.73rem;
    border-bottom: none;
  }
  .hero__features-band { margin-top: 0.5rem; }
  .kit-row,
  .kit-row--six { grid-template-columns: repeat(3, 1fr); }
  .flow-section--occasions { padding: 1.9rem 0; }
  .occasions__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .configurator-panel { padding: 1.25rem; }
  .steps-journey {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.25rem;
    padding-top: 3.25rem;
  }
  .steps-benefits {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-radius: 22px;
    padding: 0.5rem 0.4rem;
  }
  .steps-benefits__item:nth-child(2) {
    border-right: none;
  }
  .steps-benefits__item:nth-child(odd):not(:last-child) {
    border-right: 1px solid rgba(216, 195, 165, 0.42);
  }
  .steps-benefits__item:nth-child(-n+2) {
    border-bottom: 1px solid rgba(216, 195, 165, 0.35);
  }
  .magic-step:nth-child(2n)::after { display: none; }
  .magic-step:not(:last-child):not(:nth-child(2n))::after {
    display: block;
    left: calc(50% + 58px);
    width: calc(100% - 58px + 50%);
    top: 58px;
  }
  .magic-step__card { --magic-visual-size: clamp(110px, 20vw, 130px); }
  .configurator__layout { grid-template-columns: 1fr; }
  .config-summary { position: static; order: 2; }
  .configurator-panel { order: 1; }
  .config-kit-picker {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: 320px;
    margin-inline: auto;
  }
  .config-kit-picker .variant--best {
    transform: none;
    grid-column: auto;
    width: 100%;
    max-width: none;
    margin-inline: 0;
    padding-top: 2.9rem;
  }
  .config-kit-picker .variant__badge {
    top: 0.55rem;
    font-size: 0.68rem;
    padding: 0.32rem 0.75rem;
    box-shadow: 0 3px 12px rgba(90, 70, 54, 0.1);
  }
  .personalize-split {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .personalize__copy {
    order: 1;
    text-align: center;
  }
  .personalize__visual {
    order: 2;
  }
  .personalize__lead {
    margin-inline: auto;
  }
  .personalize__perks {
    align-items: center;
    text-align: left;
    max-width: 16rem;
    margin-inline: auto;
  }
  .personalize__collage {
    margin-inline: auto;
    max-width: min(420px, 100%);
    min-height: clamp(220px, 58vw, 300px);
  }
  .personalize-split .btn {
    width: 100%;
    max-width: 320px;
    margin-inline: auto;
  }
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 18px;
    right: 16px;
    width: 44px;
    height: 44px;
  }
  .back-to-top__icon {
    width: 18px;
    height: 18px;
  }
  .header__toggle { display: flex; }
  .header__cta--desktop { display: none; }
  .header__cta--mobile { display: inline-flex; margin-top: 0.5rem; }
  .social-links--header { display: none; }
  .social-links--nav {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(216, 195, 165, 0.4);
  }
  .social-links--nav .social-links__link {
    width: 2.35rem;
    height: 2.35rem;
  }
  .header__nav {
    position: fixed;
    inset: 0;
    top: 56px;
    background: #fff;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1.5rem 1.25rem 2rem;
    gap: 0.15rem;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 99;
    margin-left: 0;
    overflow-y: auto;
  }
  .header__nav a:not(.btn) {
    font-size: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(216, 195, 165, 0.35);
    white-space: normal;
  }
  .header__nav.is-open { transform: none; opacity: 1; visibility: visible; }
  .hero__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto;
    min-height: 0;
    max-width: 100%;
    width: 100%;
    padding-inline: clamp(0.75rem, 3.5vw, 1.1rem);
    gap: 0;
    overflow: hidden;
    box-sizing: border-box;
  }
  .hero__visual {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin: 0;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 0;
    height: auto;
    overflow: hidden;
    border-radius: 0;
  }
  .hero__photo {
    width: 100%;
    max-width: 100%;
    flex: 0 0 auto;
    margin: 0;
    border-radius: 0 0 16px 16px;
    overflow: hidden;
    background: #f5f1eb;
    line-height: 0;
  }
  .hero__photo-main {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    max-height: min(75vh, 420px);
    margin: 0;
    object-fit: contain;
    object-position: center center;
    clip-path: none;
    -webkit-clip-path: none;
    border-radius: 0;
  }
  .hero__polaroids {
    display: none;
  }
  .hero__float {
    position: static;
    flex: 0 0 auto;
    width: auto;
    max-width: calc(100% - 1rem);
    margin: 0.4rem auto 0;
    align-items: center;
    align-self: center;
  }
  .hero__float .hero__memo-stamp {
    margin: 0;
    padding: 0.35rem 0.75rem;
  }
  .hero-kicker__text--lines {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.25rem 0.35rem;
    font-size: clamp(0.56rem, 2.6vw, 0.64rem);
    letter-spacing: 0.05em;
    white-space: normal;
  }
  .hero-kicker__text--lines > span {
    display: inline;
    white-space: nowrap;
  }
  .hero__copy {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
    min-width: 0;
    width: 100%;
    padding: 0.55rem 0 0.65rem;
    align-items: center;
    box-sizing: border-box;
  }
  .hero-kicker {
    display: none;
  }
  .hero__title,
  .hero__script,
  .hero__text {
    text-align: center;
    max-width: 100%;
  }
  .hero__title {
    font-size: clamp(1.65rem, 5.2vw, 2rem);
    margin-bottom: 0.1rem;
    line-height: 1.06;
  }
  .hero__script {
    font-size: clamp(1.05rem, 3.2vw, 1.28rem);
    line-height: 1.2;
    margin-bottom: 0.35rem;
  }
  .hero__script-line {
    display: inline;
  }
  .hero__script-line:not(:last-child)::after {
    content: ' ';
  }
  .hero__text--desktop,
  .hero__meta-text--desktop {
    display: none;
  }
  .hero__text--mobile {
    display: block;
    font-size: clamp(0.82rem, 2.6vw, 0.9rem);
    line-height: 1.4;
    margin-bottom: 0.45rem;
    max-width: 36ch;
    text-wrap: balance;
    overflow-wrap: break-word;
  }
  .hero__panel {
    max-width: min(420px, 100%);
    gap: 0.5rem;
    width: 100%;
    margin-top: 0;
  }
  .hero__meta {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 0.35rem;
    margin: 0;
  }
  .hero__meta-deco {
    display: none;
  }
  .hero__meta-text--mobile {
    display: inline;
    white-space: normal;
    font-size: clamp(0.74rem, 2.4vw, 0.8rem);
    text-align: center;
    line-height: 1.35;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0.4rem;
    margin-bottom: 0;
    width: 100%;
    max-width: min(400px, 100%);
    margin-inline: auto;
  }
  .hero__actions .btn {
    flex: none;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    min-height: 48px;
    padding: 0.65rem 1rem;
  }
  .hero__steps {
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 0.35rem 0.4rem;
    margin-top: 0.15rem;
  }
  .hero__step {
    flex: 1 1 0;
    min-width: 0;
    max-width: none;
    justify-content: flex-start;
  }
  .hero__step-label {
    font-size: clamp(0.65rem, 2vw, 0.72rem);
    text-align: left;
    max-width: 100%;
    line-height: 1.25;
  }
  .hero__leaves {
    background-position: center 30%;
    background-size: auto 75%;
    opacity: 0.3;
  }
  .hero__features {
    flex-direction: column;
    border-radius: var(--radius-soft);
  }
  .hero__features li {
    justify-content: flex-start;
    border-right: none !important;
    border-bottom: 1px solid rgba(216, 195, 165, 0.45);
  }
  .hero__features li:last-child {
    border-bottom: none;
  }
  .kit-row,
  .kit-row--six { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .kit-item p { font-size: 0.78rem; }
  .variants-row {
    grid-template-columns: 1fr;
    max-width: min(400px, 92vw);
    margin-inline: auto;
    gap: 1.35rem;
  }
  .variant {
    padding: 1.35rem 1.25rem;
    padding-top: 2.1rem;
  }
  .variant--best {
    transform: none;
    max-width: none;
    grid-column: auto;
  }
  .variant__badge { font-size: 0.65rem; padding: 0.3rem 0.7rem; }
  .variant__visual { min-height: 150px; }
  .variant__visual img { max-height: 140px; }
  .variant__cta { min-height: 50px; }
  .btn--block-mobile { width: 100%; justify-content: center; }
  .occasions__grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .occasion-card { padding: 0.85rem; border-radius: 20px; }
  .occasion-card__text { font-size: 0.84rem; }
  .flow-section--config { padding: 2rem 0; }
  .configurator-header .title-decor { margin-bottom: 0.5rem; }
  .configurator-header__lead { font-size: 0.88rem; margin-top: 0; }
  .configurator-panel { padding: 1rem; }
  .config-kit-picker { max-width: min(340px, 100%); }
  .config-group { margin-bottom: 0.85rem; padding-bottom: 0.85rem; }
  .config-options--stack { gap: 0.4rem; }
  .config-option__box { padding: 0.7rem 0.85rem; }
  .config-option__meta { font-size: 0.76rem; }
  .config-summary { padding: 1rem; border-radius: 20px; }
  .config-summary__heading { font-size: 1.1rem; margin-bottom: 0.85rem; padding-bottom: 0.65rem; }
  .config-summary__grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }
  .config-summary__col--preview { grid-column: auto; }
  .summary-preview img { max-height: min(200px, 42vw); }
  .summary-row { padding: 0.75rem 0.8rem; }
  .summary-row__arrow { display: none; }
  .summary-total__value { font-size: 1.45rem; }
  .config-summary__note { font-size: 0.68rem; margin-top: 0.5rem; }
  .reviews-row { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .cta-footer__card {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    grid-template-areas:
      "visual"
      "copy"
      "features";
    min-height: 0;
  }
  .cta-footer__copy {
    grid-area: copy;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem 1.25rem;
  }
  .cta-footer__copy h2 { max-width: none; }
  .cta-footer__copy p { max-width: 32ch; }
  .cta-footer__divider { display: none; }
  .cta-footer__features {
    grid-area: features;
    padding: 0 1.25rem 1.5rem;
    align-items: center;
  }
  .cta-footer__visual {
    grid-area: visual;
  }
  .cta-footer__visual img {
    min-height: clamp(200px, 38vw, 260px);
    border-radius: 24px 24px 0 0;
  }
  .config-options--inline { grid-template-columns: 1fr; }
  .config-option__box { min-height: 48px; }
  .config-check { min-height: 48px; padding: 0.5rem 0; }
  #orderBtn { min-height: 52px; }
  .config-extra {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    padding: 0.85rem 0.9rem;
  }
  .config-extra__info {
    align-items: center;
    gap: 0.45rem 0.55rem;
  }
  #nameField,
  #nameField.config-field--collapsed {
    flex: none;
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .hero__grid {
    min-height: 0;
    padding-inline: clamp(0.65rem, 3vw, 0.85rem);
  }
  .hero__photo-main {
    max-height: min(68vh, 360px);
  }
  .hero__copy {
    padding: 0.45rem 0 0.55rem;
  }
  .hero__title {
    font-size: clamp(1.5rem, 7vw, 1.75rem);
  }
  .hero__script {
    font-size: 1.05rem;
    margin-bottom: 0.3rem;
  }
  .hero__text--mobile {
    font-size: 0.8rem;
    margin-bottom: 0.4rem;
    max-width: 100%;
  }
  .hero__panel {
    gap: 0.45rem;
  }
  .hero__steps {
    gap: 0.3rem;
  }
  .hero__step-label {
    font-size: 0.64rem;
  }
  .hero__actions .btn {
    min-height: 46px;
    font-size: 0.84rem;
    padding: 0.6rem 0.9rem;
  }
  .btn--primary.btn--hero .btn__arrow { margin-left: 0.35rem; }
  .hero__features li { font-size: 0.68rem; }
  .hero__float {
    margin-top: 0.35rem;
  }
  .hero__float .hero__memo-stamp {
    padding: 0.32rem 0.65rem;
  }
  .hero-kicker__text--lines {
    font-size: clamp(0.54rem, 2.8vw, 0.6rem);
    gap: 0.2rem 0.28rem;
  }
  .flow-section--kit { padding: 2rem 0; }
  .kit-row--six { gap: 0.65rem; }
  .flow-section--occasions { padding: 1.35rem 0; }
  .occasions__header .section__title { font-size: clamp(1.25rem, 5vw, 1.5rem); }
  .occasions__lead { font-size: 0.84rem; line-height: 1.45; }
  .occasion-card__media img { aspect-ratio: 16 / 10; }
  .configurator-panel { padding: 0.85rem 0.9rem; }
  .config-group legend { font-size: 0.95rem; margin-bottom: 0.5rem; }
  .config-option__box strong { font-size: 0.88rem; }
  .config-option__box { padding: 0.55rem 0.7rem; min-height: 44px; }
  .config-check { min-height: 44px; padding: 0.35rem 0; }
  #orderBtn { min-height: 50px; font-size: 0.9rem; }
  .steps-journey {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-top: 2.5rem;
    max-width: 300px;
    margin-inline: auto;
  }
  .steps-benefits {
    grid-template-columns: 1fr;
    border-radius: 18px;
    margin-top: 1.5rem;
    padding: 0.35rem 0.5rem;
  }
  .steps-benefits__item {
    justify-content: flex-start;
    padding: 0.55rem 0.75rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(216, 195, 165, 0.35);
  }
  .steps-benefits__item:last-child {
    border-bottom: none;
  }
  .steps-benefits__text {
    font-size: 13px;
  }
  .magic-step::after { display: none !important; }
  .magic-step__card {
    --magic-visual-size: clamp(112px, 38vw, 138px);
    border-radius: 24px;
  }
  .steps-header__title { font-size: clamp(1.5rem, 6vw, 1.85rem); }
}
