/* =====================================================================
   LOUEVIE — Location de matériel événementiel · Montréal & Laval
   Design system: Charcoal + Warm Gold · Cormorant Garamond / Jost
   ===================================================================== */

:root {
  /* Ink / charcoal base */
  --ink-900: #131210;
  --ink-800: #1b1915;
  --ink-700: #24201a;
  --ink-600: #2f2a22;
  --ink-500: #3b352b;

  /* Warm gold accent */
  --gold-300: #e6cd8e;
  --gold-400: #d4b264;
  --gold-500: #c39a45;
  /* primary */
  --gold-600: #a67c2e;
  --gold-700: #856125;

  /* Cream / ivory neutrals */
  --cream-50: #faf8f3;
  --cream-100: #f4f0e7;
  --cream-200: #ece5d7;
  --cream-300: #ddd3bf;

  /* Text */
  --t-on-dark: #f6f2ea;
  --t-on-dark-mut: #b7ad9a;
  --t-on-dark-faint: #8a8170;
  --t-on-light: #211d16;
  --t-on-light-mut: #6a6253;

  --line-dark: rgba(255, 255, 255, 0.10);
  --line-light: rgba(33, 29, 22, 0.12);

  /* Shadows — layered, warm-tinted, low opacity */
  --sh-sm: 0 1px 2px rgba(28, 22, 10, 0.06), 0 2px 6px rgba(28, 22, 10, 0.05);
  --sh-md: 0 4px 10px rgba(28, 22, 10, 0.07), 0 12px 28px rgba(28, 22, 10, 0.09);
  --sh-lg: 0 10px 24px rgba(28, 22, 10, 0.10), 0 30px 60px rgba(28, 22, 10, 0.14);
  --sh-gold: 0 10px 26px rgba(166, 124, 46, 0.28);

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 96px;
  --sp-10: 128px;

  --maxw: 1240px;
  --radius: 4px;
  --radius-lg: 10px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --ff-display: "Cormorant Garamond", Georgia, serif;
  --ff-body: "Jost", system-ui, -apple-system, sans-serif;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}

body {
  font-family: var(--ff-body);
  font-weight: 400;
  color: var(--t-on-light);
  background: var(--cream-50);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

img {
  height: auto;
}

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

button {
  font: inherit;
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

.display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 600;
}

.h-xl {
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
}

.h-lg {
  font-size: clamp(1.7rem, 3vw, 2.5rem);
}

.h-md {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

em,
.italic {
  font-style: italic;
}

.serif {
  font-family: var(--ff-display);
}

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-600);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.eyebrow.center::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.lead {
  font-size: 1.12rem;
  color: var(--t-on-light-mut);
  font-weight: 400;
}

.muted {
  color: var(--t-on-light-mut);
}

/* ---------- Layout ---------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(20px, 5vw, 48px);
}

.section {
  padding-block: clamp(64px, 9vw, 128px);
}

.section-sm {
  padding-block: clamp(48px, 6vw, 80px);
}

.center {
  text-align: center;
}

.mx-auto {
  margin-inline: auto;
}

.measure {
  max-width: 64ch;
}

.measure-sm {
  max-width: 52ch;
}

/* Section themes */
.bg-cream {
  background: var(--cream-50);
}

.bg-cream-2 {
  background: var(--cream-100);
}

.bg-ink {
  background: var(--ink-900);
  color: var(--t-on-dark);
}

.bg-ink .lead,
.bg-ink .muted {
  color: var(--t-on-dark-mut);
}

.bg-ink .eyebrow {
  color: var(--gold-400);
}

/* Grain + gradient texture for dark sections */
.bg-ink {
  position: relative;
  background-image:
    radial-gradient(900px 500px at 85% -5%, rgba(195, 154, 69, 0.13), transparent 60%),
    radial-gradient(700px 600px at 0% 110%, rgba(166, 124, 46, 0.10), transparent 60%),
    linear-gradient(180deg, var(--ink-900), var(--ink-800));
}

.grain::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 0.95rem 1.7rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), background-color 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}

.btn:active {
  transform: translateY(1px) scale(0.99);
}

.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #2a1f08;
  box-shadow: var(--sh-gold);
  font-weight: 600;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(166, 124, 46, 0.42);
}

.btn-gold:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}

.btn-outline-dark {
  border-color: var(--line-light);
  color: var(--t-on-light);
  background: transparent;
}

.btn-outline-dark:hover {
  border-color: var(--gold-500);
  color: var(--gold-700);
  transform: translateY(-2px);
}

.btn-outline-dark:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

.btn-outline-light {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--t-on-dark);
  background: rgba(255, 255, 255, 0.02);
}

.btn-outline-light:hover {
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.05);
}

.btn-outline-light:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
}

.btn-ghost {
  color: var(--t-on-light);
  padding-inline: 0.4rem;
}

.btn-ghost:hover {
  color: var(--gold-700);
}

.btn-lg {
  padding: 1.1rem 2.1rem;
  font-size: 1rem;
}

.btn-block {
  width: 100%;
}

.btn .fa-arrow-right {
  transition: transform 0.3s var(--ease);
}

.btn:hover .fa-arrow-right {
  transform: translateX(4px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--gold-700);
  font-size: 0.95rem;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}

.link-arrow:hover {
  gap: 0.85rem;
  color: var(--gold-600);
}

.bg-ink .link-arrow {
  color: var(--gold-300);
}

/* ---------- Announcement bar ---------- */
.topbar {
  background: var(--ink-900);
  color: var(--t-on-dark-mut);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line-dark);
}

.topbar .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 40px;
}

.topbar a {
  color: var(--t-on-dark);
  transition: color 0.25s var(--ease);
}

.topbar a:hover {
  color: var(--gold-300);
}

.topbar .tb-services {
  display: flex;
  gap: 1.4rem;
}

.topbar .tb-services span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar .tb-services i {
  color: var(--gold-400);
  font-size: 0.78rem;
}

.topbar .tb-right {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(19, 18, 16, 0.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line-dark);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.header.scrolled {
  background: rgba(19, 18, 16, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.header .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 80px;
  gap: 1.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-shrink: 0;
  justify-self: start;
}

.brand img,
.brand-logo {
  height: 68px;
  width: auto;
  display: block;
}

.nav {
  justify-self: center;
}

.header-actions {
  justify-self: end;
}

.brand .brand-name {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--t-on-dark);
  letter-spacing: 0.01em;
}

.brand .brand-name b {
  color: var(--gold-400);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.nav a {
  position: relative;
  color: var(--t-on-dark-mut);
  font-size: 0.92rem;
  font-weight: 400;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius);
  transition: color 0.25s var(--ease);
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--t-on-dark);
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--gold-400);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav a:hover::after,
.nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* dropdown */
.nav-item {
  position: relative;
}

/* Invisible hover-bridge: fills the gap between the trigger and the panel so
   the menu doesn't close when the cursor crosses the empty space. */
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.nav-item:hover::after,
.nav-item:focus-within::after {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 460px;
  padding: 1rem;
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  transition-delay: 0.18s;
  /* grace period before hiding */
  z-index: 70;
}

