:root {
  --ivory: #faf8f3;
  --paper: #ffffff;
  --white: #ffffff;
  --champagne: #b8944d;
  --champagne-dark: #8b6a2f;
  --ink: #171717;
  --muted: #6c675f;
  --sage: #343832;
  --line: #ebe3d5;
  --shadow: 0 18px 45px rgba(24, 24, 24, 0.08);
  --radius: 8px;
  --container: 1180px;
}

/* Country landing pages: qualify the visitor before WhatsApp. */
.country-models-icon {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #a51622;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 800;
}

.country-assurance {
  padding-block: clamp(48px, 7vw, 88px);
  border-block: 1px solid #e4ddd2;
  background: #171513;
  color: #fff;
}

.country-assurance__inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(28px, 5vw, 72px);
}

.country-assurance__portrait {
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #f8f4ee;
}

.country-assurance__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.country-assurance__content {
  align-self: center;
  max-width: 760px;
}

.country-assurance .eyebrow {
  color: #d3aa5d;
}

.country-assurance h2 {
  max-width: 18ch;
  margin: 10px 0 18px;
  color: #fff;
  font-size: clamp(2.15rem, 4.4vw, 4.65rem);
  line-height: 0.98;
}

.country-assurance__steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 26px 0;
  padding: 0;
  counter-reset: country-step;
  list-style: none;
}

.country-assurance__steps li {
  position: relative;
  min-height: 92px;
  padding: 18px 18px 18px 52px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  counter-increment: country-step;
}

.country-assurance__steps li::before {
  position: absolute;
  top: 18px;
  left: 8px;
  color: #d3aa5d;
  content: counter(country-step, decimal-leading-zero);
  font-weight: 800;
}

.country-assurance__note {
  color: #d8d3cc;
  font-size: 0.92rem;
}

@media (max-width: 760px) {
  .country-assurance__inner {
    grid-template-columns: 1fr;
  }

  .country-assurance__portrait {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .country-assurance h2 {
    font-size: 2.4rem;
  }

  .country-assurance__steps {
    grid-template-columns: 1fr;
  }
}

/* La section pays garde son contraste, indépendamment de l'alternance générique des sections. */
body .section.country-assurance {
  color: #ffffff;
  background: #171513;
}

body .section.country-assurance h2 {
  color: #ffffff;
}

body .section.country-assurance .country-assurance__content > p:not(.eyebrow):not(.country-assurance__note),
body .section.country-assurance .country-assurance__steps {
  color: #f2eee8;
}

/* Taille tactile minimale pour les contrôles principaux sur téléphone. */
@media (max-width: 760px) {
  body .nav-toggle,
  body .icon-button,
  body .testimonial-story__volume {
    min-width: 44px !important;
    min-height: 44px !important;
  }

  body.catalogue-body .product-card .btn,
  body .team-card__about,
  body .team-card__linkedin {
    min-height: 44px !important;
  }
}

/* 2026-06-27: red emphasis requested for the important-info eyebrow. */
body #informations-cles .order-clarity__heading > .eyebrow {
  color: #b31b1b !important;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open,
body.modal-open {
  overflow: hidden;
}

body.modal-open .proof-trigger {
  display: none;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

svg {
  display: block;
}

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

button,
input,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.top-bar {
  overflow: hidden;
  color: var(--white);
  background: #b42318;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.86rem;
  text-align: center;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding-block: 7px;
}

.top-bar p {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.top-bar__marquee {
  overflow: hidden;
  white-space: nowrap;
}

.top-bar__track {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: max-content;
  padding-block: 8px;
  animation: topBarMarquee 22s linear infinite;
}

.top-bar__track span {
  position: relative;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.top-bar__track span::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  transform: translateY(-50%);
}

@keyframes topBarMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* Commerce maison theme inspired by premium ecommerce structure, adapted for Zaanga Wedding. */
:root {
  --ivory: #fbfaf6;
  --paper: #fffdf8;
  --white: #ffffff;
  --champagne: #b99249;
  --champagne-dark: #806126;
  --ink: #141412;
  --muted: #6d675f;
  --sage: #252b24;
  --line: #e7dccb;
  --shadow: 0 22px 60px rgba(38, 31, 20, 0.1);
  --shadow-soft: 0 14px 34px rgba(38, 31, 20, 0.07);
  --radius: 18px;
  --radius-lg: 28px;
  --commerce-red: #9f1f22;
  --commerce-green: #15946f;
  --commerce-cream: #f7f0e3;
  --commerce-ink-soft: #2b2720;
  --container: 1240px;
}

body {
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff 0%, #fbfaf6 38%, #f8f1e6 100%);
}

body::selection {
  color: #fff;
  background: var(--champagne-dark);
}

.top-bar {
  color: #fff;
  background: var(--commerce-red);
  border-bottom: 0;
}

.top-bar__track {
  padding-block: 9px;
  animation-duration: 28s;
}

.top-bar__track span {
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(128, 97, 38, 0.16);
  box-shadow: 0 8px 30px rgba(38, 31, 20, 0.04);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 88px;
}

.brand {
  gap: 14px;
}

.brand img {
  width: 64px;
  height: 64px;
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.18);
  box-shadow: 0 12px 30px rgba(38, 31, 20, 0.08);
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.58rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand small {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.52em;
  text-transform: uppercase;
}

.primary-nav {
  gap: 2px;
}

.primary-nav a {
  border-radius: 999px;
  color: #4f4a42;
  font-size: 0.95rem;
  font-weight: 850;
  padding: 10px 14px;
  transition: color 160ms ease, background-color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
  background: rgba(128, 97, 38, 0.1);
}

.btn {
  border-radius: 999px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.btn--primary,
.header-cta {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
  box-shadow: 0 18px 40px rgba(20, 20, 18, 0.16);
}

.btn--primary:hover,
.btn--primary:focus-visible,
.header-cta:hover,
.header-cta:focus-visible {
  color: #fff;
  background: #000;
  border-color: #000;
  transform: translateY(-1px);
}

.btn--secondary {
  color: var(--ink);
  background: #fff;
  border-color: rgba(128, 97, 38, 0.38);
}

.icon-button,
.nav-toggle {
  background: #fff;
  border-color: rgba(128, 97, 38, 0.22);
  box-shadow: 0 10px 25px rgba(38, 31, 20, 0.07);
}

.icon-button--whatsapp svg {
  color: #25d366;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fffdf8;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 240, 227, 0.72));
}

.hero__media {
  background: #f1e8d8;
}

.hero__media video,
.hero__media img {
  filter: saturate(0.98) contrast(1.02);
}

.hero__inner,
.hero-mobile-summary {
  position: relative;
  z-index: 1;
}

.eyebrow,
.trend-showcase__header span,
.coverage-strip__copy span {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1,
.hero-mobile-summary h2,
.section-heading h2,
.linda-story__intro h2,
.catalogue-hero h1,
.catalogue-results__bar h2,
.detail-product h1,
.policy h2,
.faq h2,
.contact h2 {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1,
.hero-mobile-summary h2 {
  text-wrap: balance;
}

.hero__subtitle,
.hero-mobile-summary > p,
.section-heading p:not(.eyebrow),
.linda-story__copy p,
.catalogue-hero__copy p,
.detail-product__content > p {
  color: var(--muted);
}

.experience-note {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(128, 97, 38, 0.22);
  border-left: 6px solid var(--champagne);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.experience-note strong {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.trust-badges {
  gap: 12px;
}

.trust-badges li {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(128, 97, 38, 0.18);
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(38, 31, 20, 0.055);
}

.badge-icon {
  color: var(--champagne-dark);
  background: #fff9ee;
  border-color: rgba(128, 97, 38, 0.18);
}

.coverage-strip {
  background: linear-gradient(135deg, #fffaf1, #fff);
  border-block: 1px solid rgba(128, 97, 38, 0.13);
}

.coverage-strip__inner {
  border-radius: var(--radius-lg);
}

.coverage-strip__copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 500;
  line-height: 1;
}

.coverage-countries li {
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.16);
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(38, 31, 20, 0.055);
}

.linda-story {
  background: linear-gradient(180deg, #fffdf8 0%, #fff 100%);
}

.linda-carousel__viewport {
  border-radius: 0;
}

.linda-slide {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.14);
  border-radius: 28px;
  box-shadow: 0 22px 60px rgba(38, 31, 20, 0.12);
}

.linda-slide__content {
  background: #fff;
}

.linda-story__cta {
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.18);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.linda-story__actions {
  align-items: stretch;
}

.linda-story__actions .btn {
  justify-content: center;
  min-height: 56px;
}

.steps {
  background: #fffaf2;
}

.steps-grid {
  gap: 16px;
}

.steps-grid article {
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.14);
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(38, 31, 20, 0.06);
}

.steps-grid article span {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.steps-model-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(128, 97, 38, 0.16);
}

.steps-model-actions .btn {
  flex: 1 1 240px;
  min-height: 52px;
  white-space: normal;
  text-align: center;
}

@media (max-width: 640px) {
  .steps-model-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .steps-model-actions .btn {
    width: 100%;
  }
}

.trend-showcase,
.collections .container,
.trust__inner,
.policy__inner,
.refund__inner,
.faq__inner,
.contact__inner {
  border-radius: 32px;
}

.trend-showcase {
  background: #141412;
  color: #fff;
  border: 0;
  box-shadow: 0 28px 80px rgba(20, 20, 18, 0.18);
}

.trend-showcase__header strong {
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  font-weight: 500;
}

.trend-card {
  background: #fff;
  border-radius: 24px;
}

.collections {
  background: #fff;
}

.collections .section-heading {
  max-width: 760px;
}

.collections .category-grid {
  align-items: stretch;
}

.collections .category-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.16);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(38, 31, 20, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.collections .category-card:hover,
.collections .category-card:focus-visible {
  border-color: rgba(128, 97, 38, 0.42);
  box-shadow: 0 24px 70px rgba(38, 31, 20, 0.14);
  transform: translateY(-3px);
}

.collections .category-card img {
  width: 100%;
  background: #f7f0e3;
  object-fit: contain;
}

.collections .category-card div {
  display: grid;
  gap: 12px;
  align-content: start;
}

.collections .category-card h3 {
  display: flex;
  gap: 12px;
  align-items: center;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.08;
}

.collections .category-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 8px;
  height: 36px;
  border-radius: 999px;
  background: currentColor;
}

.collections .category-card--acrylique h3 {
  color: #1d6c78;
}

.collections .category-card--cadeaux h3 {
  color: #1f7a55;
}

.collections .category-card--carton h3 {
  color: #9a641f;
}

.collections .category-card p {
  color: var(--muted);
}

.category-card__button {
  width: fit-content;
  color: #fff;
  background: var(--ink);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 950;
}

.trust-list p,
.text-panel,
.faq-item,
.contact__inner {
  background: #fff;
  border-color: rgba(128, 97, 38, 0.14);
  box-shadow: var(--shadow-soft);
}

.catalogue-hero {
  background: linear-gradient(135deg, #fffaf1 0%, #fff 58%, #f7f0e3 100%);
}

.catalogue-hero__inner {
  gap: 34px;
}

.catalogue-hero__media {
  overflow: hidden;
  border: 1px solid rgba(128, 97, 38, 0.16);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.catalogue-hero__media img,
.catalogue-hero__visual img {
  width: 100%;
  height: 100%;
  background: #fff;
  object-fit: contain;
}

.catalogue-section {
  background: #fffdf8;
}

.catalogue-shell {
  align-items: start;
}

.catalogue-filter-panel {
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.14);
  border-radius: 26px;
  box-shadow: var(--shadow-soft);
}

.catalog-filter-list button,
.price-filter-open,
.catalogue-filter-panel button {
  border-radius: 999px;
  font-weight: 900;
}

.catalog-filter-list button.is-active {
  background: var(--ink);
  border-color: var(--ink);
}

.catalogue-results__bar {
  align-items: end;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(128, 97, 38, 0.16);
}

.product-grid {
  gap: 24px;
}

.product-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.14);
  border-radius: 26px;
  box-shadow: 0 18px 45px rgba(38, 31, 20, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
  box-shadow: 0 24px 70px rgba(38, 31, 20, 0.14);
  transform: translateY(-3px);
}

.product-card__media {
  background: #f6f0e5;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__label {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(128, 97, 38, 0.18);
  border-radius: 999px;
  box-shadow: 0 10px 26px rgba(20, 20, 18, 0.12);
}

.product-card__body,
.product-card__content {
  padding: 18px;
}

.product-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.12;
}

.product-card__category {
  color: var(--champagne-dark);
  letter-spacing: 0.13em;
}

.product-card__price {
  color: var(--ink);
  font-size: 1.28rem;
}

.product-card__body > .product-card__category,
.product-card__body > p:not(.product-card__notice) {
  display: none !important;
}

.product-card .btn {
  min-height: 50px;
}

.detail-product {
  background: #fffdf8;
}

.detail-product__inner {
  gap: 44px;
}

.detail-product__media img,
.detail-product__media video {
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.detail-product__content {
  background: #fff;
  border: 1px solid rgba(128, 97, 38, 0.14);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

body .modal__panel,
.order-confirmation__panel,
body .promo-card--club {
  background: #fffdf8;
  border: 1px solid rgba(128, 97, 38, 0.18);
  box-shadow: 0 34px 90px rgba(20, 20, 18, 0.24);
}

body .quote-product {
  border-color: rgba(128, 97, 38, 0.16);
}

body .quote-result .quote-result__final {
  color: #fff;
  background: var(--ink);
}

body [data-quote-calculate] {
  background: var(--ink);
  border-color: var(--ink);
}

body .modal form .quote-submit,
body .modal form .quote-submit.btn--primary,
body .modal form .quote-submit.btn--whatsapp,
body .modal form .quote-submit.whatsapp-order {
  color: #fff;
  background: var(--commerce-green);
  border-color: var(--commerce-green);
}

body .modal form .quote-reject,
body .modal form .quote-reject.btn--secondary {
  color: #fff;
  background: var(--commerce-red);
  border-color: var(--commerce-red);
}

.promo-teaser {
  border: 1px solid rgba(128, 97, 38, 0.2);
  box-shadow: 0 22px 60px rgba(20, 20, 18, 0.18);
}

@media (min-width: 900px) {
  .hero {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.9fr);
    grid-template-areas:
      "copy media"
      "coverage coverage";
    align-items: stretch;
    gap: 0;
    padding: 0;
  }

  .hero__media {
    grid-area: media;
    min-height: 680px;
    border-left: 1px solid rgba(128, 97, 38, 0.12);
  }

  .hero__media video,
  .hero__media img {
    height: 100%;
    object-fit: cover;
  }

  .hero__inner {
    grid-area: copy;
    display: grid;
    align-content: center;
    max-width: 680px;
    padding: 80px 0 80px;
    text-align: left;
  }

  .hero h1 {
    max-width: 650px;
    font-size: 4.9rem;
    line-height: 0.96;
  }

  .hero__subtitle {
    max-width: 640px;
    font-size: 1.15rem;
  }

  .hero__inner .experience-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    max-width: 640px;
    padding: 22px 28px;
  }

  .hero__inner .experience-note strong {
    font-size: 4.3rem;
    line-height: 1;
  }

  .hero__inner .experience-note span {
    align-self: center;
    font-size: 1.02rem;
  }

  .hero__inner .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 650px;
  }

  .hero__inner .trust-badges li {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    min-height: 116px;
    padding: 18px;
  }

  .hero__actions {
    flex-direction: row;
    align-items: center;
  }

  .hero .coverage-strip {
    grid-area: coverage;
  }

  .coverage-strip__inner {
    display: grid;
    grid-template-columns: minmax(280px, 0.46fr) minmax(0, 1fr);
    gap: 32px;
    align-items: center;
    padding: 34px 0;
  }

  .coverage-countries {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    overflow: visible;
    animation: none;
  }

  .coverage-countries li[data-coverage-clone="true"] {
    display: none;
  }

  .collections .category-grid {
    grid-template-columns: 1.05fr 0.95fr 0.95fr;
    gap: 24px;
  }

  .collections .category-card img {
    height: 340px;
    padding: 10px;
  }

  .collections .category-card div {
    padding: 28px;
  }

  .catalogue-hero__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 0.78fr);
  }

  .catalogue-hero__media {
    min-height: 430px;
  }

  .catalogue-shell {
    grid-template-columns: 280px minmax(0, 1fr);
  }

  .catalogue-filter-panel {
    position: sticky;
    top: 112px;
    padding: 22px;
  }
}

@media (max-width: 899px) {
  .site-header {
    position: sticky;
  }

  .header__inner {
    min-height: 82px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.3rem;
  }

  .brand small {
    letter-spacing: 0.38em;
  }

  .hero__media {
    height: 42vh;
    min-height: 320px;
    max-height: 520px;
  }

  .hero__media video,
  .hero__media img {
    height: 100%;
    object-fit: cover;
  }

  .hero-mobile-summary {
    display: grid;
    gap: 16px;
    padding-block: 30px 40px;
  }

  .hero-mobile-summary h2 {
    margin: 0;
    font-size: 3rem;
    line-height: 0.98;
    text-align: center;
  }

  .hero-mobile-summary .experience-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: 3.5rem;
    line-height: 1;
  }

  .hero-mobile-summary .experience-note span {
    font-size: 0.93rem;
    line-height: 1.34;
  }

  .hero-mobile-summary .trust-badges,
  .hero .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 14px;
    background: #fff;
    border: 1px solid rgba(128, 97, 38, 0.14);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
  }

  .hero-mobile-summary .trust-badges li,
  .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero-mobile-summary .trust-badges li:nth-child(3),
  .hero .hero-mobile-summary .trust-badges li,
  .hero .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero .hero-mobile-summary .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 12px;
  }

  .hero-mobile-summary .trust-badges span:last-child {
    text-align: left;
    font-size: 0.95rem;
    line-height: 1.24;
  }

  .hero__inner {
    display: none;
  }

  .coverage-strip {
    padding-block: 24px;
  }

  .coverage-strip__copy strong {
    font-size: 2.35rem;
  }

  .coverage-countries {
    display: flex;
    width: max-content;
    gap: 10px;
    animation: coverageMarquee 28s linear infinite;
  }

  .coverage-countries li {
    min-width: 72px;
    width: 72px;
    height: 54px;
    justify-content: center;
    padding: 8px;
  }

  .coverage-countries li span:last-child {
    display: none;
  }

  .country-flag,
  .coverage-countries .flag {
    width: 36px;
    height: 24px;
  }

  @keyframes coverageMarquee {
    from {
      transform: translateX(0);
    }

    to {
      transform: translateX(-50%);
    }
  }

  .linda-story__cta {
    display: grid;
    gap: 18px;
    padding: 28px 22px;
    text-align: left;
  }

  .linda-story__actions {
    display: grid;
    width: 100%;
    gap: 10px;
  }

  .linda-story__actions .btn {
    width: 100%;
  }

  .steps-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .steps-grid article {
    flex: 0 0 min(78vw, 340px);
    scroll-snap-align: start;
  }

  .collections .category-grid {
    display: grid;
    gap: 18px;
  }

  .collections .category-card {
    display: grid;
  }

  .collections .category-card img {
    height: 250px;
    padding: 8px;
  }

  .collections .category-card div {
    padding: 22px;
  }

  .catalogue-hero__media {
    height: 260px;
  }

  .catalogue-filter-panel {
    padding: 16px;
  }

  .catalogue-results__bar {
    display: grid;
    gap: 14px;
    align-items: start;
  }
}

@media (max-width: 480px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-bar__track span {
    font-size: 0.78rem;
  }

  .hero__media {
    min-height: 300px;
  }

  .hero-mobile-summary h2 {
    font-size: 2.72rem;
  }

  .hero-mobile-summary .experience-note {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: 3.2rem;
  }

  .coverage-strip__copy strong {
    font-size: 2.08rem;
  }

  .collections .section-heading h2,
  .linda-story__intro h2,
  .section-heading h2 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .collections .category-card img {
    height: 225px;
  }

  .collections .category-card h3 {
    font-size: 1.48rem;
  }

  body .modal__panel {
    background: #fffdf8;
  }
}

@media (prefers-reduced-motion: reduce) {
  .coverage-countries,
  .top-bar__track {
    animation: none;
  }

  .collections .category-card,
  .product-card,
  .btn {
    transition: none;
  }
}

/* Collection autonome des offres du moment. */
body #collections .category-card--moment h3 {
  color: #a20f17 !important;
}

body #collections .category-card--moment img,
.catalogue-body--offers .catalogue-hero__media img {
  object-position: center center !important;
}

@media (min-width: 1200px) {
  body #collections .category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (min-width: 720px) and (max-width: 1199px) {
  body #collections .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 719px) {
  body #collections .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 12px !important;
  }

  body #collections .category-card {
    display: block !important;
    min-height: 0 !important;
    border-radius: 8px !important;
  }

  body #collections .category-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 4 / 5;
    padding: 0 !important;
    object-fit: cover !important;
  }

  body #collections .category-card > div {
    padding: 14px !important;
  }

  body #collections .category-card h3 {
    min-height: 3.35em;
    margin-bottom: 10px;
    padding-left: 0;
    font-size: 0.98rem !important;
    line-height: 1.12;
  }

  body #collections .category-card h3::before {
    display: none;
  }

  body #collections .category-card__button {
    width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    font-size: 0.78rem;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .coverage-strip__inner {
    display: block;
    width: 100%;
    max-width: calc(100% - 32px);
    overflow: hidden;
  }

  .coverage-strip__copy {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }

  .coverage-strip__copy strong,
  .coverage-strip__copy p {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  .coverage-strip__copy strong {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  .coverage-strip__copy p {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .modal__panel {
    padding-inline: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .modal__panel > .eyebrow {
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #9a793d;
  }

  .modal__panel h2 {
    max-width: calc(100% - 58px);
    margin-bottom: 10px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2.15rem, 9vw, 2.9rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  .modal__intro {
    margin-bottom: 20px;
    color: #625c54;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    padding: 0 0 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eadfce;
    border-radius: 0;
  }

  .quote-product::before {
    display: none;
  }

  .quote-product__thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  .quote-product span {
    color: #9a793d;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  .quote-product strong {
    font-size: 1.04rem;
    line-height: 1.18;
  }

  .quote-product small {
    color: #6f6a62;
    font-size: 0.84rem;
  }

  .modal label {
    gap: 9px;
    font-size: 0.95rem;
  }

  .modal input,
  .modal select,
  .modal textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #e4d7c4;
    border-radius: 14px;
    box-shadow: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  .quote-calculate,
  .modal form .btn--full {
    width: 100%;
    min-height: 58px;
    border-radius: 999px;
  }

  .quote-result {
    padding: 14px 0;
    background: transparent;
    border-top: 1px solid #eadfce;
    border-radius: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .top-bar__track {
    animation: none;
    transform: none;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand img {
  width: 58px;
  height: 58px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.brand span {
  display: grid;
  line-height: 1.1;
}

.brand strong,
h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.brand strong {
  font-size: 1.32rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.brand small {
  color: var(--champagne-dark);
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.nav-toggle {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  margin: 2px 0;
  background: var(--ink);
  border-radius: 999px;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.icon-button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-button--whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.32);
  background: #ffffff;
}

.icon-button--whatsapp:hover,
.icon-button--whatsapp:focus-visible {
  color: #128c5b;
  border-color: rgba(18, 140, 91, 0.5);
  background: #effbf4;
}

.primary-nav {
  position: fixed;
  inset: 96px 16px auto;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

body.nav-open .primary-nav {
  display: flex;
}

.primary-nav a {
  padding: 12px 10px;
  color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 700;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] {
  color: var(--ink);
  background: #f8f3eb;
}

.header-cta.btn {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:disabled {
  cursor: not-allowed;
  opacity: 0.62;
  transform: none;
}

.btn--primary {
  color: var(--white);
  background: var(--ink);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: #2d2d2d;
}

.btn--whatsapp {
  color: var(--white);
  background: #128c5b;
  border-color: #128c5b;
}

.btn--whatsapp:hover,
.btn--whatsapp:focus-visible {
  color: var(--white);
  background: #0d7349;
  border-color: #0d7349;
}

.btn--secondary {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.82);
  border-color: var(--champagne);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  color: var(--white);
  background: var(--champagne-dark);
  border-color: var(--champagne-dark);
}

.btn--full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.hero::after {
  display: none;
}

.hero__media {
  height: clamp(320px, 55vw, 640px);
  background: #f3f1ec;
}

.hero__media img,
.hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero__video {
  background: #f3f1ec;
}

.coverage-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.coverage-strip__inner {
  display: grid;
  gap: 18px;
  padding-block: 18px;
  overflow: hidden;
}

.coverage-strip__copy {
  display: grid;
  gap: 5px;
}

.coverage-strip__copy span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.coverage-strip__copy strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 3vw, 2rem);
  line-height: 1.08;
}

.coverage-strip__copy p {
  max-width: 580px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.coverage-countries {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: coverage-marquee 34s linear infinite;
  will-change: transform;
}

.coverage-countries:hover {
  animation-play-state: paused;
}

.coverage-countries li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  flex: 0 0 auto;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 10px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #2f2d28;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.15;
}

@keyframes coverage-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 4px));
  }
}

.country-flag {
  position: relative;
  display: block;
  width: 34px;
  height: 22px;
  overflow: hidden;
  background: #eee;
  border: 1px solid rgba(24, 24, 24, 0.12);
  border-radius: 4px;
  box-shadow: 0 5px 12px rgba(24, 24, 24, 0.08);
}

.country-flag::before,
.country-flag::after {
  content: "";
  position: absolute;
}

.country-flag::after {
  display: none;
  width: 8px;
  height: 8px;
  background: #fcd116;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 55%, 79% 91%, 50% 69%, 21% 91%, 32% 55%, 2% 35%, 39% 35%);
}

.flag--ci {
  background: linear-gradient(90deg, #f77f00 0 33.333%, #fff 33.333% 66.666%, #009e60 66.666%);
}

.flag--bf {
  background: linear-gradient(#ef2b2d 0 50%, #009e49 50%);
}

.flag--bf::after,
.flag--sn::after {
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.flag--cg {
  background: linear-gradient(135deg, #009543 0 39%, #fbde4a 39% 62%, #dc241f 62%);
}

.flag--sn {
  background: linear-gradient(90deg, #00853f 0 33.333%, #fdef42 33.333% 66.666%, #e31b23 66.666%);
}

.flag--sn::after {
  background: #00853f;
}

.flag--ga {
  background: linear-gradient(#009e60 0 33.333%, #fcd116 33.333% 66.666%, #3f7ccc 66.666%);
}

.flag--gn {
  background: linear-gradient(90deg, #ce1126 0 33.333%, #fcd116 33.333% 66.666%, #009460 66.666%);
}

.flag--ml {
  background: linear-gradient(90deg, #14b53a 0 33.333%, #fcd116 33.333% 66.666%, #ce1126 66.666%);
}

.flag--cd {
  background: #007fff;
}

.flag--cd::before {
  top: 9px;
  left: -9px;
  width: 52px;
  height: 7px;
  background: #ce1021;
  border-block: 2px solid #f7d618;
  transform: rotate(-31deg);
}

.flag--cd::after {
  display: block;
  top: 4px;
  left: 5px;
}

.trend-showcase {
  display: grid;
  gap: 14px;
  grid-column: 1 / -1;
  margin-top: 2px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.trend-showcase__header {
  display: grid;
  gap: 5px;
}

.trend-showcase__header span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.trend-showcase__header strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.18rem, 2.2vw, 1.7rem);
  line-height: 1.1;
}

.trend-showcase__header p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.trend-showcase__grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 0 12px;
  scroll-snap-type: x mandatory;
  scrollbar-color: var(--champagne-dark) #efe8dc;
  scrollbar-width: thin;
  cursor: grab;
  overscroll-behavior-inline: contain;
  touch-action: pan-x;
  user-select: none;
}

.trend-showcase__grid.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
}

.trend-showcase__grid::-webkit-scrollbar {
  height: 8px;
}

.trend-showcase__grid::-webkit-scrollbar-track {
  background: #efe8dc;
  border-radius: 999px;
}

.trend-showcase__grid::-webkit-scrollbar-thumb {
  background: var(--champagne-dark);
  border-radius: 999px;
}

.trend-card {
  display: grid;
  flex: 0 0 min(72vw, 270px);
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(24, 24, 24, 0.06);
  scroll-snap-align: start;
}

.trend-card__media {
  position: relative;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  background: #f3f1ec;
  border-bottom: 1px solid var(--line);
}

.trend-card__media-link,
.trend-card__title-link,
.product-card__media-link,
.product-card__title-link {
  color: inherit;
  text-decoration: none;
}

.trend-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trend-card__flame {
  position: absolute;
  top: 8px;
  right: 8px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 148, 77, 0.42);
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(24, 24, 24, 0.12);
  font-size: 0.9rem;
}

.trend-card__body {
  display: grid;
  gap: 7px;
  padding: 10px;
}

.trend-card__body span {
  color: var(--champagne-dark);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.trend-card h3 {
  margin: 0;
  font-family: inherit;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1.16;
}

.trend-card p {
  display: none;
  margin: 0;
  color: var(--muted);
}

.trend-card strong {
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 900;
}

.trend-card .btn {
  min-height: 36px;
  padding: 8px 9px;
  font-size: 0.74rem;
}

.trend-section {
  background: #fbf9f4;
}

.trend-section .trend-showcase {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  padding-block: 34px 54px;
  text-align: center;
}

.hero-mobile-summary {
  display: none;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(2.15rem, 5vw, 3.65rem);
  line-height: 1.05;
}

.hero__subtitle {
  max-width: 720px;
  margin-bottom: 18px;
  color: #3b3935;
  font-size: clamp(1rem, 2vw, 1.24rem);
}

.experience-note {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 14px;
  max-width: 690px;
  margin-bottom: 24px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(196, 154, 74, 0.42);
  border-left: 4px solid var(--champagne);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(72, 53, 26, 0.08);
}

.experience-note strong {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 7vw, 2.55rem);
  line-height: 1;
  white-space: nowrap;
}

.experience-note span {
  color: #34322e;
  font-weight: 700;
}

.trust-badges {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  max-width: 800px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(196, 154, 74, 0.38);
  border-radius: var(--radius);
  color: #332f27;
  font-weight: 800;
}

.badge-icon,
.contact-icon {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--champagne-dark);
  background: #fbf7ef;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.badge-icon svg,
.contact-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero__actions,
.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero__actions {
  justify-content: center;
}

.section {
  padding-block: 68px;
}

main > section {
  scroll-margin-top: 128px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 7vw, 3.45rem);
  line-height: 1.05;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}

.section-heading--split {
  display: grid;
  max-width: none;
  gap: 18px;
}

.catalogue-note {
  align-self: end;
  margin: 0;
  padding: 14px 16px;
  color: var(--sage);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 800;
}

.category-grid {
  display: grid;
  gap: 16px;
}

.category-card,
.product-card,
.steps-grid article,
.text-panel,
.contact__inner {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 30px rgba(72, 53, 26, 0.07);
}

.category-card {
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(196, 154, 74, 0.72);
  box-shadow: 0 18px 42px rgba(72, 53, 26, 0.12);
}

.category-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.category-card div {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
  padding: 18px;
  background: var(--paper);
}

.category-card h3,
.steps-grid h3,
.product-card h3 {
  margin: 0 0 8px;
  font-size: 1.32rem;
  line-height: 1.18;
}

.collections .category-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
}

.collections .category-card h3::before {
  content: "";
  flex: 0 0 auto;
  width: 9px;
  height: 28px;
  border-radius: 999px;
  background: currentColor;
}

.category-card--carton h3 {
  color: #8a5b25;
}

.category-card--carton {
  --collection-preview-ratio: 1280 / 732;
}

.category-card--acrylique h3 {
  color: #1f5d73;
}

.category-card--acrylique {
  --collection-preview-ratio: 1254 / 908;
}

.category-card--cadeaux h3 {
  color: #1f6a4c;
}

.category-card--cadeaux {
  --collection-preview-ratio: 1280 / 984;
}

.category-card p,
.steps-grid p,
.product-card p {
  margin: 0;
  color: var(--muted);
}

.category-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 18px;
  color: var(--white);
  background: #151512;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease;
}

.category-card:hover .category-card__button,
.category-card:focus-visible .category-card__button {
  transform: translateY(-1px);
  background: #1f5f46;
}

.collections .category-grid {
  max-width: 980px;
  margin-inline: auto;
}

.collections .category-card img {
  aspect-ratio: var(--collection-preview-ratio, 4 / 3);
  background: #f7f5ef;
  object-fit: contain;
  object-position: center;
}

.catalogue-body {
  background: var(--white);
}

.catalogue-hero {
  padding-block: 28px;
  background: linear-gradient(180deg, #fffdf8, var(--white));
  border-bottom: 1px solid var(--line);
}

.catalogue-hero__inner {
  display: grid;
  gap: 22px;
  align-items: center;
}

.catalogue-hero__copy {
  display: grid;
  gap: 12px;
}

.catalogue-hero__copy h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2rem, 7vw, 4.8rem);
  line-height: 0.98;
}

.catalogue-hero__copy p:not(.eyebrow) {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
}

.catalogue-hero__media {
  overflow: hidden;
  background: #f7f5ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalogue-hero__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.catalogue-section {
  background: var(--white);
}

.catalogue-shell {
  display: grid;
  gap: 22px;
}

.catalogue-filter-panel {
  display: grid;
  gap: 14px;
  align-content: start;
}

.filter-group {
  display: grid;
  gap: 10px;
  padding: 14px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.filter-group h2 {
  margin: 0;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.catalog-filter-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.catalog-filter-btn {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 13px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  white-space: nowrap;
}

.catalog-filter-btn[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.subcollection-label__accent {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 0.04em;
  color: #b88622;
  font-weight: 950;
  line-height: 1.06;
  white-space: nowrap;
}

.subcollection-label__accent::before,
.subcollection-label__accent::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.subcollection-label__accent--economy {
  padding: 0.02em 0.34em;
  border-radius: 999px;
  color: #0f7b55;
  background: linear-gradient(135deg, rgba(219, 249, 233, 0.92), rgba(251, 242, 197, 0.78));
  box-shadow: inset 0 0 0 1px rgba(31, 140, 92, 0.2), 0 7px 18px rgba(31, 140, 92, 0.12);
  letter-spacing: 0.01em;
  -webkit-text-fill-color: currentColor;
}

.subcollection-label__accent--economy::after {
  inset: auto 0.45em -0.17em;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(32, 153, 98, 0.7), transparent);
}

.subcollection-label__accent--elegant {
  color: #c78b24;
  background: linear-gradient(135deg, #fff3c2 0%, #d8a038 45%, #8d5a12 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: italic;
  text-shadow: 0 0 12px rgba(216, 160, 56, 0.22);
  -webkit-text-fill-color: transparent;
}

.subcollection-label__accent--elegant::after {
  inset: auto -0.05em -0.12em;
  height: 0.13em;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(224, 176, 77, 0.88), transparent);
  transform: skewX(-14deg);
}

.subcollection-label__accent--selection {
  padding: 0.06em 0.42em 0.08em;
  border-radius: 8px;
  color: #fff6ce;
  background: linear-gradient(135deg, #141414 0%, #2d2517 58%, #87601e 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 221, 138, 0.35), 0 9px 20px rgba(20, 20, 20, 0.18);
  font-size: 0.92em;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
}

.subcollection-label__accent--selection::before {
  inset: 2px;
  border-radius: 6px;
  border: 1px solid rgba(255, 247, 213, 0.22);
}

.subcollection-label__accent--edition {
  color: #991f28;
  background: linear-gradient(135deg, #ffe4a4 0%, #d9aa45 28%, #9b1f2a 70%, #4b1420 100%);
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: 0.03em;
  text-shadow: 0 0 16px rgba(153, 31, 40, 0.18);
  -webkit-text-fill-color: transparent;
}

.subcollection-label__accent--edition::after {
  inset: auto 0 -0.18em;
  height: 0.24em;
  border-block: 1px solid rgba(177, 113, 29, 0.5);
  background: linear-gradient(90deg, transparent, rgba(153, 31, 40, 0.2), transparent);
}

.subcollection-label__accent--signature {
  color: #9a5d2a;
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.01em;
  text-shadow: 0 7px 18px rgba(154, 93, 42, 0.18);
  -webkit-text-fill-color: currentColor;
}

.subcollection-label__accent--signature::after {
  inset: auto -0.12em -0.16em 0.08em;
  height: 0.18em;
  border-radius: 999px 40% 999px 45%;
  background: linear-gradient(90deg, transparent, rgba(154, 93, 42, 0.78), rgba(232, 186, 97, 0.82), transparent);
  transform: rotate(-1.4deg);
}

.subcollection-label__accent--exception {
  color: #8f7832;
  background: linear-gradient(120deg, #ffffff 0%, #d8dee8 22%, #f6d884 52%, #8f7832 82%, #ffffff 100%);
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(246, 216, 132, 0.32), 0 0 24px rgba(216, 222, 232, 0.24);
  -webkit-text-fill-color: transparent;
}

.subcollection-label__accent--exception::before {
  inset: -0.2em -0.38em;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0%, rgba(246, 216, 132, 0.28) 34%, transparent 70%);
  opacity: 0.86;
}

.subcollection-label__accent--exception::after {
  top: -0.06em;
  right: -0.38em;
  width: 0.36em;
  height: 0.36em;
  border: 1px solid rgba(143, 120, 50, 0.4);
  transform: rotate(45deg);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 0 12px rgba(246, 216, 132, 0.72);
}

.subcollection-label__accent--moment {
  overflow: hidden;
  padding: 0.08em 0.46em 0.1em;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d71920 0%, #a20f17 55%, #5c070c 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28), 0 10px 22px rgba(162, 15, 23, 0.28);
  font-size: 0.92em;
  letter-spacing: 0.04em;
  line-height: 1.06;
  text-transform: uppercase;
  -webkit-text-fill-color: currentColor;
}

.subcollection-label__accent--moment::after {
  display: block;
  inset: -35% auto -35% -28%;
  width: 32%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.65), transparent);
  animation: topBarHighlightSheen 3.4s ease-in-out infinite;
}

.catalog-filter-btn[aria-pressed="true"] .subcollection-label__accent,
.subcatalog-card:hover .subcollection-label__accent,
.subcatalog-card:focus-visible .subcollection-label__accent {
  filter: saturate(1.08) brightness(1.05);
}

.price-filter-desktop-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.catalog-filter-btn--price-trigger {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filter-chevron {
  width: 9px;
  height: 9px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.price-filter-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  align-items: end;
}

.price-filter-sheet[hidden] {
  display: none;
}

.price-filter-sheet__backdrop {
  position: absolute;
  inset: 0;
  cursor: pointer;
  background: rgba(24, 24, 24, 0.38);
  border: 0;
}

.price-filter-sheet__panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  width: min(100%, 620px);
  margin-inline: auto;
  padding: 30px 24px 24px;
  background: var(--white);
  border-radius: 28px 28px 0 0;
  box-shadow: 0 -24px 70px rgba(24, 24, 24, 0.2);
}

.price-filter-sheet__panel h2 {
  max-width: 340px;
  margin: 0;
  font-family: inherit;
  font-size: clamp(1.8rem, 8vw, 2.45rem);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
}

.price-filter-sheet__close {
  position: absolute;
  top: 22px;
  right: 22px;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  background: #f6f4ef;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.price-filter-sheet__options {
  display: grid;
  gap: 16px;
}

.price-range-values {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.price-range-values span {
  display: grid;
  gap: 4px;
  min-width: 0;
  padding: 12px 14px;
  background: #f8f6f1;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.price-range-values small {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-range-values strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.1;
}

.price-range-slider {
  position: relative;
  height: 46px;
  margin-top: 4px;
  touch-action: none;
  cursor: pointer;
}

.price-range-slider::before,
.price-range-slider::after {
  content: "";
  position: absolute;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  transform: translateY(-50%);
}

.price-range-slider::before {
  left: 0;
  right: 0;
  background: #e4e0d7;
}

.price-range-slider::after {
  left: var(--range-start);
  right: calc(100% - var(--range-end));
  background: var(--ink);
}

.price-range-thumb {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 28px;
  height: 28px;
  padding: 0;
  background: var(--white);
  border: 3px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 6px 16px rgba(24, 24, 24, 0.18);
  cursor: grab;
  transform: translate(-50%, -50%);
}

.price-range-thumb:active {
  cursor: grabbing;
}

.price-range-thumb:focus-visible {
  outline: 3px solid rgba(196, 154, 74, 0.34);
  outline-offset: 3px;
}

.price-range-limits {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 900;
}

.price-filter-reset {
  justify-self: start;
  min-height: 38px;
  padding: 8px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
}

.price-filter-sheet__apply {
  min-height: 58px;
  width: 100%;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 900;
  cursor: pointer;
}

  .price-filter-sheet__apply:disabled {
    color: rgba(24, 24, 24, 0.24);
    background: #e8e8e8;
    cursor: not-allowed;
  }

body.price-filter-open {
  overflow: hidden;
}

.filter-empty {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.catalogue-results {
  min-width: 0;
}

.catalogue-results__bar {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}

.catalogue-results__bar h2 {
  margin: 0;
  font-size: clamp(1.8rem, 5vw, 3rem);
}

.catalogue-results__bar strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 900;
}

.catalogue-results__bar p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.empty-catalogue {
  grid-column: 1 / -1;
  padding: 30px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.empty-catalogue h2 {
  margin: 0 0 8px;
  font-size: 1.6rem;
}

.empty-catalogue p {
  margin: 0;
  color: var(--muted);
}

.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 4px;
  overflow-x: auto;
}

.filter-btn {
  flex: 0 0 auto;
  padding: 10px 14px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.filter-btn[aria-pressed="true"] {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.product-count {
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.localization-card {
  display: grid;
  gap: 12px;
  margin: -4px 0 18px;
  padding: 14px 16px;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.localization-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.localization-card label {
  gap: 6px;
  color: var(--champagne-dark);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.localization-card select {
  min-height: 44px;
  width: 100%;
  padding: 10px 38px 10px 12px;
  color: var(--ink);
  background-color: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.localization-card select:focus {
  outline: 3px solid rgba(196, 154, 74, 0.34);
  outline-offset: 2px;
}

.localization-card--detail {
  margin: 0;
}

.product-grid {
  display: grid;
  gap: 16px;
}

.product-card {
  display: grid;
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-2px);
  border-color: rgba(184, 148, 77, 0.55);
  box-shadow: 0 20px 44px rgba(24, 24, 24, 0.1);
}

.product-card__media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 5;
  background: #f7f5ef;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__label {
  display: none;
}

.product-card__ribbon {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #151514, #2c2618);
  color: #fff7df;
  box-shadow: 0 12px 24px rgba(24, 24, 24, 0.18);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card--novelty {
  border-color: rgba(184, 148, 77, 0.42);
}

.product-card__body {
  display: grid;
  gap: 9px;
  padding: 14px;
}

.product-card__category {
  color: var(--champagne-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card__price {
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 900;
}

.product-card .btn {
  width: 100%;
  margin-top: 4px;
}

.detail-body {
  background: var(--white);
}

.detail-product {
  padding-block: 28px 54px;
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.detail-product__inner {
  display: grid;
  gap: 24px;
}

.detail-product__media {
  overflow: hidden;
  background: #f7f5ef;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(24, 24, 24, 0.08);
}

.detail-product__media img {
  display: block;
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  background: #f7f5ef;
}

.detail-product__content {
  display: grid;
  align-content: start;
  gap: 16px;
}

.detail-back {
  width: max-content;
  color: var(--champagne-dark);
  font-weight: 900;
  text-decoration: none;
}

.detail-product__content h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
}

.detail-product__description {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.16rem);
  line-height: 1.65;
}

.detail-price {
  display: grid;
  gap: 4px;
  padding: 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.detail-price span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-price strong {
  color: var(--ink);
  font-size: 1.45rem;
}

.detail-price .detail-price__minimum-total {
  color: #0b744b;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.35;
}

.free-delivery-note {
  display: block;
  margin-top: 0.35rem;
  color: #0b744b;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
}

.product-card__bulk-offer,
.detail-product__bulk-offer {
  border: 1px solid #efcf7d;
  border-left: 5px solid #efcf7d;
  border-radius: 4px;
  color: #ffffff;
  background: #a61925;
  box-shadow: 0 10px 24px rgba(166, 25, 37, 0.22);
}

.product-card__bulk-offer {
  display: grid;
  gap: 3px;
  margin: 10px 0 0;
  padding: 10px 12px;
}

.product-card__bulk-offer strong,
.product-card__bulk-offer span,
.detail-product__bulk-offer span,
.detail-product__bulk-offer strong,
.detail-product__bulk-offer small {
  color: inherit;
  letter-spacing: 0;
}

.product-card__bulk-offer strong {
  font-size: 0.78rem;
  font-weight: 950;
}

.product-card__bulk-offer span {
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1.2;
}

.detail-product__bulk-offer {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  align-items: center;
  gap: 4px 14px;
  padding: 15px 16px;
}

.detail-product__bulk-offer[hidden] {
  display: none !important;
}

.detail-product__bulk-offer > span {
  grid-row: 1 / span 2;
  padding-right: 14px;
  border-right: 1px solid rgba(255, 255, 255, 0.45);
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.15;
}

.detail-product__bulk-offer strong {
  font-size: 1.05rem;
  font-weight: 950;
  line-height: 1.05;
}

.detail-product__bulk-offer small {
  font-size: 0.76rem;
  font-weight: 750;
  line-height: 1.25;
}

@media (max-width: 520px) {
  .detail-product__bulk-offer {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 13px;
  }

  .detail-product__bulk-offer > span {
    grid-row: auto;
    padding: 0 0 6px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.42);
  }
}

.detail-testimonials-link {
  width: 100%;
  justify-content: center;
}

.model-review-panel {
  padding: 16px;
  background: linear-gradient(135deg, #ffffff, #fbf6ec);
  border: 1px solid rgba(184, 148, 77, 0.36);
  border-left: 5px solid var(--champagne-dark);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(54, 42, 23, 0.08);
}

.detail-testimonials-link--stars {
  position: relative;
  overflow: hidden;
  gap: 10px;
  color: var(--ink);
  background: #fffdf7;
  border-color: rgba(196, 154, 74, 0.72);
  box-shadow: 0 12px 30px rgba(139, 101, 39, 0.12);
  animation: trustAlertBlink 1.55s ease-in-out infinite;
  isolation: isolate;
}

.detail-testimonials-link--stars::after {
  content: "";
  position: absolute;
  inset: -4px;
  z-index: -1;
  border: 1px solid rgba(196, 154, 74, 0.45);
  border-radius: inherit;
  animation: trustAlertHalo 1.55s ease-in-out infinite;
}

.detail-testimonials-link--stars span {
  color: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  letter-spacing: 0.03em;
}

@keyframes trustAlertBlink {
  0%,
  100% {
    color: var(--ink);
    background: #fffdf7;
    border-color: rgba(196, 154, 74, 0.72);
    box-shadow: 0 12px 30px rgba(139, 101, 39, 0.12);
  }

  48%,
  58% {
    color: #ffffff;
    background: #b98b32;
    border-color: #b98b32;
    box-shadow: 0 18px 42px rgba(185, 139, 50, 0.36);
  }
}

@keyframes trustAlertHalo {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.055);
  }
}

@media (prefers-reduced-motion: reduce) {
  .detail-testimonials-link--stars,
  .detail-testimonials-link--stars::after,
  .proof-trigger,
  .proof-trigger::after {
    animation: none;
  }
}

.detail-facts {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-facts li {
  padding: 12px 14px;
  color: #312f2a;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 800;
}

.detail-actions {
  display: grid;
  gap: 10px;
}

.detail-seo {
  background: var(--paper);
}

.detail-seo__inner {
  max-width: 820px;
}

.detail-seo h2 {
  margin-bottom: 12px;
  font-size: clamp(1.85rem, 5vw, 3rem);
}

.detail-seo p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.steps {
  background: var(--paper);
  border-block: 1px solid var(--line);
}

.steps-grid {
  display: flex;
  gap: 16px;
  margin-inline: calc(var(--container-padding) * -1);
  padding-inline: var(--container-padding);
  padding-bottom: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.steps-grid article {
  flex: 0 0 min(82vw, 340px);
  padding: 22px;
  scroll-snap-align: start;
}

.steps-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.steps-note {
  margin: 18px 0 0;
  padding: 15px 18px;
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(196, 154, 74, 0.42);
  border-radius: var(--radius);
  font-weight: 700;
}

.trust__inner {
  display: grid;
  gap: 28px;
}

.trust-list {
  display: grid;
  gap: 12px;
}

.trust-list p {
  margin: 0;
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-left: 4px solid var(--champagne);
  border-radius: var(--radius);
  font-weight: 800;
}

.policy {
  background: #fbf9f4;
}

.refund {
  background: var(--white);
}

.policy__inner {
  display: grid;
  gap: 26px;
}

.text-panel {
  padding: 22px;
}

.text-panel strong {
  color: var(--ink);
}

.text-panel p + p {
  margin-top: 10px;
  color: var(--muted);
}

.text-panel ul {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-panel li::marker {
  color: var(--champagne-dark);
}

.text-panel .note {
  margin: 18px 0 0;
  color: var(--sage);
  font-weight: 900;
}

.faq {
  background: #fbf9f4;
}

.faq__inner {
  display: grid;
  gap: 28px;
}

.faq__list {
  display: grid;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(184, 148, 77, 0.26);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 24, 14, 0.045);
  overflow: hidden;
}

.faq-item summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 28px;
  align-items: center;
  gap: 16px;
  min-height: 64px;
  padding: 18px 20px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--champagne-dark);
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item__body {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
  color: var(--muted);
}

.faq-item__body p {
  margin: 0;
}

.faq-item__body ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 20px;
}

.faq-item__body li::marker {
  color: var(--champagne-dark);
}

.faq-proof-button {
  width: fit-content;
  margin-top: 4px;
}

@media (max-width: 640px) {
  .product-card__ribbon {
    top: 9px;
    right: 9px;
    min-height: 26px;
    padding: 6px 9px;
    font-size: 0.58rem;
  }

  .faq__inner {
    gap: 18px;
  }

  .faq-item summary {
    min-height: 56px;
    padding: 15px 14px;
    gap: 12px;
    font-size: 0.96rem;
  }

  .faq-item__body {
    padding: 0 14px 16px;
    font-size: 0.95rem;
  }

  .faq-proof-button {
    width: 100%;
  }
}

.contact {
  background: #fbf9f4;
  color: var(--ink);
}

.contact .eyebrow,
.contact a {
  color: var(--champagne-dark);
}

.contact__inner {
  display: grid;
  gap: 26px;
  padding: 26px;
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.contact h2 {
  font-size: clamp(2rem, 8vw, 3.5rem);
}

address {
  color: var(--muted);
  font-style: normal;
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-line {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.contact .social-link {
  color: var(--ink);
}

.social-link:hover,
.social-link:focus-visible {
  color: var(--champagne-dark);
  border-color: rgba(184, 148, 77, 0.65);
}

.social-link--instagram .social-icon svg {
  color: #e4405f;
  stroke: #e4405f;
}

.social-link--facebook .social-icon svg {
  color: #1877f2;
  stroke: #1877f2;
}

.social-link--instagram:hover,
.social-link--instagram:focus-visible {
  color: #c13584;
  border-color: rgba(228, 64, 95, 0.42);
}

.social-link--facebook:hover,
.social-link--facebook:focus-visible {
  color: #1877f2;
  border-color: rgba(24, 119, 242, 0.42);
}

.social-icon {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
}

.social-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-footer {
  padding-block: 28px;
  color: #6d675d;
  background: #ffffff;
  border-top: 1px solid var(--line);
}

.footer__inner {
  display: grid;
  gap: 18px;
}

.site-footer strong {
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.site-footer p {
  margin: 0;
}

.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
}

.footer-social a {
  color: var(--champagne-dark);
  font-weight: 900;
}

.modal[hidden] {
  display: none;
}

.proof-trigger {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  padding: 10px 16px 10px 10px;
  color: var(--champagne-dark);
  background: linear-gradient(135deg, #fffdf8, #ffffff);
  border: 1px solid rgba(196, 154, 74, 0.86);
  border-radius: 999px;
  box-shadow: 0 18px 44px rgba(115, 86, 35, 0.22);
  font-weight: 900;
  animation: trustAlertBlink 1.55s ease-in-out infinite;
  isolation: isolate;
}

.proof-trigger::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: -1;
  border: 1px solid rgba(196, 154, 74, 0.36);
  border-radius: inherit;
  animation: trustAlertHalo 1.55s ease-in-out infinite;
}

.proof-trigger__icon {
  display: inline-grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--white);
  background: linear-gradient(135deg, #d7b66a, #9b6f25);
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.34);
}

.proof-trigger svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.1;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.proof-panel[hidden] {
  display: none;
}

.proof-panel {
  position: fixed;
  inset: 0;
  z-index: 95;
  display: grid;
  justify-items: end;
  background: rgba(18, 18, 17, 0.28);
}

.proof-panel__backdrop {
  position: absolute;
  inset: 0;
}

.proof-panel__sheet {
  position: relative;
  width: min(650px, 100%);
  height: 100%;
  padding: 28px;
  overflow-y: auto;
  background: var(--white);
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(24, 24, 24, 0.18);
}

.proof-panel__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.proof-panel__sheet h2 {
  max-width: 520px;
  margin-bottom: 10px;
  padding-right: 48px;
  font-size: clamp(2rem, 6vw, 3.1rem);
  line-height: 1.04;
}

.proof-panel__intro {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.6;
}

.verified-proof-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  margin: 20px 0;
  padding: 18px;
  background: #fffdf8;
  border: 1px solid rgba(184, 148, 77, 0.36);
  border-left: 5px solid var(--champagne-dark);
  border-radius: 20px;
}

.verified-proof-summary span,
.verified-review-box .eyebrow {
  color: var(--champagne-dark);
}

.verified-proof-summary strong {
  display: block;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.28;
}

.verified-proof-summary p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.proof-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 22px 0 18px;
}

.proof-tab {
  min-height: 46px;
  padding: 10px 12px;
  color: var(--muted);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 900;
}

.proof-tab[aria-selected="true"] {
  color: var(--white);
  background: var(--sage);
  border-color: var(--sage);
}

.proof-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.proof-card {
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.07);
}

.proof-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: #f3f1ec;
  border-bottom: 1px solid var(--line);
}

.proof-card__media img,
.proof-card__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-card__media video {
  background: #161512;
}

.proof-card__media--video::before,
.proof-card__media--video::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.proof-card__media--video::before {
  z-index: 2;
  inset: 50% auto auto 50%;
  width: 0;
  height: 0;
  border-block: 9px solid transparent;
  border-left: 14px solid var(--ink);
  transform: translate(-35%, -50%);
}

.proof-card__media--video::after {
  z-index: 1;
  inset: 50% auto auto 50%;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(184, 148, 77, 0.45);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(24, 24, 24, 0.18);
  transform: translate(-50%, -50%);
}

.proof-card__body {
  display: grid;
  gap: 5px;
  padding: 11px;
}

.proof-card__body span {
  color: var(--champagne-dark);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-card__body h3 {
  margin: 0;
  font-family: inherit;
  font-size: 0.94rem;
  line-height: 1.2;
}

.proof-card__body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.42;
}

.verified-review-box {
  margin-top: 18px;
  padding: 20px;
  background: linear-gradient(135deg, #ffffff, #fbf6ec);
  border: 1px solid rgba(184, 148, 77, 0.34);
  border-radius: 22px;
}

.verified-review-box h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.08;
}

.verified-review-box > p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

.verified-review-form {
  gap: 12px;
}

.verified-review-form select,
.verified-review-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(184, 148, 77, 0.32);
  border-radius: 14px;
  font: inherit;
  resize: vertical;
}

.verified-review-form textarea {
  line-height: 1.45;
}

.verified-review-form select:focus,
.verified-review-form textarea:focus {
  outline: 3px solid rgba(196, 154, 74, 0.4);
  outline-offset: 2px;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 12px;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 19, 0.62);
}

.modal__panel {
  position: relative;
  width: min(100%, 620px);
  max-height: calc(100svh - 32px);
  overflow: auto;
  padding: 28px;
  background: #fffdf8;
  border: 1px solid rgba(184, 148, 77, 0.32);
  border-radius: 26px;
  box-shadow: 0 28px 80px rgba(24, 24, 19, 0.24);
}

.modal__panel,
.modal__panel * {
  box-sizing: border-box;
}

.modal__panel h2 {
  max-width: 440px;
  margin: 0 44px 8px 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(1.85rem, 7vw, 2.65rem);
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.modal__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.modal__intro {
  max-width: 480px;
  margin-bottom: 18px;
  color: #5f5a51;
  font-size: 0.98rem;
  line-height: 1.5;
}

form {
  display: grid;
  gap: 13px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

input {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  min-height: 48px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(184, 148, 77, 0.32);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

input:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(196, 154, 74, 0.4);
  outline-offset: 2px;
}

input[readonly] {
  color: var(--sage);
  background: #f7f0e6;
}

.form-error {
  min-height: 22px;
  margin: 0;
  color: #9a2f20;
  font-weight: 900;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #b3261e;
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.32;
}

.field-error:empty {
  min-height: 0;
}

[hidden] {
  display: none !important;
}

.quote-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 82px;
  align-items: center;
  gap: 6px;
  padding: 15px 16px;
  background: linear-gradient(135deg, #ffffff, #fbf5ea);
  border: 1px solid rgba(184, 148, 77, 0.34);
  border-left: 5px solid var(--champagne-dark);
  border-radius: 18px;
}

.quote-product__copy {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.quote-product__thumb {
  overflow: hidden;
  width: 74px;
  aspect-ratio: 1;
  margin: 0 0 0 auto;
  background: #f6f1e8;
  border: 1px solid rgba(184, 148, 77, 0.34);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(72, 53, 26, 0.12);
}

.quote-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.quote-product span,
.quote-result > p {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote-product strong {
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.2;
}

.quote-product small {
  color: var(--muted);
  font-weight: 800;
}

.quote-calculate {
  min-height: 54px;
  margin-top: -2px;
  background: #111;
  color: #fff;
  box-shadow: 0 14px 34px rgba(17, 17, 17, 0.12);
}

.quote-calculate:hover {
  background: #2b2924;
}

.quote-result {
  display: grid;
  gap: 15px;
  padding: 17px;
  background: #fff;
  border: 1px solid rgba(151, 111, 43, 0.3);
  border-radius: 20px;
  box-shadow: 0 18px 44px rgba(24, 24, 19, 0.1);
}

.quote-result dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.quote-result dl div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
}

.quote-result dt {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.quote-result dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.98rem;
  font-weight: 900;
  white-space: nowrap;
}

.quote-result .quote-result__discount dd {
  color: #b3261e;
}

.quote-result .quote-result__final {
  padding: 12px 14px;
  background: #121511;
  border-bottom: 0;
  border-top: 0;
  border-radius: 16px;
}

.quote-result .quote-result__final dt,
.quote-result .quote-result__final dd {
  color: #ffffff;
  font-size: 1.12rem;
}

.quote-result > strong {
  display: block;
  padding: 12px;
  color: var(--ink);
  background: #fbf7ee;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.45;
}

.quote-reject {
  min-height: 48px;
  margin-top: -2px;
  color: #6f2119;
  background: #fff;
  border-color: rgba(179, 38, 30, 0.24);
  box-shadow: none;
}

.quote-alternatives {
  display: grid;
  gap: 12px;
  padding: 14px;
  background: #fbf7ee;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.quote-alternatives p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.45;
}

.quote-alternatives div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quote-alternatives .btn {
  min-height: 42px;
  padding: 9px 13px;
  font-size: 0.9rem;
}

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

.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 23, 23, 0.56);
  backdrop-filter: blur(3px);
}

.promo-card {
  position: relative;
  width: min(100%, 500px);
  padding: 30px 24px 24px;
  overflow: hidden;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(184, 148, 77, 0.38);
  border-radius: 12px;
  box-shadow: 0 26px 70px rgba(24, 24, 24, 0.22);
}

.promo-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, #b8944d, #f3dfad, #b8944d);
}

.promo-card__close {
  position: absolute;
  right: 14px;
  top: 14px;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.5rem;
  line-height: 1;
}

.promo-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2.25rem, 11vw, 4rem);
  line-height: 0.95;
}

.promo-card__lead {
  max-width: 390px;
  margin: 0 auto 10px;
  color: #34322e;
  font-size: 1.02rem;
  font-weight: 800;
  line-height: 1.45;
}

.promo-emphasis {
  color: #b42318;
}

.promo-card__alert {
  color: #b42318;
}

.promo-card__note {
  max-width: 390px;
  margin: 0 auto 20px;
  color: var(--muted);
  font-size: 0.9rem;
}

.promo-code {
  display: grid;
  gap: 5px;
  max-width: 330px;
  margin: 18px auto;
  padding: 14px 16px;
  background: #fffaf1;
  border: 1px dashed rgba(184, 148, 77, 0.72);
  border-radius: var(--radius);
}

.promo-code span {
  color: var(--champagne-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.promo-code strong {
  color: var(--ink);
  font-size: clamp(1.25rem, 7vw, 1.65rem);
  letter-spacing: 0.08em;
}

.promo-validity,
.promo-card__validity {
  margin: -6px 0 14px;
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 900;
}

.promo-card__actions {
  display: grid;
  gap: 10px;
}

.promo-copy-status {
  min-height: 20px;
  margin: 12px 0 0;
  color: #128c5b;
  font-size: 0.9rem;
  font-weight: 900;
}

@media (max-width: 539px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .top-bar {
    font-size: 0.8rem;
  }

  .top-bar__track {
    gap: 26px;
    padding-block: 7px;
    animation-duration: 18s;
    line-height: 1.35;
  }

  .header__inner {
    min-height: 68px;
    gap: 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 1.06rem;
    letter-spacing: 0.1em;
  }

  .brand small {
    font-size: 0.64rem;
    letter-spacing: 0.28em;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .primary-nav {
    inset: 86px 14px auto;
  }

  .hero {
    min-height: auto;
  }

  .hero__media {
    height: 330px;
  }

  .hero__inner {
    padding-block: 24px 34px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 0.66rem;
    line-height: 1.35;
  }

  .hero .eyebrow {
    display: none;
  }

  h1 {
    max-width: 330px;
    margin-bottom: 10px;
    font-size: clamp(1.65rem, 8vw, 2.15rem);
    line-height: 1.06;
  }

  .hero__subtitle {
    max-width: 335px;
    margin-bottom: 14px;
    font-size: 0.94rem;
    line-height: 1.42;
  }

  .experience-note {
    display: none;
  }

  .experience-note strong {
    font-size: 2.15rem;
  }

  .experience-note span {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .trust-badges {
    display: none;
  }

  .trust-badges li {
    grid-template-columns: 28px minmax(0, 1fr);
    gap: 8px;
    padding: 10px 11px;
    font-size: 0.82rem;
    line-height: 1.28;
    text-align: left;
  }

  .trust-badges li:nth-child(1),
  .trust-badges li:nth-child(3) {
    display: none;
  }

  .badge-icon {
    width: 28px;
    height: 28px;
  }

  .badge-icon svg {
    width: 15px;
    height: 15px;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: min(100%, 330px);
  }

  .hero__actions .btn {
    width: 100%;
  }

  .section {
    padding-block: 46px;
  }

  main > section {
    scroll-margin-top: 118px;
  }

  .section-heading {
    margin-bottom: 22px;
  }

  .section-heading h2 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
    line-height: 1.12;
  }

  .section-heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .collections {
    padding-block: 40px;
  }

  .collections .section-heading {
    margin-bottom: 18px;
  }

  .collections .section-heading h2 {
    max-width: 350px;
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1.02;
  }

  .collections .section-heading p:not(.eyebrow) {
    max-width: 345px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .collections .category-grid {
    grid-template-columns: 1fr;
  }

  .category-card {
    display: grid;
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .category-card img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }

  .category-card div {
    justify-content: center;
    min-width: 0;
    padding: 11px;
  }

  .category-card h3 {
    margin-bottom: 0;
    font-size: 0.96rem;
    line-height: 1.16;
  }

  .category-card p {
    display: none;
  }

  .collections .category-card {
    grid-template-columns: 116px minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 154px;
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.06);
  }

  .collections .category-card img {
    width: 116px;
    height: 100%;
    min-height: 154px;
    aspect-ratio: auto;
    object-fit: cover;
  }

  .collections .category-card div {
    padding: 13px 14px;
    align-content: center;
  }

  .collections .category-card h3 {
    margin-bottom: 5px;
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .collections .category-card p {
    display: block;
    margin: 0;
    font-size: 0.82rem;
    line-height: 1.32;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .collections .category-card__button {
    min-height: 32px;
    margin-top: 10px;
    padding-inline: 13px;
    font-size: 0.72rem;
  }

  .catalogue-hero {
    padding-block: 18px;
  }

  .catalogue-hero__inner {
    gap: 16px;
  }

  .catalogue-hero__copy h1 {
    font-size: clamp(2rem, 11vw, 2.65rem);
  }

  .catalogue-hero__media img {
    aspect-ratio: 16 / 9;
  }

  .catalogue-section {
    padding-block: 28px;
  }

  .catalogue-shell {
    gap: 16px;
  }

  .catalogue-filter-panel {
    gap: 10px;
  }

  .filter-group {
    padding: 12px;
  }

  .catalog-filter-btn {
    min-height: 40px;
    padding: 8px 12px;
    font-size: 0.82rem;
  }

  .catalogue-results__bar {
    margin-bottom: 14px;
  }

  .catalogue-note {
    padding: 12px 13px;
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .localization-card {
    margin-bottom: 14px;
    padding: 12px;
  }

  .localization-card p {
    font-size: 0.84rem;
    line-height: 1.38;
  }

  .localization-card select {
    min-height: 42px;
    font-size: 0.86rem;
  }

  .filters {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    overflow: visible;
  }

  .filter-btn {
    min-height: 44px;
    padding: 8px 9px;
    white-space: normal;
    font-size: 0.8rem;
    line-height: 1.25;
    text-align: center;
  }

  .product-count {
    margin-bottom: 14px;
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .product-card {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .product-card__media {
    aspect-ratio: 1 / 1.18;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-card__media img {
    object-fit: cover;
  }

  .product-card__label {
    display: none;
  }

  .product-card__body {
    align-content: start;
    gap: 6px;
    min-width: 0;
    padding: 10px;
  }

  .product-card__category {
    order: 2;
    font-size: 0.58rem;
    line-height: 1.25;
  }

  .product-card h3 {
    display: block;
    order: 1;
    margin-bottom: 0;
    font-size: 0.86rem;
    line-height: 1.18;
  }

  .product-card p {
    display: none;
  }

  .product-card__price {
    order: 3;
    font-size: 0.9rem;
  }

  .product-card .btn {
    order: 4;
    min-height: 36px;
    padding: 8px 9px;
    font-size: 0.76rem;
  }

  .steps-grid article,
  .text-panel,
  .contact__inner {
    padding: 18px;
  }

  .contact__actions {
    display: grid;
    grid-template-columns: 1fr;
  }
}

@media (min-width: 540px) {
  .hero .eyebrow {
    display: block;
  }

  .trust-badges,
  .category-grid,
  .steps-grid,
  .trust-list,
  .footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .coverage-countries {
    display: flex;
    width: max-content;
  }

  .modal {
    place-items: center;
  }
}

@media (min-width: 700px) {
  .localization-card {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 280px);
    align-items: center;
  }

  .localization-card label {
    justify-self: end;
    width: 100%;
  }
}

@media (min-width: 820px) {
  .header-actions {
    display: none;
  }

  .nav-toggle {
    display: none;
  }

  .primary-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex: 1;
    justify-content: center;
    gap: 2px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .primary-nav a {
    padding: 8px 9px;
    font-size: 0.83rem;
  }

  .header-cta.btn {
    display: inline-flex;
    min-width: max-content;
  }

  .hero__media {
    height: min(54vw, 620px);
  }

  .detail-product {
    padding-block: 40px 72px;
  }

  .detail-product__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    align-items: start;
  }

  .detail-product__media {
    position: sticky;
    top: 130px;
  }

  .detail-actions {
    grid-template-columns: 1fr 1fr;
  }

  .coverage-strip__inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    align-items: center;
    padding-block: 22px;
  }

  .trend-showcase__grid {
    gap: 14px;
  }

  .trend-card {
    flex-basis: 255px;
  }

  .trust-badges {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .category-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .collections .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .category-card {
    grid-template-rows: 180px minmax(150px, auto);
  }

  .category-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .category-card h3 {
    font-size: 1.12rem;
  }

  .section-heading--split,
  .policy__inner,
  .contact__inner,
  .trust__inner {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    align-items: start;
  }

  .steps-grid {
    display: flex;
  }

  .steps-grid article {
    flex-basis: min(31vw, 360px);
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .catalogue-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
  }

  .catalogue-shell {
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
  }

  .catalogue-filter-panel {
    position: static;
  }

  .catalog-filter-list {
    display: grid;
    overflow: visible;
    padding-bottom: 0;
  }

  .price-filter-desktop-options {
    display: grid;
  }

  .catalog-filter-btn {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    white-space: normal;
  }

  .catalogue-results__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .contact__actions {
    justify-content: flex-end;
  }

  .footer__inner {
    grid-template-columns: 1.05fr 0.9fr 1.35fr 0.9fr;
    align-items: start;
  }
}

@media (min-width: 1100px) {
  .primary-nav a {
    padding-inline: 12px;
    font-size: 0.9rem;
  }

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

@media (max-width: 640px) {
  .hero__media {
    aspect-ratio: 1290 / 1602;
    height: auto;
    min-height: 0;
  }

  .hero .hero__inner {
    display: none;
  }

  .hero-mobile-summary {
    display: grid;
    justify-items: center;
    padding-block: 28px 34px;
    text-align: center;
    background: var(--white);
  }

  .hero-mobile-summary h2 {
    width: min(100%, 350px);
    max-width: 350px;
    margin: 0 0 14px;
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.72rem, 7.4vw, 2.45rem);
    font-weight: 500;
    line-height: 1.1;
  }

  .hero-mobile-summary > p {
    max-width: 560px;
    margin: 0 0 20px;
    color: #3b3935;
    font-size: clamp(0.98rem, 3.8vw, 1.2rem);
    line-height: 1.55;
  }

  .hero-mobile-summary .experience-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 12px;
    width: min(100%, 560px);
    margin: 0 0 18px;
    padding: 14px 16px;
    text-align: left;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: clamp(2.1rem, 12vw, 3.15rem);
  }

  .hero-mobile-summary .experience-note span {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    width: min(100%, 560px);
    margin: 0 0 22px;
    padding: 8px;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 100%);
    border: 1px solid rgba(196, 154, 74, 0.28);
    border-radius: 22px;
    box-shadow: 0 18px 42px rgba(72, 53, 26, 0.08);
  }

  .hero-mobile-summary .trust-badges li,
  .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero-mobile-summary .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    gap: 11px;
    min-height: 0;
    padding: 12px 10px;
    background: transparent;
    border: 0;
    border-radius: 16px;
    box-shadow: none;
    font-size: 0.9rem;
    line-height: 1.24;
    text-align: left;
  }

  .hero-mobile-summary .trust-badges li + li {
    border-top: 1px solid rgba(196, 154, 74, 0.16);
  }

  .hero-mobile-summary .badge-icon {
    width: 32px;
    height: 32px;
    background: #fbf7ef;
    border-color: rgba(196, 154, 74, 0.28);
  }

  .hero-mobile-summary .badge-icon svg {
    width: 16px;
    height: 16px;
  }

  .hero-mobile-summary .hero__actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
    width: min(100%, 420px);
  }

  .hero-mobile-summary .hero__actions .btn--secondary {
    display: inline-flex;
  }

  .collections {
    padding-block: 40px;
  }

  .collections .section-heading {
    margin-bottom: 18px;
  }

  .collections .section-heading h2 {
    max-width: 350px;
    font-size: clamp(1.9rem, 10vw, 2.35rem);
    line-height: 1.02;
  }

  .collections .section-heading p:not(.eyebrow) {
    max-width: 345px;
    font-size: 0.95rem;
    line-height: 1.42;
  }

  .collections .category-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .collections .category-card {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: auto;
    box-shadow: 0 10px 24px rgba(24, 24, 24, 0.06);
  }

  .collections .category-card img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: var(--collection-preview-ratio, 4 / 3);
    background: #f7f5ef;
    object-fit: contain;
  }

  .collections .category-card div {
    padding: 15px 16px 16px;
    justify-content: center;
  }

  .collections .category-card h3 {
    margin-bottom: 5px;
    font-size: 1.02rem;
    line-height: 1.12;
  }

  .collections .category-card p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.32;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .collections .category-card__button {
    min-height: 34px;
    margin-top: 12px;
    padding-inline: 15px;
    font-size: 0.74rem;
  }

  .catalogue-section {
    padding-block: 20px 40px;
  }

  .catalogue-shell {
    gap: 14px;
  }

  .catalogue-filter-panel {
    position: static;
    z-index: 25;
    display: grid;
    gap: 9px;
    margin: -4px 0 12px;
    padding: 10px 0 8px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .filter-group {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
  }

  .filter-group h2 {
    display: none;
  }

  .catalog-filter-list {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .catalog-filter-list::-webkit-scrollbar {
    display: none;
  }

  .catalog-filter-btn {
    width: auto;
    min-height: 44px;
    padding: 9px 15px;
    color: var(--ink);
    background: var(--white);
    border: 1px solid #d9d4ca;
    border-radius: 999px;
    font-size: 0.88rem;
    line-height: 1.15;
    text-align: center;
    white-space: nowrap;
  }

  .catalog-filter-btn[aria-pressed="true"] {
    color: var(--white);
    background: var(--ink);
    border-color: var(--ink);
  }

  .price-filter-desktop-options {
    display: none;
  }

  .catalog-filter-btn--price-trigger {
    display: inline-flex;
    min-width: 190px;
    justify-content: space-between;
    text-align: left;
  }

  .modal {
    place-items: stretch;
    padding: 0;
    background: #fffdf8;
  }

  .modal__backdrop {
    display: none;
  }

  .modal__panel {
    display: grid;
    align-content: start;
    width: 100%;
    min-height: 100svh;
    max-height: none;
    padding: calc(16px + env(safe-area-inset-top)) 18px calc(96px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 46%, #fffdf8 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .modal__close {
    position: fixed;
    top: calc(12px + env(safe-area-inset-top));
    right: 16px;
    z-index: 6;
    width: 44px;
    height: 44px;
    background: #fffdf8;
    border-color: #e8dcc8;
    box-shadow: 0 10px 28px rgba(24, 24, 19, 0.08);
  }

  .modal__panel > .eyebrow {
    width: max-content;
    margin: 2px 56px 8px 0;
    padding: 6px 10px;
    background: #f6efe3;
    border: 1px solid #eadcc7;
    border-radius: 999px;
    color: var(--champagne-dark);
    font-size: 0.68rem;
    line-height: 1;
  }

  .modal__panel h2 {
    max-width: 280px;
    margin: 0 56px 7px 0;
    font-size: clamp(1.88rem, 9vw, 2.45rem);
    line-height: 1;
  }

  .modal__intro {
    max-width: 320px;
    margin: 0 0 13px;
    color: #635d53;
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .modal form {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    gap: 10px;
    counter-reset: quote-step;
  }

  .modal label {
    position: relative;
    gap: 8px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #eadcc7;
    border-radius: 20px;
    font-size: 0.9rem;
    box-shadow: 0 12px 30px rgba(72, 53, 26, 0.05);
  }

  .modal label[hidden] {
    display: none !important;
  }

  .modal label::before {
    counter-increment: quote-step;
    content: "0" counter(quote-step);
    width: max-content;
    padding: 3px 8px;
    color: var(--champagne-dark);
    background: #fbf5ea;
    border: 1px solid #eadcc7;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0.06em;
  }

  .modal input {
    min-height: 50px;
    padding: 12px 13px;
    background: #fffdf8;
    border-color: #e8dcc8;
    border-radius: 16px;
    font-size: 1rem;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 86px;
    gap: 12px;
    margin: 2px 0 2px;
    padding: 12px;
    background: #ffffff;
    border-color: #e2d3ba;
    border-left-width: 5px;
    border-radius: 20px;
    box-shadow: 0 16px 40px rgba(72, 53, 26, 0.08);
  }

  .quote-product__copy {
    gap: 6px;
  }

  .quote-product__thumb {
    width: 82px;
    border-radius: 16px;
  }

  .quote-product span {
    color: var(--champagne-dark);
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .quote-product strong {
    font-size: 0.98rem;
    line-height: 1.16;
  }

  .quote-product small {
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .quote-calculate,
  .modal form .btn--full {
    position: static;
    z-index: auto;
    width: 100%;
    min-height: 58px;
    margin-top: 6px;
    border-radius: 999px;
    box-shadow: 0 18px 42px rgba(24, 24, 19, 0.2);
  }

  .quote-result {
    gap: 12px;
    padding: 15px;
    border-radius: 20px;
  }

  .quote-result dl {
    gap: 6px;
  }

  .quote-result dl div {
    padding: 9px 0;
  }

  .form-error {
    min-height: 0;
    padding-inline: 4px;
    font-size: 0.88rem;
    line-height: 1.35;
  }

  .field-error {
    font-size: 0.8rem;
  }

  .filter-group:nth-child(2) .catalog-filter-list {
    padding-bottom: 0;
  }

  .detail-product {
    padding-block: 16px 38px;
  }

  .detail-product__inner {
    gap: 18px;
  }

  .detail-product__media img {
    max-height: 72vh;
  }

  .detail-product__content {
    gap: 13px;
  }

  .detail-product__content h1 {
    font-size: clamp(1.75rem, 9vw, 2.4rem);
    line-height: 1.08;
  }

  .detail-facts li {
    border-radius: var(--radius);
    font-size: 0.9rem;
    line-height: 1.35;
  }

  .detail-nav {
    display: none;
  }

  .proof-trigger {
    right: 12px;
    bottom: 12px;
    min-height: 44px;
    max-width: calc(100vw - 24px);
    padding: 8px 13px 8px 8px;
    font-size: 0.88rem;
  }

  .proof-trigger__icon {
    width: 28px;
    height: 28px;
  }

  .proof-panel {
    align-items: end;
    justify-items: stretch;
  }

  .proof-panel__sheet {
    width: 100%;
    height: auto;
    max-height: 88vh;
    padding: 22px 16px 18px;
    border-top: 1px solid var(--line);
    border-left: 0;
    border-radius: 24px 24px 0 0;
    box-shadow: 0 -20px 60px rgba(24, 24, 24, 0.18);
  }

  .proof-panel__sheet h2 {
    padding-right: 44px;
    font-size: clamp(1.7rem, 8vw, 2.25rem);
  }

  .verified-proof-summary {
    grid-template-columns: 1fr;
    gap: 13px;
    padding: 15px;
  }

  .verified-proof-summary .btn {
    width: 100%;
  }

  .proof-tabs {
    grid-template-columns: 1fr;
  }

  .proof-gallery {
    grid-template-columns: 1fr;
  }

  .proof-card__media {
    aspect-ratio: 4 / 4.6;
  }

  .verified-review-box {
    padding: 16px;
    border-radius: 18px;
  }

  .coverage-strip__inner {
    gap: 12px;
    padding-block: 14px 16px;
  }

  .coverage-strip__copy {
    gap: 3px;
  }

  .coverage-strip__copy strong {
    font-size: 1.16rem;
  }

  .coverage-strip__copy p {
    font-size: 0.84rem;
    line-height: 1.35;
  }

  .coverage-countries {
    gap: 8px;
  }

  .coverage-countries li {
    grid-template-columns: 28px;
    justify-content: center;
    min-width: 48px;
    min-height: 36px;
    padding: 7px 9px;
  }

  .coverage-countries li span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .country-flag {
    width: 28px;
    height: 18px;
  }

  .country-flag::after {
    width: 6px;
    height: 6px;
  }

  .trend-showcase {
    gap: 10px;
    padding-top: 12px;
  }

  .trend-showcase__header strong {
    font-size: 1.08rem;
  }

  .trend-showcase__header p {
    font-size: 0.82rem;
    line-height: 1.34;
  }

  .hero__inner {
    padding-block: 20px 28px;
  }

  .hero .eyebrow {
    display: none;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 14px;
    font-size: clamp(1.56rem, 6.8vw, 2rem);
    line-height: 1.06;
  }

  .hero__subtitle {
    display: none;
    max-width: 340px;
    margin-bottom: 12px;
    color: #4b4740;
    font-size: 0.88rem;
    line-height: 1.38;
  }

  .hero .hero__inner .experience-note {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 9px;
    width: min(100%, 340px);
    margin: 0 0 12px;
    padding: 10px 12px;
    text-align: left;
  }

  .hero .hero__inner .experience-note strong {
    font-size: 1.8rem;
  }

  .hero .hero__inner .experience-note span {
    font-size: 0.77rem;
    line-height: 1.28;
  }

  .hero .hero__inner .trust-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: min(100%, 340px);
    margin: 0 0 14px;
  }

  .hero .hero__inner .trust-badges li,
  .hero .hero__inner .trust-badges li:nth-child(1),
  .hero .hero__inner .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 7px;
    min-height: 74px;
    padding: 9px;
    font-size: 0.72rem;
    line-height: 1.22;
    text-align: left;
  }

  .hero .hero__inner .badge-icon {
    width: 24px;
    height: 24px;
  }

  .hero .hero__inner .badge-icon svg {
    width: 13px;
    height: 13px;
  }

  .hero__actions {
    display: grid;
    width: min(100%, 330px);
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero__actions .btn--secondary {
    display: none;
  }

  .hero .hero-mobile-summary .trust-badges {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero .hero-mobile-summary .trust-badges li,
  .hero .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero .hero-mobile-summary .trust-badges li:nth-child(3) {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 0;
    padding: 12px 10px;
    font-size: 0.88rem;
  }

}

@media (max-width: 640px) {
  .modal {
    display: block;
    padding: 0;
    background: #fffdf8;
  }

  .modal__panel {
    position: fixed;
    inset: 0;
    display: block;
    min-height: 100dvh;
    height: 100dvh;
    padding: calc(18px + env(safe-area-inset-top)) 16px calc(34px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: #fffdf8;
    -webkit-overflow-scrolling: touch;
  }

  .modal__close {
    top: calc(10px + env(safe-area-inset-top));
    right: 12px;
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }

  .modal__panel > .eyebrow {
    margin: 0 56px 8px 0;
    padding: 5px 9px;
    font-size: 0.62rem;
    letter-spacing: 0.14em;
  }

  .modal__panel h2 {
    max-width: calc(100% - 58px);
    margin: 0 56px 8px 0;
    font-size: clamp(2rem, 10vw, 2.55rem);
    line-height: 0.98;
  }

  .modal__intro {
    max-width: calc(100% - 8px);
    margin-bottom: 14px;
    font-size: 0.92rem;
    line-height: 1.4;
  }

  .modal form {
    max-width: none;
    gap: 13px;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 78px;
    gap: 12px;
    padding: 13px;
    border-left-width: 5px;
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(72, 53, 26, 0.08);
  }

  .quote-product__thumb {
    width: 78px;
    border-radius: 16px;
  }

  .quote-product span {
    font-size: 0.6rem;
    letter-spacing: 0.14em;
  }

  .quote-product strong {
    font-size: 1rem;
    line-height: 1.16;
  }

  .quote-product small {
    font-size: 0.78rem;
    line-height: 1.22;
  }

  .modal label {
    gap: 8px;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    font-size: 0.92rem;
  }

  .modal label::before {
    content: none;
  }

  .modal input {
    min-height: 54px;
    padding: 13px 14px;
    border-radius: 17px;
    font-size: 1rem;
  }

  .quote-calculate,
  .modal form .btn--full {
    min-height: 58px;
    margin-top: 2px;
    font-size: 0.98rem;
    box-shadow: 0 14px 34px rgba(24, 24, 19, 0.18);
  }

  .quote-result {
    gap: 9px;
    padding: 12px;
    border-radius: 16px;
  }

  .quote-result dl div {
    padding: 7px 0;
  }
}

@media (max-width: 360px) {
  .modal__panel {
    padding-inline: 12px;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 58px;
  }

  .quote-product__thumb {
    width: 58px;
  }

  .modal__intro {
    font-size: 0.82rem;
  }
}

/* === Zaanga premium UX pass - 2026-06-09 === */
:root {
  --paper: #fffdf8;
  --surface-warm: #fbf7ef;
  --accent-red: #b42318;
  --accent-green: #168c67;
  --accent-blue: #1d6173;
  --focus-ring: rgba(22, 140, 103, 0.28);
  --soft-shadow: 0 18px 46px rgba(31, 24, 14, 0.08);
  --lift-shadow: 0 24px 70px rgba(31, 24, 14, 0.13);
}

html {
  scroll-padding-top: 92px;
}

body {
  background: var(--paper);
  color: var(--ink);
  text-rendering: optimizeLegibility;
}

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

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

.top-bar {
  background: var(--accent-red);
  color: #fff;
  border: 0;
}

.top-bar__track {
  color: #fff;
  font-weight: 900;
}

.top-bar__track span::after {
  color: rgba(255, 255, 255, 0.7);
}

.site-header {
  border-bottom: 1px solid rgba(184, 148, 77, 0.18);
  box-shadow: 0 10px 30px rgba(20, 19, 15, 0.04);
}

.nav a,
.mobile-nav a {
  border-radius: 999px;
}

.nav a:hover,
.mobile-nav a:hover,
.nav a:focus-visible,
.mobile-nav a:focus-visible {
  background: #f5efe4;
  color: var(--ink);
}

.btn {
  min-height: 48px;
  border-radius: 999px;
  box-shadow: none;
}

.btn--primary,
.quote-calculate,
.modal form .btn--full {
  background: #111;
  color: #fff;
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.14);
}

.btn--primary:hover,
.quote-calculate:hover,
.modal form .btn--full:hover {
  background: #000;
  transform: translateY(-1px);
}

.whatsapp-order,
.btn--whatsapp,
.product-card .btn {
  background: var(--accent-green);
  color: #fff;
}

.whatsapp-order:hover,
.btn--whatsapp:hover,
.product-card .btn:hover {
  background: #0f7656;
}

.hero {
  background: #fff;
}

.hero__media {
  background: #111;
  border-bottom: 1px solid var(--line);
}

.hero__media video,
.hero__media img {
  filter: saturate(1.04) contrast(1.02);
}

.hero__inner,
.hero-mobile-summary,
.collections .container,
.steps .container,
.trend-showcase .container,
.trust .container,
.policy .container,
.refund .container,
.contact .container {
  max-width: 1180px;
}

.hero__inner {
  padding-top: clamp(42px, 6vw, 78px);
  padding-bottom: clamp(42px, 6vw, 74px);
  text-align: center;
}

.hero__inner .eyebrow,
.section-heading .eyebrow,
.catalogue-copy .eyebrow {
  color: var(--champagne-dark);
  font-weight: 900;
  letter-spacing: 0.18em;
}

.hero h1,
.hero-mobile-summary h2,
.section-heading h2,
.catalogue-copy h1,
.detail-product h1 {
  letter-spacing: 0;
  color: #141414;
}

.hero__subtitle {
  max-width: 860px;
  margin-inline: auto;
  color: #4e4942;
}

.experience-note {
  max-width: 780px;
  margin-inline: auto;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.4);
  box-shadow: var(--soft-shadow);
}

.trust-badges {
  gap: 14px;
  align-items: stretch;
}

.trust-badges li {
  min-height: 118px;
  border-radius: 8px;
  background: #fff;
  border-color: rgba(184, 148, 77, 0.28);
  box-shadow: 0 12px 30px rgba(31, 24, 14, 0.045);
}

.trust-badges .badge-icon {
  color: var(--champagne-dark);
  background: #fbf7ef;
  border-color: rgba(184, 148, 77, 0.24);
}

.coverage-strip {
  padding: 30px 0;
  border-block: 1px solid rgba(184, 148, 77, 0.16);
  background: linear-gradient(180deg, #fffdf8, #fff);
}

.coverage-strip__inner {
  gap: 20px;
}

.coverage-countries {
  gap: 10px;
  will-change: transform;
}

.coverage-countries li {
  min-width: 188px;
  min-height: 54px;
  border-radius: 999px;
  background: #fff;
  border-color: rgba(184, 148, 77, 0.24);
  box-shadow: 0 10px 24px rgba(31, 24, 14, 0.045);
}

.coverage-countries .flag {
  flex: 0 0 auto;
}

.steps {
  overflow: hidden;
}

.steps-grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(250px, 1fr);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 12px;
}

.step-card {
  min-width: 0;
  scroll-snap-align: start;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 24, 14, 0.06);
}

.step-card h3 {
  line-height: 1.08;
}

.trend-showcase {
  background: #fff;
}

.trend-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 300px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding-bottom: 12px;
}

.trend-card {
  position: relative;
  scroll-snap-align: start;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(31, 24, 14, 0.07);
}

.trend-card::after {
  content: "🔥";
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 24px rgba(31, 24, 14, 0.14);
  font-size: 1rem;
}

.collections {
  background: #fff;
}

.collections .category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.collections .category-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.24);
  box-shadow: 0 18px 48px rgba(31, 24, 14, 0.07);
}

.collections .category-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--lift-shadow);
}

.collections .category-card img {
  width: 100%;
  height: clamp(210px, 22vw, 310px);
  padding: 10px;
  object-fit: contain;
  object-position: center;
  background: #f8f3ea;
}

.collections .category-card div {
  padding: 22px 24px 24px;
}

.collections .category-card h3 {
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.collections .category-card h3::before {
  border-radius: 99px;
}

.collections .category-card--acrylique h3 {
  color: var(--accent-blue);
}

.collections .category-card--cadeaux h3 {
  color: #1e6f4e;
}

.collections .category-card--carton h3 {
  color: #9a5f1b;
}

.collections .category-card__button {
  display: inline-flex;
  width: auto;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 0 22px;
  border-radius: 999px;
  background: #111;
  color: #fff;
  font-weight: 900;
}

.catalogue-shell {
  align-items: start;
}

.catalogue-filters,
.catalogue-mobile-filters {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.22);
  box-shadow: 0 16px 40px rgba(31, 24, 14, 0.055);
}

.catalogue-mobile-filters {
  position: static;
}

.filter-pill,
.price-filter-trigger,
.price-filter-reset,
.price-filter-apply,
.subcategory-pill {
  min-height: 48px;
  border-radius: 999px;
}

.product-grid {
  align-items: start;
}

.product-card {
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.24);
  box-shadow: 0 14px 36px rgba(31, 24, 14, 0.055);
}

.product-card__media {
  background: #f7f1e8;
}

.product-card__media img {
  object-fit: cover;
}

.product-card h3 {
  overflow-wrap: anywhere;
}

.modal {
  background: rgba(17, 17, 17, 0.62);
}

.modal__panel {
  border-radius: 8px;
  border: 1px solid rgba(184, 148, 77, 0.28);
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.quote-product {
  border-radius: 8px;
  background: #fffaf2;
  border-color: rgba(184, 148, 77, 0.34);
  box-shadow: 0 14px 36px rgba(31, 24, 14, 0.06);
}

.quote-product__thumb {
  border-radius: 8px;
}

.modal label {
  color: #1d1a16;
}

.modal input,
.modal select,
.modal textarea {
  background: #fff;
  border: 1px solid rgba(184, 148, 77, 0.32);
}

.modal input:focus,
.modal select:focus,
.modal textarea:focus {
  border-color: var(--champagne);
  box-shadow: 0 0 0 4px rgba(184, 148, 77, 0.14);
}

.quote-result {
  border-radius: 8px;
  background: #fff;
  border-color: rgba(22, 140, 103, 0.26);
}

.proof-trigger {
  right: clamp(12px, 2.5vw, 28px);
  bottom: clamp(12px, 2.5vw, 24px);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 18px 44px rgba(31, 24, 14, 0.16);
}

@media (min-width: 1100px) {
  .steps-grid {
    grid-auto-columns: minmax(250px, 1fr);
  }
}

@media (max-width: 900px) {
  .collections .category-grid {
    grid-template-columns: 1fr;
  }

  .collections .category-card {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  }

  .collections .category-card img {
    height: 100%;
    min-height: 220px;
  }

  .catalogue-mobile-filters {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .catalogue-mobile-filters::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 640px) {
  html {
    scroll-padding-top: 82px;
  }

  .top-bar {
    min-height: 34px;
  }

  .top-bar__track {
    font-size: 0.82rem;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
  }

  .header__inner {
    min-height: 82px;
    padding-block: 10px;
  }

  .logo img {
    width: 54px;
    height: 54px;
  }

  .logo-wordmark {
    font-size: 1.78rem;
  }

  .logo-sub {
    font-size: 0.68rem;
  }

  .hero__media {
    aspect-ratio: 1290 / 1602;
    max-height: min(80vh, 760px);
  }

  .hero-mobile-summary {
    display: block;
    padding: 26px 20px 30px;
    text-align: center;
  }

  .hero-mobile-summary h2 {
    max-width: 17ch;
    margin-inline: auto;
    font-size: clamp(2.25rem, 9.2vw, 2.85rem);
    line-height: 1;
  }

  .hero-mobile-summary > p {
    display: none;
  }

  .hero-mobile-summary .experience-note {
    display: grid;
    grid-template-columns: 0.56fr 1fr;
    align-items: center;
    gap: 12px;
    margin: 16px 0 12px;
    padding: 12px 14px;
    text-align: left;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: clamp(2.55rem, 13vw, 3.35rem);
    line-height: 1;
  }

  .hero-mobile-summary .experience-note span {
    font-size: 0.82rem;
    line-height: 1.32;
  }

  .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 12px;
  }

  .hero-mobile-summary .trust-badges li {
    grid-column: auto !important;
    min-height: 96px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 12px 8px;
    text-align: center;
    font-size: 0.8rem;
    line-height: 1.24;
  }

  .hero .hero-mobile-summary .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero .hero-mobile-summary .trust-badges li {
    grid-column: auto !important;
  }

  .hero-mobile-summary .badge-icon {
    width: 34px;
    height: 34px;
  }

  .hero-mobile-summary .hero__actions {
    margin-top: 18px;
  }

  .hero-mobile-summary .hero__actions .btn {
    width: min(100%, 560px);
    min-height: 58px;
    margin-inline: auto;
    font-size: 1rem;
  }

  .hero-mobile-summary .hero__actions .btn--secondary {
    display: none;
  }

  .coverage-strip {
    padding: 22px 0;
  }

  .coverage-strip__inner {
    display: grid;
    gap: 12px;
  }

  .coverage-strip__copy strong {
    font-size: clamp(1.65rem, 8vw, 2.2rem);
    line-height: 1.05;
  }

  .coverage-strip__copy p {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .coverage-countries {
    display: flex;
    width: max-content;
    gap: 8px;
    animation-duration: 26s;
  }

  .coverage-countries li {
    min-width: 54px;
    width: 54px;
    min-height: 44px;
    padding: 8px 10px;
    justify-content: center;
  }

  .coverage-countries .flag {
    width: 32px;
    height: 22px;
  }

  .coverage-countries li span:last-child {
    display: none;
  }

  .steps {
    padding-top: 34px;
  }

  .steps-grid {
    grid-auto-columns: minmax(74vw, 82vw);
    gap: 12px;
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .step-card {
    min-height: 230px;
    padding: 22px;
  }

  .collections .section-heading h2,
  .steps .section-heading h2,
  .trend-showcase .section-heading h2,
  .trust .section-heading h2 {
    font-size: clamp(2.25rem, 11vw, 3.6rem);
    line-height: 1.02;
  }

  .collections .category-grid {
    gap: 18px;
  }

  .collections .category-card {
    display: block;
  }

  .collections .category-card img {
    display: block;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    padding: 8px;
    object-fit: contain;
    background: #f8f3ea;
  }

  .collections .category-card div {
    padding: 18px 20px 22px;
  }

  .collections .category-card h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.44rem;
  }

  .collections .category-card h3::before {
    flex: 0 0 8px;
    width: 8px;
    height: 34px;
  }

  .collections .category-card p {
    font-size: 0.98rem;
    line-height: 1.35;
  }

  .trend-track {
    grid-auto-columns: minmax(67vw, 75vw);
    margin-inline: -20px;
    padding-inline: 20px;
  }

  .catalogue-hero__visual img,
  #categoryHeroImage {
    object-fit: contain;
    background: #f8f3ea;
  }

  .catalogue-layout,
  .catalogue-shell {
    display: block;
  }

  .catalogue-sidebar,
  .catalogue-filters {
    position: static;
    margin-bottom: 16px;
  }

  .catalogue-mobile-filters {
    display: flex;
    gap: 10px;
    padding: 0 0 12px;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .filter-pill,
  .subcategory-pill,
  .price-filter-trigger {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card__content {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 0.98rem;
    line-height: 1.18;
  }

  .product-card__description {
    display: none;
  }

  .product-card .btn {
    min-height: 46px;
    padding-inline: 10px;
    font-size: 0.82rem;
  }

  .modal {
    display: block;
    padding: 0;
    background: #fffdf8;
  }

  .modal[hidden] {
    display: none !important;
  }

  body:has(.modal:not([hidden])) {
    overflow: hidden;
  }

  .modal__panel {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 100dvh;
    height: 100dvh;
    max-width: none;
    border: 0;
    border-radius: 0;
    padding: calc(18px + env(safe-area-inset-top)) 18px calc(24px + env(safe-area-inset-bottom));
    overflow-y: auto;
    background: var(--paper);
  }

  .modal__close {
    top: calc(14px + env(safe-area-inset-top));
    right: 14px;
    width: 48px;
    height: 48px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(31, 24, 14, 0.08);
  }

  .modal__panel > .eyebrow {
    width: fit-content;
    margin: 2px 58px 8px 0;
    padding: 0;
    background: transparent;
    border: 0;
    color: var(--champagne-dark);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
  }

  .modal__panel h2 {
    max-width: calc(100% - 58px);
    margin: 0 58px 8px 0;
    font-size: clamp(2.55rem, 13vw, 4.05rem);
    line-height: 0.94;
  }

  .modal__intro {
    max-width: none;
    margin: 0 0 18px;
    font-size: 0.98rem;
    line-height: 1.45;
    color: var(--muted);
  }

  .modal form {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 15px;
    max-width: none;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 92px;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-left-width: 5px;
    border-radius: 8px;
  }

  .quote-product__thumb {
    width: 92px;
    height: 92px;
  }

  .quote-product span {
    font-size: 0.64rem;
    letter-spacing: 0.16em;
  }

  .quote-product strong {
    font-size: 1.08rem;
    line-height: 1.16;
  }

  .quote-product small {
    font-size: 0.82rem;
  }

  .modal label {
    display: grid;
    gap: 8px;
    padding: 0;
    font-size: 0.96rem;
  }

  .modal input,
  .modal select,
  .modal textarea {
    min-height: 58px;
    padding: 14px 15px;
    border-radius: 8px;
    font-size: 1rem;
  }

  .quote-calculate,
  .modal form .btn--full {
    min-height: 60px;
    margin-top: 4px;
    font-size: 1rem;
  }

  .quote-result {
    padding: 14px;
  }

  .proof-trigger {
    left: auto;
    right: 12px;
    bottom: 12px;
    max-width: calc(100vw - 24px);
    min-height: 50px;
    padding: 8px 14px 8px 8px;
    font-size: 0.86rem;
  }

  .proof-trigger__icon {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 380px) {
  .hero-mobile-summary {
    padding-inline: 14px;
  }

  .hero-mobile-summary .trust-badges {
    grid-template-columns: 1fr;
  }

  .hero-mobile-summary .trust-badges li {
    min-height: 70px;
    grid-template-columns: 34px minmax(0, 1fr);
    text-align: left;
  }

  .modal__panel {
    padding-inline: 14px;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 72px;
  }

  .quote-product__thumb {
    width: 72px;
    height: 72px;
  }
}

@media (max-width: 640px) {
  .hero-mobile-summary .trust-badges,
  .hero .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 8px;
    width: min(100%, 520px);
    margin: 14px auto 0;
    padding: 10px;
    background: #fffdf8;
    border: 1px solid rgba(196, 154, 74, 0.28);
    border-radius: 24px;
    box-shadow: 0 18px 44px rgba(61, 45, 20, 0.08);
  }

  .hero-mobile-summary .trust-badges li,
  .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero-mobile-summary .trust-badges li:nth-child(3),
  .hero .hero-mobile-summary .trust-badges li,
  .hero .hero-mobile-summary .trust-badges li:nth-child(1),
  .hero .hero-mobile-summary .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    align-items: center;
    place-items: initial;
    gap: 12px;
    min-height: 58px;
    padding: 10px 12px;
    color: #28251f;
    background: #ffffff;
    border: 1px solid rgba(196, 154, 74, 0.2);
    border-radius: 18px;
    box-shadow: none;
    font-size: 0.93rem;
    font-weight: 900;
    line-height: 1.25;
    text-align: left;
  }

  .hero-mobile-summary .trust-badges li + li {
    border-top: 1px solid rgba(196, 154, 74, 0.2);
  }

  .hero-mobile-summary .trust-badges .badge-icon,
  .hero .hero-mobile-summary .trust-badges .badge-icon {
    width: 36px;
    height: 36px;
    background: #fbf7ef;
    border-color: rgba(196, 154, 74, 0.28);
  }

  .hero-mobile-summary .trust-badges span:last-child {
    display: block;
    min-width: 0;
  }
}

@media (min-width: 901px) {
  .section {
    padding-block: clamp(66px, 6vw, 96px);
  }

  .section-heading {
    max-width: 840px;
    margin-bottom: 34px;
  }

  .section-heading h2 {
    max-width: 11ch;
    font-size: clamp(3.1rem, 4.8vw, 5.15rem);
    line-height: 0.98;
  }

  .hero {
    display: grid;
    grid-template-columns:
      minmax(32px, 1fr)
      minmax(0, 640px)
      minmax(0, 560px)
      minmax(32px, 1fr);
    grid-template-areas:
      ". hero-copy hero-media ."
      ". hero-coverage hero-coverage .";
    align-items: center;
    gap: 30px 44px;
    padding-top: clamp(34px, 3.6vw, 56px);
    background: linear-gradient(180deg, #fffdf8 0%, #ffffff 74%);
    border-bottom: 1px solid rgba(184, 148, 77, 0.16);
  }

  .hero__media {
    grid-area: hero-media;
    width: 100%;
    height: clamp(500px, 40vw, 610px);
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(184, 148, 77, 0.18);
    border-radius: 28px;
    box-shadow: 0 26px 70px rgba(32, 25, 15, 0.14);
  }

  .hero__media video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .hero__inner {
    grid-area: hero-copy;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    justify-items: start;
    text-align: left;
  }

  .hero__inner .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    max-width: 12.6ch;
    margin-bottom: 18px;
    font-size: clamp(3rem, 4.5vw, 4.7rem);
    line-height: 0.97;
    text-align: left;
  }

  .hero__subtitle {
    max-width: 620px;
    margin: 0 0 18px;
    font-size: clamp(1rem, 1.1vw, 1.12rem);
    line-height: 1.55;
  }

  .hero__inner .experience-note {
    width: 100%;
    max-width: 620px;
    margin: 0 0 14px;
    grid-template-columns: 112px minmax(0, 1fr);
    padding: 14px 16px;
    text-align: left;
  }

  .hero__inner .experience-note strong {
    font-size: clamp(2.7rem, 4.2vw, 4rem);
    line-height: 0.95;
  }

  .hero__inner .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
    max-width: 620px;
    margin: 0 0 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .hero__inner .trust-badges li,
  .hero__inner .trust-badges li:nth-child(1),
  .hero__inner .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 36px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 78px;
    padding: 12px;
    border-radius: 16px;
    font-size: 0.9rem;
    line-height: 1.22;
    text-align: left;
  }

  .hero__inner .badge-icon {
    width: 34px;
    height: 34px;
  }

  .hero__actions {
    width: 100%;
    max-width: 620px;
    justify-content: start;
    gap: 12px;
  }

  .hero__actions .btn {
    min-width: 176px;
  }

  .hero .coverage-strip {
    grid-area: hero-coverage;
    width: 100%;
    margin-top: 8px;
    padding: 18px 24px;
    border: 1px solid rgba(184, 148, 77, 0.18);
    border-bottom: 0;
    border-radius: 24px 24px 0 0;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 52px rgba(31, 24, 14, 0.06);
  }

  .hero .coverage-strip__inner {
    width: 100%;
    max-width: none;
    grid-template-columns: minmax(260px, 330px) minmax(0, 1fr);
    gap: 20px;
    padding: 0;
  }

  .coverage-countries {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 100%;
    overflow: visible;
    animation: none;
    will-change: auto;
  }

  .coverage-countries li {
    min-width: 0;
    flex: 1 1 170px;
  }

  .steps-grid {
    display: grid;
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-inline: 0;
    padding: 0;
    overflow: visible;
    scroll-snap-type: none;
  }

  .steps-grid article {
    min-width: 0;
    min-height: 246px;
    padding: 26px;
    scroll-snap-align: none;
  }

  .steps-note {
    max-width: 760px;
    margin: 22px auto 0;
    text-align: center;
  }

  .trend-showcase {
    padding-top: 0;
    border-top: 0;
  }

  .trend-showcase__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
    cursor: default;
  }

  .trend-card {
    min-width: 0;
    scroll-snap-align: none;
  }

  .collections .section-heading {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    align-items: end;
    gap: 38px;
    max-width: none;
  }

  .collections .section-heading h2 {
    max-width: 10.5ch;
    margin-bottom: 0;
  }

  .collections .section-heading p:not(.eyebrow) {
    max-width: 520px;
    margin-bottom: 8px;
  }

  .collections .category-grid {
    width: 100%;
    max-width: none;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
  }

  .collections .category-card {
    min-height: 560px;
    grid-template-rows: auto 1fr;
  }

  .collections .category-card img {
    height: clamp(250px, 23vw, 330px);
    padding: 14px;
    object-fit: contain;
  }

  .collections .category-card div {
    display: grid;
    align-content: start;
    padding: 24px;
  }

  .trust__inner,
  .policy__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.12fr);
    gap: 46px;
    align-items: start;
  }

  .trust-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .contact__inner {
    max-width: 900px;
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    text-align: center;
  }

  .contact-lines {
    justify-items: center;
  }

  .contact-line {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .catalogue-hero {
    padding-block: clamp(44px, 5vw, 74px);
  }

  .catalogue-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 520px);
    gap: 48px;
  }

  .catalogue-hero__copy h1 {
    max-width: 720px;
    font-size: clamp(3.4rem, 5.2vw, 5.8rem);
  }

  .catalogue-hero__media img {
    aspect-ratio: 4 / 3;
    padding: 14px;
    object-fit: contain;
    background: #f8f3ea;
  }

  .catalogue-shell {
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
  }

  .catalogue-filter-panel {
    position: sticky;
    top: 104px;
  }

  .catalogue-results__bar {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
  }

  .detail-product {
    padding-block: clamp(44px, 5vw, 76px);
  }

  .detail-product__inner {
    grid-template-columns: minmax(420px, 0.96fr) minmax(0, 1.04fr);
    gap: 46px;
    align-items: start;
  }

  .detail-product__media {
    position: sticky;
    top: 104px;
    align-self: start;
  }

  .detail-product__media img {
    max-height: 760px;
    object-fit: contain;
    background: #f8f3ea;
  }
}

@media (max-width: 640px) {
  .coverage-strip {
    overflow: hidden;
    padding: 18px 0 20px;
  }

  .coverage-strip__inner {
    overflow: visible;
    gap: 10px;
    padding-block: 0;
  }

  .coverage-strip__copy {
    gap: 4px;
  }

  .coverage-strip__copy strong {
    max-width: 100%;
    font-size: clamp(1.45rem, 6.8vw, 2rem);
    line-height: 1.12;
    overflow: visible;
  }

  .coverage-strip__copy p {
    max-width: 34rem;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  .modal {
    align-items: stretch;
    justify-content: stretch;
    background: #ffffff;
  }

  .modal__panel {
    inset: 0;
    width: 100vw;
    max-width: 100vw;
    min-height: 100dvh;
    height: 100dvh;
    padding: calc(18px + env(safe-area-inset-top)) 18px calc(24px + env(safe-area-inset-bottom));
    color: #171717;
    background:
      linear-gradient(180deg, rgba(250, 248, 243, 0.72), rgba(255, 255, 255, 1) 34%),
      #ffffff;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-x: hidden;
    overflow-y: auto;
  }

  .modal__close {
    top: calc(16px + env(safe-area-inset-top));
    right: 16px;
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #eadfce;
    box-shadow: 0 10px 24px rgba(31, 24, 14, 0.08);
  }

  .modal__panel > .eyebrow {
    margin: 4px 56px 10px 0;
    color: #8b6a2f;
    font-size: 0.68rem;
    line-height: 1.2;
    letter-spacing: 0.18em;
  }

  .modal__panel h2 {
    max-width: calc(100% - 56px);
    margin: 0 56px 10px 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2rem, 9vw, 2.75rem);
    font-weight: 900;
    line-height: 1.04;
    letter-spacing: -0.04em;
  }

  .modal__intro {
    max-width: none;
    margin: 0 0 16px;
    color: #5f5a51;
    font-size: 0.97rem;
    line-height: 1.45;
  }

  .modal form {
    display: grid;
    width: 100%;
    min-width: 0;
    gap: 16px;
  }

  .quote-product {
    grid-template-columns: minmax(0, 1fr) 76px;
    gap: 12px;
    padding: 14px;
    background: #fbf7ef;
    border: 1px solid #eadfce;
    border-left: 0;
    border-radius: 20px;
    box-shadow: none;
  }

  .quote-product__thumb {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    box-shadow: none;
  }

  .quote-product span {
    color: #8b6a2f;
    font-size: 0.62rem;
    line-height: 1.2;
    letter-spacing: 0.14em;
  }

  .quote-product strong {
    font-size: 1rem;
    line-height: 1.18;
  }

  .quote-product small {
    font-size: 0.8rem;
    line-height: 1.25;
  }

  .modal label {
    width: 100%;
    min-width: 0;
    gap: 8px;
    color: #171717;
    font-size: 0.94rem;
    line-height: 1.25;
  }

  .modal input,
  .modal select,
  .modal textarea {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 0 15px;
    color: #171717;
    background: #ffffff;
    border: 1px solid #e5dac7;
    border-radius: 16px;
    box-shadow: none;
    font-size: 1rem;
  }

  .modal input:focus,
  .modal select:focus,
  .modal textarea:focus {
    outline: none;
    border-color: #b8944d;
    box-shadow: 0 0 0 3px rgba(184, 148, 77, 0.16);
  }

  .field-error {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .quote-calculate,
  .modal form .btn--full {
    min-height: 58px;
    margin-top: 2px;
    border-radius: 999px;
    font-size: 1rem;
  }

  .quote-result {
    gap: 12px;
    padding: 14px;
    background: #fbf7ef;
    border: 0;
    border-radius: 18px;
    box-shadow: none;
  }

  .quote-result dl div {
    gap: 10px;
  }

  .quote-result dd {
    white-space: normal;
    text-align: right;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Final mobile quote and coverage correction. Keep this at the end so it wins over older responsive passes. */
@media (max-width: 640px) {
  body .coverage-strip__inner {
    display: block;
    width: 100%;
    max-width: calc(100% - 32px);
    overflow: hidden;
  }

  body .coverage-strip__copy {
    display: block;
    width: 100%;
    max-width: 100%;
    margin-bottom: 12px;
  }

  body .coverage-strip__copy strong,
  body .coverage-strip__copy p {
    display: block;
    width: 100%;
    max-width: 100%;
    white-space: normal;
  }

  body .coverage-strip__copy strong {
    font-size: clamp(1.55rem, 7vw, 2.05rem);
    line-height: 1.08;
  }

  body .coverage-strip__copy p {
    margin-top: 6px;
    font-size: 0.94rem;
    line-height: 1.38;
  }

  body .modal__panel {
    padding-inline: 18px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  body .modal__panel > .eyebrow {
    margin-bottom: 12px;
    padding: 0;
    background: transparent;
    border: 0;
    color: #9a793d;
  }

  body .modal__panel h2 {
    max-width: calc(100% - 58px);
    margin-bottom: 10px;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(2.15rem, 9vw, 2.9rem);
    line-height: 1;
    letter-spacing: -0.05em;
  }

  body .modal__intro {
    margin-bottom: 20px;
    color: #625c54;
    font-size: 0.98rem;
    line-height: 1.45;
  }

  body .quote-product {
    grid-template-columns: minmax(0, 1fr) 72px;
    align-items: center;
    gap: 12px;
    padding: 0 0 16px;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #eadfce;
    border-radius: 0;
  }

  body .quote-product::before {
    display: none;
  }

  body .quote-product__thumb {
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  body .quote-product span {
    color: #9a793d;
    font-size: 0.64rem;
    line-height: 1.2;
  }

  body .quote-product strong {
    font-size: 1.04rem;
    line-height: 1.18;
  }

  body .quote-product small {
    color: #6f6a62;
    font-size: 0.84rem;
  }

  body .modal label {
    gap: 9px;
    font-size: 0.95rem;
  }

  body .modal input,
  body .modal select,
  body .modal textarea {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 58px;
    padding: 0 16px;
    background: #fff;
    border: 1px solid #e4d7c4;
    border-radius: 14px;
    box-shadow: none;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }

  body .quote-calculate,
  body .modal form .btn--full {
    width: 100%;
    min-height: 58px;
    border-radius: 999px;
  }

  body .quote-result {
    padding: 14px 0;
    background: transparent;
    border-top: 1px solid #eadfce;
    border-radius: 0;
  }
}

/* Final desktop hero framing: prevents the 4-year badge and proof cards from colliding on wide screens. */
@media (min-width: 901px) {
  body .hero__inner {
    width: 100%;
    max-width: 640px;
  }

  body .hero__subtitle {
    max-width: 640px;
  }

  body .hero__inner .experience-note {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    align-items: center;
    column-gap: 22px;
    width: 100%;
    max-width: 640px;
    min-height: 116px;
    padding: 22px 28px;
    border-radius: 12px;
  }

  body .hero__inner .experience-note strong {
    display: block;
    width: max-content;
    max-width: 100%;
    font-size: clamp(3.15rem, 3.8vw, 4.2rem);
    line-height: 0.9;
    letter-spacing: -0.035em;
  }

  body .hero__inner .experience-note span {
    display: block;
    min-width: 0;
    max-width: 100%;
    font-size: clamp(0.98rem, 1vw, 1.12rem);
    line-height: 1.45;
  }

  body .hero__inner .trust-badges {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    max-width: 640px;
    gap: 14px;
  }

  body .hero__inner .trust-badges li,
  body .hero__inner .trust-badges li:nth-child(1),
  body .hero__inner .trust-badges li:nth-child(3) {
    grid-template-columns: 40px minmax(0, 1fr);
    min-height: 104px;
    padding: 18px;
    border-radius: 18px;
    font-size: 0.94rem;
    line-height: 1.28;
  }

  body .hero__inner .badge-icon {
    width: 40px;
    height: 40px;
  }

  body .hero__actions {
    width: 100%;
    max-width: 640px;
    gap: 18px;
  }

  body .hero__actions .btn {
    min-width: 218px;
  }
}

@media (min-width: 901px) and (max-width: 1100px) {
  body .hero {
    grid-template-columns:
      minmax(24px, 1fr)
      minmax(0, 560px)
      minmax(0, 420px)
      minmax(24px, 1fr);
    gap: 28px;
  }

  body .hero__inner .experience-note {
    grid-template-columns: 158px minmax(0, 1fr);
    column-gap: 18px;
    padding: 20px 24px;
  }

  body .hero__inner .experience-note strong {
    font-size: clamp(2.85rem, 4.4vw, 3.55rem);
  }

  body .hero__inner .trust-badges li,
  body .hero__inner .trust-badges li:nth-child(1),
  body .hero__inner .trust-badges li:nth-child(3) {
    min-height: 104px;
    padding: 16px;
    font-size: 0.92rem;
  }
}

/* Mobile quote form tightening: prevents oversized inputs/buttons on real phones. */
@media (max-width: 640px) {
  body .modal__panel {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    overflow-x: hidden;
  }

  body .modal form {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 14px;
  }

  body .modal label {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    gap: 7px;
    font-size: 0.92rem;
  }

  body .modal input,
  body .modal select,
  body .modal textarea {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 52px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 13px;
    font-size: 0.96rem;
    line-height: 1.2;
  }

  body .modal input[type="date"] {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 42px;
  }

  body .modal input[type="date"]::-webkit-calendar-picker-indicator {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
  }

  body .quote-calculate,
  body .modal form .btn--full {
    height: 52px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 0.96rem;
    line-height: 1.1;
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
  }

  body .quote-product {
    grid-template-columns: minmax(0, 1fr) 66px;
    gap: 10px;
    padding-bottom: 14px;
  }

  body .quote-product__thumb {
    width: 66px;
    height: 66px;
  }
}

@media (max-width: 380px) {
  body .modal__panel {
    padding-inline: 14px;
  }

  body .modal input,
  body .modal select,
  body .modal textarea {
    height: 50px;
    min-height: 50px;
    padding-inline: 12px;
  }

  body .quote-calculate,
  body .modal form .btn--full {
    height: 50px;
    min-height: 50px;
  }
}

/* Final quote action: the validated WhatsApp order button must stay green. */
body .modal form .quote-submit,
body .modal form .quote-submit.btn--primary,
body .modal form .quote-submit.btn--whatsapp,
body .modal form .quote-submit.whatsapp-order {
  background: #15986f;
  border-color: #15986f;
  color: #fff;
  box-shadow: 0 14px 28px rgba(21, 152, 111, 0.2);
}

body .modal form .quote-submit:hover,
body .modal form .quote-submit:focus-visible {
  background: #0f7f5b;
  border-color: #0f7f5b;
  color: #fff;
}

/* Final quote reject action: cheaper-model button must be visibly red. */
body .modal form .quote-reject,
body .modal form .quote-reject.btn--secondary {
  background: #c82424;
  border-color: #c82424;
  color: #fff;
  box-shadow: 0 14px 28px rgba(200, 36, 36, 0.18);
}

body .modal form .quote-reject:hover,
body .modal form .quote-reject:focus-visible {
  background: #a91d1d;
  border-color: #a91d1d;
  color: #fff;
}

/* Header WhatsApp notice and icon correction. */
body .icon-button--whatsapp {
  color: #25d366;
  border-color: rgba(37, 211, 102, 0.34);
  background: #fff;
}

body .icon-button--whatsapp svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
  stroke: none;
}

body .icon-button--whatsapp:hover,
body .icon-button--whatsapp:focus-visible {
  color: #128c5b;
  border-color: rgba(18, 140, 91, 0.5);
  background: #effbf4;
}

.site-notice[hidden] {
  display: none;
}

.site-notice {
  position: fixed;
  top: 92px;
  left: 50%;
  z-index: 90;
  width: min(92vw, 460px);
  padding: 14px 16px;
  color: #17251f;
  background: #f4fff8;
  border: 1px solid rgba(21, 152, 111, 0.32);
  border-radius: 18px;
  box-shadow: 0 18px 50px rgba(23, 23, 23, 0.16);
  transform: translateX(-50%);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.38;
  text-align: center;
}

@media (max-width: 640px) {
  .site-notice {
    top: 74px;
    width: calc(100vw - 28px);
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 0.9rem;
  }
}

/* Linda story: premium static carousel inspired by product-focus stages. */
.linda-story {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #fffdf8 0%, #ffffff 52%, #fbf7ef 100%);
  border-block: 1px solid var(--line);
}

.linda-story::before {
  content: "";
  position: absolute;
  inset: 8% auto auto 50%;
  width: min(640px, 70vw);
  height: min(640px, 70vw);
  pointer-events: none;
  background: radial-gradient(circle, rgba(181, 142, 74, 0.12), rgba(181, 142, 74, 0) 66%);
  transform: translateX(-50%);
}

.linda-story__intro {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
  align-items: end;
}

.linda-story__intro h2 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.96;
  letter-spacing: 0;
}

#histoire-linda .linda-story__intro {
  align-items: start;
  grid-template-columns: 1fr;
}

#histoire-linda #linda-story-title {
  max-width: 980px;
  font-size: clamp(3rem, 7.2vw, 6rem);
}

.story-client-heading {
  position: relative;
  z-index: 1;
  margin-top: clamp(22px, 4vw, 42px);
}

.story-client-heading--next {
  margin-top: clamp(44px, 7vw, 86px);
}

.story-client-heading .eyebrow {
  margin: 0;
}

.story-client-heading .story-eyebrow {
  flex-wrap: wrap;
}

.linda-story__copy {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
  line-height: 1.72;
}

.linda-story__copy p {
  margin: 0;
}

.trust-story-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(34px, 6vw, 76px);
  margin-top: clamp(34px, 5vw, 64px);
}

.trust-story-case {
  display: grid;
  gap: 18px;
}

.trust-story-case--natasha {
  order: 1;
}

.trust-story-case--linda {
  order: 2;
}

.linda-story__intro--compact {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.story-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.story-flag {
  display: inline-grid;
  width: 28px;
  height: 18px;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(151, 108, 45, 0.22), 0 8px 18px rgba(23, 23, 23, 0.08);
}

.story-flag--ci {
  background: linear-gradient(90deg, #f77f00 0 33.33%, #fff 33.33% 66.66%, #159447 66.66% 100%);
}

.story-couple-name {
  display: inline-block;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-shadow: 0 8px 28px rgba(151, 108, 45, 0.18);
}

.trust-story-case__header {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.58fr);
  gap: clamp(18px, 4vw, 52px);
  align-items: end;
}

.trust-story-case__header h3 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 4.2rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.trust-story-case__header p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.7;
}

.linda-carousel {
  position: relative;
  z-index: 1;
  max-width: 1560px;
  margin: 0 auto;
  padding-inline: 18px;
}

.linda-carousel__viewport {
  overflow: hidden;
  padding-block: 24px 18px;
  touch-action: pan-y;
  outline: none;
}

.linda-carousel__viewport:focus-visible {
  border-radius: 30px;
  box-shadow: 0 0 0 3px rgba(181, 142, 74, 0.32);
}

.linda-carousel__track {
  display: flex;
  gap: clamp(14px, 2vw, 28px);
  align-items: center;
  will-change: transform;
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.linda-carousel__track.is-dragging {
  cursor: grabbing;
  transition: none;
}

.linda-slide {
  flex: 0 0 min(78vw, 760px);
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(181, 142, 74, 0.24);
  border-radius: 26px;
  box-shadow: 0 18px 52px rgba(28, 24, 18, 0.08);
  opacity: 0.48;
  transform: scale(0.88);
  transition:
    opacity 420ms ease,
    transform 620ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 420ms ease;
}

.linda-slide.is-active {
  opacity: 1;
  transform: scale(1);
  box-shadow: 0 26px 70px rgba(28, 24, 18, 0.14);
}

.linda-slide__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #f3f0ea;
}

.linda-slide__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.16));
  opacity: 0.72;
}

.linda-slide__media img,
.linda-slide__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.linda-sound-button {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: calc(100% - 28px);
  min-height: 42px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0;
  background: rgba(14, 14, 13, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.linda-sound-button[hidden] {
  display: none;
}

.linda-sound-button span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
}

.linda-sound-button:hover,
.linda-sound-button:focus-visible {
  background: var(--whatsapp);
  outline: none;
}

.linda-slide__content {
  display: grid;
  gap: 8px;
  padding: clamp(18px, 3vw, 30px);
}

.linda-slide__content span {
  color: var(--champagne-dark);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.linda-slide__content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.02;
}

.linda-slide__content p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.62;
}

.behind-scenes {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #171717 0%, #241e16 52%, #fbf7ef 52%, #fffdf8 100%);
  border-block: 1px solid rgba(181, 142, 74, 0.16);
}

.behind-scenes::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 52%;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 12%, rgba(181, 142, 74, 0.28), transparent 34%),
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.12), transparent 28%);
}

.behind-scenes__inner {
  position: relative;
  z-index: 1;
}

.behind-scenes__intro {
  max-width: 900px;
  margin-bottom: clamp(28px, 5vw, 54px);
  color: #ffffff;
}

.behind-scenes__intro .eyebrow {
  color: #d8bd7e;
}

.behind-scenes__intro h2 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.behind-scenes__intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1rem, 1.45vw, 1.14rem);
  line-height: 1.68;
}

.behind-scenes__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(0, 0.72fr));
  gap: clamp(14px, 2vw, 24px);
  align-items: stretch;
}

.behind-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(181, 142, 74, 0.24);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(28, 24, 18, 0.12);
}

.behind-card--featured {
  grid-row: span 2;
}

.behind-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  background: #171717;
}

.behind-card--featured .behind-card__media {
  aspect-ratio: 4 / 5.15;
}

.behind-card__media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.18));
}

.behind-card__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.behind-card__content {
  display: grid;
  gap: 7px;
  padding: clamp(16px, 2.2vw, 24px);
}

.behind-card__content span {
  color: var(--champagne-dark);
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
}

.behind-card__content h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.04;
  letter-spacing: 0;
}

.behind-card__content p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.order-clarity {
  position: relative;
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
  border-block: 1px solid rgba(181, 142, 74, 0.18);
}

.order-clarity__heading {
  max-width: 820px;
}

.order-clarity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(26px, 4vw, 44px);
}

.order-clarity-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 24px 20px;
  border: 1px solid rgba(151, 109, 42, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.9));
  box-shadow: 0 22px 62px rgba(55, 42, 24, 0.08);
}

.order-clarity-card::before {
  content: "";
  position: absolute;
  inset: auto -28px -42px auto;
  width: 130px;
  height: 130px;
  border-radius: 999px;
  background: rgba(181, 142, 74, 0.1);
}

.order-clarity-card__icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 22px;
  color: #8a692a;
  border: 1px solid rgba(151, 109, 42, 0.24);
  border-radius: 999px;
  background: #fffaf1;
  box-shadow: 0 12px 28px rgba(151, 109, 42, 0.12);
}

.order-clarity-card__icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.order-clarity-card--payment .order-clarity-card__icon {
  color: #ffffff;
  background: #171717;
  border-color: #171717;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.order-clarity-card__number {
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(151, 109, 42, 0.28);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.3rem;
  font-weight: 700;
  line-height: 1;
}

.order-clarity-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2vw, 1.85rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.order-clarity-card p {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  color: #665f54;
  font-size: 0.96rem;
  line-height: 1.58;
}

.featured-trend {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 20%, rgba(181, 142, 74, 0.18), transparent 34%),
    linear-gradient(135deg, #171717 0%, #252018 48%, #fffaf0 48%, #fffdf8 100%);
  border-block: 1px solid rgba(181, 142, 74, 0.22);
}

.featured-trend__inner {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
}

.featured-trend__copy {
  position: relative;
  color: #fffaf0;
}

.featured-trend__ribbon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-bottom: 18px;
  padding: 9px 18px;
  color: #ffffff;
  background: #b31b1b;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(179, 27, 27, 0.36);
}

.featured-trend__copy .eyebrow {
  color: #f1d680;
}

.featured-trend__copy h2 {
  max-width: 720px;
  margin: 0;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

.featured-trend__copy > p {
  max-width: 620px;
  margin: 22px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.16rem);
  line-height: 1.7;
}

.featured-trend__stage {
  position: relative;
  overflow: hidden;
  margin: 0;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(241, 214, 128, 0.28);
  border-radius: 34px;
  background: #111111;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.24);
  transform: rotate(1.2deg);
}

.featured-trend__stage::before {
  content: "";
  position: absolute;
  inset: 18px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(241, 214, 128, 0.32);
  border-radius: 24px;
}

.featured-trend__stage video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.featured-trend__overlay {
  position: absolute;
  inset: auto 18px 18px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px;
  border: 1px solid rgba(241, 214, 128, 0.34);
  border-radius: 22px;
  background: rgba(13, 13, 12, 0.78);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px);
}

.featured-trend__price {
  display: inline-grid;
  gap: 4px;
  min-width: 0;
}

.featured-trend__price span {
  color: rgba(255, 250, 240, 0.72);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.featured-trend__price strong {
  color: #f1d680;
  font-size: clamp(1.28rem, 2.2vw, 1.9rem);
  white-space: nowrap;
}

.featured-trend__overlay .btn {
  min-height: 48px;
  padding-inline: 22px;
  white-space: nowrap;
}

.linda-carousel__arrow {
  position: absolute;
  top: 43%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(181, 142, 74, 0.34);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(28, 24, 18, 0.12);
  cursor: pointer;
}

.linda-carousel__arrow:hover,
.linda-carousel__arrow:focus-visible {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.linda-carousel__arrow span {
  display: block;
  margin-top: -2px;
  font-size: 2.2rem;
  line-height: 1;
}

.linda-carousel__arrow--prev {
  left: clamp(8px, 3vw, 42px);
}

.linda-carousel__arrow--next {
  right: clamp(8px, 3vw, 42px);
}

.linda-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.linda-carousel__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  background: rgba(151, 111, 45, 0.28);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  transition: width 240ms ease, background 240ms ease;
}

.linda-carousel__dots button.is-active {
  width: 30px;
  background: var(--champagne-dark);
}

.linda-story__cta {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  align-items: center;
  margin-top: 40px;
  padding: clamp(22px, 4vw, 34px);
  background: #fff;
  border: 1px solid rgba(181, 142, 74, 0.26);
  border-radius: 24px;
  box-shadow: 0 18px 48px rgba(28, 24, 18, 0.07);
}

.linda-story__cta h3 {
  margin: 0 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3.2vw, 2.6rem);
  line-height: 1.05;
}

.linda-story__cta p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.linda-story__actions {
  display: grid;
  gap: 10px;
  width: min(100%, 290px);
  align-self: center;
}

.linda-story__actions .btn {
  width: 100%;
}

@media (max-width: 640px) {
  .linda-story__cta {
    margin-top: 30px;
    padding: 24px 20px;
    gap: 20px;
    border-radius: 22px;
  }

  .linda-story__cta h3 {
    max-width: 11.5em;
    margin-inline: auto;
    text-align: center;
    font-size: clamp(2rem, 10vw, 2.7rem);
    line-height: 1.04;
  }

  .linda-story__cta p {
    max-width: 24em;
    margin-inline: auto;
    text-align: center;
    font-size: 1rem;
    line-height: 1.45;
  }

  .linda-story__actions {
    width: 100%;
    max-width: 100%;
    gap: 12px;
  }

  .linda-story__actions .btn {
    min-height: 56px;
    padding-inline: 16px;
    justify-content: center;
    white-space: normal;
    text-align: center;
    line-height: 1.15;
  }
}

@media (min-width: 900px) {
  .linda-story__intro {
    grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.72fr);
  }

  .linda-slide {
    flex-basis: min(58vw, 780px);
  }

  .linda-slide__media {
    aspect-ratio: 16 / 10;
  }

  .linda-story__cta {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  }

  .linda-story__actions {
    justify-self: end;
  }
}

@media (max-width: 700px) {
  .linda-story {
    padding-block: 48px;
  }

  .linda-story__intro {
    gap: 16px;
  }

  #histoire-linda #linda-story-title {
    font-size: clamp(3.1rem, 15vw, 4.6rem);
    line-height: 0.94;
  }

  .story-client-heading {
    width: calc(100% - 44px);
    margin-top: 22px;
  }

  .story-client-heading--next {
    margin-top: 48px;
  }

  .linda-story__copy {
    font-size: 0.96rem;
    line-height: 1.55;
  }

  .trust-story-list {
    gap: 42px;
    margin-top: 34px;
  }

  .trust-story-case {
    gap: 12px;
  }

  .trust-story-case__header {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .trust-story-case__header h3 {
    font-size: clamp(2rem, 11vw, 3.2rem);
  }

  .trust-story-case__header p {
    font-size: 1rem;
    line-height: 1.55;
  }

  .linda-carousel {
    margin-top: 26px;
    padding-inline: 0;
  }

  .linda-carousel__viewport {
    padding-block: 14px 12px;
  }

  .linda-slide {
    flex-basis: 86vw;
    border-radius: 22px;
  }

  .linda-slide__media {
    aspect-ratio: 4 / 5;
  }

  .linda-slide__content {
    padding: 18px;
  }

  .linda-carousel__arrow {
    top: 39%;
    width: 40px;
    height: 40px;
  }

  .linda-carousel__arrow--prev {
    left: 10px;
  }

  .linda-carousel__arrow--next {
    right: 10px;
  }

  .linda-story__cta {
    margin-top: 26px;
    border-radius: 22px;
  }

  .linda-story__cta .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .linda-carousel__track,
  .linda-slide,
  .linda-carousel__dots button {
    transition: none;
  }
}

/* Final UX patch: avis button placement, local AI assistant, and quote actions. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.hero__actions--stacked {
  align-items: flex-start;
  flex-direction: column;
  gap: 0.75rem;
}

.hero__actions--stacked .btn {
  min-width: min(330px, 100%);
}

.hero__actions--stacked .hero-proof-link {
  color: var(--champagne-dark);
  background: #fff;
  border-color: rgba(184, 148, 77, 0.66);
  box-shadow: none;
}

body .modal form .quote-submit,
body .modal form .quote-submit.btn--primary,
body .modal form .quote-submit.btn--whatsapp,
body .modal form .quote-submit.whatsapp-order {
  color: #fff;
  background: #15946f;
  border-color: #15946f;
}

body .modal form .quote-submit:hover,
body .modal form .quote-submit:focus-visible {
  background: #0f7d5d;
  border-color: #0f7d5d;
}

body .modal form .quote-reject,
body .modal form .quote-reject.btn--secondary {
  color: #fff;
  background: #b42318;
  border-color: #b42318;
}

body .modal form .quote-reject:hover,
body .modal form .quote-reject:focus-visible {
  color: #fff;
  background: #951b13;
  border-color: #951b13;
}

@media (max-width: 640px) {
  .hero__actions--stacked,
  .hero-mobile-summary .hero__actions--stacked {
    display: grid;
    width: min(100%, 340px);
    grid-template-columns: 1fr;
    margin-inline: auto;
  }

  .hero__actions--stacked .hero-proof-link {
    display: inline-flex;
  }

}

/* Validation obligatoire avant WhatsApp */
.order-confirmation-modal[hidden] {
  display: none;
}

.order-confirmation-modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  isolation: isolate;
  display: grid;
  place-items: center;
  padding: 22px;
  background: rgba(18, 18, 16, 0.82);
  backdrop-filter: blur(12px);
}

body.is-confirming-whatsapp #orderModal,
body.is-confirming-whatsapp #detailOrderModal {
  pointer-events: none;
}

.order-confirmation__backdrop {
  position: absolute;
  inset: 0;
}

.order-confirmation__panel {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: min(88dvh, 860px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 42px);
  color: var(--ink);
  background: #fffdf8;
  border: 1px solid rgba(184, 148, 77, 0.34);
  border-radius: 30px;
  box-shadow: 0 34px 100px rgba(18, 18, 16, 0.24);
}

.order-confirmation__close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 1.7rem;
  line-height: 1;
}

.order-confirmation__panel h2 {
  max-width: 660px;
  margin: 8px 56px 12px 0;
  font-family: var(--font-display);
  font-size: clamp(2.1rem, 5vw, 4.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.order-confirmation__intro {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.55;
}

.order-confirmation__date {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--ink);
  font-weight: 900;
}

.order-confirmation__date[hidden] {
  display: none !important;
}

.order-confirmation__date span {
  font-size: 0.94rem;
}

.order-confirmation__date input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  box-sizing: border-box;
  padding: 0 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  font: inherit;
  font-weight: 850;
}

.order-confirmation__date .field-error {
  min-height: 1.2em;
  margin: 0;
  color: #b42318;
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1.4;
}

.order-confirmation__list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.order-confirmation__item {
  display: grid;
  gap: 13px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
}

.order-confirmation__number {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--champagne-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.order-confirmation__item p {
  margin: 0;
  color: var(--ink);
  font-weight: 750;
  line-height: 1.48;
}

.order-confirmation__check {
  display: flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 13px;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(184, 148, 77, 0.26);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 900;
  cursor: pointer;
}

.order-confirmation__check input {
  width: 20px;
  height: 20px;
  accent-color: #15946f;
}

.order-confirmation__error {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: #b42318;
  font-weight: 900;
  line-height: 1.45;
}

.order-confirmation__actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: 12px;
  margin-top: 18px;
}

.order-confirmation__accept {
  background: #15946f;
}

/* Le bouton avis doit rester visible sous "Voir les collections", y compris sur mobile. */
.hero__actions--stacked .hero-proof-link,
.hero-mobile-summary .hero__actions .hero-proof-link,
.hero-mobile-summary .hero__actions--stacked .hero-proof-link {
  display: inline-flex !important;
}

@media (max-width: 640px) {
  .order-confirmation-modal {
    align-items: end;
    padding: 0;
  }

  .order-confirmation__panel {
    width: 100%;
    max-height: 92dvh;
    padding: 24px 18px 18px;
    border-radius: 28px 28px 0 0;
  }

  .order-confirmation__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  .order-confirmation__panel h2 {
    margin-right: 52px;
    font-size: clamp(2.05rem, 12vw, 3.2rem);
  }

  .order-confirmation__intro {
    font-size: 0.98rem;
  }

  .order-confirmation__date {
    gap: 8px;
    margin-bottom: 14px;
  }

  .order-confirmation__date input {
    min-height: 52px;
    padding-inline: 14px;
    border-radius: 16px;
    font-size: 1rem;
  }

  .order-confirmation__date .field-error {
    font-size: 0.88rem;
  }

  .order-confirmation__item {
    padding: 14px;
    border-radius: 18px;
  }

  .order-confirmation__item p {
    font-size: 0.95rem;
  }

  .order-confirmation__check {
    width: 100%;
    justify-content: flex-start;
    border-radius: 16px;
  }

  .order-confirmation__actions {
    grid-template-columns: 1fr;
  }

  .hero-mobile-summary .hero__actions {
    display: grid !important;
    width: min(100%, 340px);
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 18px auto 0;
  }

  .hero-mobile-summary .hero__actions .btn {
    width: 100%;
  }
}

/* Final Club Privilège popup: Netlify Forms lead capture + automatic quote discount. */
body .promo-modal {
  z-index: 80;
  padding: clamp(12px, 2.5vw, 28px);
  align-items: center;
}

body .promo-modal__backdrop {
  background: rgba(17, 17, 15, 0.62);
  backdrop-filter: blur(6px);
}

body .promo-card--club {
  width: min(100%, 960px);
  max-height: calc(100dvh - 28px);
  padding: 0;
  overflow: auto;
  text-align: left;
  background: #fffdf8;
  border: 1px solid rgba(151, 111, 45, 0.28);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(20, 18, 14, 0.28);
}

body .promo-card--club::before {
  height: 0;
}

body .promo-card--club .modal__close {
  top: 14px;
  right: 14px;
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 28px rgba(20, 18, 14, 0.12);
}

.promo-card__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(360px, 1fr);
  min-height: 560px;
}

.promo-card__image {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #f6efe2;
}

.promo-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.2));
  pointer-events: none;
}

.promo-card__image picture {
  display: block;
  width: 100%;
  height: 100%;
}

.promo-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.promo-card__form {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(28px, 4vw, 54px);
}

body .promo-card--club h2 {
  max-width: 11em;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.5vw, 4.25rem);
  line-height: 0.94;
  letter-spacing: 0;
}

body .promo-card--club .promo-card__eyebrow {
  margin: 0;
  color: var(--champagne-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

body .promo-card--club .promo-card__lead {
  max-width: 560px;
  margin: 0;
  color: #4f4a42;
  font-size: clamp(0.98rem, 1.4vw, 1.08rem);
  font-weight: 600;
  line-height: 1.55;
}

.promo-card__fields {
  display: grid;
  gap: 12px;
}

.promo-card__fields label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

.promo-card__fields input,
.promo-card__fields select {
  width: 100%;
  min-height: 52px;
  padding: 0 15px;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(151, 111, 45, 0.24);
  border-radius: 14px;
  font: inherit;
  outline: none;
}

.promo-card__fields select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--champagne-dark) 50%),
    linear-gradient(135deg, var(--champagne-dark) 50%, transparent 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
  font-weight: 900;
}

.promo-card__fields input:focus,
.promo-card__fields select:focus {
  border-color: rgba(151, 111, 45, 0.82);
  box-shadow: 0 0 0 4px rgba(184, 148, 77, 0.14);
}

.promo-card__phone-label {
  min-width: 0;
}

.promo-phone-field {
  display: grid;
  grid-template-columns: 126px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
  width: 100%;
}

.promo-phone-field input,
.promo-phone-field select {
  min-width: 0;
}

.promo-card__consents {
  display: grid;
  gap: 10px;
}

.promo-card__consents label {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
  color: #4f4a42;
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.38;
}

.promo-card__consents input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--champagne-dark);
}

.promo-card__submit {
  min-height: 56px;
  color: #fff;
  background: #15946f;
  border-color: #15946f;
}

.promo-card__submit:disabled {
  color: #918b81;
  cursor: not-allowed;
  background: #e9e4db;
  border-color: #e9e4db;
  box-shadow: none;
}

body .promo-card--club .promo-card__privacy {
  max-width: 560px;
  margin: 0;
  color: #777169;
  font-size: 0.78rem;
  line-height: 1.48;
}

body .promo-card--club .promo-copy-status {
  min-height: 20px;
  margin: 0;
  color: #128c5b;
  font-size: 0.86rem;
  font-weight: 900;
}

@media (max-width: 760px) {
  body .promo-modal {
    padding: 10px;
    place-items: end center;
  }

  body .promo-card--club {
    width: 100%;
    max-height: calc(100dvh - 20px);
    border-radius: 24px 24px 18px 18px;
  }

  .promo-card__layout {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-card__image {
    height: 180px;
    min-height: 180px;
  }

  .promo-card__image img {
    min-height: 180px;
    object-position: center 35%;
  }

  .promo-card__form {
    gap: 14px;
    padding: 22px 18px 20px;
  }

  body .promo-card--club h2 {
    max-width: 10em;
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  body .promo-card--club .promo-card__lead {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .promo-card__fields {
    gap: 10px;
  }

  .promo-card__fields input,
  .promo-card__fields select {
    min-height: 48px;
    border-radius: 13px;
  }

  .promo-phone-field {
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 7px;
  }

  .promo-phone-field select {
    padding-left: 11px;
    padding-right: 24px;
    background-position:
      calc(100% - 15px) 50%,
      calc(100% - 10px) 50%;
    font-size: 0.9rem;
  }

  .promo-card__consents label {
    font-size: 0.82rem;
  }

  .promo-card__submit {
    min-height: 52px;
    padding-inline: 12px;
    white-space: normal;
    line-height: 1.15;
  }
}

/* Owner-only prospects page. The data itself stays protected inside Netlify Forms. */
.owner-page {
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 18% 12%, rgba(184, 148, 77, 0.14), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f7f1e8 100%);
}

.owner-dashboard {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 72px);
}

.owner-dashboard__panel {
  width: min(100%, 1120px);
  padding: clamp(26px, 5vw, 64px);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(151, 111, 45, 0.24);
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(28, 25, 20, 0.12);
}

.owner-dashboard__brand {
  margin-bottom: clamp(28px, 4vw, 52px);
}

.owner-dashboard h1 {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6rem);
  line-height: 0.95;
}

.owner-dashboard__lead {
  max-width: 760px;
  margin: 22px 0 34px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  line-height: 1.65;
}

.owner-dashboard__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.owner-dashboard__grid article {
  display: flex;
  flex-direction: column;
  min-height: 310px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(151, 111, 45, 0.22);
  border-radius: 22px;
}

.owner-dashboard__grid span {
  color: var(--champagne-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
}

.owner-dashboard__grid h2 {
  margin: 20px 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.owner-dashboard__grid p {
  flex: 1;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.5;
}

.owner-dashboard__grid .btn {
  width: 100%;
  justify-content: center;
}

.owner-dashboard__note {
  margin-top: 22px;
  padding: 18px 20px;
  color: #4f4a42;
  background: #fff9ec;
  border: 1px solid rgba(151, 111, 45, 0.22);
  border-radius: 18px;
  line-height: 1.55;
}

@media (max-width: 860px) {
  .owner-dashboard {
    padding: 16px;
  }

  .owner-dashboard__panel {
    border-radius: 22px;
  }

  .owner-dashboard__grid {
    grid-template-columns: 1fr;
  }

  .owner-dashboard__grid article {
    min-height: 0;
  }
}

/* Mobile entry teaser for the Club Privilège offer. */
.promo-card__title--sparkle,
.promo-teaser__text {
  animation: zaangaOfferPulse 1.25s ease-in-out infinite;
}

@keyframes zaangaOfferPulse {
  0%,
  100% {
    color: var(--ink);
    text-shadow: 0 0 0 rgba(184, 148, 77, 0);
  }
  45% {
    color: #b61f1f;
    text-shadow: 0 0 18px rgba(184, 148, 77, 0.58);
  }
}

.promo-teaser {
  position: fixed;
  left: 14px;
  bottom: 18px;
  z-index: 1200;
  display: none;
  grid-template-columns: 64px minmax(0, 1fr);
  align-items: center;
  width: min(360px, calc(100vw - 28px));
  gap: 10px;
  filter: drop-shadow(0 22px 36px rgba(20, 18, 14, 0.2));
}

.promo-teaser[hidden] {
  display: none !important;
}

.promo-teaser__image {
  width: 64px;
  height: 64px;
  padding: 4px;
  background: #fff;
  border: 1px solid rgba(151, 111, 45, 0.32);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(20, 18, 14, 0.13);
}

.promo-teaser__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.promo-teaser__bubble {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 8px;
  min-height: 62px;
  padding: 10px 12px 10px 14px;
  background: #fffdf8;
  border: 1px solid rgba(151, 111, 45, 0.34);
  border-radius: 20px;
}

.promo-teaser__bubble::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: inherit;
  border-left: 1px solid rgba(151, 111, 45, 0.34);
  border-bottom: 1px solid rgba(151, 111, 45, 0.34);
  transform: rotate(45deg);
}

.promo-teaser__text {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 950;
  line-height: 1.16;
}

.promo-teaser__yes {
  min-width: 52px;
  min-height: 38px;
  color: #fff;
  background: #15946f;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

.promo-teaser__no {
  min-width: 52px;
  min-height: 38px;
  color: #fff;
  background: #c52222;
  border: 0;
  border-radius: 999px;
  font-weight: 950;
  cursor: pointer;
}

@media (max-width: 760px) {
  .promo-teaser {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-card__title--sparkle,
  .promo-teaser__text {
    animation: none;
  }
}
/* Modèles carton économiques : avertissement non modifiable */
.product-card__notice,
.quote-product__notice,
.detail-product__notice {
  margin: 0;
  color: #b42318;
  background: rgba(180, 35, 24, 0.08);
  border: 1px solid rgba(180, 35, 24, 0.22);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 800;
  line-height: 1.35;
}

.product-card__notice {
  font-size: 0.86rem;
}

.quote-product__notice {
  flex-basis: 100%;
  width: 100%;
  margin-top: 10px;
  font-size: 0.9rem;
}

.detail-product__notice {
  margin-top: 14px;
  font-size: 1rem;
}

/* Pages SEO pays et blog : extension du design existant sans modifier les composants actuels */
.seo-hero {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.seo-hero__inner {
  max-width: 940px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb a {
  color: var(--champagne-dark);
  font-weight: 800;
  text-decoration: none;
}

.breadcrumb a:hover,
.breadcrumb a:focus-visible {
  text-decoration: underline;
}

.seo-content {
  background: var(--ivory);
}

.seo-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.seo-prose,
.article-page__inner {
  max-width: 860px;
}

.seo-prose h2,
.article-page h2 {
  margin-top: 44px;
  margin-bottom: 12px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
}

.seo-prose p,
.article-page p,
.blog-card p,
.seo-side-panel p {
  color: var(--muted);
}

.seo-link-list {
  display: grid;
  gap: 10px;
  padding-left: 20px;
}

.seo-link-list a {
  color: var(--champagne-dark);
  font-weight: 800;
  text-decoration: none;
}

.seo-link-list a:hover,
.seo-link-list a:focus-visible {
  text-decoration: underline;
}

.seo-side-panel,
.blog-card,
.article-cta {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seo-side-panel {
  position: sticky;
  top: 110px;
  padding: clamp(20px, 3vw, 30px);
}

.seo-side-panel h2,
.article-cta h2,
.blog-card h2 {
  margin-top: 0;
}

.seo-product-grid {
  margin: 24px 0 10px;
}

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

.blog-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 3vw, 28px);
}

.blog-card h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
}

.blog-card h2 a {
  color: var(--ink);
  text-decoration: none;
}

.blog-card h2 a:hover,
.blog-card h2 a:focus-visible {
  color: var(--champagne-dark);
}

.article-page {
  background: var(--white);
}

.article-page__inner {
  margin-inline: auto;
}

.article-page section {
  margin-top: 34px;
}

.article-cta {
  margin-top: 44px;
  padding: clamp(22px, 4vw, 34px);
}

.footer-destinations nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  max-width: 520px;
}

.footer-destinations p {
  margin-bottom: 10px;
  color: var(--champagne-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-destinations a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-destinations a:hover,
.footer-destinations a:focus-visible {
  color: var(--champagne-dark);
  text-decoration: underline;
}

.footer-legal nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-legal p {
  margin-bottom: 10px;
  color: var(--champagne-dark);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-legal a {
  color: var(--muted);
  font-weight: 800;
  text-decoration: none;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: var(--champagne-dark);
  text-decoration: underline;
}

.legal-page .site-header {
  position: sticky;
  top: 40px;
  z-index: 40;
}

.legal-header-link {
  white-space: nowrap;
}

.legal-hero {
  padding-block: clamp(72px, 10vw, 128px) clamp(42px, 7vw, 78px);
  background:
    radial-gradient(circle at 82% 10%, rgba(196, 156, 83, 0.12), transparent 30%),
    linear-gradient(135deg, #fffdf8 0%, #f8f1e5 100%);
  border-bottom: 1px solid var(--line);
}

.legal-hero__inner {
  max-width: 900px;
}

.legal-hero h1 {
  margin: 0 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: 0;
  color: var(--ink);
}

.legal-hero p {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.legal-updated {
  color: var(--champagne-dark) !important;
  font-weight: 900;
}

.legal-content {
  padding-block: clamp(44px, 8vw, 86px);
  background: #fffaf2;
}

.legal-content__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.legal-content article {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(196, 156, 83, 0.28);
  border-radius: 28px;
  background: #fffdf8;
  box-shadow: 0 18px 42px rgba(18, 18, 18, 0.05);
}

.legal-content h2 {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  line-height: 1.08;
  color: var(--ink);
}

.legal-content p {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

@media (max-width: 900px) {
  .seo-layout,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .seo-side-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .seo-hero__inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .seo-prose h2,
  .article-page h2 {
    font-size: 2rem;
  }

  .footer-destinations nav {
    flex-direction: column;
    gap: 8px;
  }

  .legal-page .site-header {
    top: 36px;
  }

  .legal-content__grid {
    grid-template-columns: 1fr;
  }
}

/* Quote modal final framing */
body .modal:not([hidden]) {
  align-items: center;
  justify-content: center;
  padding: clamp(14px, 3vw, 28px);
}

body .modal__panel {
  width: min(720px, calc(100vw - 32px));
  max-height: min(90vh, 860px);
  overflow-y: auto;
  box-sizing: border-box;
  padding: clamp(26px, 4vw, 44px);
  border-radius: 28px;
}

body .modal__panel form {
  display: grid;
  gap: 16px;
}

body .modal__panel label {
  display: grid;
  gap: 8px;
}

body .modal__panel input {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  box-sizing: border-box;
}

body .quote-product {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

body .quote-product::before {
  display: none;
}

body .quote-product__thumb {
  width: 86px;
  height: 86px;
  border-radius: 18px;
}

body .quote-result {
  margin-top: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body .quote-result dl {
  display: grid;
  gap: 0;
  margin: 0;
}

body .quote-result dl div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-width: 0;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

body .quote-result .quote-result__final {
  margin-top: 8px;
  padding: 16px 18px;
  border: 0;
  border-radius: 18px;
}

@media (max-width: 560px) {
  body .modal:not([hidden]) {
    align-items: stretch;
    padding: 0;
  }

  body .modal__panel {
    width: 100%;
    min-height: 100dvh;
    max-height: 100dvh;
    padding: 22px 18px 88px;
    border-radius: 0;
  }

  body .modal__close {
    top: 14px;
    right: 14px;
    width: 44px;
    height: 44px;
  }

  body .modal__panel h2 {
    max-width: calc(100% - 56px);
    font-size: clamp(2.45rem, 13vw, 3.7rem);
    line-height: 0.98;
  }

  body .modal__intro {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.48;
  }

  body .quote-product {
    grid-template-columns: minmax(0, 1fr) 72px;
    gap: 12px;
    padding: 18px 0;
  }

  body .quote-product__thumb {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }

  body .quote-product strong {
    font-size: 1.02rem;
    line-height: 1.18;
  }

  body .quote-product small {
    font-size: 0.88rem;
    line-height: 1.35;
  }

  body .modal__panel input {
    min-height: 56px;
    padding-inline: 16px;
    font-size: 16px;
  }

  body .quote-result dl div {
    padding: 11px 0;
  }

  body .quote-result .quote-result__final {
    padding: 15px 16px;
  }

  body [data-quote-calculate],
  body .modal__panel button[type="submit"],
  body [data-quote-reject] {
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 999px;
    line-height: 1.15;
  }
}

/* 2026-07-17: parcours WhatsApp court et prix visibles avant toute prise de contact. */
body.catalogue-body .product-card__price,
body .product-grid .product-card__price {
  display: grid;
  width: 100%;
  min-width: 0;
  gap: 2px;
  box-sizing: border-box;
  margin-block: 4px 2px;
  padding: 10px 12px;
  color: #15110f;
  background: #fff8e8;
  border-block: 1px solid rgba(162, 15, 23, 0.28);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  font-weight: 950;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

body.catalogue-body .product-card__price::before,
body .product-grid .product-card__price::before {
  content: "Prix affiché";
  color: #6a5f58;
  font-family: Arial, sans-serif;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.catalogue-body .product-card__price--promo,
body .product-grid .product-card__price--promo {
  grid-template-columns: auto auto;
  align-items: baseline;
  justify-content: start;
  column-gap: 10px;
}

body.catalogue-body .product-card__price--promo::before,
body .product-grid .product-card__price--promo::before {
  grid-column: 1 / -1;
}

.promo-price--summary {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
}

.promo-price--summary .promo-price__old {
  color: #665b54;
  font-size: 0.9em;
}

.promo-price--summary .promo-price__new {
  color: #a20f17;
  font-size: 1.16em;
}

.detail-price {
  border: 2px solid rgba(162, 15, 23, 0.42);
  border-left: 6px solid #a20f17;
  background: #fff8e8;
  box-shadow: 0 12px 30px rgba(75, 45, 27, 0.08);
}

.detail-price strong {
  color: #a20f17;
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  font-weight: 950;
}

body .quote-product__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

body .quote-product__price {
  display: grid;
  width: fit-content;
  gap: 2px;
  margin-top: 6px;
  padding-left: 10px;
  color: #6a5f58;
  border-left: 4px solid #a20f17;
  font-family: Arial, sans-serif;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

body .quote-product__price strong {
  color: #a20f17;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 3vw, 1.7rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1.05;
  text-transform: none;
}

body #orderModal .quote-submit,
body #detailOrderModal .quote-submit {
  min-height: 56px;
  background: #a20f17;
  border-color: #a20f17;
  color: #fff;
  font-weight: 900;
}

body #orderModal .quote-submit:disabled,
body #detailOrderModal .quote-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

@media (max-width: 560px) {
  body #orderModal .modal__panel h2,
  body #detailOrderModal .modal__panel h2 {
    max-width: calc(100% - 54px);
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    line-height: 1.04;
  }

  body.catalogue-body .product-card__price,
  body .product-grid .product-card__price {
    padding: 9px 8px;
    font-size: 1rem;
  }

  body.catalogue-body .product-card__price--promo,
  body .product-grid .product-card__price--promo {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  body.catalogue-body .product-card__price--promo::before,
  body .product-grid .product-card__price--promo::before {
    grid-column: auto;
  }
}

/* Product image recovery state after one automatic cache-bypassing retry. */
body .product-card__media--image-error,
body .detail-product__media--image-error {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  background: #f3eadc;
}

body .product-card__media--image-error img,
body .detail-product__media--image-error img {
  opacity: 0;
}

body .product-card__media--image-error::after,
body .detail-product__media--image-error::after {
  content: "Photo momentanément indisponible";
  position: absolute;
  inset: 50% auto auto 50%;
  width: min(80%, 280px);
  color: #5d554b;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.35;
  text-align: center;
  transform: translate(-50%, -50%);
}

/* Final cascade lock: Zaanga commerce adaptation inspired by premium ecommerce structure. */
body {
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 42%, #f7f0e3 100%);
}

.top-bar {
  background: #9f1f22;
  color: #ffffff;
  border-bottom: 0;
}

.top-bar__track {
  padding-block: 9px;
}

.top-bar__track span {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid rgba(128, 97, 38, 0.16);
  box-shadow: 0 8px 30px rgba(38, 31, 20, 0.04);
  backdrop-filter: blur(16px);
}

.site-header .header-cta.btn,
.site-header .header-cta.btn--primary,
.site-header .header-cta.btn--whatsapp {
  color: #ffffff;
  background: #141412;
  border-color: #141412;
}

.site-header .header-cta.btn:hover,
.site-header .header-cta.btn:focus-visible {
  color: #ffffff;
  background: #000000;
  border-color: #000000;
}

.hero {
  background: #ffffff;
}

.hero__inner {
  max-width: 1120px;
}

.hero__actions .btn,
.linda-story__cta .btn,
.category-card__button,
.product-card__button,
.detail-product__actions .btn {
  min-height: 52px;
}

.coverage-strip {
  background: #ffffff;
}

.coverage-countries li {
  background: #fffdf8;
}

.collections .category-card,
.product-card,
.detail-product__content,
.modal__panel {
  background: #fffdf8;
}

.collections .category-card img {
  width: 100%;
  object-fit: contain;
  background: #f7f0e3;
}

.collections .category-card h3 {
  color: #8b6a2f;
}

.collections .category-card--acrylique h3 {
  color: #185b73;
}

.collections .category-card--cadeaux h3 {
  color: #1f734f;
}

.collections .category-card--carton h3 {
  color: #9a5d1d;
}

.quote-result__final {
  background: #141412;
}

@media (min-width: 901px) {
  .hero {
    padding-top: 56px;
  }

  .hero__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
    gap: 48px;
    align-items: center;
  }

  .hero__media {
    grid-column: 2;
    grid-row: 1;
    min-height: 520px;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(38, 31, 20, 0.14);
    overflow: hidden;
  }

  .hero__media img,
  .hero__media video {
    height: 100%;
    object-fit: cover;
  }

  .hero-mobile-summary {
    grid-column: 1;
    grid-row: 1;
    display: block;
    padding: 0;
    text-align: left;
  }

  .hero-mobile-summary h2 {
    max-width: 720px;
    margin: 0;
    font-size: 4.35rem;
    line-height: 0.95;
  }

  .hero-mobile-summary > p {
    max-width: 720px;
    margin: 26px 0 0;
    color: #5f5a52;
    font-size: 1.1rem;
    line-height: 1.75;
  }

  .hero-mobile-summary .experience-note {
    display: grid;
    grid-template-columns: 170px 1fr;
    align-items: center;
    max-width: 720px;
    margin-top: 28px;
    padding: 24px 30px;
    text-align: left;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: 4.2rem;
    line-height: 1;
  }

  .hero-mobile-summary .trust-badges,
  .hero .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    max-width: 720px;
    margin-top: 22px;
  }

  .hero-mobile-summary .trust-badges li {
    min-height: 132px;
    padding: 22px;
    text-align: center;
  }

  .coverage-strip__inner {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 44px;
    align-items: center;
  }

  .coverage-countries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
}

@media (max-width: 900px) {
  .hero-mobile-summary {
    padding: 30px 24px 34px;
    text-align: center;
  }

  .hero-mobile-summary > p,
  .hero-mobile-summary .hero__actions {
    display: none;
  }

  .hero-mobile-summary h2 {
    margin-inline: auto;
    font-size: 3rem;
    line-height: 1;
  }

  .hero-mobile-summary .experience-note {
    grid-template-columns: 110px 1fr;
    gap: 16px;
    padding: 16px;
    text-align: left;
  }

  .hero-mobile-summary .trust-badges,
  .hero .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 14px;
    border: 1px solid rgba(184, 148, 77, 0.18);
    border-radius: 26px;
    background: #fffdf8;
  }

  .hero-mobile-summary .trust-badges li {
    min-height: auto;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    padding: 14px 16px;
    text-align: left;
  }

  .coverage-strip {
    padding: 30px 0;
  }

  .coverage-countries {
    display: flex;
    gap: 10px;
    overflow: hidden;
    padding-block: 4px;
  }

  .coverage-countries li {
    flex: 0 0 62px;
    width: 62px;
    height: 48px;
    justify-content: center;
    padding: 8px;
  }

  .coverage-countries li span:not(.flag) {
    display: none;
  }

  .coverage-countries .flag {
    margin: 0;
    font-size: 1.5rem;
  }
}

@media (max-width: 560px) {
  .top-bar__track span {
    font-size: 0.78rem;
  }

  .site-header .brand img {
    width: 56px;
    height: 56px;
  }

  .site-header .brand strong {
    font-size: 1.1rem;
  }

  .site-header .brand small {
    font-size: 0.65rem;
    letter-spacing: 0.32em;
  }

  .hero__media {
    height: 46vh;
    min-height: 360px;
    max-height: 520px;
  }

  .hero-mobile-summary h2 {
    font-size: 2.72rem;
  }

  .collections .category-card img {
    height: 230px;
    padding: 8px;
  }

  body .modal__panel h2 {
    font-size: 2.8rem;
  }
}

/* Final hero separation: desktop and mobile must not render both summaries at once. */
@media (min-width: 901px) {
  body .hero {
    display: grid;
    grid-template-columns: minmax(32px, 1fr) minmax(0, 560px) minmax(360px, 560px) minmax(32px, 1fr);
    column-gap: 52px;
    row-gap: 0;
    align-items: center;
    padding: 64px 0 0;
    background: #ffffff;
  }

  body .hero > .hero__media {
    grid-column: 3 / 4;
    grid-row: 1;
    width: 100%;
    height: 560px;
    min-height: 560px;
    max-height: 560px;
    margin: 0;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 70px rgba(38, 31, 20, 0.14);
  }

  body .hero > .hero__media video,
  body .hero > .hero__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  body .hero > .hero-mobile-summary {
    display: none !important;
  }

  body .hero > .hero__inner {
    grid-column: 2 / 3;
    grid-row: 1;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  body .hero > .hero__inner .eyebrow {
    margin: 0 0 14px;
  }

  body .hero > .hero__inner h1 {
    max-width: 560px;
    margin: 0;
    font-size: 4rem;
    line-height: 0.96;
    letter-spacing: 0;
  }

  body .hero > .hero__inner .hero__subtitle {
    display: block;
    max-width: 560px;
    margin: 24px 0 0;
    color: #5f5a52;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  body .hero > .hero__inner .experience-note {
    display: grid;
    grid-template-columns: 150px 1fr;
    align-items: center;
    max-width: 560px;
    margin: 28px 0 0;
    padding: 22px 24px;
    text-align: left;
    background: #fffdf8;
    border: 1px solid rgba(184, 148, 77, 0.26);
    border-left: 5px solid #b8944d;
    border-radius: 18px;
  }

  body .hero > .hero__inner .experience-note strong {
    font-size: 3.8rem;
    line-height: 1;
  }

  body .hero > .hero__inner .experience-note span {
    font-size: 1rem;
    line-height: 1.45;
  }

  body .hero > .hero__inner .trust-badges {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 560px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
  }

  body .hero > .hero__inner .trust-badges li,
  body .hero > .hero__inner .trust-badges li:nth-child(1),
  body .hero > .hero__inner .trust-badges li:nth-child(3) {
    display: grid;
    grid-template-columns: 44px 1fr;
    align-items: center;
    min-height: 112px;
    padding: 18px;
    border: 1px solid rgba(184, 148, 77, 0.24);
    border-radius: 18px;
    background: #fffdf8;
    text-align: left;
  }

  body .hero > .hero__inner .badge-icon {
    width: 42px;
    height: 42px;
  }

  body .hero > .hero__inner .hero__actions {
    display: flex;
    justify-content: flex-start;
    max-width: 560px;
    margin-top: 28px;
  }

  body .hero > .coverage-strip {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    margin-top: 76px;
  }
}

@media (max-width: 900px) {
  body .hero > .hero__inner {
    display: none !important;
  }

  body .hero > .hero-mobile-summary {
    display: block !important;
  }
}

/* Social proof block under the hero video, adapted for Zaanga Wedding. */
.hero-social-proof {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin-top: 22px;
  border: 1px solid rgba(232, 210, 154, 0.24);
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.93) 0%, rgba(12, 13, 12, 0.84) 48%, rgba(12, 13, 12, 0.54) 100%),
    url("assets/ui/zaanga-social-proof-bg.jpg") center / cover no-repeat;
  box-shadow: 0 26px 68px rgba(20, 18, 12, 0.18);
}

.hero-social-proof::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  z-index: -1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), transparent);
}

.hero-social-proof__content {
  position: relative;
  z-index: 1;
  padding: 26px;
}

.hero-social-proof__media {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 0;
  width: 108px;
  height: 108px;
  border: 1px solid rgba(232, 210, 154, 0.3);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    url("assets/ui/zaanga-social-proof-bg.jpg") center / cover no-repeat;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
  transform: rotate(-4deg);
}

.hero-social-proof__label {
  margin: 0 0 10px;
  color: #ead68b;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-social-proof strong {
  display: block;
  max-width: 610px;
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.05rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero-social-proof strong::first-line {
  color: #f1d680;
}

.hero-social-proof p:not(.hero-social-proof__label) {
  max-width: 560px;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-social-proof__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 560px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.hero-social-proof__countries li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 6px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero-social-proof__countries .country-flag {
  width: 24px;
  height: 16px;
  flex: 0 0 24px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.18);
}

.hero-social-proof__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  margin-top: 20px;
  padding: 12px 18px;
  border: 1px solid rgba(241, 214, 128, 0.58);
  border-radius: 999px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.hero-social-proof__link:hover,
.hero-social-proof__link:focus-visible {
  transform: translateY(-1px);
  border-color: #f1d680;
  background: rgba(241, 214, 128, 0.16);
  outline: none;
}

@media (min-width: 901px) {
  body .hero > .hero__inner .hero-social-proof {
    max-width: 560px;
    min-height: 300px;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    padding-right: 62px;
  }
}

@media (max-width: 900px) {
  .hero-mobile-summary .hero-social-proof {
    text-align: left;
  }

  .hero-social-proof__media {
    width: 86px;
    height: 86px;
    right: 16px;
    bottom: 16px;
    opacity: 0.78;
  }

  .hero-social-proof strong {
    max-width: 330px;
    font-size: 1.75rem;
  }

  .hero-social-proof p:not(.hero-social-proof__label) {
    max-width: 330px;
  }

  .hero-social-proof__countries li {
    font-size: 0.72rem;
  }
}

@media (max-width: 560px) {
  .hero-social-proof {
    border-radius: 24px;
  }

  .hero-social-proof__content {
    padding: 22px 18px;
  }

  .hero-social-proof strong {
    font-size: 1.55rem;
  }

  .hero-social-proof__countries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  .hero-social-proof__countries li {
    justify-content: flex-start;
    min-width: 0;
    overflow: hidden;
  }

  .hero-social-proof__countries li span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

.hero-social-proof__link {
    width: 100%;
  }
}

/* Team section: local representatives and founder trust block. */
.team-section {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(151, 109, 42, 0.12);
  border-bottom: 1px solid rgba(151, 109, 42, 0.12);
  background:
    radial-gradient(circle at top left, rgba(232, 210, 154, 0.2), transparent 34%),
    linear-gradient(180deg, #fffdf9 0%, #f8f2e8 100%);
}

.team-section__header {
  max-width: 790px;
  margin: 0 auto 34px;
  text-align: center;
}

.team-section__header h2 {
  margin: 0;
  color: #171717;
}

.team-section__header p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
  color: #665f54;
  font-size: 1.04rem;
  line-height: 1.7;
}

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

.team-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border: 1px solid rgba(151, 109, 42, 0.18);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 22px 58px rgba(55, 42, 24, 0.08);
}

.team-card--founder {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr);
  align-items: stretch;
}

.team-card__portrait {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: #efe7d9;
}

.team-card--founder .team-card__portrait {
  height: 100%;
  min-height: 360px;
  aspect-ratio: auto;
}

.team-card__portrait--initials {
  position: relative;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(15, 15, 12, 0.9), rgba(92, 69, 28, 0.92)),
    url("assets/ui/zaanga-social-proof-bg.jpg") center / cover no-repeat;
}

.team-card__portrait--initials::before,
.team-card__portrait--initials::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 58px;
  height: 92px;
  border: 4px solid rgba(241, 214, 128, 0.88);
  border-top-color: transparent;
  border-bottom-color: transparent;
}

.team-card__portrait--initials::before {
  left: 22%;
  border-right: 0;
  border-radius: 90px 0 0 90px;
  transform: translateY(-50%) rotate(-10deg);
}

.team-card__portrait--initials::after {
  right: 22%;
  border-left: 0;
  border-radius: 0 90px 90px 0;
  transform: translateY(-50%) rotate(10deg);
}

.team-card__portrait--initials span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  border: 1px solid rgba(241, 214, 128, 0.42);
  border-radius: 999px;
  color: #f1d680;
  background: rgba(255, 255, 255, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
  box-shadow: inset 0 0 0 10px rgba(255, 255, 255, 0.04);
}

.team-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.team-card__country {
  width: fit-content;
  margin: 0 0 14px;
  padding: 7px 11px;
  border: 1px solid rgba(151, 109, 42, 0.2);
  border-radius: 999px;
  color: #8a692a;
  background: #fffaf1;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.team-card h3 {
  margin: 0;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.08;
}

.team-card__role {
  margin: 8px 0 0;
  color: #171717;
  font-weight: 900;
}

.team-card__body > p:not(.team-card__country):not(.team-card__role) {
  margin: 14px 0 0;
  color: #665f54;
  font-size: 0.96rem;
  line-height: 1.62;
}

.team-card blockquote {
  margin: auto 0 0;
  padding-top: 20px;
  color: #8a692a;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  line-height: 1.42;
}

@media (max-width: 980px) {
  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .team-card--founder {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .team-section__header {
    margin-bottom: 22px;
    text-align: left;
  }

  .team-section__header p:not(.eyebrow) {
    margin-left: 0;
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .team-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .team-card,
  .team-card--founder {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    align-items: stretch;
    border-radius: 22px;
  }

  .team-card__portrait,
  .team-card--founder .team-card__portrait {
    height: 100%;
    min-height: 0;
    aspect-ratio: auto;
  }

  .team-card__portrait--initials::before,
  .team-card__portrait--initials::after {
    display: none;
  }

  .team-card__portrait--initials span {
    width: 62px;
    height: 62px;
    font-size: 1.7rem;
  }

  .team-card__body {
    min-width: 0;
    padding: 16px;
  }

  .team-card__country {
    margin-bottom: 8px;
    padding: 5px 8px;
    font-size: 0.64rem;
  }

  .team-card h3 {
    font-size: 1.18rem;
  }

  .team-card__role {
    font-size: 0.88rem;
  }

  .team-card__body > p:not(.team-card__country):not(.team-card__role) {
    margin-top: 10px;
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .team-card blockquote {
    margin-top: 12px;
    padding-top: 0;
    font-size: 0.95rem;
  }
}

/* Floral experience badge inspired by premium proof strips. */
body .experience-note,
body .hero > .hero__inner .experience-note,
body .hero-mobile-summary .experience-note {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 720px;
  margin-top: 24px;
  padding: 22px 26px;
  border: 1px solid rgba(241, 214, 128, 0.28);
  border-radius: 28px;
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(7, 9, 8, 0.96), rgba(18, 18, 16, 0.9)),
    radial-gradient(circle at 85% 20%, rgba(184, 148, 77, 0.22), transparent 34%);
  box-shadow: 0 24px 56px rgba(20, 18, 12, 0.16);
  text-align: left;
}

body .experience-note::after {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 27px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 42%);
}

body .experience-note strong,
body .hero > .hero__inner .experience-note strong,
body .hero-mobile-summary .experience-note strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 166px;
  min-height: 86px;
  color: #f1d680;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.55rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  white-space: nowrap;
}

body .experience-note strong::before,
body .experience-note strong::after {
  content: "";
  width: 34px;
  height: 76px;
  flex: 0 0 34px;
  margin-inline: 8px;
  opacity: 0.96;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='34' height='76' viewBox='0 0 34 76' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M28 7C11 20 8 53 27 69' stroke='%23fff7df' stroke-width='2' stroke-linecap='round'/%3E%3Cellipse cx='20' cy='13' rx='4' ry='9' transform='rotate(42 20 13)' fill='%23fff7df'/%3E%3Cellipse cx='14' cy='24' rx='4' ry='9' transform='rotate(31 14 24)' fill='%23fff7df'/%3E%3Cellipse cx='12' cy='37' rx='4' ry='9' transform='rotate(15 12 37)' fill='%23fff7df'/%3E%3Cellipse cx='15' cy='50' rx='4' ry='9' transform='rotate(-14 15 50)' fill='%23fff7df'/%3E%3Cellipse cx='22' cy='61' rx='4' ry='9' transform='rotate(-35 22 61)' fill='%23fff7df'/%3E%3C/svg%3E");
}

body .experience-note strong::after {
  transform: scaleX(-1);
}

body .experience-note span,
body .hero > .hero__inner .experience-note span,
body .hero-mobile-summary .experience-note span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.45;
}

@media (min-width: 901px) {
  body .hero > .hero__inner .experience-note {
    max-width: 560px;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 20px 22px;
  }

  body .hero > .hero__inner .experience-note strong {
    min-width: 158px;
    font-size: 3.25rem;
  }
}

@media (max-width: 900px) {
  body .hero-mobile-summary .experience-note {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 22px 18px;
    text-align: center;
  }

  body .hero-mobile-summary .experience-note strong {
    margin-inline: auto;
  }

  body .hero-mobile-summary .experience-note span {
    max-width: 310px;
    margin-inline: auto;
  }
}

@media (max-width: 560px) {
  body .hero-mobile-summary .experience-note strong {
    min-width: 0;
    font-size: 3rem;
  }

  body .experience-note strong::before,
  body .experience-note strong::after {
    width: 28px;
    height: 62px;
    margin-inline: 6px;
  }
}

/* Final laurel trust ornament: clear rameaux around the experience number. */
body .experience-note strong::before,
body .experience-note strong::after {
  content: "";
  width: 38px;
  height: 82px;
  flex: 0 0 38px;
  margin-inline: 9px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg width='38' height='82' viewBox='0 0 38 82' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M29 7C12 21 7 55 28 74' stroke='%23fff7df' stroke-width='2.6' stroke-linecap='round'/%3E%3Cellipse cx='24' cy='11' rx='5.3' ry='10.8' transform='rotate(42 24 11)' fill='%23fff7df'/%3E%3Cellipse cx='17' cy='22' rx='5.3' ry='10.8' transform='rotate(31 17 22)' fill='%23fff7df'/%3E%3Cellipse cx='13' cy='35' rx='5.3' ry='10.8' transform='rotate(13 13 35)' fill='%23fff7df'/%3E%3Cellipse cx='15' cy='49' rx='5.3' ry='10.8' transform='rotate(-12 15 49)' fill='%23fff7df'/%3E%3Cellipse cx='21' cy='62' rx='5.3' ry='10.8' transform='rotate(-31 21 62)' fill='%23fff7df'/%3E%3Cellipse cx='29' cy='72' rx='4.6' ry='9.2' transform='rotate(-44 29 72)' fill='%23fff7df'/%3E%3C/svg%3E");
}

body .experience-note strong::after {
  transform: scaleX(-1);
}

@media (max-width: 560px) {
  body .experience-note strong::before,
  body .experience-note strong::after {
    width: 32px;
    height: 70px;
    flex-basis: 32px;
    margin-inline: 7px;
  }
}

/* Stronger separated laurel leaves for mobile legibility. */
body .experience-note strong::before,
body .experience-note strong::after {
  width: 48px;
  height: 86px;
  flex-basis: 48px;
  margin-inline: 5px;
  background-image: url("data:image/svg+xml,%3Csvg width='48' height='86' viewBox='0 0 48 86' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cellipse cx='36' cy='8' rx='4.5' ry='10' transform='rotate(46 36 8)' fill='%23fff7df'/%3E%3Cellipse cx='28' cy='21' rx='4.6' ry='10.2' transform='rotate(34 28 21)' fill='%23fff7df'/%3E%3Cellipse cx='21' cy='36' rx='4.7' ry='10.4' transform='rotate(18 21 36)' fill='%23fff7df'/%3E%3Cellipse cx='20' cy='52' rx='4.7' ry='10.4' transform='rotate(-10 20 52)' fill='%23fff7df'/%3E%3Cellipse cx='27' cy='68' rx='4.6' ry='10.2' transform='rotate(-30 27 68)' fill='%23fff7df'/%3E%3Cellipse cx='38' cy='80' rx='4.2' ry='9.4' transform='rotate(-48 38 80)' fill='%23fff7df'/%3E%3C/svg%3E");
}

@media (max-width: 560px) {
  body .experience-note strong::before,
  body .experience-note strong::after {
    width: 56px;
    height: 92px;
    flex-basis: 56px;
    margin-inline: 2px;
  }
}

/* Final trust mark: visible laurel branches, matching the reference symbol. */
body .experience-note strong::before,
body .experience-note strong::after {
  width: 58px;
  height: 96px;
  flex: 0 0 58px;
  margin-inline: 0;
  opacity: 1;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.18));
  background-image: url("data:image/svg+xml,%3Csvg width='58' height='96' viewBox='0 0 58 96' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23fff7df'%3E%3Cellipse cx='42' cy='8' rx='5.6' ry='12.2' transform='rotate(45 42 8)'/%3E%3Cellipse cx='31' cy='20' rx='5.7' ry='12.4' transform='rotate(33 31 20)'/%3E%3Cellipse cx='23' cy='35' rx='5.8' ry='12.6' transform='rotate(17 23 35)'/%3E%3Cellipse cx='21' cy='51' rx='5.8' ry='12.6' transform='rotate(-6 21 51)'/%3E%3Cellipse cx='28' cy='68' rx='5.7' ry='12.4' transform='rotate(-27 28 68)'/%3E%3Cellipse cx='40' cy='83' rx='5.4' ry='11.8' transform='rotate(-45 40 83)'/%3E%3C/g%3E%3C/svg%3E");
}

body .experience-note strong {
  gap: 2px;
}

@media (max-width: 560px) {
  body .hero-mobile-summary .experience-note strong {
    min-width: min(100%, 252px);
    font-size: 3.15rem;
  }

  body .experience-note strong::before,
  body .experience-note strong::after {
    width: 62px;
    height: 98px;
    flex-basis: 62px;
  }
}

/* Final responsive framing pass for the current homepage sections. */
main > .section {
  padding-block: clamp(56px, 7vw, 96px);
}

.section > .container,
.hero .container,
.linda-story .container,
.trust-story-case__header {
  width: min(100% - clamp(32px, 5vw, 64px), var(--container));
  max-width: var(--container);
  margin-inline: auto;
}

.hero-mobile-summary,
.team-section__header,
.team-grid,
.linda-story__intro,
.trust-story-case__header,
.section-heading,
.contact__inner {
  min-width: 0;
}

.hero-mobile-summary h2,
.team-section__header h2,
.linda-story__intro h2,
.trust-story-case__header h3,
.section-heading h2 {
  overflow-wrap: anywhere;
}

.linda-story {
  padding-inline: 0;
}

.trust-story-list,
.trust-story-case {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.trust-story-case__header {
  box-sizing: border-box;
}

.linda-carousel {
  width: min(100%, 1560px);
  max-width: 100vw;
  box-sizing: border-box;
}

.linda-carousel__viewport {
  width: 100%;
  overflow: hidden;
}

.linda-carousel__track,
.linda-slide {
  min-width: 0;
}

.linda-slide__content h3,
.linda-slide__content p {
  overflow-wrap: anywhere;
}

.team-grid,
.category-grid,
.trust-grid {
  align-items: stretch;
}

.team-card,
.category-card,
.trust-card,
.policy-card,
.refund-card,
.faq-item,
.contact__inner {
  min-width: 0;
}

@media (min-width: 901px) {
  .hero-mobile-summary {
    max-width: 980px;
    margin-inline: auto;
  }

  .hero-mobile-summary .experience-note {
    max-width: 840px;
    margin-inline: auto;
  }

  .hero-mobile-summary .trust-badges {
    max-width: 920px;
    margin-inline: auto;
  }

  .team-section__header,
  .linda-story__intro,
  .trust-story-case__header {
    grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.64fr);
    align-items: end;
  }

  .team-grid {
    grid-template-columns: minmax(0, 1.2fr) repeat(2, minmax(0, 1fr));
  }

  .team-card--founder {
    grid-column: span 1;
  }

  .linda-slide {
    flex-basis: min(58vw, 760px);
  }
}

@media (max-width: 900px) {
  main > .section {
    padding-block: 54px;
  }

  .section > .container,
  .hero .container,
  .linda-story .container,
  .trust-story-case__header {
    width: min(100% - 32px, var(--container));
  }

  .team-section__header,
  .linda-story__intro,
  .trust-story-case__header,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .team-grid,
  .category-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .linda-carousel {
    width: 100%;
    max-width: 100vw;
    margin-inline: 0;
    padding-inline: 0;
  }

  .linda-carousel__viewport {
    padding-block: 14px;
  }

  .linda-carousel__track {
    gap: 16px;
  }

  .linda-slide {
    flex-basis: min(86vw, 430px);
  }

  .behind-scenes__grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 18px 18px;
    margin-inline: -18px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 18px;
    -webkit-overflow-scrolling: touch;
  }

  .behind-scenes__grid::-webkit-scrollbar {
    height: 6px;
  }

  .behind-scenes__grid::-webkit-scrollbar-track {
    background: rgba(181, 142, 74, 0.18);
    border-radius: 999px;
  }

  .behind-scenes__grid::-webkit-scrollbar-thumb {
    background: rgba(181, 142, 74, 0.75);
    border-radius: 999px;
  }

  .behind-card,
  .behind-card--featured {
    flex: 0 0 min(82vw, 360px);
    grid-row: auto;
    scroll-snap-align: center;
  }

  .behind-card__media,
  .behind-card--featured .behind-card__media {
    aspect-ratio: 4 / 5;
  }
}

@media (max-width: 560px) {
  main > .section {
    padding-block: 44px;
  }

  .section > .container,
  .hero .container,
  .linda-story .container,
  .trust-story-case__header {
    width: calc(100% - 28px);
  }

  .hero-mobile-summary {
    padding-inline: 0;
  }

  .hero-mobile-summary h2 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 0.98;
  }

  .hero-mobile-summary .experience-note {
    grid-template-columns: 0.42fr 1fr;
    gap: 12px;
    padding: 16px;
  }

  .hero-mobile-summary .experience-note strong {
    font-size: clamp(2.6rem, 16vw, 4.2rem);
  }

  .hero-mobile-summary .trust-badges {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .hero-mobile-summary .trust-badges li {
    min-height: 76px;
    justify-content: flex-start;
    text-align: left;
  }

  .team-section__header h2,
  .linda-story__intro h2,
  .section-heading h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
    line-height: 1;
  }

  .trust-story-case__header h3 {
    font-size: clamp(2rem, 10vw, 3rem);
    line-height: 1;
  }

  .linda-story__copy,
  .trust-story-case__header p {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .linda-slide {
    flex-basis: min(88vw, 380px);
    border-radius: 22px;
  }

  .linda-slide__media {
    aspect-ratio: 4 / 5;
  }

  .linda-slide__content {
    padding: 18px;
  }

  .linda-slide__content h3 {
    font-size: clamp(1.45rem, 7vw, 2.1rem);
  }

  .linda-carousel__arrow {
    width: 42px;
    height: 42px;
  }

  .behind-scenes {
    background:
      linear-gradient(180deg, #171717 0%, #241e16 48%, #fbf7ef 48%, #fffdf8 100%);
  }

  .behind-scenes__intro h2 {
    font-size: clamp(2.25rem, 12vw, 3.6rem);
    line-height: 0.98;
  }

  .behind-scenes__intro p:not(.eyebrow) {
    font-size: 0.96rem;
    line-height: 1.58;
  }

  .behind-card,
  .behind-card--featured {
    flex-basis: min(86vw, 340px);
    border-radius: 22px;
  }

  .behind-card__content {
    padding: 18px;
  }

  .behind-card__content h3 {
    font-size: clamp(1.38rem, 7vw, 2rem);
  }

  .behind-card__content p {
    font-size: 0.92rem;
  }
}

/* Mobile only: team members become a horizontal, swipeable row. */
@media (max-width: 700px) {
  .team-section .team-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 16px 18px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 16px;
    -webkit-overflow-scrolling: touch;
  }

  .team-section .team-grid::-webkit-scrollbar {
    height: 6px;
  }

  .team-section .team-grid::-webkit-scrollbar-track {
    background: rgba(181, 142, 74, 0.14);
    border-radius: 999px;
  }

  .team-section .team-grid::-webkit-scrollbar-thumb {
    background: rgba(151, 108, 45, 0.72);
    border-radius: 999px;
  }

  .team-section .team-card,
  .team-section .team-card--founder {
    display: flex;
    flex-direction: column;
    flex: 0 0 min(78vw, 330px);
    width: min(78vw, 330px);
    max-width: 330px;
    border-radius: 24px;
    scroll-snap-align: start;
  }

  .team-section .team-card--founder {
    grid-column: auto;
  }

  .team-section .team-card__portrait,
  .team-section .team-card--founder .team-card__portrait {
    width: 100%;
    height: clamp(230px, 62vw, 290px);
    min-height: 0;
    aspect-ratio: auto;
    object-fit: contain;
    object-position: center top;
    background: linear-gradient(180deg, #fffaf1, #efe7d9);
  }

  .team-section .team-card__body {
    min-width: 0;
    padding: 18px;
  }

  .team-section .team-card__body > p:not(.team-card__country):not(.team-card__role) {
    font-size: 0.9rem;
    line-height: 1.52;
  }
}

@media (max-width: 900px) {
  .order-clarity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-trend {
    background:
      linear-gradient(180deg, #171717 0%, #211d18 52%, #fffaf0 52%, #fffdf8 100%);
  }

  .featured-trend__inner {
    grid-template-columns: 1fr;
  }

  .featured-trend__stage {
    width: min(100%, 520px);
    margin-inline: auto;
    transform: none;
  }
}

@media (max-width: 560px) {
  .order-clarity-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .order-clarity-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    column-gap: 14px;
    min-height: 0;
    padding: 18px;
  }

  .order-clarity-card__icon {
    grid-row: span 2;
    margin: 0;
  }

  .order-clarity-card__number {
    top: 14px;
    right: 16px;
    font-size: 1.7rem;
  }

  .order-clarity-card h3 {
    padding-right: 42px;
    font-size: 1.28rem;
  }

  .order-clarity-card p {
    margin-top: 8px;
    font-size: 0.92rem;
  }

  .featured-trend {
    padding-block: 52px;
  }

  .featured-trend__copy h2 {
    font-size: clamp(2.35rem, 12vw, 4rem);
  }

  .featured-trend__copy .btn {
    width: 100%;
  }

  .featured-trend__stage {
    border-radius: 26px;
    aspect-ratio: auto;
    overflow: hidden;
    background: #fffdf8;
  }

  .featured-trend__stage::before {
    display: none;
  }

  .featured-trend__stage video {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .featured-trend__overlay {
    position: static;
    display: grid;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    border: 0;
    border-top: 1px solid rgba(181, 142, 74, 0.24);
    border-radius: 0;
    color: var(--ink);
    background: #fffdf8;
    box-shadow: none;
    backdrop-filter: none;
  }

  .featured-trend__price span {
    color: #8a6625;
  }

  .featured-trend__price strong {
    color: var(--ink);
  }

  .featured-trend__overlay .btn {
    width: 100%;
  }
}

/* Final polish pass - 2026-06-26 */
body .experience-note strong,
body .hero > .hero__inner .experience-note strong,
body .hero-mobile-summary .experience-note strong {
  isolation: isolate;
  min-width: 246px;
  min-height: 98px;
}

body .experience-note strong::before,
body .hero > .hero__inner .experience-note strong::before,
body .hero-mobile-summary .experience-note strong::before {
  content: "";
  position: absolute;
  inset: -10px -22px;
  z-index: -1;
  display: block;
  width: auto;
  height: auto;
  flex: none;
  margin: 0;
  opacity: 0.98;
  background: #f1d680;
  -webkit-mask: url("assets/ui/fleurs-lauriers-net.svg") center / contain no-repeat;
  mask: url("assets/ui/fleurs-lauriers-net.svg") center / contain no-repeat;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
}

body .experience-note strong::after,
body .hero > .hero__inner .experience-note strong::after,
body .hero-mobile-summary .experience-note strong::after {
  content: none !important;
  display: none !important;
}

.hero-social-proof {
  border-color: rgba(241, 214, 128, 0.32);
  background:
    linear-gradient(120deg, rgba(9, 10, 10, 0.96) 0%, rgba(13, 12, 10, 0.88) 46%, rgba(60, 39, 14, 0.48) 100%),
    url("assets/ui/zaanga-social-proof-bg.jpg") center / cover no-repeat;
  box-shadow: 0 26px 74px rgba(15, 13, 9, 0.2);
}

.hero-social-proof__content {
  display: grid;
  gap: 14px;
}

.hero-social-proof strong {
  max-width: 660px;
}

.hero-social-proof p:not(.hero-social-proof__label) {
  margin-top: 0;
}

.hero-social-proof__countries li {
  border-color: rgba(241, 214, 128, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.hero-social-proof__link {
  width: fit-content;
  color: #171717;
  background: #f1d680;
  border-color: #f1d680;
}

.hero-social-proof__link:hover,
.hero-social-proof__link:focus-visible {
  color: #171717;
  background: #fff4c3;
}

.team-section__header p:not(.eyebrow),
.team-card__body > p:not(.team-card__country):not(.team-card__role),
.team-card blockquote,
.team-section .team-card__body > p:not(.team-card__country):not(.team-card__role),
.team-section .team-card blockquote {
  display: none !important;
}

.team-card__body {
  justify-content: center;
}

.behind-card__media video {
  object-position: center;
  background: #111111;
}

.behind-card--featured .behind-card__media video {
  object-position: 50% 32%;
}

.featured-trend__stage video::-webkit-media-controls,
.featured-trend__stage video::-webkit-media-controls-enclosure {
  display: none !important;
}

@media (max-width: 900px) {
  .behind-card__media video,
  .behind-card--featured .behind-card__media video {
    object-fit: contain;
    object-position: center;
  }

  .behind-card__media::after {
    display: none;
  }

  .hero-social-proof__link {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .trust-story-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 14px 18px;
    margin-inline: -14px;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 14px;
    -webkit-overflow-scrolling: touch;
  }

  .trust-story-list::-webkit-scrollbar {
    height: 6px;
  }

  .trust-story-list::-webkit-scrollbar-track {
    background: rgba(181, 142, 74, 0.14);
    border-radius: 999px;
  }

  .trust-story-list::-webkit-scrollbar-thumb {
    background: rgba(151, 108, 45, 0.74);
    border-radius: 999px;
  }

  .trust-story-case {
    flex: 0 0 min(86vw, 380px);
    overflow: hidden;
    border: 1px solid rgba(151, 109, 42, 0.16);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 24px 54px rgba(49, 39, 24, 0.1);
    scroll-snap-align: center;
  }

  .trust-story-case__header {
    width: 100%;
    padding: 20px 18px 0;
  }

  .trust-story-case__header h3 {
    font-size: clamp(2rem, 10vw, 3.2rem);
  }

  .trust-story-case__header p:not(.eyebrow) {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 10px;
    color: #665f54;
    font-size: 0.96rem;
    line-height: 1.52;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .trust-story-case .linda-carousel {
    width: 100%;
    padding: 0 18px 18px;
  }

  .trust-story-case .linda-carousel__viewport {
    padding-block: 14px 0;
  }

  .trust-story-case .linda-carousel__track {
    display: block !important;
    transform: none !important;
  }

  .trust-story-case .linda-slide {
    display: none !important;
    width: 100%;
    flex-basis: auto;
    transform: none !important;
    opacity: 1 !important;
  }

  .trust-story-case .linda-slide.is-active {
    display: block !important;
  }

  .trust-story-case .linda-slide__media {
    aspect-ratio: 4 / 5;
    border-radius: 22px 22px 0 0;
  }

  .trust-story-case .linda-slide__media img,
  .trust-story-case .linda-slide__media video {
    object-fit: cover;
  }

  .trust-story-case .linda-slide__content {
    padding: 16px;
  }

  .trust-story-case .linda-slide__content h3 {
    font-size: 1.38rem;
  }

  .trust-story-case .linda-slide__content p {
    display: -webkit-box;
    overflow: hidden;
    font-size: 0.94rem;
    line-height: 1.5;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
  }

  .trust-story-case .linda-carousel__arrow,
  .trust-story-case .linda-carousel__dots {
    display: none !important;
  }
}

@media (max-width: 560px) {
  body .hero-mobile-summary .experience-note {
    grid-template-columns: 1fr;
  }

  body .hero-mobile-summary .experience-note strong {
    min-width: min(100%, 244px);
    min-height: 90px;
    margin-inline: auto;
    font-size: clamp(2.8rem, 15vw, 3.65rem);
  }

  body .experience-note strong::before,
  body .hero-mobile-summary .experience-note strong::before {
    inset: -8px -14px;
  }

  .hero-social-proof__media {
    display: none;
  }

  .hero-social-proof strong {
    max-width: none;
    font-size: clamp(1.55rem, 8vw, 2.15rem);
  }

  .hero-social-proof__countries {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .behind-card,
  .behind-card--featured {
    flex-basis: min(86vw, 360px);
  }
}

/* Mobile tightening after visual QA - 2026-06-26 */
@media (max-width: 700px) {
  body #histoire-linda .linda-story__intro--compact {
    padding-bottom: 18px;
  }

  body #histoire-linda .trust-story-list {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 14px;
    width: auto;
    margin: 0 -18px;
    padding: 0 18px 12px;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  body #histoire-linda .trust-story-list::-webkit-scrollbar {
    display: none;
  }

  body #histoire-linda .trust-story-case {
    display: block !important;
    flex: 0 0 min(84vw, 360px);
    min-width: min(84vw, 360px);
    max-width: min(84vw, 360px);
    padding: 16px 0 18px;
    border: 1px solid rgba(188, 154, 95, 0.24);
    border-radius: 26px;
    background: #fffdf8;
    box-shadow: 0 20px 45px rgba(30, 24, 17, 0.08);
    overflow: hidden;
    scroll-snap-align: center;
  }

  body #histoire-linda .trust-story-case__header {
    padding: 0 16px 10px;
  }

  body #histoire-linda .trust-story-case__header .eyebrow {
    margin-bottom: 8px;
    font-size: 0.68rem;
  }

  body #histoire-linda .story-couple-name {
    display: block;
    font-size: clamp(2.35rem, 12vw, 3.65rem);
    line-height: 0.95;
  }

  body #histoire-linda .trust-story-case__header p:not(.eyebrow) {
    display: none;
  }

  body #histoire-linda .linda-carousel {
    margin: 0;
    padding: 0 12px;
  }

  body #histoire-linda .linda-carousel__viewport {
    overflow: hidden;
    border-radius: 20px;
  }

  body #histoire-linda .linda-slide__media {
    height: 238px;
    min-height: 238px;
    max-height: 238px;
    background: #f8f4ec;
  }

  body #histoire-linda .linda-slide__media img,
  body #histoire-linda .linda-slide__media video {
    object-fit: cover;
    object-position: center;
  }

  body #histoire-linda .linda-slide__content {
    padding: 13px 14px 15px;
  }

  body #histoire-linda .linda-slide__content .eyebrow {
    margin-bottom: 5px;
    font-size: 0.66rem;
  }

  body #histoire-linda .linda-slide__content h3 {
    font-size: 1.18rem;
    line-height: 1.1;
  }

  body #histoire-linda .linda-slide__content p {
    display: none;
  }

  body #histoire-linda .linda-carousel__dots {
    display: flex !important;
    margin-top: 12px;
  }

  body #coulisses .behind-scenes__video {
    object-fit: contain;
    object-position: center;
    background: #f8f4ec;
  }

  body #coulisses .behind-scenes__card:first-child .behind-scenes__video {
    object-position: center top;
  }
}

/* Final mobile hero video framing - full width, no side gap */
@media (max-width: 900px) {
  body .hero > .hero__media {
    width: 100% !important;
    max-width: none !important;
    min-width: 100% !important;
    height: min(120vw, 620px) !important;
    min-height: 420px !important;
    max-height: 620px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    overflow: hidden;
    background: #f7f0e7;
  }

  body .hero > .hero__media video,
  body .hero > .hero__media img,
  body .hero > .hero__media .hero__video {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 45% !important;
  }
}

@media (max-width: 480px) {
  body .hero > .hero__media {
    height: min(118vw, 520px) !important;
    min-height: 430px !important;
  }
}

/* Hero trust proof redesign - no photo background, clearer premium hierarchy */
body .hero-social-proof {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  margin-top: 24px;
  padding: 22px;
  overflow: hidden;
  color: #171717;
  border: 1px solid rgba(177, 132, 47, 0.22);
  border-radius: 30px;
  background: #fffaf2;
  box-shadow: 0 24px 70px rgba(47, 35, 17, 0.12);
}

body .hero-social-proof::after {
  display: none;
}

body .hero-social-proof::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #b78732, #f2d88b, #8f682a);
}

body .hero-social-proof__media {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 1;
  display: grid;
  width: 118px;
  height: 118px;
  place-items: center;
  border: 1px solid rgba(177, 132, 47, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.95), transparent 34%),
    linear-gradient(145deg, #f8e4a0, #bf8d33 60%, #805a20);
  box-shadow: 0 18px 34px rgba(126, 88, 29, 0.22);
  transform: none;
}

body .hero-social-proof__media::before {
  content: attr(data-proof-count);
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.85rem;
  font-weight: 700;
  line-height: 1;
}

body .hero-social-proof__media::after {
  content: "mariés";
  position: absolute;
  bottom: 26px;
  color: rgba(23, 23, 23, 0.72);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

body .hero-social-proof__content {
  display: block;
  min-width: 0;
  padding: 0;
}

body .hero-social-proof__label {
  margin: 0 0 8px;
  color: #9a6a21;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}

body .hero-social-proof strong {
  max-width: 760px;
  color: #171717;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.2vw, 2.55rem);
  font-weight: 500;
  line-height: 1.05;
}

body .hero-social-proof strong::first-line {
  color: inherit;
}

body .hero-social-proof p:not(.hero-social-proof__label) {
  max-width: 680px;
  margin: 12px 0 0;
  color: #5d574f;
  font-size: 1rem;
  line-height: 1.55;
}

body .hero-social-proof__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 720px;
  margin: 18px 0 0;
}

body .hero-social-proof__countries li {
  min-height: 36px;
  padding: 7px 11px;
  color: #2a261f;
  border: 1px solid rgba(177, 132, 47, 0.2);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 20px rgba(78, 58, 23, 0.06);
  backdrop-filter: none;
}

body .hero-social-proof__countries .country-flag {
  box-shadow: 0 0 0 1px rgba(23, 23, 23, 0.1);
}

body .hero-social-proof__link {
  width: fit-content;
  min-height: 48px;
  margin-top: 20px;
  color: #fffaf2;
  border: 1px solid #171717;
  background: #171717;
  box-shadow: 0 14px 28px rgba(23, 23, 23, 0.12);
}

body .hero-social-proof__link:hover,
body .hero-social-proof__link:focus-visible {
  color: #171717;
  border-color: #c59538;
  background: #f1d680;
}

@media (min-width: 901px) {
  body .hero > .hero__inner .hero-social-proof {
    width: 100%;
    max-width: 860px;
    min-height: 0;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    padding-right: 0;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body .hero > .hero__inner .hero-social-proof {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 20px;
  }

  body .hero > .hero__inner .hero-social-proof__media {
    display: none;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    font-size: clamp(1.35rem, 3vw, 1.9rem);
  }

  body .hero > .hero__inner .hero-social-proof p:not(.hero-social-proof__label) {
    font-size: 0.94rem;
  }
}

@media (max-width: 700px) {
  body .hero-social-proof {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 18px 18px;
    border-radius: 28px;
    text-align: center;
  }

  body .hero-social-proof::before {
    inset: 0 0 auto;
    width: auto;
    height: 6px;
  }

  body .hero-social-proof__media {
    width: 96px;
    height: 96px;
    margin-inline: auto;
  }

  body .hero-social-proof__media::before {
    font-size: 1.48rem;
  }

  body .hero-social-proof__media::after {
    bottom: 20px;
    font-size: 0.58rem;
  }

  body .hero-social-proof__content {
    text-align: center;
  }

  body .hero-social-proof strong {
    max-width: none;
    font-size: clamp(1.55rem, 8vw, 2rem);
  }

  body .hero-social-proof p:not(.hero-social-proof__label) {
    max-width: none;
    margin-top: 10px;
    font-size: 0.96rem;
  }

  body .hero-social-proof__countries {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: none;
  }

  body .hero-social-proof__countries li {
    justify-content: flex-start;
    min-width: 0;
    font-size: 0.72rem;
  }

  body .hero-social-proof__countries li span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  body .hero-social-proof__link {
    width: 100%;
  }
}

/* Typography rhythm pass inspired by refined ecommerce spacing */
body .hero > .hero__inner h1,
body .hero-mobile-summary h2 {
  letter-spacing: 0;
}

body .hero > .hero__inner h1 {
  max-width: 620px;
  font-size: clamp(3rem, 4.8vw, 4.6rem);
  line-height: 1.02;
}

body .hero > .hero__inner .hero__subtitle {
  max-width: 560px;
  margin-top: 18px;
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.58;
}

body .hero > .hero__inner .experience-note {
  margin-top: 22px;
  padding: 18px 20px;
}

body .hero > .hero__inner .experience-note strong {
  font-size: clamp(2.8rem, 4.4vw, 3.55rem);
}

body .hero > .hero__inner .experience-note span {
  font-size: 0.94rem;
  line-height: 1.42;
}

body .hero-social-proof {
  gap: 18px;
  margin-top: 20px;
  padding: 18px;
  border-radius: 24px;
}

body .hero-social-proof__media {
  width: 94px;
  height: 94px;
}

body .hero-social-proof__media::before {
  font-size: 1.42rem;
}

body .hero-social-proof__media::after {
  bottom: 19px;
  font-size: 0.54rem;
}

body .hero-social-proof__label {
  margin-bottom: 7px;
  font-size: 0.68rem;
}

body .hero-social-proof strong {
  font-size: clamp(1.38rem, 2.45vw, 2rem);
  line-height: 1.12;
}

body .hero-social-proof p:not(.hero-social-proof__label) {
  margin-top: 9px;
  font-size: 0.92rem;
  line-height: 1.48;
}

body .hero-social-proof__countries {
  gap: 7px;
  margin-top: 14px;
}

body .hero-social-proof__countries li {
  min-height: 32px;
  padding: 6px 9px;
  font-size: 0.7rem;
}

body .hero-social-proof__countries .country-flag {
  width: 22px;
  height: 15px;
  flex-basis: 22px;
}

body .hero-social-proof__link {
  min-height: 42px;
  margin-top: 16px;
  padding: 10px 16px;
  font-size: 0.82rem;
}

@media (min-width: 1181px) {
  body .hero > .hero__inner .hero-social-proof {
    grid-template-columns: 104px minmax(0, 1fr);
    max-width: 620px;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body .hero > .hero__inner h1 {
    font-size: clamp(2.65rem, 5vw, 3.65rem);
  }

  body .hero > .hero__inner .hero-social-proof {
    max-width: 100%;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    font-size: clamp(1.25rem, 2.55vw, 1.6rem);
  }
}

@media (max-width: 900px) {
  body .hero-mobile-summary {
    padding-block: 34px 38px;
  }

  body .hero-mobile-summary h2 {
    max-width: 9.8em;
    margin-inline: auto;
    font-size: clamp(2.05rem, 10.8vw, 3.25rem);
    line-height: 1.03;
  }

  body .hero-mobile-summary .experience-note {
    margin-top: 18px;
  }

  body .hero-mobile-summary .experience-note strong {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  body .hero-mobile-summary .experience-note span {
    font-size: 0.9rem;
    line-height: 1.42;
  }

  body .hero-social-proof {
    margin-top: 18px;
    padding: 17px 15px 16px;
    border-radius: 22px;
  }

  body .hero-social-proof__media {
    width: 82px;
    height: 82px;
  }

  body .hero-social-proof__media::before {
    font-size: 1.22rem;
  }

  body .hero-social-proof__media::after {
    bottom: 16px;
    font-size: 0.5rem;
  }

  body .hero-social-proof strong {
    font-size: clamp(1.26rem, 6.2vw, 1.72rem);
    line-height: 1.12;
  }

  body .hero-social-proof p:not(.hero-social-proof__label) {
    font-size: 0.88rem;
    line-height: 1.46;
  }
}

@media (max-width: 430px) {
  body .hero-mobile-summary h2 {
    font-size: clamp(2rem, 10vw, 2.85rem);
  }

  body .hero-social-proof__countries {
    grid-template-columns: 1fr;
  }

  body .hero-social-proof__countries li {
    justify-content: center;
  }
}

/* Desktop/tablet rhythm fix: avoid compressing the hero copy beside the video. */
@media (min-width: 901px) and (max-width: 1180px) {
  body .hero {
    display: grid;
    grid-template-columns: minmax(28px, 1fr) minmax(0, 860px) minmax(28px, 1fr) !important;
    grid-template-areas:
      ". hero-copy ."
      ". hero-media .";
    align-items: start;
    row-gap: 34px;
    padding-top: 46px;
  }

  body .hero > .hero__inner {
    grid-area: hero-copy !important;
    width: 100% !important;
    max-width: 860px !important;
    text-align: center;
    justify-items: center;
  }

  body .hero > .hero__inner .eyebrow,
  body .hero > .hero__inner h1,
  body .hero > .hero__inner .hero__subtitle {
    text-align: center;
  }

  body .hero > .hero__inner h1 {
    max-width: 780px;
    margin-inline: auto;
    font-size: clamp(3.1rem, 6vw, 4.15rem);
    line-height: 1;
  }

  body .hero > .hero__inner .hero__subtitle {
    max-width: 700px;
    margin-inline: auto;
  }

  body .hero > .hero__inner .experience-note,
  body .hero > .hero__inner .hero-social-proof,
  body .hero > .hero__inner .hero__actions {
    max-width: 760px;
    margin-inline: auto;
  }

  body .hero > .hero__inner .experience-note {
    grid-template-columns: 150px minmax(0, 1fr);
    text-align: left;
  }

  body .hero > .hero__media {
    grid-area: hero-media !important;
    width: 100% !important;
    max-width: 860px !important;
    height: clamp(380px, 48vw, 520px) !important;
    margin: 0 auto !important;
  }
}

/* web-50k-studio redesign layer - 2026-06-26
   Objectif: theme commercial premium sans changer les contenus ni la stack. */
:root {
  --zw-bg: #fbf7ef;
  --zw-bg-2: #fffdf8;
  --zw-paper: #ffffff;
  --zw-ink: #141414;
  --zw-muted: #625c52;
  --zw-soft: #ede2d0;
  --zw-line: rgba(151, 108, 45, 0.18);
  --zw-gold: #a77a2d;
  --zw-gold-2: #d9bc78;
  --zw-wine: #9f1d21;
  --zw-green: #0f8f6d;
  --zw-radius-lg: 30px;
  --zw-radius-md: 20px;
  --zw-shadow-soft: 0 22px 70px rgba(31, 24, 14, 0.10);
  --zw-shadow-card: 0 14px 40px rgba(31, 24, 14, 0.08);
  --zw-container: min(1180px, calc(100vw - 48px));
}

html {
  background: var(--zw-bg);
}

body {
  color: var(--zw-ink);
  background:
    radial-gradient(circle at 10% 8%, rgba(217, 188, 120, 0.14), transparent 28rem),
    linear-gradient(180deg, #fffdf8 0%, var(--zw-bg) 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
}

.container {
  width: var(--zw-container);
}

h1,
h2,
h3,
.hero h1,
.hero-mobile-summary h2,
.section-heading h2,
.team-section__header h2,
.linda-story__intro h2,
.behind-scenes__intro h2,
.catalogue-hero h1,
.detail-product h1 {
  color: var(--zw-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.012em;
  text-wrap: balance;
}

p,
li,
.hero__subtitle,
.linda-story__copy,
.section-heading p,
.team-section__header p,
.category-card p,
.product-card__description {
  color: var(--zw-muted);
  line-height: 1.62;
}

.eyebrow,
.hero-social-proof__label,
.product-card__category,
.section-kicker,
.category-page__eyebrow {
  color: var(--zw-gold);
  font-size: clamp(0.68rem, 0.76vw, 0.82rem);
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.top-bar {
  color: #fff;
  background: linear-gradient(90deg, #8f1619, #b31f24 45%, #721216);
  border: 0;
}

.top-bar__track span {
  font-size: clamp(0.82rem, 1vw, 0.94rem);
  letter-spacing: 0.08em;
}

.site-header {
  background: rgba(255, 253, 248, 0.94);
  border-bottom: 1px solid var(--zw-line);
  box-shadow: 0 12px 34px rgba(31, 24, 14, 0.06);
  backdrop-filter: blur(18px);
}

.header__inner {
  min-height: 86px;
}

.brand img {
  width: 66px;
  height: 66px;
  border: 1px solid rgba(167, 122, 45, 0.26);
  box-shadow: 0 8px 20px rgba(31, 24, 14, 0.08);
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 2.2vw, 2.15rem);
  font-weight: 500;
  letter-spacing: 0.16em;
}

.brand small {
  color: var(--zw-gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.primary-nav a {
  color: #4d473e;
  font-size: 0.88rem;
  font-weight: 800;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--zw-wine);
}

.btn,
button.btn,
.hero-social-proof__link,
.category-card__button,
.product-card .btn {
  min-height: 48px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.btn:hover,
button.btn:hover,
.hero-social-proof__link:hover,
.category-card__button:hover,
.product-card .btn:hover {
  transform: translateY(-1px);
}

.btn--primary,
.hero-social-proof__link,
.category-card__button {
  color: #fffdf8;
  border: 1px solid #151515;
  background: #151515;
}

.btn--primary:hover,
.btn--primary:focus-visible,
.hero-social-proof__link:hover,
.hero-social-proof__link:focus-visible {
  color: #151515;
  border-color: var(--zw-gold-2);
  background: var(--zw-gold-2);
}

.btn--secondary {
  color: #151515;
  border: 1px solid rgba(167, 122, 45, 0.38);
  background: rgba(255, 255, 255, 0.68);
}

@media (min-width: 1181px) {
  body .hero {
    display: grid;
    grid-template-columns:
      minmax(36px, 1fr)
      minmax(0, 530px)
      minmax(420px, 580px)
      minmax(36px, 1fr) !important;
    grid-template-areas: ". hero-copy hero-media .";
    gap: clamp(34px, 4vw, 58px);
    align-items: center;
    min-height: calc(100vh - 120px);
    padding: clamp(42px, 5vw, 72px) 0 clamp(52px, 6vw, 82px);
    background:
      linear-gradient(90deg, #fffdf8 0%, #fffaf2 52%, #efe2cf 52%, #f7efe2 100%);
    border-bottom: 1px solid var(--zw-line);
  }

  body .hero > .hero__inner {
    grid-area: hero-copy !important;
    width: 100% !important;
    max-width: 530px !important;
    padding: 0 !important;
    text-align: left;
    justify-items: start;
  }

  body .hero > .hero__media {
    grid-area: hero-media !important;
    width: 100% !important;
    max-width: 580px !important;
    height: clamp(580px, 58vw, 710px) !important;
    margin: 0 !important;
    overflow: hidden;
    border: 1px solid rgba(167, 122, 45, 0.24);
    border-radius: 38px;
    background: #eee3d3;
    box-shadow: 0 30px 90px rgba(31, 24, 14, 0.18);
  }
}

@media (min-width: 901px) {
  body .hero > .hero-mobile-summary {
    display: none !important;
  }
}

@media (min-width: 901px) and (max-width: 1180px) {
  body .hero {
    background:
      linear-gradient(180deg, #fffdf8 0%, #f8f1e5 100%);
    border-bottom: 1px solid var(--zw-line);
  }

  body .hero > .hero__media {
    border-radius: 34px;
    border: 1px solid rgba(167, 122, 45, 0.22);
    box-shadow: var(--zw-shadow-soft);
  }
}

body .hero > .hero__media video,
body .hero > .hero__media img {
  filter: saturate(0.96) contrast(1.04);
}

body .hero > .hero__inner .eyebrow {
  margin-bottom: 12px;
}

body .hero > .hero__inner h1 {
  max-width: 10.8em;
  margin: 0;
  font-size: clamp(3.3rem, 5.2vw, 5.05rem);
  line-height: 0.98;
}

body .hero > .hero__inner .hero__subtitle {
  max-width: 500px;
  margin-top: 22px;
  color: #555048;
  font-size: clamp(1rem, 1.05vw, 1.12rem);
  line-height: 1.62;
}

body .experience-note,
body .hero > .hero__inner .experience-note,
body .hero-mobile-summary .experience-note {
  overflow: hidden;
  color: #fffaf2;
  border: 1px solid rgba(217, 188, 120, 0.24);
  background:
    radial-gradient(circle at 14% 16%, rgba(217, 188, 120, 0.20), transparent 18rem),
    linear-gradient(145deg, #171717, #272016);
  box-shadow: 0 22px 60px rgba(23, 23, 23, 0.18);
}

body .experience-note strong,
body .hero > .hero__inner .experience-note strong,
body .hero-mobile-summary .experience-note strong {
  color: #f6d985;
}

body .experience-note span,
body .hero > .hero__inner .experience-note span,
body .hero-mobile-summary .experience-note span {
  color: rgba(255, 253, 248, 0.92);
  font-size: clamp(0.92rem, 0.96vw, 1rem);
  line-height: 1.5;
}

body .hero-social-proof {
  position: relative;
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 18px;
  max-width: 540px;
  margin-top: 20px;
  padding: 18px;
  overflow: hidden;
  color: var(--zw-ink);
  border: 1px solid rgba(167, 122, 45, 0.22);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 253, 248, 0.96), rgba(244, 233, 214, 0.94));
  box-shadow: var(--zw-shadow-card);
}

body .hero-social-proof::before {
  display: none;
}

body .hero-social-proof__media {
  width: 82px;
  height: 82px;
  background: linear-gradient(145deg, #151515, #3b2a12);
  box-shadow: inset 0 0 0 1px rgba(246, 217, 133, 0.18), 0 12px 22px rgba(23, 23, 23, 0.14);
}

body .hero-social-proof__media::before {
  color: #f6d985;
  font-size: 1.28rem;
}

body .hero-social-proof__media::after {
  bottom: 16px;
  color: rgba(255, 250, 242, 0.72);
  font-size: 0.5rem;
}

body .hero-social-proof strong {
  color: var(--zw-ink);
  font-size: clamp(1.28rem, 1.75vw, 1.76rem);
  line-height: 1.13;
}

body .hero-social-proof p:not(.hero-social-proof__label) {
  color: #5e574e;
  font-size: 0.86rem;
  line-height: 1.48;
}

body .hero-social-proof__countries {
  gap: 6px;
  margin-top: 12px;
}

body .hero-social-proof__countries li {
  min-height: 30px;
  padding: 5px 8px;
  border-color: rgba(167, 122, 45, 0.16);
  background: rgba(255, 255, 255, 0.78);
  font-size: 0.66rem;
}

body .hero-social-proof__link {
  min-height: 40px;
  margin-top: 14px;
  padding: 9px 15px;
  font-size: 0.78rem;
}

.section {
  position: relative;
  padding-block: clamp(58px, 7vw, 106px);
  background: var(--zw-bg-2);
  border-bottom: 1px solid var(--zw-line);
}

.section:nth-of-type(even) {
  background: linear-gradient(180deg, #fbf7ef, #fffdf8);
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.team-section__header h2,
.linda-story__intro h2,
.behind-scenes__intro h2 {
  max-width: 11em;
  font-size: clamp(2.35rem, 4.2vw, 4.6rem);
  line-height: 1;
}

.section-heading p,
.team-section__header p,
.linda-story__copy,
.behind-scenes__intro p:not(.eyebrow) {
  max-width: 660px;
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
}

.category-grid {
  gap: clamp(18px, 2.4vw, 28px);
}

.category-card,
.product-card,
.team-card,
.trust-story-case,
.linda-slide,
.behind-card,
.order-clarity-card,
.policy-card,
.contact__inner,
.faq-item,
.detail-product__content,
.catalogue-filters {
  overflow: hidden;
  border: 1px solid rgba(167, 122, 45, 0.18);
  border-radius: var(--zw-radius-lg);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: var(--zw-shadow-card);
}

.category-card {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-card:hover,
.category-card:focus-visible,
.product-card:hover {
  border-color: rgba(167, 122, 45, 0.34);
  box-shadow: var(--zw-shadow-soft);
  transform: translateY(-2px);
}

.category-card img {
  width: 100%;
  height: clamp(220px, 22vw, 310px);
  object-fit: cover;
  object-position: center;
  background: #f3eadc;
}

.category-card > div {
  padding: clamp(20px, 2vw, 28px);
}

.category-card h3 {
  position: relative;
  margin: 0 0 10px;
  padding-left: 18px;
  color: #8b5b18;
  font-size: clamp(1.28rem, 1.5vw, 1.65rem);
  line-height: 1.12;
}

.category-card h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.12em;
  width: 6px;
  height: 1.45em;
  border-radius: 999px;
  background: currentColor;
}

.category-card--acrylique h3 {
  color: #176174;
}

.category-card--gifts h3 {
  color: #19704f;
}

.category-card--carton h3 {
  color: #a5651b;
}

.product-grid,
.category-product-grid {
  gap: clamp(16px, 2vw, 28px);
}

.product-card {
  border-radius: 26px;
}

.product-card__media {
  background: #f3eadc;
}

.product-card__media img {
  transition: transform 220ms ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.025);
}

.product-card__body {
  padding: 18px;
}

.product-card h3 {
  font-size: clamp(1rem, 1.15vw, 1.18rem);
  line-height: 1.25;
}

.product-card__price,
.price {
  color: #111;
  font-weight: 950;
}

.featured-trend,
.behind-scenes {
  color: #fffaf2;
  background:
    radial-gradient(circle at 84% 16%, rgba(217, 188, 120, 0.22), transparent 28rem),
    linear-gradient(135deg, #10100f, #231d15 58%, #3a2414);
}

.featured-trend h2,
.behind-scenes h2,
.featured-trend p,
.behind-scenes p {
  color: inherit;
}

.featured-trend__stage,
.behind-card {
  border: 1px solid rgba(246, 217, 133, 0.24);
  background: rgba(255, 253, 248, 0.08);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.team-section {
  background: linear-gradient(180deg, #fffdf8, #f6eddf);
}

.team-card__portrait {
  background: #efe4d4;
}

.linda-story,
#histoire-linda {
  background:
    linear-gradient(180deg, #fffdf8 0%, #fbf7ef 100%);
}

.trust-story-case {
  background: #fffdf8;
}

.linda-carousel__viewport {
  padding-block: 8px 18px;
}

.linda-slide {
  background: #fffdf8;
}

.linda-slide__media video,
.linda-slide__media img {
  object-fit: cover;
  background: #eee5d8;
}

.order-clarity {
  background: #fffdf8;
}

.order-clarity-grid {
  gap: 18px;
}

.order-clarity-card {
  min-height: 190px;
  padding: 24px;
}

.order-clarity-card__icon {
  border-color: rgba(167, 122, 45, 0.22);
  background: #fbf3e5;
}

.contact__inner {
  padding: clamp(26px, 4vw, 48px);
  background:
    linear-gradient(135deg, #fffdf8, #f7ecda);
}

.footer {
  background: #111;
  color: rgba(255, 253, 248, 0.76);
}

.footer strong,
.footer a {
  color: #fffdf8;
}

.modal__panel,
.quote-modal,
#orderModal .modal__panel,
#detailOrderModal .modal__panel {
  border: 1px solid rgba(167, 122, 45, 0.22);
  border-radius: 34px;
  background: #fffdf8;
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
}

.modal__panel input,
.modal__panel select,
.modal__panel textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 54px;
  border: 1px solid rgba(167, 122, 45, 0.24);
  border-radius: 18px;
  background: #fff;
  color: var(--zw-ink);
}

.quote-result {
  border-color: rgba(167, 122, 45, 0.18);
  background: linear-gradient(180deg, #fffaf2, #fffdf8);
}

.quote-result__final {
  background: #111 !important;
}

.quote-result__final dt,
.quote-result__final dd {
  color: #fffaf2 !important;
}

@media (max-width: 900px) {
  :root {
    --zw-container: min(100vw - 32px, 640px);
  }

  body .hero > .hero__inner {
    display: none !important;
  }

  body {
    background: #fffdf8;
  }

  .site-header {
    position: sticky;
    top: 0;
    z-index: 40;
  }

  .header__inner {
    min-height: 82px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.42rem;
  }

  body .hero {
    background: #fffdf8;
  }

  body .hero > .hero__media {
    height: min(108vw, 520px) !important;
    min-height: 370px !important;
    border-radius: 0 0 26px 26px;
  }

  body .hero-mobile-summary {
    padding: 34px 0 42px;
  }

  body .hero-mobile-summary h2 {
    max-width: 10.2em;
    font-size: clamp(2.18rem, 10.2vw, 3.05rem);
    line-height: 1.02;
  }

  body .hero-mobile-summary .experience-note {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 20px;
    padding: 20px;
    border-radius: 26px;
    text-align: center;
  }

  body .hero-mobile-summary .experience-note strong {
    min-width: 0;
    min-height: 78px;
    font-size: clamp(2.4rem, 13vw, 3.4rem);
  }

  body .hero-mobile-summary .experience-note strong::before {
    inset: -12px 26px;
  }

  body .hero-mobile-summary .hero-social-proof {
    grid-template-columns: 1fr;
    width: 100%;
    max-width: none;
    padding: 18px;
    text-align: left;
  }

  body .hero-mobile-summary .hero-social-proof__media {
    display: none;
  }

  body .hero-mobile-summary .hero-social-proof strong {
    font-size: clamp(1.45rem, 6vw, 1.82rem);
  }

  body .hero-mobile-summary .hero-social-proof__countries {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    margin-inline: -2px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }

  body .hero-mobile-summary .hero-social-proof__countries li {
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .section {
    padding-block: 54px;
  }

  .section-heading h2,
  .team-section__header h2,
  .linda-story__intro h2,
  .behind-scenes__intro h2 {
    font-size: clamp(2.1rem, 10vw, 3.15rem);
  }

  .category-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .category-card img {
    height: clamp(230px, 58vw, 340px);
  }

  .category-card > div {
    padding: 20px;
  }

  .product-grid,
  .category-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-card {
    border-radius: 18px;
  }

  .product-card__body {
    padding: 12px;
  }

  .product-card h3 {
    font-size: 0.88rem;
  }

  .product-card .btn {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.78rem;
  }

  .team-section .team-grid {
    padding-inline: 16px;
  }

  .modal__panel,
  #orderModal .modal__panel,
  #detailOrderModal .modal__panel {
    width: min(100vw - 20px, 560px);
    max-height: calc(100vh - 20px);
    border-radius: 26px;
  }
}

@media (max-width: 430px) {
  :root {
    --zw-container: calc(100vw - 28px);
  }

  .top-bar__track span {
    font-size: 0.74rem;
  }

  body .hero-mobile-summary h2 {
    font-size: clamp(2rem, 9.2vw, 2.55rem);
  }

  .product-grid,
  .category-product-grid {
    gap: 10px;
  }

  .product-card__media {
    aspect-ratio: 4 / 5;
  }

  .product-card__description {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Final web-50k studio control pass: prevent legacy hero rules from stretching the redesign. */
@media (min-width: 901px) {
  body .hero {
    min-height: auto !important;
    align-items: center !important;
  }

  body .hero > .hero__inner {
    height: auto !important;
    min-height: 0 !important;
    align-self: center !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  body .hero > .hero__inner > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body .hero > .hero__inner .hero-social-proof {
    max-width: 520px !important;
    margin-top: 2px !important;
  }

  body .hero > .hero__inner h1 {
    max-width: 520px !important;
    font-size: clamp(2.75rem, 3.55vw, 3.55rem) !important;
    line-height: 1.02 !important;
  }

  body .hero > .hero__inner .hero__subtitle {
    max-width: 500px !important;
    font-size: 0.98rem !important;
    line-height: 1.54 !important;
  }

  body .hero > .hero__inner .experience-note {
    grid-template-columns: 116px 1fr !important;
    align-items: center !important;
    padding: 16px 18px !important;
  }

  body .hero > .hero__inner .experience-note strong {
    min-height: 74px !important;
    font-size: clamp(2.65rem, 4vw, 3.25rem) !important;
  }

  body .hero > .hero__inner .experience-note span {
    font-size: 0.9rem !important;
    line-height: 1.34 !important;
  }

  body .hero > .hero__inner .hero-social-proof {
    display: block !important;
    padding: 16px !important;
  }

  body .hero > .hero__inner .hero-social-proof__media {
    display: none !important;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    display: block !important;
    font-size: clamp(1.16rem, 1.55vw, 1.42rem) !important;
    line-height: 1.15 !important;
  }

  body .hero > .hero__inner .hero-social-proof p:not(.hero-social-proof__label) {
    display: none !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    max-height: none !important;
    overflow: hidden !important;
    gap: 5px !important;
    margin-top: 10px !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li {
    min-height: 26px !important;
    padding: 4px 7px !important;
    font-size: 0.58rem !important;
  }

  body .hero > .hero__inner .hero__actions {
    margin-top: 4px !important;
  }
}

@media (min-width: 1181px) {
  body .hero {
    padding-block: clamp(34px, 4vw, 58px) !important;
  }

  body .hero > .hero__media {
    height: clamp(500px, 48vw, 640px) !important;
  }
}
/* Hero proof CTA set - replaces the single review button with three clear actions. */
body .hero-social-proof__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: .7rem;
  margin-top: 1.25rem;
}

body .hero-social-proof__actions .hero-social-proof__link {
  width: 100%;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(150, 111, 48, .28);
  font: 800 .98rem/1.15 var(--font-body);
  text-align: center;
  text-decoration: none;
  letter-spacing: 0;
  box-shadow: 0 16px 34px rgba(28, 24, 18, .08);
}

body .hero-social-proof__link--primary {
  background: #111;
  color: #fff;
  border-color: #111;
}

body .hero-social-proof__link--whatsapp {
  background: #16976f;
  color: #fff;
  border-color: #16976f;
}

body .hero-social-proof__link--outline {
  background: #fffdf8;
  color: #1b1b18;
  border-color: rgba(150, 111, 48, .42);
}

body .hero-social-proof__actions .hero-social-proof__link:hover,
body .hero-social-proof__actions .hero-social-proof__link:focus-visible {
  transform: translateY(-1px);
}

@media (min-width: 760px) {
  body .hero-social-proof__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body .hero-social-proof__actions {
    gap: .6rem;
    margin-top: 1rem;
  }

  body .hero-social-proof__actions .hero-social-proof__link {
    min-height: 48px;
    padding: .78rem .95rem;
    font-size: .9rem;
  }
}

/* Linda story media framing fix: active images/videos must fill the card on mobile and desktop. */
body #histoire-linda .linda-carousel {
  max-width: min(100%, 1280px);
}

body #histoire-linda .linda-carousel__viewport {
  width: 100%;
}

body #histoire-linda .linda-carousel__track {
  align-items: stretch;
}

body #histoire-linda .linda-slide {
  display: flex;
  flex-direction: column;
}

body #histoire-linda .linda-slide__media {
  display: block;
  width: 100%;
  flex: 0 0 auto;
}

body #histoire-linda .linda-slide__media img,
body #histoire-linda .linda-slide__media video {
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
}

body #histoire-linda .linda-slide:nth-of-type(1) .linda-slide__media img {
  object-position: center top !important;
}

body #histoire-linda .linda-carousel--natasha .linda-slide__media--safe-contain {
  background: linear-gradient(180deg, #fffaf4 0%, #efe5d8 100%) !important;
}

body #histoire-linda .linda-carousel--natasha .linda-slide__media--safe-contain img {
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(180deg, #fffaf4 0%, #efe5d8 100%) !important;
}

@media (max-width: 700px) {
  body #histoire-linda .linda-carousel {
    padding-inline: 18px;
  }

  body #histoire-linda .linda-carousel__viewport {
    padding-block: 12px 14px;
  }

  body #histoire-linda .linda-slide {
    flex: 0 0 calc(100vw - 44px) !important;
    min-width: calc(100vw - 44px) !important;
    max-width: calc(100vw - 44px) !important;
    border-radius: 24px;
  }

  body #histoire-linda .linda-slide__media {
    aspect-ratio: 4 / 3;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
  }

body #histoire-linda .linda-slide__content {
    min-height: 112px;
  }
}

/* Team LinkedIn profile link */
body .team-card__role-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: .15rem;
}

body .team-card__role-row .team-card__role {
  margin: 0;
  min-width: 0;
}

body .team-card__actions {
  display: inline-flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: flex-end;
  gap: .55rem;
  min-width: max-content;
}

body .team-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex: 0 0 auto;
  width: fit-content;
  min-height: 38px;
  margin: 0;
  padding: .55rem .85rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  background: #0a66c2;
  box-shadow: 0 12px 24px rgba(10, 102, 194, .18);
}

body .team-card__linkedin svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

body .team-card__linkedin:hover,
body .team-card__linkedin:focus-visible {
  background: #084f95;
  outline: 3px solid rgba(10, 102, 194, .22);
  outline-offset: 2px;
}

@media (max-width: 700px) {
  body .team-card__role-row {
    align-items: flex-start;
    gap: 8px;
  }

  body .team-card__role-row .team-card__role {
    font-size: .88rem;
    line-height: 1.2;
  }

  body .team-card__actions {
    align-items: flex-end;
    gap: .45rem;
  }

  body .team-card__linkedin {
    min-height: 32px;
    padding: .44rem .64rem;
    font-size: .78rem;
  }
}

/* Final trust redesign for the 4-year experience card */
body .hero .experience-note,
body .hero > .hero__inner .experience-note,
body .hero-mobile-summary .experience-note {
  position: relative !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(16px, 3vw, 28px) !important;
  width: min(100%, 980px) !important;
  margin: clamp(22px, 4vw, 34px) auto !important;
  padding: clamp(18px, 3vw, 28px) !important;
  color: #161616 !important;
  text-align: left !important;
  border: 1px solid rgba(180, 132, 43, .34) !important;
  border-radius: 28px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, .98), rgba(255, 250, 239, .96)),
    radial-gradient(circle at 12% 20%, rgba(196, 154, 71, .16), transparent 36%) !important;
  box-shadow: 0 24px 60px rgba(74, 52, 18, .12) !important;
  overflow: hidden !important;
}

body .hero .experience-note::before,
body .hero > .hero__inner .experience-note::before,
body .hero-mobile-summary .experience-note::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 6px !important;
  border-radius: 28px 0 0 28px !important;
  background: linear-gradient(180deg, #f1d88a, #9b6b1f) !important;
}

body .hero .experience-note::after,
body .hero > .hero__inner .experience-note::after,
body .hero-mobile-summary .experience-note::after {
  content: "Confiance  •  Qualité  •  Accompagnement" !important;
  position: absolute !important;
  right: clamp(14px, 2vw, 22px) !important;
  top: clamp(12px, 1.8vw, 18px) !important;
  color: rgba(133, 96, 34, .78) !important;
  font-family: var(--font-sans) !important;
  font-size: .66rem !important;
  font-weight: 900 !important;
  letter-spacing: .14em !important;
  text-transform: uppercase !important;
}

body .hero .experience-note strong,
body .hero > .hero__inner .experience-note strong,
body .hero-mobile-summary .experience-note strong {
  display: inline-flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  min-width: clamp(132px, 16vw, 180px) !important;
  padding: clamp(14px, 2vw, 18px) clamp(16px, 2.5vw, 24px) !important;
  color: #8d671f !important;
  font-family: var(--font-serif) !important;
  font-size: clamp(3.1rem, 7vw, 5.5rem) !important;
  font-weight: 800 !important;
  line-height: .85 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, #fff8df, #ffffff 52%, #f2df9d) !important;
  box-shadow:
    inset 0 0 0 1px rgba(174, 126, 35, .22),
    0 16px 34px rgba(141, 103, 31, .14) !important;
}

body .hero .experience-note strong::before,
body .hero .experience-note strong::after,
body .hero > .hero__inner .experience-note strong::before,
body .hero > .hero__inner .experience-note strong::after,
body .hero-mobile-summary .experience-note strong::before,
body .hero-mobile-summary .experience-note strong::after {
  content: none !important;
  display: none !important;
}

body .hero .experience-note span,
body .hero > .hero__inner .experience-note span,
body .hero-mobile-summary .experience-note span {
  display: block !important;
  max-width: 620px !important;
  margin: 0 !important;
  color: #242424 !important;
  font-family: var(--font-sans) !important;
  font-size: clamp(1rem, 1.65vw, 1.18rem) !important;
  font-weight: 850 !important;
  line-height: 1.45 !important;
  text-align: left !important;
}

@media (max-width: 700px) {
  body .hero .experience-note,
  body .hero > .hero__inner .experience-note,
  body .hero-mobile-summary .experience-note {
    grid-template-columns: 1fr !important;
    justify-items: center !important;
    gap: 14px !important;
    width: 100% !important;
    margin: 20px auto 18px !important;
    padding: 22px 18px 20px !important;
    text-align: center !important;
    border-radius: 26px !important;
  }

  body .hero .experience-note::after,
  body .hero > .hero__inner .experience-note::after,
  body .hero-mobile-summary .experience-note::after {
    position: static !important;
    order: -1 !important;
    width: 100% !important;
    margin-bottom: 2px !important;
    text-align: center !important;
    font-size: .58rem !important;
    letter-spacing: .12em !important;
  }

  body .hero .experience-note strong,
  body .hero > .hero__inner .experience-note strong,
  body .hero-mobile-summary .experience-note strong {
    width: min(100%, 210px) !important;
    min-width: 0 !important;
    padding: 14px 16px !important;
    font-size: clamp(3rem, 15vw, 4.2rem) !important;
  }

  body .hero .experience-note span,
  body .hero > .hero__inner .experience-note span,
  body .hero-mobile-summary .experience-note span {
    max-width: 28rem !important;
    font-size: .96rem !important;
    line-height: 1.44 !important;
    text-align: center !important;
  }
}

/* 2026-06-27 legibility lock: remove illegible white text on bright media sections. */
body #coulisses.behind-scenes,
body .behind-scenes {
  color: #171717 !important;
  background:
    radial-gradient(circle at 12% 10%, rgba(218, 190, 124, .22), transparent 30rem),
    linear-gradient(180deg, #fffdf8 0%, #f8f0e4 100%) !important;
}

body #coulisses.behind-scenes::before,
body .behind-scenes::before {
  background:
    radial-gradient(circle at 18% 10%, rgba(167, 122, 45, .16), transparent 26rem),
    linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, 0)) !important;
}

body #coulisses .behind-scenes__intro {
  max-width: 960px !important;
  margin-bottom: clamp(24px, 4vw, 42px) !important;
  padding: clamp(22px, 3vw, 34px) !important;
  color: #171717 !important;
  border: 1px solid rgba(167, 122, 45, .18) !important;
  border-radius: 28px !important;
  background: rgba(255, 253, 248, .92) !important;
  box-shadow: 0 22px 60px rgba(49, 37, 19, .09) !important;
}

body #coulisses .behind-scenes__intro .eyebrow {
  color: #8a6625 !important;
}

body #coulisses .behind-scenes__intro h2,
body #coulisses .behind-scenes__intro p,
body #coulisses .behind-scenes__intro p:not(.eyebrow),
body #coulisses .behind-card__content h3,
body #coulisses .behind-card__content p,
body #coulisses .behind-card__content span {
  color: #171717 !important;
  text-shadow: none !important;
}

body #coulisses .behind-scenes__intro p:not(.eyebrow),
body #coulisses .behind-card__content p {
  color: #5f594f !important;
}

body #coulisses .behind-card,
body #coulisses .behind-card--featured {
  color: #171717 !important;
  background: #fffdf8 !important;
  border-color: rgba(167, 122, 45, .22) !important;
  box-shadow: 0 20px 54px rgba(49, 37, 19, .12) !important;
}

body #coulisses .behind-card__media {
  background: #171717 !important;
}

body #coulisses .behind-card__media::after {
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .16)) !important;
}

body #modele-tendance.featured-trend .featured-trend__copy,
body #modele-tendance.featured-trend .featured-trend__copy h2,
body #modele-tendance.featured-trend .featured-trend__copy > p {
  text-shadow: 0 2px 18px rgba(0, 0, 0, .46) !important;
}

/* 2026-06-27 featured trend readability: keep the trend copy dark and premium. */
body #modele-tendance.featured-trend {
  color: #171717 !important;
  background:
    radial-gradient(circle at 88% 16%, rgba(178, 133, 48, .14), transparent 28rem),
    linear-gradient(135deg, #fffdf8 0%, #f7efe2 52%, #ffffff 100%) !important;
  border-block: 1px solid rgba(167, 122, 45, .18) !important;
}

body #modele-tendance.featured-trend .featured-trend__inner {
  align-items: center !important;
}

body #modele-tendance.featured-trend .featured-trend__copy {
  max-width: 720px !important;
  color: #171717 !important;
  text-shadow: none !important;
}

body #modele-tendance.featured-trend .featured-trend__copy .eyebrow {
  color: #8a6625 !important;
}

body #modele-tendance.featured-trend .featured-trend__copy h2 {
  color: #171717 !important;
  text-shadow: none !important;
}

body #modele-tendance.featured-trend .featured-trend__copy > p {
  max-width: 620px !important;
  color: #5f594f !important;
  text-shadow: none !important;
}

body #modele-tendance.featured-trend .featured-trend__stage {
  border-color: rgba(167, 122, 45, .28) !important;
  background: #171717 !important;
  box-shadow: 0 30px 76px rgba(49, 37, 19, .18) !important;
}

@media (max-width: 700px) {
  body #coulisses .behind-scenes__intro {
    padding: 22px 18px !important;
    border-radius: 24px !important;
  }

  body #coulisses .behind-scenes__intro h2 {
    font-size: clamp(2rem, 11vw, 3.05rem) !important;
    line-height: 1.02 !important;
  }
}

/* 2026-06-27 automatic country marquee for the hero trust proof on mobile. */
body .hero-social-proof__countries li[data-hero-country-clone="true"] {
  display: none;
}

body .hero-social-proof__countries-marquee {
  max-width: 100%;
  margin: 18px 0 0;
}

body .hero-social-proof__countries-marquee .hero-social-proof__countries {
  margin: 0;
}

@keyframes zaangaHeroCountryMarquee {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (max-width: 700px) {
  body .hero-social-proof__countries-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding-block: 3px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 89%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 11%, #000 89%, transparent 100%);
  }

  body .hero-social-proof__countries-marquee .hero-social-proof__countries.is-marquee-ready {
    display: flex !important;
    grid-template-columns: none !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    width: max-content !important;
    max-width: none !important;
    gap: 10px !important;
    padding: 0 !important;
    list-style: none !important;
    animation: zaangaHeroCountryMarquee 24s linear infinite;
    will-change: transform;
  }

  body .hero-social-proof__countries-marquee .hero-social-proof__countries.is-marquee-ready li,
  body .hero-social-proof__countries-marquee .hero-social-proof__countries.is-marquee-ready li[data-hero-country-clone="true"] {
    display: inline-flex !important;
    flex: 0 0 auto !important;
    justify-content: flex-start !important;
    min-width: max-content !important;
    overflow: visible !important;
    white-space: nowrap !important;
  }

  body .hero-social-proof__countries-marquee:hover .hero-social-proof__countries,
  body .hero-social-proof__countries-marquee:focus-within .hero-social-proof__countries {
    animation-play-state: paused;
  }
}

@media (prefers-reduced-motion: reduce) {
  body .hero-social-proof__countries-marquee {
    overflow-x: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }

  body .hero-social-proof__countries-marquee .hero-social-proof__countries.is-marquee-ready {
    animation: none !important;
  }

  body .hero-social-proof__countries li[data-hero-country-clone="true"] {
    display: none !important;
  }
}

/* 2026-06-27: Informations importantes in one clear premium block. */
body .order-clarity {
  padding-block: clamp(52px, 7vw, 92px);
  background: linear-gradient(180deg, #fffdf8 0%, #fbf5ea 100%);
}

body .order-clarity > .container {
  position: relative;
  overflow: hidden;
  max-width: 1120px;
  padding: clamp(24px, 4vw, 54px);
  border: 1px solid rgba(151, 109, 42, 0.2);
  border-radius: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at top right, rgba(200, 161, 82, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 238, 0.96));
  box-shadow: 0 30px 90px rgba(55, 42, 24, 0.1);
}

body .order-clarity > .container::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  background: linear-gradient(180deg, #d9ba68, #9a6f2d);
}

body .order-clarity__heading {
  max-width: 760px;
  margin: 0;
}

body .order-clarity__heading h2 {
  max-width: 680px;
  font-size: clamp(2.05rem, 4.2vw, 4.2rem);
  line-height: 0.98;
}

body .order-clarity__heading p:not(.eyebrow) {
  max-width: 650px;
  color: #665f54;
}

body .order-clarity-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-top: clamp(24px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(151, 109, 42, 0.16);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

body .order-clarity-card {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 18px;
  min-height: 0;
  padding: clamp(20px, 3vw, 30px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

body .order-clarity-card:nth-child(odd) {
  border-right: 1px solid rgba(151, 109, 42, 0.14);
}

body .order-clarity-card:nth-child(n + 3) {
  border-top: 1px solid rgba(151, 109, 42, 0.14);
}

body .order-clarity-card:nth-child(5) {
  grid-column: 1 / -1;
  border-right: 0;
}

body .order-clarity-card::before {
  display: none;
}

body .order-clarity-card__icon {
  grid-row: span 2;
  margin: 0;
  width: 54px;
  height: 54px;
  color: #8a692a;
  border-color: rgba(151, 109, 42, 0.22);
  background: #fff8e9;
  box-shadow: none;
}

body .order-clarity-card--payment .order-clarity-card__icon {
  color: #ffffff;
  background: #172436;
  border-color: #172436;
}

body .order-clarity-card__number {
  position: static;
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: start;
  color: rgba(151, 109, 42, 0.28);
  font-size: clamp(1.8rem, 2.5vw, 2.35rem);
}

body .order-clarity-card h3 {
  padding: 0;
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  line-height: 1.12;
}

body .order-clarity-card p {
  margin-top: 7px;
  max-width: 36ch;
  font-size: 0.94rem;
  line-height: 1.5;
}

@media (max-width: 700px) {
  body .order-clarity {
    padding-block: 36px;
  }

  body .order-clarity > .container {
    width: calc(100% - 32px);
    padding: 24px 18px;
    border-radius: 28px;
  }

  body .order-clarity > .container::before {
    width: 5px;
  }

  body .order-clarity__heading h2 {
    max-width: 10ch;
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  body .order-clarity__heading p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.52;
  }

  body .order-clarity-grid {
    grid-template-columns: 1fr;
    margin-top: 22px;
    border-radius: 24px;
  }

  body .order-clarity-card,
  body .order-clarity-card:nth-child(odd),
  body .order-clarity-card:nth-child(n + 3) {
    border-right: 0;
    border-top: 0;
  }

  body .order-clarity-card + .order-clarity-card {
    border-top: 1px solid rgba(151, 109, 42, 0.14);
  }

  body .order-clarity-card {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    column-gap: 12px;
    padding: 17px 14px;
  }

  body .order-clarity-card__icon {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  body .order-clarity-card__icon svg {
    width: 20px;
    height: 20px;
  }

  body .order-clarity-card__number {
    font-size: 1.35rem;
  }

  body .order-clarity-card h3 {
    font-size: 1.05rem;
  }

  body .order-clarity-card p {
    margin-top: 5px;
    font-size: 0.87rem;
  }
}

/* Desktop symmetry pass - keeps the mobile layout intact while rebalancing wide screens. */
@media (min-width: 1024px) {
  body {
    overflow-x: hidden;
  }

  body .container {
    width: min(100% - 96px, 1180px);
    max-width: 1180px;
  }

  body .section {
    padding-block: clamp(72px, 7vw, 108px);
  }

  body .section-heading,
  body .team-section__header,
  body .linda-story__intro,
  body .behind-scenes__intro {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
  }

  body .section-heading h2,
  body .team-section__header h2,
  body .linda-story__intro h2,
  body .behind-scenes__intro h2,
  body .featured-trend__copy h2 {
    font-size: clamp(2.55rem, 4vw, 4.6rem) !important;
    line-height: 1.03 !important;
    letter-spacing: 0 !important;
  }

  body .section-heading p:not(.eyebrow),
  body .team-section__header p,
  body .linda-story__intro p,
  body .behind-scenes__intro p,
  body .featured-trend__copy p {
    font-size: 1.03rem !important;
    line-height: 1.68 !important;
  }

  body .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    align-items: center !important;
    column-gap: clamp(48px, 5vw, 76px) !important;
    min-height: auto !important;
    padding: clamp(56px, 6vw, 86px) 0 !important;
    background: #fffdf8 !important;
  }

  body .hero > .hero-mobile-summary {
    display: none !important;
  }

  body .hero > .hero__inner {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    align-self: center !important;
    width: min(540px, calc(50vw - 48px)) !important;
    max-width: 540px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  body .hero > .hero__inner > * {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
  }

  body .hero > .hero__media {
    position: relative !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    inset: auto !important;
    width: min(580px, calc(50vw - 48px)) !important;
    max-width: 580px !important;
    height: clamp(520px, 42vw, 640px) !important;
    min-height: 0 !important;
    margin: 0 !important;
    border-radius: 34px !important;
    overflow: hidden !important;
    box-shadow: 0 34px 90px rgba(48, 35, 18, 0.17) !important;
  }

  body .hero > .hero__media video,
  body .hero > .hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body .hero > .hero__inner h1 {
    max-width: 540px !important;
    font-size: clamp(2.75rem, 3.55vw, 3.75rem) !important;
    line-height: 1.02 !important;
  }

  body .hero > .hero__inner .hero__subtitle {
    max-width: 510px !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  body .hero > .hero__inner .experience-note {
    width: 100% !important;
    min-height: 0 !important;
    margin: 6px 0 0 !important;
    padding: 18px 20px !important;
    display: grid !important;
    grid-template-columns: 128px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 18px !important;
    border-radius: 26px !important;
    background: #fffaf0 !important;
    color: #171717 !important;
    box-shadow: 0 18px 48px rgba(42, 32, 16, 0.08) !important;
  }

  body .hero > .hero__inner .experience-note::before,
  body .hero > .hero__inner .experience-note::after {
    display: none !important;
  }

  body .hero > .hero__inner .experience-note strong {
    width: 128px !important;
    min-width: 128px !important;
    padding: 14px 10px !important;
    font-size: 3.05rem !important;
    line-height: 0.95 !important;
    border-radius: 22px !important;
    text-align: center !important;
    background: linear-gradient(180deg, #fff9df, #f5dfa1) !important;
    color: #967229 !important;
  }

  body .hero > .hero__inner .experience-note span {
    max-width: none !important;
    font-size: 0.98rem !important;
    line-height: 1.45 !important;
    text-align: left !important;
    color: #24201a !important;
  }

  body .hero > .hero__inner .hero-social-proof {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 22px !important;
    border-radius: 28px !important;
    background: #fffaf2 !important;
    color: #1d1d1b !important;
    box-shadow: 0 18px 52px rgba(43, 33, 17, 0.09) !important;
  }

  body .hero > .hero__inner .hero-social-proof__content {
    max-width: none !important;
    text-align: left !important;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    max-width: 450px !important;
    font-size: 1.55rem !important;
    line-height: 1.18 !important;
    text-align: left !important;
  }

  body .hero > .hero__inner .hero-social-proof p {
    max-width: 470px !important;
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    text-align: left !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries-marquee {
    overflow: visible !important;
    margin: 14px 0 0 !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
    overflow: visible !important;
    transform: none !important;
    animation: none !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li {
    min-width: 0 !important;
    padding: 8px 10px !important;
    border-radius: 999px !important;
    font-size: 0.84rem !important;
    white-space: nowrap !important;
  }

  body .hero > .hero__inner .hero-social-proof__actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    margin-top: 18px !important;
  }

  body .hero > .hero__inner .hero-social-proof__link {
    min-height: 50px !important;
    border-radius: 999px !important;
    font-size: 0.96rem !important;
  }

  body .hero > .hero__inner .hero__actions {
    display: none !important;
  }

  body .team-section {
    padding-block: clamp(72px, 7vw, 104px) !important;
  }

  body .team-section__header {
    margin-bottom: 34px !important;
  }

  body .team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
    overflow: visible !important;
    padding: 0 !important;
    scroll-snap-type: none !important;
  }

  body .team-card {
    min-width: 0 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-rows: 310px auto !important;
    border-radius: 30px !important;
    overflow: hidden !important;
    box-shadow: 0 24px 62px rgba(45, 34, 18, 0.08) !important;
  }

  body .team-card--founder {
    grid-column: span 1 !important;
  }

  body .team-card__portrait,
  body .team-card img {
    width: 100% !important;
    height: 310px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body .team-card__body {
    padding: 22px 24px 24px !important;
  }

  body .team-card h3 {
    font-size: 1.45rem !important;
    line-height: 1.12 !important;
  }

  body .team-card__role-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
  }

  body #histoire-linda {
    padding-block: clamp(76px, 7vw, 112px) !important;
  }

  body #histoire-linda .linda-story__intro {
    margin-bottom: 34px !important;
  }

  body #histoire-linda .linda-carousel {
    width: min(100% - 96px, 1180px) !important;
    max-width: 1180px !important;
    margin-inline: auto !important;
  }

  body #histoire-linda .linda-carousel + .story-client-heading {
    margin-top: 58px !important;
  }

  body #histoire-linda .linda-slide {
    flex: 0 0 min(540px, 40vw) !important;
    min-width: min(540px, 40vw) !important;
    max-width: 540px !important;
    border-radius: 30px !important;
  }

  body #histoire-linda .linda-slide.is-active {
    flex-basis: min(620px, 46vw) !important;
    min-width: min(620px, 46vw) !important;
    max-width: 620px !important;
  }

  body #histoire-linda .linda-slide__media {
    aspect-ratio: 16 / 11 !important;
    min-height: 0 !important;
  }

  body #histoire-linda .linda-slide__content {
    min-height: 120px !important;
    padding: 22px 24px !important;
  }

  body #histoire-linda .linda-slide__content h3 {
    font-size: 1.65rem !important;
    line-height: 1.16 !important;
  }

  body #coulisses {
    padding-block: clamp(76px, 7vw, 108px) !important;
  }

  body #coulisses .behind-scenes__inner {
    width: min(100% - 96px, 1180px) !important;
    max-width: 1180px !important;
  }

  body #coulisses .behind-scenes__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 18px !important;
    align-items: stretch !important;
  }

  body #coulisses .behind-card {
    border-radius: 26px !important;
    min-height: 0 !important;
  }

  body #coulisses .behind-card--featured {
    grid-column: span 2 !important;
    grid-row: span 2 !important;
  }

  body #coulisses .behind-card__media {
    aspect-ratio: 4 / 5 !important;
    height: auto !important;
  }

  body #coulisses .behind-card--featured .behind-card__media {
    aspect-ratio: 16 / 10 !important;
  }

  body #coulisses .behind-card__content {
    padding: 16px 18px 18px !important;
  }

  body #coulisses .behind-card__content h3 {
    font-size: 1.1rem !important;
    line-height: 1.22 !important;
  }

  body #informations-cles .order-clarity__panel,
  body #informations-cles .order-clarity > .container {
    max-width: 1180px !important;
    margin-inline: auto !important;
    padding: clamp(34px, 4vw, 54px) !important;
    border-radius: 34px !important;
  }

  body #informations-cles .order-clarity__grid,
  body #informations-cles .order-clarity-grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }

  body #informations-cles .order-clarity-card {
    min-height: 220px !important;
    padding: 22px !important;
  }

  body #modele-tendance .featured-trend__inner {
    width: min(100% - 96px, 1120px) !important;
    max-width: 1120px !important;
    display: grid !important;
    grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.85fr) !important;
    align-items: center !important;
    gap: clamp(38px, 5vw, 74px) !important;
  }

  body #modele-tendance .featured-trend__stage {
    max-width: 500px !important;
    justify-self: end !important;
    border-radius: 32px !important;
  }

  body #modele-tendance .featured-trend__copy {
    max-width: 560px !important;
  }

  body #collections .category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 24px !important;
  }

  body #collections .category-card {
    border-radius: 28px !important;
    overflow: hidden !important;
  }

  body #collections .category-card img {
    height: 270px !important;
    width: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

@media (min-width: 1024px) {
  body .hero > .hero__inner .hero-social-proof {
    padding: 18px !important;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    font-size: 1.38rem !important;
    line-height: 1.15 !important;
  }

  body .hero > .hero__inner .hero-social-proof p {
    margin-top: 8px !important;
    font-size: 0.9rem !important;
    line-height: 1.48 !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li {
    min-height: 34px !important;
    padding: 7px 8px !important;
    gap: 6px !important;
    font-size: 0.72rem !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries .flag {
    width: 26px !important;
    min-width: 26px !important;
    height: 18px !important;
  }

  body .hero > .hero__inner .hero-social-proof__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body .hero > .hero__inner .hero-social-proof__link {
    min-height: 46px !important;
    padding: 0 10px !important;
    font-size: 0.78rem !important;
    line-height: 1.15 !important;
    text-align: center !important;
  }
}

/* Final desktop proportion pass - keeps all current content, but makes wide screens read as a balanced website instead of stacked mobile blocks. */
@media (min-width: 1100px) {
  body {
    --desktop-container: min(1180px, calc(100vw - 96px));
  }

  body .container {
    width: var(--desktop-container) !important;
    max-width: var(--desktop-container) !important;
  }

  body .section,
  body .team-section,
  body #histoire-linda,
  body #coulisses.behind-scenes,
  body #modele-tendance.featured-trend,
  body #collections {
    padding-block: clamp(68px, 6vw, 96px) !important;
  }

  body .hero {
    grid-template-columns: minmax(500px, 0.94fr) minmax(480px, 1fr) !important;
    gap: clamp(46px, 5vw, 72px) !important;
    padding-block: clamp(58px, 5vw, 82px) !important;
  }

  body .hero > .hero__inner {
    width: min(545px, 100%) !important;
    max-width: 545px !important;
    gap: 16px !important;
  }

  body .hero > .hero__media {
    width: min(560px, 100%) !important;
    height: clamp(520px, 39vw, 610px) !important;
    border-radius: 36px !important;
  }

  body .hero > .hero__inner h1 {
    font-size: clamp(3rem, 3.6vw, 4rem) !important;
    line-height: 0.98 !important;
    max-width: 545px !important;
  }

  body .hero > .hero__inner .hero__subtitle {
    max-width: 520px !important;
    font-size: 1rem !important;
    line-height: 1.56 !important;
  }

  body .hero > .hero__inner .experience-note {
    grid-template-columns: 116px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 16px 18px !important;
    border-radius: 24px !important;
  }

  body .hero > .hero__inner .experience-note strong {
    width: 116px !important;
    min-width: 116px !important;
    font-size: 2.72rem !important;
    padding: 13px 8px !important;
  }

  body .hero > .hero__inner .experience-note span {
    font-size: 0.93rem !important;
    line-height: 1.42 !important;
  }

  body .hero > .hero__inner .hero-social-proof {
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    font-size: 1.32rem !important;
    line-height: 1.15 !important;
  }

  body .hero > .hero__inner .hero-social-proof p {
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 7px !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li {
    min-height: 32px !important;
    padding: 6px 7px !important;
    font-size: 0.7rem !important;
  }

  body .hero > .hero__inner .hero-social-proof__actions {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 13px !important;
  }

  body .hero > .hero__inner .hero-social-proof__link {
    min-height: 44px !important;
    font-size: 0.75rem !important;
  }

  body .team-section__header,
  body .linda-story__intro,
  body .behind-scenes__intro,
  body .section-heading {
    max-width: 720px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body .team-section__header h2,
  body .linda-story__intro h2,
  body .behind-scenes__intro h2,
  body .section-heading h2 {
    font-size: clamp(2.4rem, 3.2vw, 3.75rem) !important;
    line-height: 1.05 !important;
  }

  body .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  body .team-card {
    grid-template-rows: 280px auto !important;
    border-radius: 28px !important;
  }

  body .team-card__portrait,
  body .team-card img {
    height: 280px !important;
  }

  body .team-card__body {
    padding: 18px 20px 22px !important;
  }

  body .team-card h3 {
    font-size: 1.28rem !important;
    line-height: 1.15 !important;
  }

  body #histoire-linda .linda-carousel {
    width: var(--desktop-container) !important;
    max-width: var(--desktop-container) !important;
  }

  body #histoire-linda .linda-slide {
    flex: 0 0 500px !important;
    min-width: 500px !important;
    max-width: 500px !important;
  }

  body #histoire-linda .linda-slide.is-active {
    flex-basis: 570px !important;
    min-width: 570px !important;
    max-width: 570px !important;
  }

  body #histoire-linda .linda-slide__media {
    height: 360px !important;
    aspect-ratio: auto !important;
  }

  body #histoire-linda .linda-slide__media img,
  body #histoire-linda .linda-slide__media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 38% !important;
  }

  body #histoire-linda .linda-slide__content {
    min-height: 112px !important;
    padding: 20px 22px !important;
  }

  body #histoire-linda .linda-slide__content h3 {
    font-size: 1.42rem !important;
  }

  body #coulisses .behind-scenes__inner {
    width: var(--desktop-container) !important;
    max-width: var(--desktop-container) !important;
  }

  body #coulisses .behind-scenes__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 20px !important;
    align-items: stretch !important;
  }

  body #coulisses .behind-card,
  body #coulisses .behind-card--featured {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    border-radius: 26px !important;
    overflow: hidden !important;
  }

  body #coulisses .behind-card__media,
  body #coulisses .behind-card--featured .behind-card__media {
    height: 245px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  body #coulisses .behind-card__media video,
  body #coulisses .behind-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body #coulisses .behind-card__content {
    min-height: 118px !important;
    padding: 17px 18px 18px !important;
  }

  body #modele-tendance .featured-trend__inner {
    width: min(1080px, calc(100vw - 96px)) !important;
    grid-template-columns: minmax(0, 1fr) minmax(390px, 470px) !important;
    gap: clamp(40px, 5vw, 70px) !important;
  }

  body #modele-tendance .featured-trend__stage {
    max-width: 470px !important;
  }

  body #modele-tendance .featured-trend__stage video {
    max-height: 600px !important;
    object-fit: cover !important;
  }

  body #collections .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  body #collections .category-card {
    min-height: 0 !important;
  }

  body #collections .category-card img {
    height: 250px !important;
    object-fit: cover !important;
  }
}
/* 2026-06-27 final desktop balance pass.
   Scope: desktop only. Keeps current content and mobile behavior intact. */
@media (min-width: 1100px) {
  :root {
    --zaanga-desktop-container: min(1180px, calc(100vw - 96px));
  }

  body .container,
  body .hero > .hero__inner,
  body .team-section__inner,
  body #histoire-linda > .container,
  body #coulisses .behind-scenes__inner,
  body #modele-tendance .featured-trend__inner,
  body #collections > .container {
    width: var(--zaanga-desktop-container) !important;
    max-width: var(--zaanga-desktop-container) !important;
    margin-inline: auto !important;
  }

  body .section,
  body .team-section,
  body #histoire-linda,
  body #coulisses,
  body #modele-tendance,
  body #collections {
    padding-block: clamp(64px, 5vw, 88px) !important;
  }

  body .section-heading,
  body .team-section__header,
  body .linda-story__intro,
  body .behind-scenes__intro {
    max-width: 760px !important;
    margin-inline: auto !important;
    margin-bottom: 34px !important;
    text-align: center !important;
  }

  body .section-heading h2,
  body .team-section__header h2,
  body .linda-story__intro h2,
  body .behind-scenes__intro h2,
  body .featured-trend__copy h2 {
    max-width: 820px !important;
    margin-inline: auto !important;
    font-size: clamp(2.35rem, 3.15vw, 3.7rem) !important;
    line-height: 1.04 !important;
    letter-spacing: 0 !important;
  }

  body .section-heading p:not(.eyebrow),
  body .team-section__header p,
  body .linda-story__intro p,
  body .behind-scenes__intro p,
  body .featured-trend__copy p {
    max-width: 680px !important;
    margin-inline: auto !important;
    font-size: 1rem !important;
    line-height: 1.62 !important;
  }

  body .hero {
    min-height: 0 !important;
    padding-block: 72px !important;
  }

  body .hero > .hero__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 535px) minmax(420px, 560px) !important;
    gap: clamp(52px, 6vw, 96px) !important;
    align-items: center !important;
  }

  body .hero > .hero__inner h1,
  body .hero > .hero__inner h2 {
    max-width: 10.5em !important;
    font-size: clamp(3.35rem, 5vw, 5.55rem) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
  }

  body .hero > .hero__inner .hero__subtitle {
    max-width: 35rem !important;
    font-size: 1.05rem !important;
    line-height: 1.68 !important;
  }

  body .hero .hero__media {
    width: min(560px, 100%) !important;
    height: min(560px, 40vw) !important;
    min-height: 440px !important;
    justify-self: center !important;
    border-radius: 34px !important;
    overflow: hidden !important;
  }

  body .hero .hero__media video,
  body .hero .hero__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body .hero > .hero__inner .experience-note {
    margin-top: 4px !important;
    grid-template-columns: 112px minmax(0, 1fr) !important;
    gap: 16px !important;
    padding: 15px 18px !important;
    border-radius: 22px !important;
  }

  body .hero > .hero__inner .experience-note strong {
    width: 112px !important;
    min-width: 112px !important;
    font-size: 2.68rem !important;
    line-height: 1 !important;
  }

  body .hero > .hero__inner .experience-note span {
    font-size: 0.92rem !important;
    line-height: 1.42 !important;
  }

  body .hero > .hero__inner .hero-social-proof {
    margin-top: 0 !important;
    padding: 18px !important;
    border-radius: 24px !important;
  }

  body .hero > .hero__inner .hero-social-proof strong {
    font-size: 1.28rem !important;
    line-height: 1.18 !important;
  }

  body .hero > .hero__inner .hero-social-proof p {
    font-size: 0.88rem !important;
    line-height: 1.48 !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries-marquee {
    overflow: visible !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 7px !important;
    animation: none !important;
    transform: none !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li[data-hero-country-clone="true"] {
    display: none !important;
  }

  body .hero > .hero__inner .hero-social-proof__countries li {
    min-height: 32px !important;
    padding: 6px 8px !important;
    font-size: 0.69rem !important;
    white-space: nowrap !important;
  }

  body .hero > .hero__inner .hero-social-proof__actions {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 8px !important;
    margin-top: 14px !important;
  }

  body .hero > .hero__inner .hero-social-proof__link {
    min-height: 44px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 0.74rem !important;
  }

  body .team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  body .team-card {
    width: auto !important;
    min-width: 0 !important;
    height: auto !important;
    border-radius: 28px !important;
  }

  body .team-card__media {
    height: 250px !important;
    overflow: hidden !important;
  }

  body .team-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 28% !important;
  }

  body .team-card__body {
    min-height: 128px !important;
    padding: 22px !important;
  }

  body .team-card__identity {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    gap: 14px !important;
  }

  body .team-card__linkedin {
    flex: 0 0 auto !important;
    width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    font-size: 0 !important;
  }

  body .team-card__linkedin::after {
    content: "in";
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
  }

  body #histoire-linda .linda-carousel {
    width: var(--zaanga-desktop-container) !important;
    max-width: var(--zaanga-desktop-container) !important;
    margin-inline: auto !important;
  }

  body #histoire-linda .linda-carousel + .story-client-heading {
    margin-top: 48px !important;
  }

  body #histoire-linda .linda-slide {
    flex: 0 0 430px !important;
    max-width: 430px !important;
    min-width: 430px !important;
  }

  body #histoire-linda .linda-slide.is-active {
    flex-basis: 540px !important;
    max-width: 540px !important;
    min-width: 540px !important;
  }

  body #histoire-linda .linda-slide__media {
    height: 320px !important;
    overflow: hidden !important;
  }

  body #histoire-linda .linda-slide.is-active .linda-slide__media {
    height: 350px !important;
  }

  body #histoire-linda .linda-slide__media img,
  body #histoire-linda .linda-slide__media video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center 34% !important;
  }

  body #histoire-linda .linda-slide__content {
    min-height: 136px !important;
    padding: 20px 24px 24px !important;
  }

  body #coulisses .behind-scenes__inner {
    display: block !important;
  }

  body #coulisses .behind-scenes__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 16px !important;
    align-items: stretch !important;
  }

  body #coulisses .behind-card,
  body #coulisses .behind-card--featured {
    grid-column: auto !important;
    grid-row: auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 0 !important;
    border-radius: 24px !important;
    overflow: hidden !important;
  }

  body #coulisses .behind-card__media,
  body #coulisses .behind-card--featured .behind-card__media {
    height: 178px !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
  }

  body #coulisses .behind-card__media video,
  body #coulisses .behind-card__media img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }

  body #coulisses .behind-card__content {
    min-height: 112px !important;
    padding: 14px 15px 16px !important;
  }

  body #coulisses .behind-card__content h3 {
    font-size: 1rem !important;
    line-height: 1.22 !important;
  }

  body #coulisses .behind-card__content p {
    font-size: 0.84rem !important;
    line-height: 1.48 !important;
  }

  body #modele-tendance .featured-trend__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 430px) minmax(0, 560px) !important;
    gap: 56px !important;
    align-items: center !important;
  }

  body #modele-tendance .featured-trend__stage {
    max-width: 560px !important;
    margin: 0 !important;
  }

  body #modele-tendance .featured-trend__stage video {
    height: 560px !important;
    object-fit: cover !important;
  }

  body #modele-tendance .featured-trend__overlay {
    position: static !important;
    margin-top: 14px !important;
    background: #fffdf8 !important;
    color: #171717 !important;
    border: 1px solid rgba(167, 122, 45, .22) !important;
    box-shadow: 0 14px 36px rgba(49, 37, 19, .1) !important;
  }

  body #collections .category-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 22px !important;
  }

  body #collections .category-card {
    min-height: 0 !important;
  }

  body #collections .category-card img {
    height: 245px !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}

/* 2026-06-27 hero desktop structure correction.
   The media and copy are siblings inside .hero, so the desktop grid must live on .hero itself. */
@media (min-width: 1100px) {
  body .hero {
    display: grid !important;
    grid-template-columns: minmax(0, 535px) minmax(420px, 560px) !important;
    grid-template-areas: "copy media" !important;
    column-gap: clamp(56px, 6vw, 96px) !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 0 !important;
    padding: 72px max(48px, calc((100vw - 1180px) / 2)) !important;
  }

  body .hero > .hero__inner {
    grid-area: copy !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    width: auto !important;
    max-width: 535px !important;
    margin: 0 !important;
    padding: 0 !important;
    justify-self: end !important;
  }

  body .hero > .hero__media {
    grid-area: media !important;
    width: 100% !important;
    max-width: 560px !important;
    height: 560px !important;
    min-height: 0 !important;
    margin: 0 !important;
    justify-self: start !important;
    align-self: center !important;
  }

  body .hero > .hero__inner h1,
  body .hero > .hero__inner h2 {
    width: 100% !important;
    max-width: 535px !important;
    font-size: clamp(3.1rem, 4.4vw, 5rem) !important;
    line-height: 0.99 !important;
  }

  body .hero > .hero__inner .hero__subtitle,
  body .hero > .hero__inner .experience-note,
  body .hero > .hero__inner .hero-social-proof {
    width: 100% !important;
    max-width: 535px !important;
    margin-inline: 0 !important;
  }
}

/* 2026-06-28: Natasha/Cedric first story image uses a filled editorial frame without losing faces. */
body #histoire-linda .linda-carousel--natasha .linda-slide:first-child .linda-slide__media--safe-contain {
  position: relative !important;
  isolation: isolate;
  overflow: hidden !important;
  background: #efe5d8 !important;
}

body #histoire-linda .linda-carousel--natasha .linda-slide:first-child .linda-slide__media--safe-contain::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  background:
    linear-gradient(rgba(23, 17, 12, 0.1), rgba(23, 17, 12, 0.1)),
    url("assets/stories/natasha-cedric/premiere-photo-a-mettre.jpeg") center 34% / cover no-repeat;
  filter: blur(16px) saturate(1.05);
  transform: scale(1.04);
}

body #histoire-linda .linda-carousel--natasha .linda-slide:first-child .linda-slide__media--safe-contain > img {
  width: auto !important;
  max-width: min(62%, 520px) !important;
  height: 100% !important;
  margin-inline: auto !important;
  object-fit: contain !important;
  object-position: center center !important;
  background: transparent !important;
  box-shadow: 0 20px 50px rgba(23, 17, 12, 0.18);
}

@media (max-width: 700px) {
  body #histoire-linda .linda-carousel--natasha .linda-slide:first-child .linda-slide__media--safe-contain > img {
    max-width: 68% !important;
  }
}

/* 2026-06-28: Natasha/Cedric gifts photo must show the couple faces in the upper mirror. */
body #histoire-linda .linda-carousel--natasha .linda-slide:nth-child(7) .linda-slide__media {
  background: linear-gradient(180deg, #fffaf4 0%, #efe5d8 100%) !important;
}

body #histoire-linda .linda-carousel--natasha .linda-slide:nth-child(7) .linda-slide__media > img {
  object-fit: contain !important;
  object-position: center top !important;
  background: linear-gradient(180deg, #fffaf4 0%, #efe5d8 100%) !important;
}

/* 2026-06-28: Acrylic collection now opens with three clear sub-catalogues. */
.subcatalog-section {
  background: linear-gradient(180deg, #fffdf8 0%, #f7efe2 100%);
}

.subcatalog-heading {
  margin-bottom: clamp(24px, 4vw, 44px);
}

.subcatalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.subcatalog-card {
  display: grid;
  overflow: hidden;
  color: #171717;
  text-decoration: none;
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(167, 122, 45, 0.22);
  border-radius: 30px;
  box-shadow: 0 24px 70px rgba(49, 37, 19, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.subcatalog-card:hover,
.subcatalog-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(167, 122, 45, 0.45);
  box-shadow: 0 30px 90px rgba(49, 37, 19, 0.18);
}

.subcatalog-card img {
  width: 100%;
  height: clamp(230px, 24vw, 350px);
  object-fit: cover;
  object-position: center;
  background: #f1e7d8;
}

.subcatalog-card__body {
  display: grid;
  gap: 12px;
  padding: clamp(22px, 2.3vw, 30px);
}

.subcatalog-card__tag {
  width: max-content;
  padding: 8px 12px;
  color: #8f6a26;
  background: #fff6df;
  border: 1px solid rgba(167, 122, 45, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.subcatalog-card h3 {
  margin: 0;
  color: #171717;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
  line-height: 1.05;
}

.subcatalog-card p {
  margin: 0;
  color: #665f54;
  font-size: 1rem;
  line-height: 1.6;
}

.subcatalog-card strong {
  color: #0f5f4a;
  font-size: clamp(1.28rem, 1.55vw, 1.65rem);
}

.subcatalog-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 46px;
  margin-top: 4px;
  padding: 12px 20px;
  color: #fff;
  background: #111;
  border-radius: 999px;
  font-weight: 900;
}

.subcatalog-card--premium .subcatalog-card__button {
  background: #12324f;
}

.subcatalog-card--luxe .subcatalog-card__button {
  background: #8f1d1d;
}

@media (max-width: 980px) {
  .subcatalog-grid {
    grid-template-columns: 1fr;
  }

  .subcatalog-card {
    border-radius: 24px;
  }

  .subcatalog-card img {
    height: clamp(220px, 58vw, 380px);
  }

  .subcatalog-card__button {
    width: 100%;
  }
}

@media (max-width: 700px) {
  .subcatalog-section {
    padding-top: 28px;
  }

  .subcatalog-heading {
    margin-bottom: 16px;
  }

  .subcatalog-heading h2 {
    max-width: 12ch;
    font-size: clamp(2rem, 11vw, 3rem);
    line-height: 0.98;
  }

  .subcatalog-heading p:not(.eyebrow) {
    display: none;
  }

  .subcatalog-grid {
    gap: 10px;
  }

  .subcatalog-card {
    grid-template-columns: 96px minmax(0, 1fr);
    min-height: 108px;
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(49, 37, 19, 0.08);
  }

  .subcatalog-card:hover,
  .subcatalog-card:focus-visible {
    transform: none;
  }

  .subcatalog-card img {
    width: 96px;
    height: 100%;
    min-height: 108px;
    object-fit: cover;
    object-position: center;
  }

  .subcatalog-card__body {
    align-content: center;
    gap: 6px;
    padding: 12px 14px;
  }

  .subcatalog-card__tag,
  .subcatalog-card p,
  .subcatalog-card__button {
    display: none;
  }

  .subcatalog-card h3 {
    font-size: 1.02rem;
    line-height: 1.15;
  }

  .subcatalog-card strong {
    color: #8f1d1d;
    font-size: 0.98rem;
    line-height: 1.2;
  }
}

/* 2026-06-28: compact subcatalogue selectors with clear preview images. */
.subcatalogue-body .catalogue-hero {
  display: none;
}

.subcatalogue-body .subcatalog-section {
  min-height: calc(100svh - 150px);
  display: flex;
  align-items: center;
  padding-block: clamp(42px, 7vw, 96px);
}

.subcatalogue-body .subcatalog-heading {
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
}

.subcatalogue-body .subcatalog-heading h2 {
  max-width: 12ch;
  margin-inline: auto;
}

.subcatalogue-body .subcatalog-grid {
  max-width: 1060px;
  margin-inline: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subcatalogue-body .subcatalog-grid--carton {
  max-width: 1180px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.subcatalogue-body .subcatalog-card {
  display: grid;
  min-height: auto;
  border-radius: 24px;
  background: #fffdf8;
}

.subcatalogue-body .subcatalog-card img {
  display: block !important;
  height: clamp(190px, 18vw, 255px);
  object-fit: cover;
  object-position: center;
}

.subcatalogue-body .subcatalog-card__body {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: clamp(22px, 3vw, 34px);
}

.subcatalogue-body .subcatalog-card__tag,
.subcatalogue-body .subcatalog-card p,
.subcatalogue-body .subcatalog-card__button {
  display: none !important;
}

.subcatalogue-body .subcatalog-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.subcatalogue-body .subcatalog-card strong {
  color: #8f1d1d;
}

.subcatalogue-body .subcatalog-card--moment {
  border-color: rgba(162, 15, 23, 0.26);
  background:
    radial-gradient(circle at 12% 12%, rgba(215, 25, 32, 0.11), transparent 30%),
    linear-gradient(180deg, #fffafa 0%, #fff7f2 100%);
  box-shadow: 0 18px 44px rgba(162, 15, 23, 0.1);
}

.subcatalogue-body .subcatalog-card--moment .subcatalog-card__body {
  gap: 14px;
}

.subcatalogue-body .subcatalog-card--moment h3 {
  min-width: 0;
}

.subcatalogue-body .subcatalog-card--moment .subcollection-label__accent--moment {
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.subcatalogue-body .subcatalog-card--moment .promo-price--summary {
  justify-self: start;
}

.subcatalogue-body .subcatalog-card--moment strong,
.product-card--moment-offer .product-card__price {
  color: #a20f17;
  font-weight: 950;
  text-transform: uppercase;
}

.subcatalogue-body .subcatalog-card__see {
  width: fit-content;
  min-width: 92px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #11110f;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  box-shadow: 0 12px 24px rgba(17, 17, 15, 0.14);
}

.subcatalogue-body .subcatalog-card:hover .subcatalog-card__see,
.subcatalogue-body .subcatalog-card:focus-visible .subcatalog-card__see {
  background: #98702c;
}

.catalogue-body.is-subcatalogue-locked .catalogue-filter-panel {
  display: none !important;
}

.catalogue-body.is-subcatalogue-locked .catalogue-shell {
  display: block;
}

.catalogue-body.is-subcatalogue-locked .catalogue-results {
  width: 100%;
}

@media (max-width: 700px) {
  .subcatalogue-body .subcatalog-section {
    min-height: auto;
    align-items: flex-start;
    padding-block: 26px 34px;
  }

  .subcatalogue-body .subcatalog-heading {
    text-align: left;
  }

  .subcatalogue-body .subcatalog-heading h2 {
    max-width: 100%;
    margin-inline: 0;
    font-size: clamp(2rem, 11vw, 3rem);
  }

  .subcatalogue-body .subcatalog-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .subcatalogue-body .subcatalog-card {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    min-height: 118px;
    border-radius: 18px;
  }

  .subcatalogue-body .subcatalog-card img {
    width: 112px;
    height: 100%;
    min-height: 118px;
    object-fit: cover;
    object-position: center;
  }

  .subcatalogue-body .subcatalog-card__body {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    align-content: center;
    gap: 12px;
    padding: 16px;
  }

  .subcatalogue-body .subcatalog-card h3 {
    grid-column: 1;
    grid-row: 1 / span 2;
    font-size: 1rem;
    line-height: 1.15;
  }

  .subcatalogue-body .subcatalog-card strong {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    font-size: 0.92rem;
    white-space: nowrap;
  }

  .subcatalogue-body .subcatalog-card__see {
    grid-column: 2;
    grid-row: 2;
    justify-self: end;
    min-width: 66px;
    padding: 8px 13px;
    font-size: 0.78rem;
  }

  .subcatalogue-body .subcatalog-card--moment .subcatalog-card__body {
    grid-template-columns: minmax(0, 1fr);
    align-content: center;
    gap: 10px;
    padding: 14px;
  }

  .subcatalogue-body .subcatalog-card--moment h3,
  .subcatalogue-body .subcatalog-card--moment strong,
  .subcatalogue-body .subcatalog-card--moment .subcatalog-card__see {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .subcatalogue-body .subcatalog-card--moment h3 {
    font-size: 0.98rem;
  }

  .subcatalogue-body .subcatalog-card--moment strong {
    white-space: normal;
  }

  .subcatalogue-body .subcatalog-card--moment .subcollection-label__accent--moment {
    font-size: 0.72rem;
    letter-spacing: 0.04em;
  }

  .subcatalogue-body .subcatalog-card--moment .promo-price--summary {
    max-width: 100%;
    padding: 0;
    font-size: 0.76rem;
    letter-spacing: 0.02em;
  }
}

/* 2026-06-29: premium home scroll reveal, intentionally subtle and readable. */
body.home-motion-ready .home-reveal {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  filter: blur(8px);
  transition:
    opacity 700ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 860ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 860ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}

body.home-motion-ready .home-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

body.home-motion-ready .home-reveal-item {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity 620ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--item-delay, 0ms);
  will-change: opacity, transform;
}

body.home-motion-ready .home-reveal.is-visible .home-reveal-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

body.home-motion-ready .home-reveal.is-visible .linda-carousel,
body.home-motion-ready .home-reveal.is-visible .team-grid,
body.home-motion-ready .home-reveal.is-visible .behind-scenes-carousel,
body.home-motion-ready .home-reveal.is-visible .category-grid {
  transition-delay: 90ms;
}

body.home-motion-ready #informations-cles.home-reveal--sequenced .order-clarity-card.home-reveal-item {
  opacity: 0 !important;
  transform: translate3d(0, 26px, 0) scale(0.982);
  filter: blur(7px);
  transition:
    opacity 680ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 820ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 820ms cubic-bezier(0.22, 1, 0.36, 1),
    background-color 620ms ease;
  transition-delay: 0ms !important;
}

body.home-motion-ready #informations-cles.home-reveal--sequenced.is-visible .order-clarity-card.home-reveal-item.is-step-visible {
  opacity: 1 !important;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

body.home-motion-ready #informations-cles.home-reveal--sequenced.is-visible .order-clarity-card.is-step-visible .order-clarity-card__icon {
  animation: orderClarityIconSettle 760ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 90ms;
}

body.home-motion-ready #informations-cles.home-reveal--sequenced.is-visible .order-clarity-card.is-step-visible .order-clarity-card__number {
  animation: orderClarityNumberFade 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 120ms;
}

@keyframes orderClarityIconSettle {
  0% {
    opacity: 0;
    transform: scale(0.86);
  }
  58% {
    opacity: 1;
    transform: scale(1.06);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes orderClarityNumberFade {
  0% {
    opacity: 0;
    transform: translate3d(8px, -4px, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 700px) {
  body.home-motion-ready .home-reveal {
    transform: translate3d(0, 24px, 0);
    filter: blur(5px);
  }

  body.home-motion-ready .home-reveal-item {
    transform: translate3d(0, 12px, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-motion-ready .home-reveal,
  body.home-motion-ready .home-reveal-item,
  body.home-motion-ready #informations-cles.home-reveal--sequenced .order-clarity-card__icon,
  body.home-motion-ready #informations-cles.home-reveal--sequenced .order-clarity-card__number {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
    animation: none !important;
  }
}

/* 2026-06-29: scratch-card promotion after collection click. */
body .promo-card--scratch {
  width: min(92vw, 520px);
  max-height: min(92vh, 760px);
  overflow: auto;
  padding: 0;
  border: 1px solid rgba(151, 111, 42, .22);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 232, 168, .42), transparent 30%),
    linear-gradient(180deg, #fffdf8 0%, #f8f1e6 100%);
  box-shadow: 0 30px 90px rgba(23, 23, 23, .34);
}

.promo-card--scratch .modal__close {
  top: 16px;
  right: 16px;
  z-index: 4;
  background: rgba(255, 255, 255, .9);
  border: 1px solid rgba(151, 111, 42, .18);
  box-shadow: 0 12px 28px rgba(23, 23, 23, .14);
}

.scratch-promo__image {
  position: relative;
  margin: 0;
  aspect-ratio: 1.2;
  overflow: hidden;
  background: #f1eadf;
}

.scratch-promo__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 45%, rgba(0, 0, 0, .36) 100%);
  pointer-events: none;
}

.scratch-promo__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.scratch-promo__content {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 5vw, 34px);
  text-align: center;
}

.promo-card--scratch .promo-card__eyebrow {
  margin: 0;
  color: #a51f24;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.promo-card--scratch h2 {
  margin: 0;
  color: #171717;
  font-size: clamp(2.1rem, 7vw, 4rem);
  line-height: .92;
}

.promo-card--scratch .promo-card__lead {
  margin: 0 auto;
  max-width: 36ch;
  color: #5f574e;
  font-size: clamp(1rem, 2.6vw, 1.16rem);
  line-height: 1.55;
}

.scratch-game {
  position: relative;
  min-height: 150px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px dashed rgba(165, 31, 36, .38);
  background: #fff9ec;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.scratch-game__reward {
  min-height: 150px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 4px;
  padding: 22px;
  color: #171717;
}

.scratch-game__reward span,
.scratch-game__reward small {
  font-weight: 800;
  color: #7d6b55;
}

.scratch-game__reward strong {
  color: #a51f24;
  font-size: clamp(2rem, 8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -.02em;
}

.scratch-game__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  cursor: grab;
  touch-action: none;
  transition: opacity .34s ease, transform .34s ease;
}

#quoteExitPromo.is-scratch-won .scratch-game__canvas {
  opacity: 0;
  pointer-events: none;
}

#quoteExitPromo.is-scratch-won .scratch-game {
  border-color: rgba(25, 151, 112, .42);
  box-shadow: 0 18px 46px rgba(25, 151, 112, .14);
}

.promo-card--scratch .promo-copy-status {
  min-height: 1.4em;
  margin: 0;
  color: #16845f;
  font-weight: 900;
}

@media (max-width: 640px) {
  body .promo-card--scratch {
    width: calc(100vw - 28px);
    border-radius: 26px;
  }

  .scratch-promo__image {
    aspect-ratio: 1.08;
  }

  .scratch-promo__content {
    padding: 22px 18px 24px;
  }

  .scratch-game,
  .scratch-game__reward {
    min-height: 136px;
  }
}

/* Social reactions on story and behind-the-scenes media */
.media-social {
  width: min(100%, 560px);
  margin: clamp(0.85rem, 2vw, 1.15rem) auto 0;
  padding: 0;
  color: var(--ink);
}

.linda-slide .media-social,
.behind-card .media-social {
  position: relative;
  z-index: 8;
  pointer-events: auto;
  padding-inline: clamp(1rem, 2.5vw, 1.4rem);
  padding-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.linda-slide .media-social *,
.behind-card .media-social * {
  pointer-events: auto;
}

.media-social__actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.media-social__button,
.media-social__submit {
  min-height: 46px;
  border: 1px solid rgba(156, 120, 48, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.94);
  color: #171717;
  font: 800 0.86rem/1.1 var(--font-sans);
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding-inline: 0.9rem;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(32, 24, 12, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.media-social__button:hover,
.media-social__button:focus-visible,
.media-social__submit:hover,
.media-social__submit:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(156, 120, 48, 0.48);
  background: #fffaf0;
  outline: none;
}

.media-social__button[aria-pressed="true"] {
  background: #fff1f1;
  border-color: rgba(178, 36, 36, 0.35);
  color: #991b1b;
}

.media-social__icon {
  width: 1.08rem;
  height: 1.08rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #334155;
}

.media-social__icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.media-social__icon--like,
.media-social__button[aria-pressed="true"] .media-social__icon--like {
  color: #1877f2;
}

.media-social__icon--comment {
  color: #64748b;
}

.media-social__label {
  color: #171717;
  font-weight: 900;
  white-space: nowrap;
}

.media-social__button strong {
  min-width: 2.15rem;
  font-weight: 900;
  color: #1f2937;
  text-align: left;
}

.media-social__panel {
  margin-top: 0.75rem;
  padding: clamp(0.95rem, 2vw, 1.1rem);
  border: 1px solid rgba(156, 120, 48, 0.18);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(255,250,241,0.94));
  box-shadow: 0 18px 36px rgba(32, 24, 12, 0.08);
}

.media-social__empty,
.media-social__notice {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.media-social__comments {
  display: grid;
  gap: 0.65rem;
  margin: 0 0 0.8rem;
  padding: 0;
  list-style: none;
}

.media-social__comment {
  padding: 0.75rem 0.85rem;
  border-radius: 16px;
  background: rgba(246, 239, 225, 0.72);
}

.media-social__comment strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #1f2937;
  font: 800 0.86rem/1.2 var(--font-sans);
}

.media-social__comment-rating {
  display: inline-flex;
  margin-bottom: 0.28rem;
  color: #b88a2d;
  font: 900 0.72rem/1 var(--font-sans);
  letter-spacing: 0.08em;
}

.media-social__comment p {
  margin: 0;
  color: #4f4a43;
  font-size: 0.9rem;
  line-height: 1.5;
}

.media-social__form {
  display: grid;
  gap: 0.72rem;
}

.media-social__form label {
  display: grid;
  gap: 0.35rem;
  margin: 0;
}

.media-social__form span {
  color: #171717;
  font: 800 0.76rem/1.1 var(--font-sans);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.media-social__form input,
.media-social__form textarea {
  width: 100%;
  border: 1px solid rgba(156, 120, 48, 0.22);
  border-radius: 16px;
  background: #fff;
  color: #171717;
  font: 600 0.95rem/1.35 var(--font-sans);
  padding: 0.78rem 0.9rem;
  resize: vertical;
}

.media-social__form input:focus,
.media-social__form textarea:focus {
  border-color: rgba(156, 120, 48, 0.62);
  outline: 3px solid rgba(206, 174, 100, 0.24);
}

.media-social__notice:not(:empty) {
  padding: 0.7rem 0.8rem;
  border-radius: 14px;
  background: rgba(178, 36, 36, 0.08);
  color: #9f1d1d;
  font-weight: 800;
}

.media-social__submit {
  width: 100%;
  background: #171717;
  color: #fff;
  border-color: #171717;
}

.media-social__submit:hover,
.media-social__submit:focus-visible {
  background: #2a241b;
  color: #fff;
}

@media (max-width: 640px) {
  .linda-slide .media-social,
  .behind-card .media-social {
    padding-inline: 0.9rem;
  }

  .media-social__actions {
    gap: 0.5rem;
  }

  .media-social__button {
    min-height: 42px;
    padding-inline: 0.7rem;
    font-size: 0.78rem;
    gap: 0.38rem;
  }

  .media-social__icon {
    width: 1rem;
    height: 1rem;
  }

  .media-social__button strong {
    min-width: auto;
  }

  .media-social__panel {
    border-radius: 18px;
  }
}

/* 2026-06-29: desktop structural repair.
   Scope is intentionally desktop-only so the approved mobile layouts stay untouched. */
@media (min-width: 1024px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  body .container {
    width: min(100% - 72px, 1180px);
  }

  body .section {
    padding-block: clamp(70px, 6vw, 112px);
  }

  body .section-heading,
  body .team-section__header,
  body .behind-scenes__intro,
  body .catalogue-results__bar {
    max-width: 900px;
  }

  body .section-heading h2,
  body .team-section__header h2,
  body .behind-scenes__intro h2 {
    max-width: 13ch;
    font-size: clamp(3.25rem, 5.2vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0;
  }

  /* Team cards: fixed desktop rhythm, no clipping, no text over images. */
  body .team-section .container {
    width: min(100% - 72px, 1200px);
  }

  body .team-section__header {
    margin-inline: auto;
    text-align: center;
  }

  body .team-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 2.2vw, 34px) !important;
    overflow: visible !important;
    padding-inline: 0 !important;
    scroll-snap-type: none !important;
  }

  body .team-card,
  body .team-card--founder {
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-rows: auto 1fr !important;
    grid-column: auto !important;
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
    border-radius: 28px !important;
    scroll-snap-align: none !important;
  }

  body .team-card__portrait,
  body .team-card img.team-card__portrait,
  body .team-card--founder .team-card__portrait {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center 22% !important;
    border-radius: 0 !important;
  }

  body .team-card--founder .team-card__portrait {
    object-position: center 38% !important;
  }

  body .team-card__body {
    min-width: 0 !important;
    padding: 26px 28px 30px !important;
    display: grid !important;
    align-content: start !important;
    gap: 10px !important;
  }

  body .team-card__country {
    width: fit-content;
    max-width: 100%;
    white-space: normal !important;
  }

  body .team-card h3 {
    max-width: 100%;
    margin: 0 !important;
    font-size: clamp(1.45rem, 1.45vw, 1.95rem) !important;
    line-height: 1.08 !important;
    overflow-wrap: anywhere;
  }

  body .team-card__role-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    min-width: 0 !important;
  }

  body .team-card__role {
    margin: 0 !important;
    max-width: 100%;
    line-height: 1.25 !important;
  }

  body .team-card__linkedin {
    position: static !important;
    transform: none !important;
    width: auto !important;
    max-width: fit-content !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 9px 14px !important;
    white-space: nowrap !important;
    justify-self: start !important;
  }

  body .team-card__body > p:not(.team-card__country):not(.team-card__role),
  body .team-card blockquote {
    display: none !important;
  }

  /* Behind-the-scenes: no cramped four-column cards on desktop. */
  body #coulisses .container,
  body .behind-scenes__inner {
    width: min(100% - 72px, 1180px) !important;
  }

  body #coulisses .behind-scenes__intro {
    max-width: 760px !important;
    margin-inline: auto !important;
    text-align: center !important;
  }

  body #coulisses .behind-scenes__grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 2vw, 32px) !important;
    overflow: visible !important;
    padding-inline: 0 !important;
    scroll-snap-type: none !important;
  }

  body #coulisses .behind-card,
  body #coulisses .behind-card--featured {
    grid-column: auto !important;
    width: 100% !important;
    min-width: 0 !important;
    max-width: none !important;
    border-radius: 28px !important;
    overflow: hidden !important;
    scroll-snap-align: none !important;
  }

  body #coulisses .behind-card__media,
  body #coulisses .behind-card--featured .behind-card__media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }

  body #coulisses .behind-card__media video,
  body #coulisses .behind-card__media img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body #coulisses .behind-card__content {
    padding: 24px 26px 28px !important;
  }

  body #coulisses .behind-card__content h3 {
    max-width: 100%;
    font-size: clamp(1.35rem, 1.45vw, 1.85rem) !important;
    line-height: 1.1 !important;
  }

  body #coulisses .behind-card__content p {
    max-width: 34rem;
    font-size: 1rem !important;
    line-height: 1.45 !important;
  }

  body #coulisses .media-social {
    width: 100% !important;
    margin-top: 0 !important;
    padding: 16px 18px 0 !important;
  }

  body #coulisses .media-social__actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body #coulisses .media-social__button {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 42px !important;
    padding-inline: 10px !important;
    font-size: 0.82rem !important;
    white-space: nowrap !important;
  }

  body #coulisses .media-social__label,
  body #coulisses .media-social__button strong {
    min-width: auto !important;
    white-space: nowrap !important;
  }

  /* Catalogue pages: readable desktop heading and product grid. */
  body.catalogue-body .catalogue-hero__inner {
    grid-template-columns: minmax(0, 0.95fr) minmax(380px, 0.85fr) !important;
    gap: clamp(36px, 4vw, 72px) !important;
    align-items: center !important;
  }

  body.catalogue-body .catalogue-hero__copy h1 {
    max-width: 12ch !important;
    font-size: clamp(3.5rem, 5.4vw, 6.25rem) !important;
    line-height: 0.95 !important;
  }

  body.catalogue-body .catalogue-hero__copy p:not(.eyebrow),
  body.catalogue-body .catalogue-hero__copy .detail-back {
    max-width: 56ch !important;
  }

  body.catalogue-body .catalogue-hero__media,
  body.catalogue-body .catalogue-hero__media img {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    object-fit: cover !important;
    object-position: center !important;
    border-radius: 28px !important;
  }

  body.catalogue-body .catalogue-section .container,
  body.catalogue-body .catalogue-shell {
    width: min(100% - 72px, 1240px) !important;
    max-width: 1240px !important;
  }

  body.catalogue-body .catalogue-shell {
    display: block !important;
  }

  body.catalogue-body .catalogue-filter-panel {
    max-width: 100% !important;
    margin-bottom: 30px !important;
  }

  body.catalogue-body .catalogue-results__bar {
    display: flex !important;
    align-items: end !important;
    justify-content: space-between !important;
    gap: 32px !important;
    margin-bottom: 28px !important;
    padding-bottom: 24px !important;
  }

  body.catalogue-body .catalogue-results__bar h2 {
    max-width: 11ch !important;
    font-size: clamp(3rem, 5vw, 5.5rem) !important;
    line-height: 0.95 !important;
  }

  body.catalogue-body .catalogue-results__bar > div:last-child {
    min-width: 220px !important;
    text-align: right !important;
  }

  body.catalogue-body .product-grid,
  body.catalogue-body #catalogueGrid,
  body #productGrid.product-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(24px, 2vw, 34px) !important;
    align-items: stretch !important;
  }

  body.catalogue-body .product-card,
  body .product-card {
    min-width: 0 !important;
    width: 100% !important;
    max-width: none !important;
    overflow: hidden !important;
    border-radius: 26px !important;
  }

  body.catalogue-body .product-card__media,
  body.catalogue-body .product-card__media-link,
  body .product-card__media,
  body .product-card__media-link {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 5 !important;
    display: block !important;
    overflow: hidden !important;
  }

  body.catalogue-body .product-card__media img,
  body.catalogue-body .product-card__media-link img,
  body .product-card__media img,
  body .product-card__media-link img {
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.catalogue-body .product-card__body,
  body .product-card__body,
  body .product-card__content {
    min-width: 0 !important;
    padding: 22px 24px 26px !important;
  }

  body.catalogue-body .product-card h3,
  body.catalogue-body .product-card__title-link,
  body .product-card h3,
  body .product-card__title-link {
    max-width: 100%;
    font-size: clamp(1.2rem, 1.3vw, 1.55rem) !important;
    line-height: 1.18 !important;
    overflow-wrap: anywhere !important;
  }

  body.catalogue-body .product-card p,
  body .product-card p {
    max-width: 100%;
    font-size: 1rem !important;
    line-height: 1.45 !important;
  }

  body.catalogue-body .product-card .btn,
  body .product-card .btn {
    width: 100% !important;
    min-height: 48px !important;
    white-space: normal !important;
  }

  /* Subcatalogue landing pages: stop desktop cards from becoming oversized or cramped. */
  body.subcatalogue-body .subcatalog-section .container {
    width: min(100% - 72px, 1180px) !important;
  }

  body.subcatalogue-body .subcatalog-grid,
  body.subcatalogue-body .subcatalog-grid--carton {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(22px, 2vw, 32px) !important;
    max-width: 1180px !important;
  }

  body.subcatalogue-body .subcatalog-card {
    min-width: 0 !important;
    overflow: hidden !important;
  }

  body.subcatalogue-body .subcatalog-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 10 !important;
    min-height: 0 !important;
    object-fit: cover !important;
    object-position: center !important;
  }
}

@media (min-width: 1024px) and (max-width: 1240px) {
  body.catalogue-body .product-grid,
  body.catalogue-body #catalogueGrid,
  body #productGrid.product-grid,
  body #coulisses .behind-scenes__grid,
  body .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  body.subcatalogue-body .subcatalog-grid,
  body.subcatalogue-body .subcatalog-grid--carton {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* 2026-07-17: local representatives make payment and order follow-up tangible. */
.local-representative-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(210px, 260px);
  max-width: 1180px;
  margin: 0 auto clamp(34px, 5vw, 60px);
  overflow: hidden;
  color: #fff;
  background: #171513;
  border: 1px solid rgba(200, 154, 66, 0.56);
  border-radius: 6px;
  box-shadow: 0 20px 52px rgba(33, 25, 16, 0.18);
}

.local-representative-band__intro {
  padding: clamp(24px, 2.8vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.local-representative-band__eyebrow {
  margin: 0 0 12px;
  color: #e1bf72;
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.local-representative-band h3 {
  max-width: 18ch;
  margin: 0;
  color: #fff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 2.6vw, 2.65rem);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.local-representative-band__intro > p:not(.local-representative-band__eyebrow) {
  max-width: 48ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.5;
}

.local-representative-band__profiles {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 2.4vw, 28px);
}

.local-representative-rail {
  display: block;
  width: 100%;
  max-width: 220px;
  min-width: 0;
  padding: 0;
}

.local-representative-rail::-webkit-scrollbar {
  height: 8px;
}

.local-representative-rail::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
}

.local-representative-rail::-webkit-scrollbar-thumb {
  background: #d0a854;
  border-radius: 999px;
}

.local-representative-card {
  width: 100%;
  min-width: 0;
  overflow: hidden;
  background: #fffdf8;
  border: 1px solid rgba(200, 154, 66, 0.5);
  border-radius: 6px;
  scroll-snap-align: start;
}

.local-representative-card--primary {
  border-color: #d0a854;
  box-shadow: 0 0 0 2px #b81724, 0 10px 24px rgba(0, 0, 0, 0.28);
}

.local-representative-card__link {
  display: block;
  height: 100%;
  color: #171513;
  text-decoration: none;
}

.local-representative-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef0ed;
}

.local-representative-card__media > img {
  display: block;
  width: 100%;
  height: 100%;
  background: #eef0ed;
}

.local-representative-card__badge {
  position: absolute;
  right: 7px;
  bottom: 7px;
  left: 7px;
  padding: 7px 8px;
  color: #171513;
  background: #f5d985;
  border: 1px solid rgba(23, 21, 19, 0.28);
  border-radius: 4px;
  font-size: 0.66rem;
  font-weight: 900;
  line-height: 1.16;
  text-align: center;
}

.local-representative-card__body {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 12px 11px 14px;
}

.local-representative-card__location {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 6px;
  color: #866421;
  font-size: 0.65rem;
  font-weight: 900;
  line-height: 1.2;
  text-transform: uppercase;
}

.local-representative-card__location img {
  flex: 0 0 auto;
  width: 24px;
  height: 16px;
  object-fit: cover;
  border: 1px solid rgba(23, 21, 19, 0.14);
  border-radius: 2px;
}

.local-representative-card__name {
  min-width: 0;
  color: #171513;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.18;
  overflow-wrap: anywhere;
}

.local-representative-card__role {
  color: #655f55;
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.3;
}

.local-representative-card__link:hover .local-representative-card__name,
.local-representative-card__link:focus-visible .local-representative-card__name {
  color: #a20f17;
}

.local-representative-card__link:focus-visible {
  outline: 3px solid #d4ad58;
  outline-offset: -3px;
}

@media (max-width: 900px) {
  .local-representative-band {
    grid-template-columns: 1fr;
  }

  .local-representative-band__intro {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .local-representative-band h3 {
    max-width: 22ch;
  }
}

@media (max-width: 700px) {
  body.subcatalogue-body .local-representative-band {
    width: calc(100% + 28px);
    margin-right: -14px;
    margin-bottom: 34px;
    margin-left: -14px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .local-representative-band__intro,
  .local-representative-band__profiles {
    padding: 22px 18px;
  }

  .local-representative-band h3 {
    max-width: 100%;
    font-size: clamp(1.75rem, 8.5vw, 2.4rem);
  }

  .local-representative-rail {
    width: 100%;
    max-width: none;
  }

  .local-representative-card {
    width: 100%;
    min-width: 0;
  }

  .local-representative-card__link {
    display: grid;
    grid-template-columns: minmax(112px, 38%) minmax(0, 1fr);
    min-height: 166px;
  }

  .local-representative-card__media {
    height: 100%;
    min-height: 166px;
    aspect-ratio: auto;
  }

  .local-representative-card__body {
    align-content: center;
    padding: 16px 14px;
  }

  .local-representative-card__name {
    font-size: 1.02rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .local-representative-rail {
    scroll-behavior: auto;
  }
}

/* Founder profile page */
.team-card__about {
  align-items: center;
  background: #111;
  border: 1px solid #111;
  border-radius: 999px;
  color: #fff;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 800;
  gap: 0.35rem;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0.62rem 0.9rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

body .team-card__actions .team-card__about,
body .team-card__actions .team-card__linkedin {
  width: 100%;
}

.team-card__about:hover,
.team-card__about:focus-visible {
  background: #000;
  border-color: #000;
  color: #fff;
  transform: translateY(-1px);
}

body .team-card--founder .team-card__role-row {
  align-items: flex-start !important;
}

body .team-card--founder .team-card__actions {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: .5rem !important;
  min-width: max-content !important;
}

.founder-profile-page {
  background:
    radial-gradient(circle at top left, rgba(190, 150, 82, 0.12), transparent 34rem),
    linear-gradient(180deg, #fffdf8 0%, #faf6ee 100%);
}

.founder-hero {
  padding: clamp(42px, 7vw, 92px) 0 clamp(34px, 6vw, 72px);
}

.founder-hero__inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 68px);
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
}

.founder-hero__content h1 {
  font-size: clamp(3rem, 7vw, 6.9rem);
  line-height: 0.92;
  margin: 0.3rem 0 1.1rem;
  max-width: 920px;
}

.founder-hero__lead {
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.35rem);
  line-height: 1.75;
  max-width: 800px;
}

.founder-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.65rem;
}

.founder-hero__media {
  background: #fff;
  border: 1px solid rgba(157, 118, 51, 0.18);
  border-radius: 30px;
  box-shadow: 0 28px 80px rgba(30, 26, 20, 0.12);
  margin: 0;
  overflow: hidden;
}

.founder-hero__media img {
  aspect-ratio: 4 / 5;
  display: block;
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}

.founder-hero__media img.founder-photo--alex {
  object-position: center 34%;
}

.founder-hero__media figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  padding: 1rem 1.25rem 1.2rem;
}

.founder-page-section {
  padding: clamp(34px, 6vw, 76px) 0;
}

.founder-page-section--cream {
  background: rgba(255, 250, 241, 0.72);
  border-block: 1px solid rgba(157, 118, 51, 0.12);
}

.founder-section__inner {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 1fr);
}

.founder-section__title {
  margin: 0;
  max-width: 420px;
}

.founder-section__content {
  color: var(--muted);
  font-size: clamp(1rem, 1.15vw, 1.14rem);
  line-height: 1.82;
}

.founder-section__content p:first-child {
  margin-top: 0;
}

.founder-card-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 1.5rem;
}

.founder-expertise__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  margin-top: clamp(26px, 4vw, 48px);
}

.founder-expertise__media {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(157, 118, 51, 0.2);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 22px 58px rgba(55, 42, 24, 0.1);
}

.founder-expertise__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 910 / 1137;
  object-fit: cover;
  object-position: center;
}

.founder-expertise__layout .founder-card-grid {
  grid-template-columns: 1fr;
  margin-top: 0;
}

.founder-value-card {
  background: #fff;
  border: 1px solid rgba(157, 118, 51, 0.18);
  border-radius: 22px;
  box-shadow: 0 18px 48px rgba(30, 26, 20, 0.07);
  padding: clamp(1.1rem, 2vw, 1.55rem);
}

.founder-value-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
  margin: 0 0 0.55rem;
}

.founder-value-card p {
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

.founder-quote {
  background: var(--ink);
  border-radius: 30px;
  color: #fff;
  padding: clamp(1.8rem, 4vw, 3rem);
}

.founder-quote blockquote {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1.08;
  margin: 0;
}

.founder-quote cite {
  color: rgba(255, 255, 255, 0.72);
  display: block;
  font-style: normal;
  margin-top: 1.1rem;
}

.founder-contact-card {
  background: #fff;
  border: 1px solid rgba(157, 118, 51, 0.2);
  border-radius: 28px;
  box-shadow: 0 22px 64px rgba(30, 26, 20, 0.1);
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.founder-contact-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.founder-contact__inner {
  align-items: start;
  display: grid;
  gap: clamp(1.4rem, 4vw, 3rem);
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
}

.founder-contact__intro p {
  color: var(--muted);
  max-width: 46rem;
}

.founder-contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.35rem;
}

.founder-contact-form {
  background: #fff;
  border: 1px solid rgba(157, 118, 51, 0.2);
  border-radius: 28px;
  box-shadow: 0 22px 64px rgba(30, 26, 20, 0.1);
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: clamp(1.15rem, 3vw, 2rem);
}

.founder-contact-form label {
  display: grid;
  gap: 0.45rem;
}

.founder-contact-form span {
  color: #171717;
  font-size: 0.86rem;
  font-weight: 800;
}

.founder-contact-form input,
.founder-contact-form textarea {
  background: #fffdf8;
  border: 1px solid rgba(157, 118, 51, 0.24);
  border-radius: 18px;
  color: #171717;
  font: inherit;
  min-width: 0;
  padding: 0.95rem 1rem;
  width: 100%;
}

.founder-contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.founder-contact-form input:focus,
.founder-contact-form textarea:focus {
  border-color: rgba(157, 118, 51, 0.68);
  box-shadow: 0 0 0 4px rgba(157, 118, 51, 0.13);
  outline: none;
}

.founder-contact-form__full,
.founder-contact-form__note,
.founder-contact-form__status,
.founder-contact-form__submit {
  grid-column: 1 / -1;
}

.founder-contact-form__note,
.founder-contact-form__status {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.founder-contact-form__status {
  color: #176b4d;
  font-weight: 800;
  min-height: 1.2em;
}

@media (max-width: 860px) {
  .founder-hero__inner,
  .founder-section__inner,
  .founder-contact__inner {
    grid-template-columns: 1fr;
  }

  .founder-hero__content h1 {
    font-size: clamp(2.7rem, 14vw, 4.6rem);
  }

  .founder-card-grid {
    grid-template-columns: 1fr;
  }

  .founder-expertise__layout {
    grid-template-columns: 1fr;
  }

  .founder-expertise__media {
    width: min(100%, 640px);
    margin-inline: auto;
  }

  .founder-hero__actions,
  .founder-contact-card__actions,
  .founder-contact__actions {
    flex-direction: column;
  }

  .founder-hero__actions .btn,
  .founder-contact-card__actions .btn,
  .founder-contact__actions .btn {
    width: 100%;
  }

  .founder-contact-form {
    border-radius: 22px;
    grid-template-columns: 1fr;
  }
}

/* Offre sticky livraison gratuite. */
:root {
  --zw-top-bar-height: 0px;
}

body .top-bar {
  position: fixed !important;
  inset: 0 0 auto;
  z-index: 10000;
  min-height: var(--zw-top-bar-height);
  background: linear-gradient(90deg, #8f1118 0%, #c51f24 48%, #8f1118 100%);
  box-shadow: 0 10px 28px rgba(90, 12, 16, 0.18);
}

body .top-bar__marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: var(--zw-top-bar-height);
  overflow: hidden;
}

body .top-bar__track {
  align-items: center;
  justify-content: center;
  gap: 0;
  box-sizing: border-box;
  width: 100%;
  min-width: 0;
  padding-block: 7px;
  animation: none !important;
  transform: none !important;
}

body .top-bar__track > span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: center;
  width: 100%;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body .top-bar__track > span:not(:first-child) {
  display: none;
}

body .top-bar__track > span::after {
  display: none;
  content: none;
}

body .top-bar__countdown {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  background: #fff8e7;
  color: #9f1f22;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7), 0 6px 14px rgba(69, 9, 12, 0.18);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

body .top-bar__message,
body .top-bar__highlight {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  white-space: nowrap;
}

body .top-bar__message .top-bar__message-full,
body .top-bar__message .top-bar__message-short,
body .top-bar__highlight .top-bar__highlight-full,
body .top-bar__highlight .top-bar__highlight-short {
  display: inline;
  width: auto;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
  white-space: inherit;
}

body .top-bar__message .top-bar__message-full::after,
body .top-bar__message .top-bar__message-short::after,
body .top-bar__highlight .top-bar__highlight-full::after,
body .top-bar__highlight .top-bar__highlight-short::after {
  display: none;
  content: none;
}

body .top-bar__message .top-bar__message-short,
body .top-bar__highlight .top-bar__highlight-short {
  display: none;
}

body .top-bar__highlight {
  position: relative;
  min-height: 24px;
  padding: 0.18rem 0.72rem 0.18rem 0.92rem;
  overflow: hidden;
  border-radius: 999px;
  color: #171717;
  background: linear-gradient(135deg, #fff7c6 0%, #f4c95d 52%, #b98928 100%);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 6px 18px rgba(255, 209, 101, 0.34);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  line-height: 1;
}

body .top-bar__highlight::before {
  content: "";
  flex: 0 0 auto;
  width: 0.38rem;
  height: 0.38rem;
  margin-right: 0.42rem;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.2), 0 0 12px rgba(255, 255, 255, 0.9);
}

body .top-bar__highlight::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -34%;
  width: 36%;
  transform: skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  animation: topBarHighlightSheen 3.2s ease-in-out infinite;
  pointer-events: none;
}

@keyframes topBarHighlightSheen {
  0% {
    left: -34%;
  }

  48%,
  100% {
    left: 112%;
  }
}

body .top-bar__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 24px;
  padding: 0.2rem 0.76rem;
  border-radius: 999px;
  color: #ffffff;
  background: #111111;
  box-shadow: 0 7px 16px rgba(0, 0, 0, 0.24);
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

body .top-bar__cta:hover,
body .top-bar__cta:focus-visible {
  color: #ffffff;
  background: #000000;
  box-shadow: 0 9px 20px rgba(0, 0, 0, 0.3);
  outline: 2px solid rgba(255, 255, 255, 0.8);
  outline-offset: 2px;
  transform: translateY(-1px);
}

body .top-bar__cta .top-bar__cta-full,
body .top-bar__cta .top-bar__cta-short {
  display: inline;
  width: auto;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  line-height: inherit;
  text-align: inherit;
  text-transform: inherit;
  white-space: inherit;
}

body .top-bar__cta .top-bar__cta-full::after,
body .top-bar__cta .top-bar__cta-short::after {
  display: none;
  content: none;
}

body .top-bar__cta .top-bar__cta-short {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  body .top-bar__highlight::after {
    display: none;
    animation: none;
  }
}

body .site-header {
  top: var(--zw-top-bar-height);
}

body.has-sticky-top-bar .primary-nav,
body:has(> .top-bar) .primary-nav {
  inset: calc(var(--zw-top-bar-height) + 96px) 16px auto;
}

@media (max-width: 640px) {
  :root {
    --zw-top-bar-height: 0px;
  }

  body .top-bar__track {
    gap: 0;
    padding-inline: 10px;
    padding-block: 6px;
    animation: none !important;
    transform: none !important;
  }

  body .top-bar__track > span {
    flex-wrap: wrap;
    gap: 0.34rem;
    line-height: 1.16;
    font-size: clamp(0.56rem, 1.72vw, 0.68rem);
    letter-spacing: 0.03em;
    white-space: normal;
  }

  body .top-bar__countdown {
    min-width: 72px;
    padding: 0.16rem 0.44rem;
    font-size: clamp(0.6rem, 1.86vw, 0.7rem);
  }

  body .top-bar__highlight {
    min-height: 22px;
    padding: 0.15rem 0.5rem 0.15rem 0.62rem;
    font-size: clamp(0.56rem, 1.72vw, 0.66rem);
    letter-spacing: 0.025em;
  }

  body .top-bar__highlight::before {
    width: 0.3rem;
    height: 0.3rem;
    margin-right: 0.3rem;
  }

  body .top-bar__cta {
    min-height: 22px;
    padding: 0.16rem 0.48rem;
    font-size: clamp(0.58rem, 1.75vw, 0.66rem);
  }

  body.has-sticky-top-bar .primary-nav,
  body:has(> .top-bar) .primary-nav {
    inset: calc(var(--zw-top-bar-height) + 86px) 14px auto;
  }
}

@media (max-width: 430px) {
  :root {
    --zw-top-bar-height: 0px;
  }

  body .top-bar__track > span {
    flex-wrap: wrap;
    gap: 0.3rem;
    line-height: 1.2;
    white-space: normal;
  }

  body .top-bar__message .top-bar__message-full {
    display: none;
  }

  body .top-bar__message .top-bar__message-short {
    display: inline;
  }

  body .top-bar__highlight .top-bar__highlight-full {
    display: none;
  }

  body .top-bar__highlight .top-bar__highlight-short {
    display: inline;
  }

  body .top-bar__cta .top-bar__cta-full {
    display: none;
  }

  body .top-bar__cta .top-bar__cta-short {
    display: inline;
  }
}
/* CRM dashboard */
.crm-page {
  margin: 0;
  background: #f7f2ea;
  color: #171717;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

.crm-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 56px) 20px;
}

.crm-hero,
.crm-panel,
.crm-kpis article {
  background: #fffdf8;
  border: 1px solid rgba(158, 119, 49, 0.22);
  border-radius: 24px;
  box-shadow: 0 18px 45px rgba(39, 31, 19, 0.08);
}

.crm-hero {
  padding: clamp(24px, 4vw, 44px);
  margin-bottom: 22px;
}

.crm-hero h1 {
  max-width: 920px;
  margin: 0.2rem 0 1rem;
  font-family: Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  line-height: 0.95;
}

.crm-token-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
  margin-top: 18px;
}

.crm-token-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}

.crm-token-form input {
  min-height: 52px;
  border: 1px solid rgba(158, 119, 49, 0.28);
  border-radius: 999px;
  padding: 0 18px;
  font: inherit;
}

.crm-status {
  min-height: 1.4em;
  color: #9f1f22;
  font-weight: 800;
}

.crm-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 20px 0;
}

.crm-kpis article {
  padding: 20px;
}

.crm-kpis span {
  display: block;
  color: #8d6b2e;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.crm-kpis strong {
  display: block;
  margin-top: 8px;
  font-size: clamp(1.8rem, 4vw, 3rem);
}

.crm-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
}

.crm-panel {
  padding: 22px;
}

.crm-panel--wide {
  grid-column: 1 / -1;
}

.crm-panel h2 {
  margin: 0 0 14px;
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
}

.crm-list {
  display: grid;
  gap: 10px;
}

.crm-row {
  display: grid;
  gap: 8px;
  padding: 14px;
  border: 1px solid rgba(158, 119, 49, 0.16);
  border-radius: 18px;
  background: #fbf7ef;
}

.crm-row__top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.crm-row small,
.crm-row span,
.crm-panel p {
  color: #665f54;
}

.crm-row dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 16px;
  margin: 0;
}

.crm-row dt {
  color: #8d6b2e;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.crm-row dd {
  margin: 2px 0 0;
  font-weight: 800;
}

.crm-row a,
.crm-action {
  justify-self: start;
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 18px;
  border-radius: 999px;
  background: #111;
  border: 0;
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
  font-weight: 900;
}

@media (max-width: 760px) {
  .crm-shell {
    padding: 18px 14px 36px;
  }

  .crm-token-form,
  .crm-grid,
  .crm-kpis {
    grid-template-columns: 1fr;
  }

  .crm-hero,
  .crm-panel {
    border-radius: 18px;
    padding: 18px;
  }

  .crm-row__top {
    flex-direction: column;
  }
}

.section-heading h1 {
  margin-bottom: 12px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: clamp(2rem, 7vw, 3.45rem);
  line-height: 1.05;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

/* Keep the scratch promo dialog and its close button above the sticky offer bar. */
body #quoteExitPromo.promo-modal {
  z-index: 10020;
  padding-top: calc(var(--zw-top-bar-height, 46px) + max(14px, env(safe-area-inset-top)));
  padding-bottom: max(14px, env(safe-area-inset-bottom));
}

body #quoteExitPromo .promo-card--scratch {
  max-height: calc(100dvh - var(--zw-top-bar-height, 46px) - 30px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

body #quoteExitPromo .promo-card--scratch .modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

@media (max-width: 640px) {
  body #quoteExitPromo.promo-modal {
    align-items: start;
    padding-inline: 10px;
    padding-top: calc(var(--zw-top-bar-height, 46px) + max(10px, env(safe-area-inset-top)));
  }

  body #quoteExitPromo .promo-card--scratch {
    width: min(100%, calc(100vw - 20px));
    max-height: calc(100dvh - var(--zw-top-bar-height, 46px) - 22px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    border-radius: 24px;
  }
}

/* Offer pricing: visible marketing discount, while quote math uses the sale price. */
.promo-price,
.product-card__price--promo,
.detail-price__value--promo {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.44rem;
}

.promo-price__old {
  color: #81786e;
  font-size: 0.82em;
  font-weight: 850;
  text-decoration: line-through;
  text-decoration-thickness: 0.13em;
  text-decoration-color: rgba(162, 15, 23, 0.72);
}

.promo-price__new {
  color: #a20f17;
  font-size: 1.08em;
  font-weight: 950;
}

.promo-price--summary {
  justify-content: flex-start;
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #a20f17 !important;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.88rem, 2vw, 1.06rem);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: left;
  text-transform: uppercase;
  white-space: normal;
}

.product-card__discount-ribbon {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100% - 20px);
  min-height: 34px;
  padding: 0.46rem 0.72rem;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #d71920 0%, #a20f17 58%, #65070d 100%);
  border: 0;
  box-shadow: 0 12px 26px rgba(162, 15, 23, 0.3);
  font-size: clamp(0.72rem, 1.7vw, 0.88rem);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.product-card__discount-ribbon--inline {
  position: static;
  min-height: 28px;
  padding: 0.35rem 0.62rem;
  font-size: 0.72rem;
}

.product-card--moment-offer .product-card__media {
  border: 2px solid rgba(162, 15, 23, 0.14);
}

.product-card--moment-offer .product-card__price {
  color: #a20f17;
  text-transform: none;
}

/* Detail page offer polish: prevent clipped text and keep the discount readable. */
.detail-product__content {
  min-width: 0;
  padding: clamp(22px, 3.5vw, 38px);
}

.detail-product__content > * {
  max-width: 100%;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  line-height: 1.25;
  white-space: normal;
}

.breadcrumb a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.detail-product__content h1,
.detail-product__description {
  overflow-wrap: anywhere;
}

.detail-price {
  min-width: 0;
}

.detail-price__value--promo {
  align-items: center;
  gap: 0.58rem 0.72rem;
  line-height: 1.1;
}

.detail-price__value--promo .promo-price__old {
  color: #7c6854;
  font-size: clamp(0.88rem, 2vw, 1rem);
  letter-spacing: 0.02em;
}

.detail-price__value--promo .promo-price__new {
  color: #7b5a24;
  font-size: clamp(1rem, 2.2vw, 1.14rem);
  letter-spacing: 0.08em;
}

.detail-price .product-card__discount-ribbon--inline {
  max-width: 100%;
  min-height: 30px;
  padding: 0.45rem 0.72rem;
  color: #8f1619 !important;
  background: linear-gradient(135deg, #fff7d8 0%, #f4d782 100%);
  border: 1px solid rgba(162, 15, 23, 0.18);
  box-shadow: 0 10px 24px rgba(126, 80, 21, 0.12);
  font-size: clamp(0.68rem, 1.8vw, 0.78rem);
  letter-spacing: 0.08em;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
}

@media (max-width: 640px) {
  .detail-product {
    padding-block: 14px 34px;
  }

  .detail-product__inner {
    gap: 14px;
  }

  .detail-product__content {
    gap: 14px;
    padding: 20px 18px 22px;
    border-radius: 24px;
  }

  .detail-back {
    font-size: 1rem;
  }

  .detail-product__content h1 {
    font-size: clamp(2.05rem, 8.6vw, 2.85rem);
    line-height: 1.06;
  }

  .detail-product__description {
    font-size: 1rem;
    line-height: 1.55;
  }

  .detail-price {
    padding: 14px;
    border-radius: 22px;
  }

  .detail-price__value--promo {
    gap: 0.48rem 0.64rem;
  }

  .detail-price .product-card__discount-ribbon--inline {
    width: fit-content;
    padding-inline: 0.62rem;
    font-size: 0.66rem;
  }
}

/* Keep quote modals clear of the sticky delivery bar. */
body #orderModal.modal:not([hidden]),
body #detailOrderModal.modal:not([hidden]) {
  z-index: 10030;
  align-items: start;
  padding-top: calc(var(--zw-top-bar-height, 46px) + max(12px, env(safe-area-inset-top)));
  padding-bottom: max(12px, env(safe-area-inset-bottom));
}

/* Testimonial stories: compact couple previews and an immersive media viewer. */
body.testimonial-story-open {
  overflow: hidden;
}

/* Four-step ordering guide placed between social proof and purchase details. */
body #comment-commander.order-journey {
  color: #181511;
  background: #fff;
  border-block: 1px solid rgba(151, 111, 42, 0.18);
}

body #comment-commander .order-journey__heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: clamp(28px, 5vw, 72px);
  margin-bottom: clamp(30px, 4vw, 52px);
}

body #comment-commander .order-journey__heading > div,
body #comment-commander .order-journey__heading > p {
  min-width: 0;
}

body #comment-commander .order-journey__heading :is(h1, h2) {
  max-width: 14ch;
  margin-bottom: 0;
}

body #comment-commander .order-journey__heading > p {
  margin: 0 0 4px;
  color: #625d55;
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  line-height: 1.55;
}

body #comment-commander .order-journey__steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 1.7vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

body #comment-commander .order-journey__step {
  min-width: 0;
  overflow: hidden;
  background: #f8f5ef;
  border: 1px solid rgba(151, 111, 42, 0.24);
  border-radius: 8px;
}

body #comment-commander .order-journey__visual {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9e1d4;
}

body #comment-commander .order-journey__visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body #comment-commander .order-journey__visual--validation > img {
  object-position: center 26%;
}

body #comment-commander .order-journey__number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: #a20f17;
  border: 2px solid #fff;
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 900;
}

body #comment-commander .order-journey__status {
  position: absolute;
  right: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 10px;
  color: #fff;
  background: rgba(18, 16, 14, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.1;
  text-align: center;
}

body #comment-commander .order-journey__status svg {
  flex: 0 0 19px;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

body #comment-commander .order-journey__visual--quote {
  display: grid;
  place-items: center;
  padding: 22px 18px 16px;
  background: #181511;
}

body #comment-commander .order-journey__quote {
  display: grid;
  width: 100%;
  max-width: 240px;
  overflow: hidden;
  color: #181511;
  background: #fff;
  border: 1px solid #d9cba9;
  border-radius: 6px;
}

body #comment-commander .order-journey__quote > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 10px;
  border-bottom: 1px solid #ece5d8;
}

body #comment-commander .order-journey__quote > span:last-child {
  border-bottom: 0;
}

body #comment-commander .order-journey__quote small,
body #comment-commander .order-journey__quote strong {
  font-size: 0.72rem;
  line-height: 1.15;
}

body #comment-commander .order-journey__quote small {
  color: #6a6257;
}

body #comment-commander .order-journey__quote strong {
  text-align: right;
}

body #comment-commander .order-journey__quote-total {
  color: #fff;
  background: #a20f17;
}

body #comment-commander .order-journey__quote-total small {
  color: #f5dfb0;
}

body #comment-commander .order-journey__content {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 20px 20px 22px;
}

body #comment-commander .order-journey__content h3,
body #comment-commander .order-journey__content p {
  margin: 0;
}

body #comment-commander .order-journey__content h3 {
  font-size: clamp(1.18rem, 1.55vw, 1.48rem);
  line-height: 1.15;
}

body #comment-commander .order-journey__content p {
  color: #625d55;
  font-size: 0.94rem;
  line-height: 1.48;
}

body #comment-commander .order-journey__inline-link {
  width: fit-content;
  color: #8f1117;
  font-size: 0.9rem;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 4px;
}

body #comment-commander .order-journey__actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(28px, 4vw, 44px);
}

body #comment-commander .order-journey__actions .btn {
  min-width: 0;
}

@media (max-width: 980px) {
  body #comment-commander .order-journey__steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  body #comment-commander .order-journey__heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 16px;
  }

  body #comment-commander .order-journey__heading :is(h1, h2) {
    max-width: 100%;
  }

  body #comment-commander .order-journey__steps {
    display: flex;
    width: 100%;
    align-items: stretch;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 3px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #a20f17 #e9e1d4;
    overscroll-behavior-inline: contain;
  }

  body #comment-commander .order-journey__steps::-webkit-scrollbar {
    height: 7px;
  }

  body #comment-commander .order-journey__steps::-webkit-scrollbar-track {
    background: #e9e1d4;
  }

  body #comment-commander .order-journey__steps::-webkit-scrollbar-thumb {
    background: #a20f17;
    border-radius: 999px;
  }

  body #comment-commander .order-journey__step {
    display: block;
    flex: 0 0 min(82vw, 310px);
    scroll-snap-align: start;
  }

  body #comment-commander .order-journey__visual {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  body #comment-commander .order-journey__content {
    padding: 18px 16px 20px;
  }

  body #comment-commander .order-journey__content h3 {
    font-size: 1.08rem;
  }

  body #comment-commander .order-journey__content p,
  body #comment-commander .order-journey__inline-link {
    font-size: 0.84rem;
  }

  body #comment-commander .order-journey__visual--quote {
    padding: 54px 14px 18px;
  }

  body #comment-commander .order-journey__quote > span {
    display: grid;
    gap: 3px;
    padding: 8px;
  }

  body #comment-commander .order-journey__quote strong {
    text-align: left;
  }

  body #comment-commander .order-journey__status {
    right: 7px;
    bottom: 7px;
    left: 7px;
    font-size: 0.68rem;
  }

  body #comment-commander .order-journey__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  body #comment-commander .order-journey__actions .btn {
    width: 100%;
  }
}

body #histoire-linda .testimonial-stories {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

body #histoire-linda .testimonial-stories__rail {
  display: flex;
  align-items: flex-start;
  gap: clamp(16px, 2.4vw, 28px);
  width: 100%;
  padding: 6px 4px 18px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: #b81724 #e7dfd3;
}

body #histoire-linda .testimonial-stories__rail::-webkit-scrollbar {
  height: 7px;
}

body #histoire-linda .testimonial-stories__rail::-webkit-scrollbar-track {
  background: #e7dfd3;
}

body #histoire-linda .testimonial-stories__rail::-webkit-scrollbar-thumb {
  background: #b81724;
  border-radius: 999px;
}

body #histoire-linda .testimonial-story {
  flex: 0 0 clamp(150px, 17vw, 188px);
  scroll-snap-align: start;
}

body #histoire-linda .testimonial-story__trigger {
  display: grid;
  width: 100%;
  gap: 11px;
  padding: 0;
  color: #191713;
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: center;
}

body #histoire-linda .testimonial-story__preview {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4.25;
  overflow: hidden;
  padding: 3px;
  background: #fffdf8;
  border: 3px solid #b81724;
  border-radius: 8px;
  box-shadow: 0 0 0 2px #c89a42, 0 12px 28px rgba(31, 25, 18, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

body #histoire-linda .testimonial-story__preview > img:first-child {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 34%;
  border-radius: 4px;
}

body #histoire-linda .testimonial-story:nth-child(2) .testimonial-story__preview > img:first-child {
  object-position: center 28%;
}

body #histoire-linda .testimonial-story__flag {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 28px;
  height: 18px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 2px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.28);
}

body #histoire-linda .testimonial-story__cta {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  z-index: 2;
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px 8px;
  color: #fff;
  background: rgba(17, 15, 13, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 4px;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 850;
  line-height: 1;
  white-space: nowrap;
}

body #histoire-linda .testimonial-story__play {
  display: inline-grid;
  flex: 0 0 22px;
  width: 22px;
  height: 22px;
  place-items: center;
  padding-left: 2px;
  color: #111;
  background: #fff;
  border-radius: 50%;
  font-size: 0.62rem;
}

body #histoire-linda .testimonial-story__name {
  display: -webkit-box;
  min-height: 2.5em;
  overflow: hidden;
  font-size: clamp(0.9rem, 1.3vw, 1rem);
  font-weight: 850;
  line-height: 1.25;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body #histoire-linda .testimonial-story__trigger:hover .testimonial-story__preview,
body #histoire-linda .testimonial-story__trigger:focus-visible .testimonial-story__preview {
  transform: translateY(-3px);
  box-shadow: 0 0 0 3px #c89a42, 0 18px 36px rgba(31, 25, 18, 0.18);
}

body #histoire-linda .testimonial-story__trigger:hover .testimonial-story__cta,
body #histoire-linda .testimonial-story__trigger:focus-visible .testimonial-story__cta {
  color: #111;
  background: #fff;
  border-color: #fff;
}

body #histoire-linda .testimonial-story__trigger:hover .testimonial-story__play,
body #histoire-linda .testimonial-story__trigger:focus-visible .testimonial-story__play {
  color: #fff;
  background: #b81724;
}

body #histoire-linda .testimonial-story__trigger:focus-visible {
  outline: 3px solid #111;
  outline-offset: 7px;
}

body #histoire-linda .testimonial-story.is-seen .testimonial-story__preview {
  border-color: #7b7469;
  box-shadow: 0 0 0 2px #aaa196, 0 10px 24px rgba(31, 25, 18, 0.1);
}

.testimonial-story-viewer[hidden] {
  display: none !important;
}

.testimonial-story-viewer {
  position: fixed;
  inset: 0;
  z-index: 12000;
  display: grid;
  place-items: center;
  padding: 16px;
}

.testimonial-story-viewer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 8, 8, 0.9);
  backdrop-filter: blur(10px);
}

.testimonial-story-viewer__panel {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr);
  width: min(430px, calc(100vw - 32px));
  height: min(760px, calc(100dvh - 32px));
  overflow: hidden;
  color: #fff;
  background: #0c0b0a;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.46);
}

.testimonial-story-viewer__progress {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 4px;
  padding: 12px 12px 7px;
}

.testimonial-story-viewer__progress > span {
  position: relative;
  height: 3px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 999px;
}

.testimonial-story-viewer__progress > span::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left center;
}

.testimonial-story-viewer__progress > span.is-complete::after {
  transform: scaleX(1);
}

.testimonial-story-viewer__progress > span.is-current::after {
  transform: scaleX(1);
}

.testimonial-story-viewer__progress > span.is-current.is-timed::after {
  animation: testimonial-story-progress var(--story-duration) linear both;
}

@keyframes testimonial-story-progress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

.testimonial-story-viewer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  padding: 2px 10px 9px 14px;
}

.testimonial-story-viewer__identity {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.testimonial-story-viewer__identity img {
  flex: 0 0 auto;
  width: 28px;
  height: 18px;
  object-fit: cover;
  border-radius: 2px;
}

.testimonial-story-viewer__identity strong {
  overflow: hidden;
  font-size: 0.95rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.testimonial-story-viewer__close,
.testimonial-story-viewer__nav {
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  cursor: pointer;
}

.testimonial-story-viewer__close {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  font-size: 1.65rem;
  line-height: 1;
}

.testimonial-story-viewer__stage {
  position: relative;
  min-height: 0;
  overflow: hidden;
  background: #090909;
  touch-action: pan-y;
}

.testimonial-story-viewer__media {
  width: 100%;
  height: 100%;
}

.testimonial-story-viewer__media img,
.testimonial-story-viewer__media video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  background: #090909;
}

.testimonial-story-viewer__nav {
  position: absolute;
  top: 50%;
  width: 46px;
  height: 46px;
  transform: translateY(-50%);
  font-size: 2rem;
  line-height: 1;
}

.testimonial-story-viewer__nav--prev {
  left: 10px;
}

.testimonial-story-viewer__nav--next {
  right: 10px;
}

.testimonial-story-viewer__close:hover,
.testimonial-story-viewer__close:focus-visible,
.testimonial-story-viewer__nav:hover,
.testimonial-story-viewer__nav:focus-visible {
  color: #111;
  background: #fff;
  outline: 3px solid #d4ad58;
  outline-offset: 2px;
}

@media (max-width: 640px) {
  body #histoire-linda .testimonial-stories {
    width: 100%;
  }

  body #histoire-linda .testimonial-stories__rail {
    gap: 16px;
    padding: 4px 18px 16px;
  }

  body #histoire-linda .testimonial-story {
    flex-basis: min(38vw, 148px);
  }

  body #histoire-linda .testimonial-story__preview {
    aspect-ratio: 3 / 4.2;
  }

  .testimonial-story-viewer {
    padding: 0;
  }

  .testimonial-story-viewer__panel {
    width: 100%;
    height: 100dvh;
    max-height: none;
    border: 0;
    border-radius: 0;
  }

  .testimonial-story-viewer__header {
    padding-inline: 14px 10px;
  }

  .testimonial-story-viewer__nav {
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  body #histoire-linda .testimonial-story__preview,
  .testimonial-story-viewer__progress > span::after {
    transition: none;
    animation: none !important;
  }
}

body #orderModal .modal__panel,
body #detailOrderModal .modal__panel {
  position: relative;
  min-height: 0;
  height: auto;
  max-height: calc(100dvh - var(--zw-top-bar-height, 46px) - 28px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
}

body #orderModal .modal__close,
body #detailOrderModal .modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  cursor: pointer;
}

@media (max-width: 560px) {
  body #orderModal.modal:not([hidden]),
  body #detailOrderModal.modal:not([hidden]) {
    padding-inline: 10px;
    padding-top: calc(var(--zw-top-bar-height, 46px) + max(10px, env(safe-area-inset-top)));
  }

  body #orderModal .modal__panel,
  body #detailOrderModal .modal__panel {
    min-height: 0;
    max-height: calc(100dvh - var(--zw-top-bar-height, 46px) - 22px - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    border-radius: 24px;
  }
}

/* Keep the fixed offer price readable after the legacy offer rules above. */
.subcatalogue-body .subcatalog-card--moment .promo-price--summary {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: baseline;
  gap: 8px;
  padding: 0;
  text-transform: none;
}

.subcatalogue-body .subcatalog-card--moment .promo-price--summary .promo-price__old {
  color: #665b54;
  font-size: 0.88em;
  text-decoration: line-through;
}

.subcatalogue-body .subcatalog-card--moment .promo-price--summary .promo-price__new {
  color: #a20f17;
  font-size: 1.16em;
}

/* 2026-07-18: animated brand manifesto replacing the former delivery heading. */
body.home-page #equipe.team-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(74px, 9vw, 132px) clamp(42px, 6vw, 76px);
  border-block: 1px solid rgba(160, 113, 32, 0.24);
  background-color: #fbf8f1;
  background-image:
    repeating-linear-gradient(90deg, rgba(117, 82, 26, 0.022) 0 1px, transparent 1px 8px),
    repeating-linear-gradient(0deg, rgba(117, 82, 26, 0.018) 0 1px, transparent 1px 7px);
}

body.home-page #equipe.team-section::before,
body.home-page #equipe.team-section::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  width: min(88vw, 1080px);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(176, 128, 44, 0.52), transparent);
}

body.home-page #equipe.team-section::before {
  top: 28px;
}

body.home-page #equipe.team-section::after {
  bottom: 24px;
}

body.home-page #equipe .brand-manifesto {
  width: min(100%, 1080px);
  max-width: 1080px;
  margin: 0 auto clamp(42px, 6vw, 72px) !important;
  text-align: center;
}

body.home-page #equipe .brand-manifesto__title {
  max-width: none !important;
  margin: 0;
  color: #171513;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.2rem, 6.3vw, 7.35rem) !important;
  font-weight: 500;
  line-height: 0.96 !important;
  letter-spacing: 0 !important;
  text-wrap: balance;
}

body.home-page #equipe .brand-manifesto__line {
  display: block;
}

body.home-page #equipe .brand-manifesto__year {
  color: #9d6d1b;
  font-style: italic;
}

body.home-page #equipe .brand-manifesto__line--gold {
  padding-block: 0.04em 0.08em;
  color: #9d6d1b;
  background-image: linear-gradient(100deg, #81550f 0%, #c89a3d 24%, #f0d58f 43%, #9b6815 58%, #e4bf6a 76%, #81550f 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: zaangaManifestoGold 6.5s ease-in-out 1.2s infinite;
}

body.home-page #equipe .brand-manifesto__line--closing {
  max-width: 15.5em;
  margin: 0.18em auto 0;
  color: #403a32;
  font-size: 0.54em;
  font-style: italic;
  line-height: 1.08;
}

body.home-page #equipe .brand-manifesto__signature {
  position: relative;
  display: block;
  width: min(180px, 44vw);
  height: 1px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  background: linear-gradient(90deg, transparent, #b88936 18% 82%, transparent);
}

body.home-page #equipe .brand-manifesto__signature::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 9px;
  height: 9px;
  border: 1px solid #b88936;
  background: #fbf8f1;
  transform: translate(-50%, -50%) rotate(45deg);
}

body.home-page #equipe .country-presence {
  width: min(100%, 1080px);
  margin-inline: auto;
  padding-top: clamp(20px, 3vw, 30px);
  border-top: 1px solid rgba(151, 109, 42, 0.18);
}

body.home-page #equipe .country-presence__marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

body.home-page #equipe .coverage-countries li {
  min-height: 54px;
  padding: 10px 16px;
  border-radius: 6px;
  border-color: rgba(151, 109, 42, 0.2);
  background: rgba(255, 253, 248, 0.9);
  box-shadow: 0 10px 30px rgba(72, 50, 18, 0.06);
}

body.home-motion-ready #equipe.home-reveal .brand-manifesto__line,
body.home-motion-ready #equipe.home-reveal .brand-manifesto__signature {
  opacity: 0;
  filter: blur(7px);
  transform: translate3d(0, 30px, 0);
  transition:
    opacity 900ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms cubic-bezier(0.22, 1, 0.36, 1);
}

body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__line,
body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__signature {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__line:nth-child(1) {
  transition-delay: 90ms;
}

body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__line:nth-child(2) {
  transition-delay: 260ms;
}

body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__line:nth-child(3) {
  transition-delay: 430ms;
}

body.home-motion-ready #equipe.home-reveal.is-visible .brand-manifesto__signature {
  transition-delay: 600ms;
}

@keyframes zaangaManifestoGold {
  0%,
  18%,
  100% {
    background-position: 100% 50%;
  }

  52% {
    background-position: 0% 50%;
  }
}

@media (max-width: 700px) {
  body.home-page #equipe.team-section {
    padding-block: 58px 38px;
  }

  body.home-page #equipe.team-section::before {
    top: 18px;
  }

  body.home-page #equipe.team-section::after {
    bottom: 16px;
  }

  body.home-page #equipe .brand-manifesto {
    margin-bottom: 34px !important;
  }

  body.home-page #equipe .brand-manifesto__title {
    font-size: clamp(2.6rem, 12.4vw, 4.15rem) !important;
    line-height: 0.98 !important;
  }

  body.home-page #equipe .brand-manifesto__line--closing {
    max-width: 13em;
    margin-top: 0.28em;
    font-size: 0.49em;
    line-height: 1.15;
  }

  body.home-page #equipe .brand-manifesto__signature {
    margin-top: 28px;
  }

  body.home-page #equipe .country-presence {
    padding-top: 18px;
  }

  body.home-page #equipe .country-presence__marquee {
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  }

  body.home-page #equipe .country-presence__marquee::-webkit-scrollbar {
    display: none;
  }

  body.home-page #equipe .coverage-countries li {
    min-height: 48px;
    padding: 8px 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.home-page #equipe .brand-manifesto__line--gold {
    animation: none;
    background-position: 50% 50%;
  }

  body.home-motion-ready #equipe.home-reveal .brand-manifesto__line,
  body.home-motion-ready #equipe.home-reveal .brand-manifesto__signature {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}

/* Parcours de devis : informations essentielles visibles avant WhatsApp. */
.order-country-field select {
  width: 100%;
}

.order-trust-summary {
  margin: 6px 0 16px;
  padding: 14px 16px;
  border: 1px solid #d7c59f;
  border-left: 4px solid #a51622;
  background: #fffaf0;
  color: #292522;
  font-size: 0.9rem;
  line-height: 1.5;
}

.order-trust-summary strong {
  display: block;
  margin-bottom: 6px;
  color: #171513;
}

.order-trust-summary ol {
  margin: 0;
  padding-left: 20px;
}

.order-trust-summary li + li {
  margin-top: 4px;
}

.order-privacy-note {
  margin: -4px 0 14px;
  color: #625a52;
  font-size: 0.78rem;
  line-height: 1.45;
}

.order-privacy-note a {
  color: #8f101b;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 720px) {
  .modal__panel {
    max-height: min(92dvh, 920px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .modal__panel .quote-submit {
    position: sticky;
    bottom: 0;
    z-index: 2;
    min-height: 52px;
    box-shadow: 0 -8px 18px rgba(23, 21, 19, 0.12);
  }
}

/* Fiche modèle : produit, prix et action visibles sans image démesurée. */
.detail-header-models {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid #a51622;
  color: #8f1619;
  background: #fff;
  font-weight: 900;
  text-decoration: none;
}

.detail-product__inner {
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr) !important;
  align-items: center !important;
  width: min(100% - 48px, 1180px) !important;
}

.detail-product__media {
  display: grid;
  place-items: center;
  max-height: 76vh;
  overflow: hidden;
  background: #f3f0eb;
}

.detail-product__media img {
  width: 100% !important;
  height: min(76vh, 820px) !important;
  object-fit: contain !important;
}

.detail-product__facts {
  display: grid;
  gap: 8px;
  margin: 20px 0 26px;
  padding: 18px 0;
  border-block: 1px solid #ded5c8;
  list-style: none;
}

.detail-product__facts li {
  position: relative;
  padding-left: 24px;
  color: #4f4a43;
  line-height: 1.45;
}

.detail-product__facts li::before {
  position: absolute;
  left: 0;
  color: #16724e;
  content: "✓";
  font-weight: 900;
}

.detail-mobile-buybar {
  display: none;
}

@media (max-width: 767px) {
  body.detail-body {
    padding-bottom: 78px;
  }

  .detail-header-models {
    display: none;
  }

  .detail-product {
    padding-top: 14px !important;
  }

  .detail-product__inner {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: min(100% - 28px, 720px) !important;
    gap: 20px !important;
  }

  .detail-product__media {
    max-height: 42svh !important;
    min-height: 250px !important;
  }

  .detail-product__media img {
    height: min(42svh, 330px) !important;
    min-height: 250px !important;
  }

  .detail-product__content {
    padding: 0 0 24px !important;
  }

  .detail-product__content h1 {
    font-size: 1.8rem !important;
    line-height: 1.08 !important;
  }

  .detail-product__description {
    font-size: 0.96rem !important;
  }

  .detail-product__facts {
    margin-block: 14px 18px;
    padding-block: 14px;
    font-size: 0.86rem;
  }

  .detail-mobile-buybar {
    position: fixed;
    inset: auto 0 0;
    z-index: 170;
    display: grid;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
    align-items: center;
    gap: 10px;
    min-height: 72px;
    padding: 9px 14px max(9px, env(safe-area-inset-bottom));
    border-top: 1px solid #d9d1c6;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -8px 24px rgba(23, 21, 19, 0.14);
  }

  .detail-mobile-buybar span,
  .detail-mobile-buybar small,
  .detail-mobile-buybar strong {
    display: block;
  }

  .detail-mobile-buybar small {
    color: #6a645c;
    font-size: 0.67rem;
  }

  .detail-mobile-buybar strong {
    margin-top: 3px;
    color: #a51622;
    font-size: 0.92rem;
  }

  .detail-mobile-buybar .btn {
    width: 100%;
    height: 52px !important;
    min-height: 50px;
    padding-inline: 10px;
    border-radius: 6px;
    background: #128c5b !important;
    font-size: 0.78rem;
  }

  .detail-mobile-buybar .btn > span {
    display: inline;
  }
}

.btn__whatsapp-icon {
  width: 20px !important;
  height: 20px !important;
  flex: 0 0 20px;
}