.nav-item:hover .nav-panel,
.nav-item:focus-within .nav-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.nav-panel a {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.6rem 0.7rem;
  border-radius: var(--radius);
  color: var(--t-on-dark-mut);
  width: 100%;
}

.nav-panel a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--t-on-dark);
}

.nav-panel a::after {
  display: none;
}

.nav-panel a i {
  color: var(--gold-400);
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

/* Lang toggle */
.lang {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.lang button {
  padding: 0.32rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--t-on-dark-mut);
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.lang button.active {
  background: var(--gold-500);
  color: #221903;
}

.lang button:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  color: var(--t-on-dark);
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: background 0.25s var(--ease);
}

.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 90;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  background: #15140f;
  min-height: 100vh;
  height: 100dvh;
  padding: 1.2rem clamp(20px, 6vw, 34px) calc(2rem + env(safe-area-inset-bottom, 0px));
  overflow-y: auto;
}

.drawer.open {
  transform: translateX(0);
}

.drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.4rem;
}

.drawer-top .brand-name {
  color: var(--t-on-dark);
  font-family: var(--ff-display);
  font-size: 1.4rem;
}

.drawer-close {
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-dark);
  color: var(--t-on-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.drawer-close:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 2px;
}

.drawer nav {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.drawer nav a {
  color: var(--t-on-dark);
  font-size: 1.15rem;
  padding: 0.85rem 0.2rem;
  border-bottom: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer nav a i {
  color: var(--gold-400);
}

.drawer .drawer-sub {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--t-on-dark-faint);
  margin: 1.2rem 0 0.4rem;
}

.drawer .drawer-cat a {
  font-size: 1rem;
  padding: 0.6rem 0.2rem;
  color: var(--t-on-dark-mut);
}

.drawer .drawer-cat a.drawer-cat-all {
  color: var(--gold-300);
  font-weight: 600;
}

/* Collapsible categories accordion in the mobile drawer */
.drawer-acc {
  border-bottom: 1px solid var(--line-dark);
}

.drawer-acc summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--t-on-dark);
  font-size: 1.15rem;
  padding: 0.85rem 0.2rem;
}

.drawer-acc summary::-webkit-details-marker {
  display: none;
}

.drawer-acc summary i {
  color: var(--gold-400);
  transition: transform 0.3s var(--ease);
  font-size: 0.95rem;
}

.drawer-acc[open] summary i {
  transform: rotate(180deg);
}

.drawer-acc .drawer-cat {
  display: flex;
  flex-direction: column;
  padding: 0.2rem 0 0.8rem;
}

.drawer-acc .drawer-cat a {
  border-bottom: none;
}

.drawer-foot {
  /* Sit right under the nav (was margin-top:auto, which glued it to the very
     bottom where the mobile browser's address bar overlaps it). */
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.drawer-foot .lang {
  align-self: flex-start;
}

.drawer-foot .tel {
  color: var(--gold-300);
  font-size: 1.05rem;
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.scrim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
  backdrop-filter: blur(2px);
}

.scrim.open {
  opacity: 1;
  visibility: visible;
}

body.no-scroll {
  overflow: hidden;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  color: var(--t-on-dark);
  isolation: isolate;
  display: flex;
  align-items: center;
  min-height: 100vh;
  min-height: 100svh;
}

.hero>.wrap {
  width: 100%;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(15, 14, 11, 0.62) 0%, rgba(15, 14, 11, 0.38) 35%, rgba(15, 14, 11, 0.78) 100%),
    linear-gradient(90deg, rgba(15, 14, 11, 0.55), transparent 60%);
}

.hero-bg .tint {
  position: absolute;
  inset: 0;
  background: var(--gold-700);
  mix-blend-mode: multiply;
  opacity: 0.12;
}

.hero-inner {
  padding-block: clamp(60px, 9vh, 120px);
  max-width: 920px;
  margin-inline: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1.4rem, 3vh, 2.6rem);
}

.hero-inner>* {
  margin: 0;
}

.hero h1 {
  color: #fff;
  font-size: clamp(3rem, 5.8vw, 5rem);
  line-height: 1.04;
}

.hero h1 .accent {
  color: var(--gold-300);
  font-style: italic;
}

.hero p.lead {
  color: rgba(255, 255, 255, 0.88);
  max-width: 60ch;
  margin-inline: auto;
  font-size: clamp(1.12rem, 1.5vw, 1.4rem);
  line-height: 1.6;
}

.hero .eyebrow {
  justify-content: center;
  font-size: 0.82rem;
  letter-spacing: 0.26em;
}

.hero .eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: var(--gold-500);
  display: inline-block;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-cta .btn {
  padding: 1.15rem 2.4rem;
  font-size: 1.05rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2.6rem;
  justify-content: center;
}

.hero-trust div {
  font-size: 0.98rem;
}

.hero-trust i {
  font-size: 1.05rem;
}

.hero-trust div {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.92rem;
}

.hero-trust i {
  color: var(--gold-400);
}

/* stat band */
.statband {
  border-top: 1px solid var(--line-dark);
}

.statband .wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-block: 2.2rem;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  color: var(--gold-400);
  font-weight: 600;
  line-height: 1;
}

.stat .lab {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--t-on-dark-mut);
  margin-top: 0.4rem;
}

/* ---------- Section heading block ---------- */
.sec-head {
  max-width: 620px;
}

.sec-head.center {
  margin-inline: auto;
}

.sec-head h2 {
  margin-block: 0.7rem 0.9rem;
}

.sec-head.center .eyebrow {
  justify-content: center;
}

/* ---------- Category grid ---------- */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 3rem;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  display: block;
  isolation: isolate;
  box-shadow: var(--sh-md);
}

.cat-card.tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.cat-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
  z-index: -2;
}

.cat-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(15, 14, 11, 0.05) 30%, rgba(15, 14, 11, 0.55) 65%, rgba(15, 14, 11, 0.9) 100%);
  transition: background 0.4s var(--ease);
}

.cat-card:hover img {
  transform: scale(1.06);
}

.cat-card:hover::after {
  background: linear-gradient(180deg, rgba(15, 14, 11, 0.15) 20%, rgba(15, 14, 11, 0.6) 60%, rgba(15, 14, 11, 0.95) 100%);
}

.cat-card .cat-body {
  position: absolute;
  inset: auto 0 0 0;
  padding: clamp(18px, 2vw, 26px);
  color: #fff;
}

.cat-card .cat-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-300);
}

.cat-card h3 {
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  color: #fff;
  margin-top: 0.2rem;
}

.cat-card .cat-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 0.4rem;
  max-width: 36ch;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease), opacity 0.4s var(--ease), margin 0.4s var(--ease);
}

.cat-card:hover .cat-desc,
.cat-card:focus-within .cat-desc {
  max-height: 80px;
  opacity: 1;
}

.cat-card .cat-go {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-300);
  font-size: 0.88rem;
  font-weight: 500;
}

.cat-card:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
}

/* Product-shot cards (catalogue on the home page): white product on a clean
   white tile with a dark label, instead of a lifestyle photo with a dark scrim. */
.cat-card--pack {
  background: #ffffff;
  border: 1px solid var(--line-light);
}
.cat-card--pack img {
  object-fit: contain;
  object-position: center 42%;
  padding: clamp(12px, 6%, 40px);
}
.cat-card--pack::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 48%, rgba(255, 255, 255, 0.92) 74%, #fff 100%);
}
.cat-card--pack:hover::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 44%, rgba(255, 255, 255, 0.95) 70%, #fff 100%);
}
.cat-card--pack .cat-body {
  color: var(--ink-900);
}
.cat-card--pack h3 {
  color: var(--ink-900);
}
.cat-card--pack .cat-kicker {
  color: var(--gold-600);
}
.cat-card--pack .cat-desc {
  color: var(--t-on-light-mut);
}
.cat-card--pack .cat-go {
  color: var(--gold-700);
}

/* ---------- Feature / services ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 28px);
  margin-top: 3rem;
}

.feature {
  background: var(--cream-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 34px);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

.bg-ink .feature {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-dark);
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(195, 154, 69, 0.4);
}

.feature .ic {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(150deg, rgba(212, 178, 100, 0.22), rgba(166, 124, 46, 0.1));
  border: 1px solid rgba(195, 154, 69, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.bg-ink .feature .ic {
  color: var(--gold-300);
}

.feature h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}

.feature p {
  font-size: 0.96rem;
  color: var(--t-on-light-mut);
}

.bg-ink .feature p {
  color: var(--t-on-dark-mut);
}

/* ---------- Split / about ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-lg);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3.4;
}

.split-media .overlay-tint {
  position: absolute;
  inset: 0;
  background: var(--gold-700);
  mix-blend-mode: multiply;
  opacity: 0.08;
}

.split-media.tall img {
  aspect-ratio: 3/4;
}

.ulist {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.ulist li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
}

.ulist i {
  color: var(--gold-500);
  margin-top: 0.35rem;
}

.ulist strong {
  font-weight: 600;
}

.ulist span {
  color: var(--t-on-light-mut);
  display: block;
  font-size: 0.95rem;
}

.bg-ink .ulist span {
  color: var(--t-on-dark-mut);
}

/* ---------- Steps / how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: 3rem;
  counter-reset: step;
}

.step {
  position: relative;
  padding-top: 1rem;
}

.step .num {
  font-family: var(--ff-display);
  font-size: 3rem;
  color: rgba(195, 154, 69, 0.35);
  font-weight: 600;
  line-height: 1;
}

.bg-ink .step .num {
  color: rgba(212, 178, 100, 0.45);
}

.step h3 {
  font-size: 1.3rem;
  margin: 0.4rem 0 0.5rem;
}

.step p {
  font-size: 0.94rem;
  color: var(--t-on-light-mut);
}

.bg-ink .step p {
  color: var(--t-on-dark-mut);
}

.step::before {
  content: "";
  position: absolute;
  top: 1.4rem;
  left: 3.4rem;
  right: -1rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(195, 154, 69, 0.5), transparent);
}

.step:last-child::before {
  display: none;
}

/* ---------- Bundles ---------- */
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 26px);
  margin-top: 3rem;
}

.bundle {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: var(--ink-800);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.bundle:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-lg);
}

.bundle.featured {
  border-color: rgba(195, 154, 69, 0.5);
}

.bundle-media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.bundle-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.bundle:hover .bundle-media img {
  transform: scale(1.05);
}

.bundle-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(15, 14, 11, 0.7));
}

.bundle-tag {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  background: var(--gold-500);
  color: #221903;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}

.bundle-body {
  padding: clamp(20px, 2vw, 28px);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bundle-body h3 {
  font-size: 1.6rem;
  color: var(--t-on-dark);
}

.bundle-body .incl {
  display: grid;
  gap: 0.5rem;
  margin: 1rem 0 1.4rem;
}

.bundle-body .incl li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  color: var(--t-on-dark-mut);
  font-size: 0.92rem;
}

.bundle-body .incl i {
  color: var(--gold-400);
  font-size: 0.8rem;
}

.bundle-body .price {
  margin-top: auto;
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}

.bundle-body .price .from {
  font-size: 0.8rem;
  color: var(--t-on-dark-faint);
}

.bundle-body .price .amt {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--gold-300);
  font-weight: 600;
}

.bundle-body .price .per {
  font-size: 0.82rem;
  color: var(--t-on-dark-mut);
}

/* ---------- Product cards (catalogue / featured) ---------- */
.prod-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 3rem;
}

.prod-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.prod-card {
  background: var(--cream-50);
  color: var(--t-on-light);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}

/* Keep the card's arrow gold even inside dark (.bg-ink) sections */
.prod-card .link-arrow {
  color: var(--gold-700);
}

.prod-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-lg);
  border-color: rgba(195, 154, 69, 0.4);
}

.prod-media {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-200);
}

.prod-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

/* Real product shot (on white): show the whole product, not a cropped photo. */
.prod-media--pack {
  background: #fff;
}
.prod-media--pack img {
  object-fit: contain;
  padding: 10%;
}

.prod-card:hover .prod-media img {
  transform: scale(1.05);
}
/* Product-shot cards don't zoom on hover: a contained product would scale up
   and ride over the corner badge. */
.prod-card:hover .prod-media--pack img {
  transform: none;
}

.prod-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  background: rgba(19, 18, 16, 0.85);
  color: var(--gold-300);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
}

.prod-body {
  padding: 1.1rem 1.2rem 1.3rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.prod-cat {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.prod-body h3 {
  font-size: 1.25rem;
  margin: 0.25rem 0 0.4rem;
}

.prod-body p {
  font-size: 0.88rem;
  color: var(--t-on-light-mut);
  margin-bottom: 0.9rem;
}

.prod-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.prod-price {
  font-size: 0.9rem;
  color: var(--t-on-light);
}

.prod-price b {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--gold-700);
  font-weight: 600;
}

.prod-price small {
  color: var(--t-on-light-mut);
  font-size: 0.78rem;
}

/* ---------- Testimonials ---------- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 26px);
  margin-top: 3rem;
}

.testi {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 32px);
  position: relative;
}

.testi .stars {
  color: var(--gold-400);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.testi blockquote {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: var(--t-on-dark);
  font-style: italic;
}

.testi .who {
  margin-top: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.testi .who .av {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(150deg, var(--gold-400), var(--gold-700));
  color: #221903;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: var(--ff-display);
  font-size: 1.2rem;
}

.testi .who .nm {
  font-weight: 500;
  color: var(--t-on-dark);
}

.testi .who .rl {
  font-size: 0.82rem;
  color: var(--t-on-dark-faint);
}

/* ---------- Gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 12px;
  margin-top: 3rem;
}

.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
}

.gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 14, 11, 0);
  transition: background 0.4s var(--ease);
}

.gallery a:hover img {
  transform: scale(1.07);
}

.gallery a:hover::after {
  background: rgba(15, 14, 11, 0.18);
}

.gallery .g-w2 {
  grid-column: span 2;
}

.gallery .g-h2 {
  grid-row: span 2;
}

/* ---------- Service area ---------- */
.area-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.7rem;
  margin-top: 2.4rem;
}

.area-grid a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: var(--cream-50);
  font-size: 0.92rem;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), color 0.3s var(--ease);
}

.bg-ink .area-grid a {
  background: rgba(255, 255, 255, 0.025);
  border-color: var(--line-dark);
  color: var(--t-on-dark-mut);
}

.area-grid a:hover {
  border-color: var(--gold-500);
  transform: translateY(-2px);
  color: var(--gold-700);
}

.bg-ink .area-grid a:hover {
  color: var(--gold-300);
}

.area-grid a i {
  color: var(--gold-500);
}

/* ---------- FAQ ---------- */
.faq {
  max-width: 820px;
  margin: 3rem auto 0;
}

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

.bg-ink .faq-item {
  border-color: var(--line-dark);
}

.faq-q {
  width: 100%;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.3rem 0.2rem;
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--t-on-light);
}

.bg-ink .faq-q {
  color: var(--t-on-dark);
}

.faq-q i {
  color: var(--gold-500);
  font-size: 0.95rem;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}

.faq-item.open .faq-q i {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-a-inner {
  padding: 0 0.2rem 1.3rem;
  color: var(--t-on-light-mut);
  max-width: 70ch;
}

.bg-ink .faq-a-inner {
  color: var(--t-on-dark-mut);
}

/* ---------- CTA band ---------- */
.ctaband {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.ctaband .ctaband-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.ctaband .ctaband-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ctaband .ctaband-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(15, 14, 11, 0.92), rgba(15, 14, 11, 0.7));
}

.ctaband .wrap {
  text-align: center;
  padding-block: clamp(64px, 9vw, 120px);
}

.ctaband h2 {
  color: #fff;
  max-width: 16ch;
  margin: 0.8rem auto 1rem;
}

.ctaband p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 52ch;
  margin-inline: auto;
}

.ctaband .hero-cta {
  justify-content: center;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink-900);
  color: var(--t-on-dark-mut);
  border-top: 1px solid var(--line-dark);
}

.footer .wrap {
  padding-block: clamp(48px, 6vw, 80px) 2rem;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: clamp(24px, 3vw, 48px);
}

.foot-brand .brand-name {
  font-family: var(--ff-display);
  font-size: 1.7rem;
  color: var(--t-on-dark);
}

.foot-brand .brand-name b {
  color: var(--gold-400);
}

.foot-brand .brand-logo {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: -0.4rem;
}

.drawer-top .brand-logo {
  height: 30px;
  width: auto;
  display: block;
}

.foot-brand p {
  margin: 1rem 0 1.4rem;
  font-size: 0.92rem;
  max-width: 34ch;
}

.foot-social {
  display: flex;
  gap: 0.6rem;
}

.foot-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--t-on-dark-mut);
  transition: border-color 0.3s var(--ease), color 0.3s var(--ease), transform 0.3s var(--ease);
}

.foot-social a:hover {
  border-color: var(--gold-500);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.foot-col h4 {
  font-family: var(--ff-body);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--t-on-dark);
  margin-bottom: 1.1rem;
  font-weight: 600;
}

.foot-col ul {
  display: grid;
  gap: 0.6rem;
}

.foot-col a,
.foot-col li {
  font-size: 0.92rem;
  color: var(--t-on-dark-mut);
  transition: color 0.25s var(--ease);
}

.foot-col a:hover {
  color: var(--gold-300);
}

.foot-contact li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin-bottom: 0.7rem;
}

.foot-contact i {
  color: var(--gold-400);
  margin-top: 0.3rem;
  width: 16px;
}

.foot-bottom {
  margin-top: clamp(36px, 4vw, 56px);
  padding-top: 1.6rem;
  border-top: 1px solid var(--line-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.84rem;
}

.foot-bottom a {
  color: var(--t-on-dark-mut);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.25s var(--ease);
}

.foot-bottom a:hover {
  color: var(--gold-300);
}

.foot-bottom .websie {
  color: var(--gold-400);
}

/* ---------- Breadcrumb ---------- */
.crumb {
  font-size: 0.84rem;
  color: var(--t-on-dark-mut);
  display: flex;
  gap: 0.5rem;
  align-items: center;
  flex-wrap: wrap;
}

.crumb a:hover {
  color: var(--gold-300);
}

.crumb i {
  font-size: 0.65rem;
  opacity: 0.6;
}

.crumb span[aria-current] {
  color: var(--gold-300);
}

/* ---------- Page hero (interior) ---------- */
.page-hero {
  position: relative;
  color: var(--t-on-dark);
  isolation: isolate;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 14, 11, 0.7), rgba(15, 14, 11, 0.82));
}

.page-hero .wrap {
  padding-block: clamp(48px, 8vw, 110px);
}

.page-hero h1 {
  color: #fff;
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 1rem 0 1rem;
  max-width: 18ch;
}

.page-hero h1 .accent {
  color: var(--gold-300);
  font-style: italic;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 60ch;
  font-size: 1.1rem;
}

.page-hero .hero-cta {
  margin-top: 1.8rem;
}

/* ---------- Rich content (SEO copy) ---------- */
.prose {
  max-width: 72ch;
}

.prose p {
  margin-bottom: 1.1rem;
  color: var(--t-on-light-mut);
}

.prose h2 {
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  margin: 2rem 0 0.9rem;
}

.prose h3 {
  font-size: 1.4rem;
  margin: 1.6rem 0 0.7rem;
}

.prose ul {
  display: grid;
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}

.prose ul li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  color: var(--t-on-light-mut);
}

.prose ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--gold-500);
  font-size: 0.8rem;
  margin-top: 0.3rem;
}

.prose a {
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose strong {
  color: var(--t-on-light);
}

/* ---------- Booqable widget visibility ----------
   booqable.js sets <html data-booqable="live|placeholder"> at load.
   Show live widgets only when the store is configured; otherwise show the
   "à venir" fallback note. No flash: booqable.js runs in <head> first. */
html[data-booqable="placeholder"] .booqable-product,
html[data-booqable="placeholder"] .booqable-product-list,
html[data-booqable="placeholder"] .booqable-datepicker,
html[data-booqable="placeholder"] .booqable-product-button {
  display: none !important;
}

html[data-booqable="live"] [data-booqable-embed] {
  display: none !important;
}

.booqable-product,
.booqable-product-list,
.booqable-datepicker {
  margin-bottom: 1rem;
}

.bq-grid {
  display: grid;
  /* minmax(0, 1fr) lets tracks shrink below the widget's min-content width so a
     wide Booqable card can't blow the grid out and cause horizontal scroll. */
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  margin-top: 1.4rem;
}

.bq-grid .booqable-product {
  margin-bottom: 0;
}

.bq-item {
  display: flex;
  flex-direction: column;
  min-width: 0; /* allow the grid item to shrink below its content's min-width */
}

.bq-item .booqable-product {
  flex: 1;
  min-width: 0;
}

/* Booqable caps its card at max-width:320px, so it sat narrower than the grid
   cell while the full-width button overhung it. Force the card (and its inner
   wrapper) to fill the cell so card and "En savoir plus" button align exactly. */
.bq-item .booqable-product,
.bq-item .booqable-product .booqable-product-wrapper {
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.bq-more {
  margin-top: 0.8rem;
  align-self: center;   /* don't stretch: size to content, centered under the card */
  width: auto;          /* override .btn-block width:100% */
  padding: 0.7rem 2rem;
  font-size: 0.9rem;
}

/* Anchor products (tents/marquees): the whole card links to its detail page so
   the customer can't add-to-cart from the grid and skip the surface choice.
   A transparent link covers the widget; a "Choisir la surface" pill fades in on
   hover to signal there's a configuration step. */
.bq-item .bq-cfg {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.bq-item .bq-cfg .bq-frame {
  flex: 1;
}
.bq-cfg-link {
  position: absolute;
  inset: 0;
  z-index: 8;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
  border-radius: var(--radius-lg);
}
.bq-cfg-badge {
  margin-bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 1.05rem;
  border-radius: 999px;
  background: var(--ink-900);
  color: #fff;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 18px rgba(19, 18, 16, 0.24);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.bq-cfg:hover .bq-cfg-badge,
.bq-cfg-link:focus-visible .bq-cfg-badge {
  opacity: 1;
  transform: translateY(0);
}
.bq-cfg-link:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
}

/* ---------- Booqable branded loading placeholder ----------
   Covers Booqable's grey skeleton while its live product data loads.
   site.js adds .bq-loading + the overlay, then removes them once the
   real card (price/image) has rendered. */
/* site.js wraps each .booqable-product in a .bq-frame so the overlay is a
   SIBLING of the card. Booqable wipes the card's innerHTML when it renders,
   which would delete an overlay placed inside it, but leaves the frame alone. */
.bq-frame {
  position: relative;
  width: 100%;
}

.bq-item .bq-frame {
  flex: 1;
}

.bq-frame.bq-loading {
  min-height: 360px;
}

/* Hide Booqable's own grey skeleton while loading; the overlay shows instead. */
.bq-frame.bq-loading .booqable-product {
  visibility: hidden;
}

.bq-loading-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  background: var(--cream-100);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: opacity 0.45s var(--ease);
}

.bq-loading-overlay::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent 30%, rgba(255, 255, 255, 0.55) 50%, transparent 70%);
  transform: translateX(-100%);
  animation: bqShimmer 1.5s ease-in-out infinite;
}

@keyframes bqShimmer {
  100% { transform: translateX(100%); }
}

.bq-loading-overlay i {
  position: relative;
  font-size: 1.35rem;
  color: var(--gold-600);
}

.bq-loading-overlay span {
  position: relative;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--t-on-light-mut);
}

.bq-loading-overlay.is-hidden {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Booqable buttons: brand colours ----------
   Booqable's v2 embed styles its own buttons; the store's brand-colour setting
   drives the hosted/WordPress store, not these embedded components, so we set
   the colours here. Only STABLE .bq-* classes are targeted. */

/* Primary buttons (product + modal add-to-cart, View cart, Reservation) and the
   cart close button → Louevie gold. */
.bq-button.bq-branded,
.bq-branded.bq-close {
  background: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
}

.bq-button.bq-branded {
  color: #2a1f08 !important;
}

.bq-button.bq-branded:hover,
.bq-button.bq-branded:focus-visible {
  background: var(--gold-600) !important;
  border-color: var(--gold-600) !important;
}

/* Floating cart toggle (bottom-right) → solid black, per request. Booqable
   paints its colour on ::before layers, so we blacken the element, its icon and
   both ::before pseudo-elements (the white cart glyph still renders on top).
   It's a .bq-branded that is NOT a .bq-button, which distinguishes it from the
   gold product buttons. */
.bq-branded:not(.bq-button):has(.bq-icon-cart),
.bq-branded:not(.bq-button):has(.bq-icon-cart)::before,
.bq-branded:not(.bq-button):has(.bq-icon-cart) .bq-icon-cart,
.bq-branded:not(.bq-button):has(.bq-icon-cart) .bq-icon-cart::before {
  background: #131210 !important;
}

/* On the gold product buttons, flatten the cart icon's own ::before background
   so the button colour shows through uniformly. */
.bq-button.bq-branded .bq-icon-cart,
.bq-button.bq-branded .bq-icon-cart::before {
  background: transparent !important;
}

/* ---------- Booqable: match the site typography ----------
   Booqable's widgets render in Roboto; we force our body font (Jost) across
   everything Booqable renders, including its body-level portals (cart, quick-
   view, date modal) which all contain a .booqable-component root. Icon elements
   (<i>, .fa-*, .bq-icon-*) are excluded so FontAwesome glyphs keep their font. */
.booqable-component,
.booqable-product,
.booqable-datepicker,
.booqable-product-list,
.booqable-component *:not(i):not([class*="fa-"]):not([class*="bq-icon"]),
.booqable-product *:not(i):not([class*="fa-"]):not([class*="bq-icon"]),
.booqable-datepicker *:not(i):not([class*="fa-"]):not([class*="bq-icon"]),
.booqable-product-list *:not(i):not([class*="fa-"]):not([class*="bq-icon"]) {
  font-family: var(--ff-sans) !important;
}

/* Recolour Booqable's blue interactive accents (focus rings, radios) to gold.
   These sit on hashed styled-component classes, so this is best-effort and may
   need a re-touch after a Booqable update. */
.booqable-component *:focus,
.booqable-product *:focus,
.booqable-datepicker *:focus,
.booqable-product-list *:focus {
  outline-color: var(--gold-500) !important;
  border-color: var(--gold-500) !important;
}

.booqable-component [class*="Radio-"],
.booqable-datepicker [class*="Radio-"] {
  border-color: var(--gold-500) !important;
}

.booqable-component [class*="Radio-"] [class*="Icon-"],
.booqable-datepicker [class*="Radio-"] [class*="Icon-"] {
  background-color: var(--gold-500) !important;
}

/* Hidden Booqable widgets used only to read live prices (homepage essentials).
   Kept off-screen (not display:none/0-size) so Booqable still renders them. */
.bq-price-source {
  position: absolute;
  left: -9999px;
  top: 0;
  width: 420px;
  opacity: 0;
  pointer-events: none;
}

/* ---------- Forfait (bundle) cards: gold-bordered, with an INCLUS list ---------- */
.forfait-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2vw, 28px);
  margin-top: 2.2rem;
  align-items: start;
}
.forfait-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1.5px solid var(--gold-400);
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 26px rgba(166, 124, 46, 0.12);
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
}
.forfait-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-500);
  box-shadow: var(--sh-lg);
}
.forfait-card.is-popular {
  border-width: 2px;
  border-color: var(--gold-500);
  box-shadow: 0 16px 40px rgba(166, 124, 46, 0.24);
}
.fc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: linear-gradient(180deg, var(--gold-400), var(--gold-600));
  color: #1b1915;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(166, 124, 46, 0.35);
}
.fc-widget {
  padding: 0.4rem 0.4rem 0;
}
/* Blend the Booqable widget into the top of the card (no double card frame). */
.fc-widget .booqable-product {
  margin: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}
.fc-inc {
  padding: 0.4rem clamp(16px, 4%, 22px) clamp(18px, 4%, 24px);
  border-top: 1px solid var(--line-light);
  margin-top: 0.4rem;
}
.fc-guests {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--t-on-light-mut);
  font-size: 0.9rem;
  margin: 0.9rem 0 1rem;
}
.fc-guests i {
  color: var(--gold-600);
}
.fc-inc-label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
  font-weight: 700;
  margin-bottom: 0.7rem;
}
.fc-inc ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.fc-inc li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--t-on-light);
}
.fc-inc li i {
  width: 1.2rem;
  text-align: center;
  color: var(--gold-500);
  font-size: 0.9rem;
  flex-shrink: 0;
}
@media (max-width: 900px) {
  .forfait-grid {
    grid-template-columns: 1fr;
    max-width: 460px;
    margin-inline: auto;
  }
}

/* ---------- Booking config: 2-step size + anchoring (tents/marquees) ---------- */
.cfg-steps {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cfg-step {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.82rem;
  color: var(--t-on-light-mut);
}

.cfg-tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--cream-200);
  color: var(--t-on-light-mut);
  flex-shrink: 0;
}

.cfg-step.is-done .cfg-tick { background: #2e7d46; color: #fff; }
.cfg-step.is-active .cfg-tick { background: var(--gold-500); color: #fff; }
.cfg-step.is-active .cfg-lbl { color: var(--t-on-light); font-weight: 600; }
.cfg-val { color: var(--t-on-light); font-weight: 600; }
.cfg-bar { flex: 1; height: 1px; background: var(--line-light); max-width: 44px; }

.surface-pick {
  margin-bottom: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-lg);
  background: rgba(196, 150, 58, 0.06);
}

.surface-q {
  font-size: 0.95rem;
  color: var(--t-on-light);
  margin: 0 0 0.7rem;
}

.surface-q strong { color: var(--gold-700); }

.surface-opts {
  display: flex;
  gap: 0.6rem;
}

.surface-opt {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 0.8rem;
  border: 1.5px solid var(--line-light);
  border-radius: 10px;
  background: #fff;
  color: var(--t-on-light);
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.surface-opt:hover { border-color: var(--gold-400); }
.surface-opt i { color: var(--gold-600); }

.surface-opt.is-active {
  border-color: var(--gold-500);
  background: rgba(196, 150, 58, 0.14);
  box-shadow: 0 0 0 1px var(--gold-500);
}

.surface-out { margin-top: 0.85rem; font-size: 0.9rem; }
.surface-out[hidden] { display: none; }

.surface-ok {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--t-on-light-mut);
}

.surface-ok i { color: #2e7d46; margin-top: 0.15rem; }
.surface-ok strong { color: var(--t-on-light); }

.surface-warn-head {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: var(--t-on-light);
  margin: 0 0 0.8rem;
}

.surface-warn-head i { color: var(--gold-600); margin-top: 0.15rem; }

/* Gate: dim + block the booking widget until a surface is chosen */
.booking-wrap { position: relative; }

.booking-lock {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-align: center;
  padding: 1rem;
  border-radius: var(--radius-lg);
  background: rgba(250, 248, 244, 0.72);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  color: var(--t-on-light-mut);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: not-allowed;
  transition: opacity 0.3s var(--ease);
}

.booking-lock i { color: var(--gold-600); font-size: 1.1rem; }

.booking-wrap.is-unlocked .booking-lock {
  opacity: 0;
  pointer-events: none;
}

/* ---------- Site search ---------- */
.search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-right: 0.2rem;
  border-radius: 10px;
  background: transparent;
  border: 1px solid transparent;
  color: var(--t-on-dark);
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.2s var(--ease), background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.search-toggle:hover,
.search-toggle:focus-visible {
  color: var(--gold-300);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--line-dark);
  outline: none;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 700;
  background: rgba(15, 14, 11, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: clamp(70px, 12vh, 160px) 1.2rem 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.28s var(--ease), visibility 0s linear 0.28s;
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.28s var(--ease);
}

.search-box {
  width: 100%;
  max-width: 620px;
  background: var(--cream-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  overflow: hidden;
  transform: translateY(-10px);
  transition: transform 0.3s var(--ease);
}

.search-overlay.open .search-box {
  transform: translateY(0);
}

.search-field {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--line-light);
}

.search-field > i {
  color: var(--gold-600);
  font-size: 1rem;
}

.search-input {
  flex: 1;
  min-width: 0;
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--ff-sans);
  font-size: 1.05rem;
  color: var(--t-on-light);
}

.search-input::-webkit-search-cancel-button,
.search-input::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.search-close {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: transparent;
  color: var(--t-on-light-mut);
  font-size: 0.95rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}

.search-close:hover {
  background: var(--cream-200);
  color: var(--t-on-light);
}

.search-results {
  max-height: min(52vh, 440px);
  overflow-y: auto;
}

.search-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line-light);
  color: var(--t-on-light);
  transition: background 0.18s var(--ease);
}

.search-item:last-child {
  border-bottom: none;
}

.search-item:hover {
  background: var(--cream-100);
}

.search-item > i:first-child {
  color: var(--gold-600);
  font-size: 0.9rem;
  width: 18px;
  text-align: center;
}

.search-item-name {
  flex: 1;
  font-weight: 500;
}

.search-item-sub {
  font-size: 0.8rem;
  color: var(--t-on-light-mut);
}

.search-item-go {
  color: var(--gold-500);
  font-size: 0.8rem;
  opacity: 0;
  transition: opacity 0.18s var(--ease);
}

.search-item:hover .search-item-go {
  opacity: 1;
}

.search-empty {
  padding: 1.4rem;
  text-align: center;
  color: var(--t-on-light-mut);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Category sub-section headings ---------- */
.cat-section {
  margin-top: 2.4rem;
}

.cat-section:first-of-type {
  margin-top: 0.4rem;
}

.cat-section-title {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  color: var(--t-on-light);
  padding-bottom: 0.6rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px solid var(--line-light);
}

/* ---------- How it works: flow subtitles ---------- */
.how-flow-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  text-align: center;
  font-family: var(--ff-display);
  font-size: clamp(1.4rem, 2.2vw, 1.8rem);
  color: var(--t-on-light);
  margin: 0.4rem 0 1.6rem;
}

.how-flow-title i {
  color: var(--gold-600);
  font-size: 0.82em;
}

/* ---------- Coming soon block ---------- */
.coming-soon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  padding: clamp(2rem, 5vw, 3.4rem);
  border: 1px dashed rgba(195, 154, 69, 0.4);
  border-radius: var(--radius-lg);
  background: var(--cream-100);
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold-700);
  background: rgba(195, 154, 69, 0.12);
  border: 1px solid rgba(195, 154, 69, 0.28);
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
}

.coming-soon p {
  max-width: 46ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--t-on-light-mut);
  margin: 0;
}

.coming-soon a {
  color: var(--gold-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 980px) {
  .bq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .bq-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

.pdp-detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin-top: 1.6rem;
}

.pdp-detail-links a {
  color: var(--gold-700);
  font-weight: 500;
  font-size: .92rem;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.pdp-detail-links a:hover {
  color: var(--gold-600);
}

/* ---------- Product page ---------- */
.pdp {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
}

.pdp-gallery {
  display: grid;
  gap: 12px;
}

.pdp-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
  aspect-ratio: 4/3;
  position: relative;
}

.pdp-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Real product shot on white: show the whole product, not a cropped photo. */
.pdp-main--pack {
  background: #fff;
  border: 1px solid var(--line-light);
}
.pdp-main--pack img {
  object-fit: contain;
  padding: clamp(16px, 5%, 48px);
}

.pdp-main .overlay-tint {
  position: absolute;
  inset: 0;
  background: var(--gold-700);
  mix-blend-mode: multiply;
  opacity: 0.06;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.pdp-thumbs img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.25s var(--ease);
}

.pdp-thumbs img:hover,
.pdp-thumbs img.active {
  border-color: var(--gold-500);
}

.pdp-buy {
  position: sticky;
  top: 100px;
}

.pdp-buy .pcat {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-700);
}

.pdp-buy h1 {
  font-size: clamp(2rem, 3.6vw, 2.8rem);
  margin: 0.4rem 0 0.6rem;
}

.pdp-buy .prating {
  color: var(--gold-500);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  margin-bottom: 0.9rem;
}

.pdp-buy .prating span {
  color: var(--t-on-light-mut);
  letter-spacing: 0;
  margin-left: 0.4rem;
}

.pdp-buy .pprice {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin: 0.4rem 0 1.2rem;
}

.pdp-buy .pprice b {
  font-family: var(--ff-display);
  font-size: 2.4rem;
  color: var(--gold-700);
  font-weight: 600;
}

.pdp-buy .pprice small {
  color: var(--t-on-light-mut);
}

.pdp-buy .pdesc {
  color: var(--t-on-light-mut);
  margin-bottom: 1.3rem;
}

.pdp-box {
  background: var(--cream-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 2vw, 26px);
  box-shadow: var(--sh-sm);
}

.pdp-box .booq-note {
  font-size: 0.8rem;
  color: var(--t-on-light-mut);
  background: var(--cream-100);
  border: 1px dashed var(--line-light);
  border-radius: var(--radius);
  padding: 0.8rem 0.9rem;
  margin-bottom: 1rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.pdp-box .booq-note i {
  color: var(--gold-600);
  margin-top: 0.15rem;
}

.pdp-actions {
  display: grid;
  gap: 0.7rem;
}

/* Emphasis label above the live Booqable widget (hidden if store not live) */
.pdp-online-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.85rem;
}

.pdp-online-label i {
  color: var(--gold-600);
}

html[data-booqable="placeholder"] .pdp-online-label {
  display: none;
}

/* Secondary quote block — de-emphasized vs the online booking above */
.pdp-quote {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-light);
}

.pdp-quote-lead {
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--t-on-light-mut);
  margin-bottom: 0.75rem;
}

.pdp-quote-lead strong {
  color: var(--t-on-light);
}

.pdp-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.7rem;
  width: 100%;
  font-size: 0.9rem;
  color: var(--t-on-light-mut);
  transition: color 0.25s var(--ease);
}

.pdp-call i {
  color: var(--gold-600);
}

.pdp-call:hover {
  color: var(--gold-700);
}

.pdp-call:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 3px;
  border-radius: 6px;
}

.pdp-trust {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.pdp-trust li {
  display: flex;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.88rem;
  color: var(--t-on-light-mut);
}

.pdp-trust i {
  color: var(--gold-600);
  width: 18px;
}

.specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.specs div {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--line-light);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.92rem;
}

.specs div:nth-child(odd) {
  border-right: 1px solid var(--line-light);
}

.specs .sk {
  color: var(--t-on-light-mut);
}

.specs .sv {
  font-weight: 500;
  text-align: right;
}

@media (max-width: 880px) {
  .pdp {
    grid-template-columns: 1fr;
  }

  .pdp-buy {
    position: static;
  }

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

  .specs div:nth-child(odd) {
    border-right: none;
  }
}

/* ---------- Multi-step quote form ---------- */
.quote-wrap {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
}

.quote-aside {
  position: sticky;
  top: 100px;
}

.quote-aside .qa-card {
  background: var(--ink-800);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: clamp(22px, 2.4vw, 32px);
  color: var(--t-on-dark);
  box-shadow: var(--sh-lg);
}

.quote-aside .qa-card h3 {
  font-size: 1.5rem;
  color: #fff;
}

.quote-aside .qa-list {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.quote-aside .qa-list li {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  color: var(--t-on-dark-mut);
  font-size: 0.92rem;
}

.quote-aside .qa-list i {
  color: var(--gold-400);
  margin-top: 0.25rem;
}

.quote-aside .qa-call {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-dark);
}

.quote-aside .qa-call a {
  color: var(--gold-300);
  font-size: 1.2rem;
  font-family: var(--ff-display);
  display: inline-flex;
  gap: 0.5rem;
  align-items: center;
}

.qform {
  background: var(--cream-50);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-md);
  overflow: hidden;
}

.qform-head {
  padding: clamp(20px, 2.4vw, 30px) clamp(20px, 2.4vw, 34px) 0;
}

.qprogress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.4rem;
}

.qprogress .pstep {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  min-width: 0;
}

.qprogress .pdot {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--cream-200);
  color: var(--t-on-light-mut);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
  border: 2px solid var(--cream-200);
  transition: all 0.3s var(--ease);
}

.qprogress .pstep .plabel {
  font-size: 0.66rem;
  letter-spacing: 0.03em;
  color: var(--t-on-light-mut);
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 88px;
}

.qprogress .pstep::before {
  content: "";
  position: absolute;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: var(--cream-200);
  z-index: 1;
}

.qprogress .pstep:first-child::before {
  display: none;
}

.qprogress .pstep.active .pdot {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: #221903;
}

.qprogress .pstep.done .pdot {
  background: var(--ink-800);
  border-color: var(--ink-800);
  color: var(--gold-300);
}

.qprogress .pstep.done::before,
.qprogress .pstep.active::before {
  background: var(--gold-500);
}

.qprogress .pstep.active .plabel {
  color: var(--gold-700);
  font-weight: 600;
}

.qform-body {
  padding: clamp(20px, 2.4vw, 34px);
}

.qstep {
  display: none;
  animation: qfade 0.4s var(--ease);
}

.qstep.active {
  display: block;
}

@keyframes qfade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.qstep h2 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  margin-bottom: 0.4rem;
}

.qstep .qhint {
  color: var(--t-on-light-mut);
  font-size: 0.95rem;
  margin-bottom: 1.6rem;
}

.qfield {
  margin-bottom: 1.2rem;
}

.qfield label.flab {
  display: block;
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 0.45rem;
  color: var(--t-on-light);
}

.qfield label.flab .opt {
  color: var(--t-on-light-mut);
  font-weight: 400;
}

.qinput,
.qselect,
.qtext {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  color: var(--t-on-light);
  font-size: 0.98rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.qtext {
  min-height: 120px;
  resize: vertical;
}

.qinput:focus,
.qselect:focus,
.qtext:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(195, 154, 69, 0.18);
}

.qrow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* selectable cards */
.qcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.qcards.two {
  grid-template-columns: repeat(2, 1fr);
}

.qcard {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  text-align: center;
  background: #fff;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}

.qcard i {
  font-size: 1.5rem;
  color: var(--gold-600);
  transition: color 0.25s var(--ease);
}

.qcard span {
  font-size: 0.9rem;
  font-weight: 500;
}

.qcard:hover {
  border-color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: var(--sh-sm);
}

.qcard.sel {
  border-color: var(--gold-500);
  background: rgba(195, 154, 69, 0.08);
  box-shadow: 0 0 0 2px rgba(195, 154, 69, 0.35) inset;
}

.qcard:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

/* product chooser */
.qprods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
}

.qprod {
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 0.9rem;
  cursor: pointer;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

.qprod i.pi {
  font-size: 1.1rem;
  color: var(--gold-600);
  width: 22px;
  text-align: center;
}

.qprod .pname {
  font-size: 0.88rem;
  font-weight: 500;
  flex: 1;
}

.qprod .pcheck {
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: 1px solid var(--line-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.65rem;
  flex-shrink: 0;
  transition: all 0.2s var(--ease);
}

.qprod.sel {
  border-color: var(--gold-500);
  background: rgba(195, 154, 69, 0.08);
}

.qprod.sel .pcheck {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.qprod:focus-visible {
  outline: 2px solid var(--gold-500);
  outline-offset: 2px;
}

.qty-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.qty-ctrl {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-ctrl button {
  width: 38px;
  height: 40px;
  font-size: 1rem;
  color: var(--gold-700);
  background: #fff;
}

.qty-ctrl button:hover {
  background: var(--cream-100);
}

.qty-ctrl input {
  width: 54px;
  height: 40px;
  text-align: center;
  border: none;
  border-inline: 1px solid var(--line-light);
}

.qform-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-light);
}

.qform-foot .qspacer {
  flex: 1;
}

.qerr {
  color: #b3261e;
  font-size: 0.85rem;
  margin-top: 0.4rem;
  display: none;
}

.qfield.invalid .qinput,
.qfield.invalid .qselect {
  border-color: #d9534f;
}

.qfield.invalid .qerr {
  display: block;
}

/* review step */
.qreview {
  display: grid;
  gap: 0.5rem;
  background: var(--cream-100);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  margin-bottom: 1.2rem;
}

.qreview .rrow {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.4rem 0;
  border-bottom: 1px dashed var(--line-light);
  font-size: 0.92rem;
}

.qreview .rrow:last-child {
  border-bottom: none;
}

.qreview .rrow .rk {
  color: var(--t-on-light-mut);
}

.qreview .rrow .rv {
  font-weight: 500;
  text-align: right;
}

.qprivacy {
  font-size: 0.78rem;
  color: var(--t-on-light-mut);
  text-align: center;
  margin-top: 1rem;
}

.qprivacy a {
  color: var(--gold-700);
  text-decoration: underline;
}

/* status */
#status {
  display: none;
  padding: 0.95rem 1.1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
  font-size: 0.92rem;
}

#status.success {
  display: block;
  background: #e7f3ec;
  color: #1c6b3f;
  border: 1px solid #b7ddc6;
}

#status.error {
  display: block;
  background: #fbeaea;
  color: #9b271f;
  border: 1px solid #f0c4c0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

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

/* ---------- Float CTA (mobile) ---------- */
.float-cta {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 55;
  display: none;
  box-shadow: var(--sh-lg);
}

.float-cta .btn {
  width: 100%;
}

/* ---------- Cookie consent banner ---------- */
.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  max-width: 640px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  background: var(--ink-900);
  color: var(--t-on-dark);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  box-shadow: var(--sh-lg);
  padding: 0.95rem 1.15rem;
  transform: translateY(160%);
  opacity: 0;
  transition: transform 0.45s var(--ease), opacity 0.45s var(--ease);
}
.cookie-bar.is-in {
  transform: translateY(0);
  opacity: 1;
}
.cookie-txt {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--t-on-dark-mut);
}
.cookie-txt a {
  color: var(--gold-300);
  text-decoration: underline;
}
.cookie-accept {
  flex-shrink: 0;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .cookie-bar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
  }
  .cookie-accept {
    width: 100%;
  }
}

/* ---------- i18n visibility ----------
   Hide the inactive language with !important so component rules that set
   `display` on descendant spans can't leak the other language. The VISIBLE
   element keeps its own/natural display (no display override applied). */
html[lang="fr"] [data-lang-en] {
  display: none !important;
}

html[lang="en"] [data-lang-fr] {
  display: none !important;
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

@media (max-width: 880px) {

  /* Header: logo left, burger hard right */
  .header .wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav,
  .header-actions .lang.desktop-lang {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-actions {
    gap: 0;
  }

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

  /* Compact mobile header: smaller logo, shorter bar */
  .header .wrap {
    min-height: 62px;
    gap: 0.5rem;
  }

  .brand img,
  .brand-logo {
    height: 54px;
  }

  /* Center the contact info in the top bar (services are hidden on mobile) */
  .topbar .wrap {
    justify-content: center;
  }

  .topbar .tb-right {
    gap: 1.1rem;
  }

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

  .split.reverse .split-media {
    order: 0;
  }

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

  .step::before {
    display: none;
  }

  .feature-grid,
  .bundle-grid,
  .testi-grid {
    grid-template-columns: 1fr;
  }

  .statband .wrap {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.6rem;
  }

  .topbar .tb-services {
    display: none;
  }
}

@media (max-width: 980px) {
  .quote-wrap {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    position: static;
    order: -1;
  }
}

@media (max-width: 620px) {

  .cat-grid,
  .prod-grid,
  .prod-grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .qcards,
  .qprods {
    grid-template-columns: 1fr 1fr;
  }

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

  .qprogress .plabel {
    display: none;
  }

  .cat-card {
    aspect-ratio: 16/11;
  }

  .cat-card.tall {
    grid-row: auto;
  }

  .cat-card .cat-desc {
    max-height: 80px;
    opacity: 1;
  }

  /* Product cards: the description is always shown on mobile, so give the card
     a taller ratio and keep the product in the top half so it never overlaps
     the text below. */
  .cat-card--pack {
    aspect-ratio: 4 / 5;
  }
  .cat-card--pack img {
    object-position: center 30%;
    padding: 12% 14% 50%;
  }

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

  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 150px;
  }

  .gallery .g-w2 {
    grid-column: span 2;
  }

  /* Mobile hero: compact, balanced, full-width stacked buttons.
     min-height:auto removes the full-screen vertical-centering gap that
     left a large empty band of sky above the content on phones. */
  .hero {
    min-height: auto;
  }

  .hero-inner {
    gap: 1.9rem;
    padding-block: 58px 88px;
  }

  .hero h1 {
    font-size: clamp(2.1rem, 8.5vw, 2.9rem);
    line-height: 1.08;
  }

  .hero p.lead {
    font-size: 1.02rem;
    line-height: 1.55;
  }

  .hero .eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .hero-cta {
    flex-direction: column;
    width: 100%;
    gap: 0.7rem;
  }

  .hero-cta .btn {
    width: 100%;
    padding: 0.95rem 1.3rem;
    font-size: 0.98rem;
  }

  .hero-trust {
    gap: 1rem 1.6rem;
    margin-top: 0.4rem;
  }

  .hero-trust div {
    font-size: 0.88rem;
  }

  /* Give the stat band real breathing room so the numbers don't crowd the hero. */
  .statband .wrap {
    padding-block: 3rem;
    row-gap: 2.4rem;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}