/* ============================================
   ORIENT'HAL MARKET — Premium B2B
   Tokens, type, glass system
   ============================================ */

:root {
  --bg: #0B0908;
  --bg-elev: #14110D;
  --ink: #0B0908;            /* dark text on amber */
  --amber: #C49545;
  --amber-bright: #D4A14B;
  --amber-deep: #6B5230;
  --amber-soft: #A87E32;
  /* legacy aliases kept for backward compatibility */
  --burgundy: var(--amber);
  --burgundy-deep: var(--amber-deep);
  --burgundy-glow: var(--amber-bright);
  --gold: var(--amber);
  --gold-soft: var(--amber-soft);
  --text: #F5F5F0;
  --text-mute: rgba(245, 245, 240, 0.62);
  --text-dim: rgba(245, 245, 240, 0.42);
  --line: rgba(245, 245, 240, 0.08);
  --line-strong: rgba(245, 245, 240, 0.14);

  /* Liquid glass */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-bg-hover: rgba(255, 255, 255, 0.085);
  --glass-border: rgba(255, 255, 255, 0.10);
  --glass-border-hover: rgba(255, 255, 255, 0.18);
  --glass-blur: 24px;

  --serif: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;

  --container: 1280px;

  /* Theme-driven component vars (redefined by ambiances) */
  --header-bg: rgba(10, 10, 10, 0.55);
  --header-bg-scrolled: rgba(10, 10, 10, 0.85);
  --btn-glass-color: #F5F5F0;
  --btn-amber-color: #F0CA7C;
  --btn-amber-hover: #FBE4A8;
}

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

html { scroll-behavior: smooth; }

body {
  background-color: var(--bg);
  background-image: url("assets/bg-cover.jpg");
  background-size: cover;
  background-position: center top;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

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

/* ============================================
   Type system
   ============================================ */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.08;
  color: var(--text);
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); font-weight: 350; }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 350; }
h3 { font-size: clamp(1.3rem, 1.8vw, 1.6rem); font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 500; }

p { text-wrap: pretty; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  background: linear-gradient(180deg, #FBE4A8 0%, #E8BD68 35%, #C49545 75%, #A87E32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, #F5D58B, #C49545);
  opacity: 0.8;
}

.lede {
  font-size: clamp(1rem, 1.25vw, 1.18rem);
  line-height: 1.55;
  color: var(--text-mute);
  max-width: 60ch;
}

/* ============================================
   Layout
   ============================================ */

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

section {
  padding: 120px 0;
  position: relative;
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  section { padding: 80px 0; }
}

.section-head {
  max-width: 720px;
  margin-bottom: 64px;
}
.section-head h2 { margin-top: 16px; }
.section-head .lede { margin-top: 20px; }

/* ============================================
   Liquid glass primitive
   ============================================ */

.glass {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  -webkit-backdrop-filter: blur(var(--glass-blur)) saturate(140%);
  border-radius: var(--r-lg);
  transition: background 0.35s ease, border-color 0.35s ease, transform 0.35s ease, box-shadow 0.4s ease;
  position: relative;
  overflow: hidden;
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%);
  pointer-events: none;
}

.glass-hover:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-3px);
  box-shadow: 0 24px 60px -20px rgba(0,0,0,0.6), 0 0 0 1px rgba(196, 149, 69, 0.06);
}

/* ============================================
   Buttons
   ============================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
}
.btn .material-symbols-outlined { font-size: 18px; }

.btn-primary {
  background:
    linear-gradient(180deg,
      #F5D58B 0%,
      #E8BD68 22%,
      #C49545 52%,
      #A87E32 82%,
      #8E6A28 100%);
  border-color: transparent;
  color: #2A1F0A;
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 230, 170, 0.45);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.55) inset,
    0 -1px 0 rgba(80, 50, 10, 0.35) inset,
    0 0 0 1px rgba(120, 80, 20, 0.4),
    0 0 16px rgba(196, 149, 69, 0.40),
    0 0 32px rgba(196, 149, 69, 0.22),
    0 6px 18px -4px rgba(0, 0, 0, 0.55);
  position: relative;
  overflow: hidden;
  animation: amberGlow 3.2s ease-in-out infinite;
}
/* Brushed-metal sheen */
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.30) 0%, transparent 45%),
    linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.10) 100%);
  pointer-events: none;
  border-radius: inherit;
}
/* Moving highlight on hover */
.btn-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent 20%,
    rgba(255, 245, 220, 0.55) 50%,
    transparent 80%);
  transform: skewX(-18deg);
  pointer-events: none;
  transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.btn-primary:hover::after { left: 120%; }
.btn-primary:hover {
  background:
    linear-gradient(180deg,
      #FBE4A8 0%,
      #F0CA7C 22%,
      #D4A14B 52%,
      #B58938 82%,
      #997228 100%);
  color: #2A1F0A;
  transform: translateY(-1px);
  animation: none;
  box-shadow:
    0 1px 0 rgba(255, 245, 215, 0.7) inset,
    0 -1px 0 rgba(80, 50, 10, 0.4) inset,
    0 0 0 1px rgba(140, 95, 25, 0.5),
    0 0 24px rgba(212, 161, 75, 0.65),
    0 0 50px rgba(212, 161, 75, 0.35),
    0 0 0 5px rgba(196, 149, 69, 0.18),
    0 10px 26px -4px rgba(0, 0, 0, 0.6);
}
.btn-primary .material-symbols-outlined {
  color: #2A1F0A;
  position: relative;
  z-index: 1;
}

@keyframes amberGlow {
  0%, 100% {
    filter: brightness(1);
    box-shadow:
      0 1px 0 rgba(255, 240, 200, 0.55) inset,
      0 -1px 0 rgba(80, 50, 10, 0.35) inset,
      0 0 0 1px rgba(120, 80, 20, 0.4),
      0 0 14px rgba(196, 149, 69, 0.35),
      0 0 28px rgba(196, 149, 69, 0.18),
      0 6px 18px -4px rgba(0, 0, 0, 0.55);
  }
  50% {
    filter: brightness(1.06);
    box-shadow:
      0 1px 0 rgba(255, 245, 215, 0.65) inset,
      0 -1px 0 rgba(80, 50, 10, 0.4) inset,
      0 0 0 1px rgba(130, 90, 22, 0.45),
      0 0 22px rgba(212, 161, 75, 0.55),
      0 0 42px rgba(212, 161, 75, 0.28),
      0 6px 18px -4px rgba(0, 0, 0, 0.55);
  }
}

.btn-glass {
  background: var(--glass-bg);
  border-color: var(--glass-border);
  color: var(--btn-glass-color);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.btn-glass:hover {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-1px);
}

/* Amber-tinted liquid-glass variant (phone CTA) */
.btn-glass-amber {
  background: rgba(196, 149, 69, 0.08);
  border-color: rgba(196, 149, 69, 0.18);
  color: var(--amber);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}
.btn-glass-amber .material-symbols-outlined { color: var(--amber); }
.btn-glass-amber:hover {
  background: rgba(196, 149, 69, 0.14);
  border-color: rgba(196, 149, 69, 0.32);
  color: var(--amber-bright);
  transform: translateY(-1px);
  box-shadow: 0 0 0 4px rgba(196, 149, 69, 0.10);
}
.btn-glass-amber:hover .material-symbols-outlined { color: var(--amber-bright); }

.btn-ghost {
  background: transparent;
  color: var(--text-mute);
  padding: 12px 0;
}
.btn-ghost:hover { color: var(--text); }

/* ============================================
   Header / Nav
   ============================================ */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  background: var(--header-bg);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s ease;
}
.site-header.scrolled {
  background: var(--header-bg-scrolled);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: -32px;
  text-decoration: none;
  color: var(--text);
}
.brand-mark {
  width: auto;
  height: 48px;
  border-radius: 10px;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  position: relative;
  flex-shrink: 0;
}
.brand-mark::after { display: none; }
.brand-mark img {
  width: auto !important;
  height: 48px !important;
  max-height: 48px !important;
  max-width: 64px !important;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 0 12px rgba(196, 149, 69, 0.5));
}
.brand-mark span {
  display: none;
}
.brand-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
}
.brand-name-img {
  display: flex;
  align-items: center;
}
.brand-name-img img {
  height: 38px;
  width: auto;
  display: block;
}
.brand-name small {
  display: block;
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 4px;
}

.nav { display: flex; gap: 32px; align-items: center; }
.nav a {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 450;
  transition: color 0.2s;
}
.nav a:hover { color: var(--text); }

.header-cta { display: flex; align-items: center; gap: 12px; margin-right: -32px; }

@media (max-width: 960px) {
  .nav { display: none; }
}
@media (max-width: 560px) {
  .header-cta .btn-glass { display: none; }
}

/* ============================================
   Hero
   ============================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background-color: transparent;
  background-image: url("assets/bg-cover.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  text-align: center;
}

/* Hero gets a lighter veil than the rest of the site — the arch should be vibrant here */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 55% at 50% 48%, rgba(11, 9, 8, 0.55) 0%, rgba(11, 9, 8, 0.20) 55%, transparent 80%),
    radial-gradient(ellipse at 50% 100%, rgba(11, 9, 8, 0.55) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 9, 8, 0.35) 0%, rgba(11, 9, 8, 0) 28%, rgba(11, 9, 8, 0) 55%, rgba(11, 9, 8, 0.55) 100%),
    rgba(11, 9, 8, 0.12);
  z-index: 1;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 3;
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-tagline {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: #6B4A16;
  padding: 9px 22px;
  border: 1px solid rgba(196, 149, 69, 0.45);
  border-radius: 999px;
  background: #F6EEDD;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 28px;
  letter-spacing: 0.01em;
}

/* H1 SEO discret — kicker au-dessus du slogan */
.hero .hero-h1 {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(196, 149, 69, 0.85);
  max-width: 520px;
  margin: 0 auto 16px;
}

.hero h1 {
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: -0.025em;
  font-weight: 350;
  margin-bottom: 24px;
  max-width: 540px;
}
.hero h1 em {
  font-style: italic;
  color: var(--amber);
  font-weight: 300;
}

.hero-sub {
  font-size: clamp(0.98rem, 1.15vw, 1.08rem);
  line-height: 1.55;
  color: var(--text);
  font-weight: 700;
  max-width: 500px;
  margin: 0 auto 56px;
  text-shadow: 0 1px 12px rgba(11, 9, 8, 0.8);
}



.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.hero-scroll::after {
  content: "";
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ============================================
   Trust strip
   ============================================ */

.trust {
  padding: 40px 0 60px;
}
.trust-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}
.trust-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text);
  flex: 1 1 auto;
  min-width: 180px;
  max-width: 280px;
  justify-content: center;
}
.trust-chip .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
}
.trust-chip strong { font-weight: 500; }
.trust-chip span.muted { color: var(--text-mute); font-weight: 400; }

@media (max-width: 768px) {
  .trust-chip { min-width: 100%; }
}

/* ============================================
   Categories
   ============================================ */

.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.categories-grid .cat-card:first-child {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 1024px) {
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid .cat-card:first-child {
    grid-column: span 3;
    grid-row: span 1;
  }
}
@media (max-width: 720px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid .cat-card:first-child { grid-column: span 2; }
}
@media (max-width: 480px) {
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .cat-card:first-child { grid-column: span 1; }
}

.cat-card {
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 220px;
  cursor: pointer;
}
.cat-card .cat-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
}
.cat-card .cat-icon .material-symbols-outlined {
  font-size: 26px;
  color: var(--amber);
  font-variation-settings: "FILL" 0, "wght" 300;
}

.cat-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.01em;
}
.cat-card p {
  color: var(--text-mute);
  font-size: 0.92rem;
  line-height: 1.5;
  flex: 1;
}
.cat-card .cat-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 0.78rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cat-card .cat-meta .arrow {
  color: var(--gold);
  transition: transform 0.3s ease;
}
.cat-card:hover .cat-meta .arrow { transform: translateX(4px); }

/* Featured (Authentic & Halal) */
.cat-card.featured {
  background:
    linear-gradient(135deg, rgba(196, 149, 69, 0.32) 0%, rgba(196, 149, 69, 0.05) 100%),
    var(--glass-bg);
  border-color: rgba(196, 149, 69, 0.18);
  justify-content: space-between;
}
.cat-card.featured .cat-icon {
  background: rgba(196, 149, 69, 0.08);
  border-color: rgba(196, 149, 69, 0.25);
}
.cat-card.featured .cat-icon .material-symbols-outlined { color: var(--gold); }
.cat-card.featured h3 {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.1;
}
.cat-card.featured h3 em { font-style: italic; color: var(--gold); }
.cat-card.featured p { font-size: 1rem; max-width: 32ch; }

/* ============================================
   Why us
   ============================================ */

.why-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-card {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 220px;
}
.why-card .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: rgba(196, 149, 69, 0.08);
  border: 1px solid rgba(196, 149, 69, 0.18);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.why-card .why-icon .why-icon-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}
.why-card .why-icon .material-symbols-outlined {
  font-size: 22px;
  color: var(--gold);
  font-variation-settings: "FILL" 0, "wght" 300;
}
.why-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-mute);
  line-height: 1.55;
}

/* ============================================
   Process
   ============================================ */

.process {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(196, 149, 69, 0.12) 0%, transparent 50%);
}

.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 32px;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 36px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--glass-border) 12%, var(--glass-border) 88%, transparent);
  z-index: 0;
}

.step {
  position: relative;
  padding: 0 18px;
  text-align: left;
  z-index: 1;
}
.step-num {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  position: relative;
  backdrop-filter: blur(20px);
}
.step-num::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 69, 0.18);
}
.step h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  font-size: 0.9rem;
  color: var(--text-mute);
  line-height: 1.5;
}
.step .step-time {
  display: inline-block;
  margin-top: 12px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .process-timeline {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .process-timeline::before {
    top: 36px;
    bottom: 36px;
    left: 35px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, transparent, var(--glass-border) 5%, var(--glass-border) 95%, transparent);
  }
  .step {
    padding-left: 100px;
    padding-right: 0;
    position: relative;
  }
  .step-num {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }
}

/* ============================================
   Testimonials
   ============================================ */

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

.testimonial {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-height: 360px;
}
.testimonial .role-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(196, 149, 69, 0.08);
  border: 1px solid rgba(196, 149, 69, 0.2);
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  align-self: flex-start;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.5;
  height: 24px;
  opacity: 0.4;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 350;
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--text);
  font-style: italic;
  flex: 1;
}
.testimonial blockquote em { color: var(--gold); font-style: italic; }
.testimonial .attribution {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.testimonial .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1308, #0B0908);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  color: var(--amber);
  font-size: 1.1rem;
  border: 1px solid var(--amber);
  flex-shrink: 0;
}
.testimonial .attribution .name {
  font-weight: 500;
  font-size: 0.95rem;
  line-height: 1.2;
}
.testimonial .attribution .meta {
  font-size: 0.8rem;
  color: var(--text-mute);
  margin-top: 2px;
}

/* ============================================
   Logistics
   ============================================ */

.logistics-layout {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .logistics-layout { grid-template-columns: 1fr; }
}

.map-card {
  padding: 0;
  overflow: hidden;
  min-height: 520px;
  position: relative;
}
.map-canvas {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 35% 55%, rgba(196, 149, 69, 0.18) 0%, transparent 35%),
    radial-gradient(circle at 35% 55%, rgba(196, 149, 69, 0.06) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, #080808 100%);
}
.map-canvas svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
/* Carte France (image) + repère Nantes */
.map-fr-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 38px 30px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,0.5));
}
.map-nantes {
  position: absolute;
  left: 34%;
  top: 49%;
  z-index: 3;
  pointer-events: none;
}
.map-nantes .pin,
.map-nantes .ring {
  position: absolute;
  left: 0; top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.map-nantes .pin {
  width: 13px; height: 13px;
  background: #E8C878;
  box-shadow: 0 0 0 3px rgba(11,9,8,0.55), 0 0 16px rgba(232,200,120,0.9);
}
.map-nantes .ring1 {
  width: 78px; height: 78px;
  border: 1px solid rgba(196,149,69,0.55);
  animation: nantesPulse 3s ease-in-out infinite;
}
.map-nantes .ring2 {
  width: 150px; height: 150px;
  border: 1px dashed rgba(196,149,69,0.28);
}
@keyframes nantesPulse {
  0%, 100% { opacity: 0.45; transform: translate(-50%,-50%) scale(0.92); }
  50% { opacity: 0.85; transform: translate(-50%,-50%) scale(1.05); }
}
.map-nantes .lbl {
  position: absolute;
  left: 16px; top: -24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 700;
  color: #F2D696;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(11,9,8,0.95), 0 0 2px rgba(11,9,8,0.9);
}
.map-nantes .sub {
  position: absolute;
  left: 16px; top: -3px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #E8C878;
  white-space: nowrap;
  text-shadow: 0 1px 6px rgba(11,9,8,0.95), 0 0 2px rgba(11,9,8,0.9);
}
.map-overlay {
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
}
.map-overlay h3 {
  font-size: 1.4rem;
  margin-bottom: 6px;
}
.map-overlay p {
  font-size: 0.88rem;
  color: var(--text-mute);
}
.map-legend {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px 20px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  border-radius: 12px;
}
.map-legend .lg-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-mute);
}
.map-legend .lg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.map-legend .lg-dot.j1 { background: var(--gold); box-shadow: 0 0 12px rgba(196, 149, 69, 0.6); }
.map-legend .lg-dot.j2 { background: rgba(196, 149, 69, 0.5); }
.map-legend .lg-dot.j3 { background: rgba(245, 245, 240, 0.25); }

.logistics-info {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 24px;
}
.info-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.info-card h4 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
}
.info-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.5;
}
.info-card ul li .material-symbols-outlined {
  font-size: 18px;
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}
.info-card ul li span.label {
  color: var(--text-mute);
  margin-left: 4px;
}
.info-card .info-big {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
}
.info-card .info-big small {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-top: 8px;
}

/* ============================================
   FAQ
   ============================================ */

.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.faq-item summary {
  list-style: none;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform 0.3s ease;
  line-height: 1;
}
.faq-item[open] summary::after {
  content: "−";
  transform: rotate(0);
}
.faq-item[open] {
  background: var(--glass-bg-hover);
  border-color: var(--glass-border-hover);
}
.faq-answer {
  padding: 0 28px 24px;
  color: var(--text-mute);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 72ch;
}

/* ============================================
   Quote Form
   ============================================ */

.quote-section {
  background:
    radial-gradient(ellipse at 80% 0%, rgba(196, 149, 69, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 100%, rgba(196, 149, 69, 0.05) 0%, transparent 50%);
}

.quote-layout {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .quote-layout { grid-template-columns: 1fr; gap: 32px; }
}

.quote-aside {
  position: sticky;
  top: 100px;
}
.quote-aside h2 { margin-top: 16px; }
.quote-aside .aside-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-aside .aside-points li {
  display: flex;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--text-mute);
  align-items: flex-start;
  list-style: none;
}
.quote-aside .aside-points li .material-symbols-outlined {
  font-size: 20px;
  color: var(--gold);
  flex-shrink: 0;
}
.quote-aside .contact-direct {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.quote-aside .contact-direct .label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 12px;
}
.quote-aside .contact-direct a {
  display: block;
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text);
  text-decoration: none;
  margin-top: 6px;
}
.quote-aside .contact-direct a:hover { color: var(--gold); }

.quote-form {
  padding: 40px;
}
@media (max-width: 600px) {
  .quote-form { padding: 28px 22px; }
  .quote-aside { position: static; }
}

.form-step {
  margin-bottom: 36px;
}
.form-step:last-of-type { margin-bottom: 0; }
.form-step .step-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-step .step-label .step-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--glass-border);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  font-style: italic;
}

.form-step > h4 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
}

/* Radio cards */
.radio-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 10px;
}
.radio-card {
  position: relative;
  cursor: pointer;
}
.radio-card input { position: absolute; opacity: 0; pointer-events: none; }
.radio-card .rc-inner {
  padding: 18px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: all 0.25s ease;
}
.radio-card .rc-inner .material-symbols-outlined {
  font-size: 24px;
  color: rgba(196, 149, 69, 0.55);
  transition: color 0.25s;
}
.radio-card .rc-inner span.lbl {
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 450;
}
.radio-card:hover .rc-inner {
  background: rgba(255,255,255,0.06);
  border-color: var(--glass-border-hover);
}
.radio-card input:checked + .rc-inner {
  background: rgba(196, 149, 69, 0.25);
  border-color: rgba(196, 149, 69, 0.5);
  box-shadow: 0 0 0 1px rgba(196, 149, 69, 0.2), 0 8px 24px -8px rgba(196, 149, 69, 0.4);
}
.radio-card input:checked + .rc-inner .material-symbols-outlined {
  color: var(--gold);
}

/* Chips multi-select */
.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.chip {
  position: relative;
  cursor: pointer;
}
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip .ch-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--text-mute);
  transition: all 0.25s ease;
}
.chip .ch-inner::before {
  content: "+";
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-dim);
  transition: all 0.25s ease;
}
.chip:hover .ch-inner {
  background: rgba(255,255,255,0.06);
  border-color: var(--glass-border-hover);
  color: var(--text);
}
.chip input:checked + .ch-inner {
  background: rgba(196, 149, 69, 0.3);
  border-color: rgba(196, 149, 69, 0.5);
  color: var(--text);
}
.chip input:checked + .ch-inner::before {
  content: "✓";
  color: var(--gold);
}

/* Fields */
.field-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
@media (max-width: 600px) {
  .field-grid { grid-template-columns: 1fr; }
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  color: var(--text-mute);
  font-weight: 450;
  letter-spacing: 0.01em;
}
.field label .req { color: var(--gold); margin-left: 3px; }
.field input,
.field select,
.field textarea {
  padding: 14px 16px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: all 0.25s ease;
  width: 100%;
}
.field input::placeholder,
.field textarea::placeholder { color: var(--text-dim); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.06);
  border-color: rgba(196, 149, 69, 0.5);
  box-shadow: 0 0 0 3px rgba(196, 149, 69, 0.08);
}
.field textarea {
  resize: vertical;
  min-height: 100px;
  font-family: var(--sans);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'><path d='M1 1L6 6L11 1' stroke='%23C8A24A' stroke-width='1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 18px center;
  padding-right: 44px;
}
.field.error input,
.field.error select,
.field.error textarea { border-color: rgba(220, 80, 80, 0.6); }
.field .err-msg {
  font-size: 0.78rem;
  color: rgba(220, 120, 120, 0.9);
  display: none;
}
.field.error .err-msg { display: block; }

.consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--text-mute);
  line-height: 1.5;
  cursor: pointer;
  padding: 16px;
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--glass-border);
  border-radius: var(--r-md);
}
.consent input {
  appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid var(--glass-border-hover);
  border-radius: 5px;
  background: rgba(255,255,255,0.03);
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
  margin-top: 1px;
  transition: all 0.2s;
}
.consent input:checked {
  background: var(--amber);
  border-color: var(--amber-bright);
}
.consent input:checked::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
}
.consent a { color: var(--gold); text-decoration: underline; text-decoration-color: rgba(196, 149, 69, 0.3); }

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
}
.form-submit .note {
  font-size: 0.82rem;
  color: var(--text-dim);
}
.form-submit .btn-primary { padding: 18px 36px; font-size: 1rem; }

.form-success {
  display: none;
  padding: 60px 40px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.form-success.active { display: flex; }
.quote-form.submitted .form-step,
.quote-form.submitted .form-submit { display: none; }
.form-success .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(196, 149, 69, 0.1);
  border: 1px solid rgba(196, 149, 69, 0.4);
  display: grid;
  place-items: center;
}
.form-success .check .material-symbols-outlined {
  font-size: 36px;
  color: var(--gold);
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}
.form-success p {
  color: var(--text-mute);
  max-width: 48ch;
}

/* ============================================
   Footer
   ============================================ */

.site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(196, 149, 69, 0.06) 100%);
  border-top: 1px solid var(--line);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
/* Coordonnées + Ressources poussées à l'extrême droite (col 3 et 4) */
.footer-grid > .footer-col:nth-child(2) { grid-column: 3; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand { margin-bottom: 24px; }
.footer-brand .brand-name--img img {
  display: block;
  height: auto;
  width: 177px;
  max-width: 100%;
}
.footer-brand .tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 18px;
  line-height: 1.3;
}
.footer-brand p {
  color: var(--text-mute);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 36ch;
}

.footer-col h5 {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul li a,
.footer-col ul li {
  color: var(--text-mute);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--text); }
.footer-col ul li .material-symbols-outlined {
  font-size: 16px;
  color: var(--amber);
}
.footer-col ul li .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 6px;
  font-size: 0.78rem;
}

.footer-bottom {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 32px;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: var(--text-dim);
}
.footer-bottom .legal { display: flex; gap: 20px; flex-wrap: wrap; }
.footer-bottom .legal span { color: var(--text-dim); }
.footer-bottom .legal span.copyright-gold { color: var(--gold); }
.footer-bottom .signature {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
}

/* ============================================
   Utility
   ============================================ */

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  user-select: none;
}

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


/* ============================================
   Moucharabieh background (image-based)
   ============================================ */

/* Dark veil over the fixed body image so content stays readable */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-color: rgba(11, 9, 8, 0.62);
}

/* Subtle moucharabieh tile texture on top of the veil for added depth */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: url("assets/moucharabieh-tile.webp");
  background-repeat: repeat;
  background-size: 280px 280px;
  opacity: 0.09;
}

/* Hero content stacking — image bg is on .hero itself, overlay on ::after */
.hero-inner { z-index: 3; }
.hero-scroll { z-index: 4; color: rgba(245, 245, 240, 0.7); }
.hero-scroll::after { background: linear-gradient(180deg, var(--amber), transparent); }

/* Mobile hero adjustments — keep arch image visible, content stacks */
@media (max-width: 768px) {
  .hero {
    background-position: center 30%;
    padding-top: 120px;
    padding-bottom: 60px;
  }
  .hero h1 { font-size: clamp(1.7rem, 6vw, 2.2rem); max-width: 100%; }
  .hero-sub { font-size: 0.95rem; max-width: 100%; }
  .hero-ctas { flex-direction: column; align-items: stretch; width: 100%; max-width: 320px; }
  .hero-ctas .btn { width: 100%; }
  .hero-tagline { font-size: 0.95rem; }
}

/* ============================================
   Ornamental section divider
   ============================================ */

.ornament-divider {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 18px;
  opacity: 0.6;
}
.ornament-divider::before,
.ornament-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber) 18%, var(--amber) 82%, transparent);
  opacity: 0.5;
}
.ornament-divider svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  display: block;
}
.ornament-divider svg .star-shape {
  fill: none;
  stroke: var(--amber);
  stroke-width: 1;
}
.ornament-divider svg .star-dot { fill: var(--amber); }

@media (max-width: 768px) {
  .ornament-divider { padding: 0 20px; }
}

/* ============================================
   Quote section — re-introduce arch image
   ============================================ */

.quote-section {
  background-color: transparent;
  background-image: none;
  position: relative;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(11, 9, 8, 0.30) 0%,
    rgba(11, 9, 8, 0.15) 40%,
    rgba(11, 9, 8, 0.30) 100%);
  z-index: 0;
}
.quote-section > .container {
  position: relative;
  z-index: 1;
}

/* ============================================
   Footer pattern strip
   ============================================ */

.site-footer {
  position: relative;
  padding-top: 0;
}
.footer-pattern-strip {
  height: 50px;
  background-image: url("assets/moucharabieh-strip.webp");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.18;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(196, 149, 69, 0.12);
}
.site-footer > .container { padding-top: 12px; }

@media (max-width: 768px) {
  .footer-pattern-strip { height: 40px; }
}


/* ============================================
   Metallic brilliant gold — applied to all gold accents
   ============================================ */

/* Reusable gradient text utility */
.metallic-text,
.hero h1 em,
.cat-card.featured h3 em,
.testimonial blockquote em,
.step-num,
.brand-mark span,
.brand-name small,
.info-card .info-big,
.footer-brand .tagline,
.footer-col h5,
.footer-bottom .signature,
.testimonial .avatar,
.faq-item summary::after,
.quote-aside .contact-direct a,
.cat-meta .arrow,
.consent a {
  background: linear-gradient(180deg,
    #FBE4A8 0%,
    #E8BD68 30%,
    #C49545 60%,
    #A87E32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Same brilliant sweep on the footer signature tagline */
.footer-brand .tagline {
  background: linear-gradient(100deg,
    #C49545 0%, #E8BD68 22%, #FFF7DD 50%, #E8BD68 78%, #C49545 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: goldSweep 4.5s linear infinite;
}

@keyframes goldSweep {
  0%   { background-position: 180% 0; }
  100% { background-position: -80% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .footer-brand .tagline { animation: none; background-position: 50% 0; }
}

/* Step-num: metallic ring + metallic numeral */
.step-num {
  background: var(--bg);
  border: 1px solid transparent;
  background-image:
    linear-gradient(var(--bg), var(--bg)),
    linear-gradient(180deg, #FBE4A8 0%, #C49545 50%, #8E6A28 100%);
  background-origin: border-box;
  background-clip: padding-box, border-box;
  position: relative;
  box-shadow: 0 0 18px rgba(196, 149, 69, 0.25);
}
.step-num::before {
  content: attr(data-num);
}
/* Force the numeral text to be metallic — use a child span trick via ::before isn't ideal here.
   Apply linear-gradient to the text directly: */
.step-num {
  background-image: linear-gradient(180deg, #FBE4A8, #E8BD68 35%, #C49545 70%, #A87E32);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  border: 1px solid rgba(245, 213, 139, 0.5);
}

/* Brand-mark "OH": metallic letters */
.brand-mark span {
  background: linear-gradient(180deg, #FBE4A8 0%, #E8BD68 35%, #C49545 75%, #8E6A28 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 4px rgba(196, 149, 69, 0.4));
}
.brand-mark { border-color: rgba(245, 213, 139, 0.7); }
.brand-mark::after { border-color: rgba(245, 213, 139, 0.4); }

/* Testimonial avatars: metallic fill, not text-clip */
.testimonial .avatar {
  background: linear-gradient(180deg,
    #FBE4A8 0%,
    #E8BD68 25%,
    #C49545 60%,
    #8E6A28 100%);
  color: #2A1F0A;
  -webkit-text-fill-color: #2A1F0A;
  -webkit-background-clip: border-box;
  background-clip: border-box;
  border: 1px solid rgba(80, 50, 10, 0.45);
  box-shadow:
    inset 0 1px 0 rgba(255, 240, 200, 0.5),
    inset 0 -1px 0 rgba(60, 35, 8, 0.4),
    0 0 14px rgba(196, 149, 69, 0.35);
  font-weight: 600;
  text-shadow: 0 1px 0 rgba(255, 230, 170, 0.4);
}

/* Phone CTA "btn-glass-amber": keep flat bright amber — clip-text on small text + icons is unreadable */
.btn-glass-amber {
  background: rgba(196, 149, 69, 0.10);
  border: 1px solid rgba(245, 213, 139, 0.35);
  color: var(--btn-amber-color);
  -webkit-text-fill-color: var(--btn-amber-color);
  text-shadow: 0 0 10px rgba(196, 149, 69, 0.35);
}
.btn-glass-amber .material-symbols-outlined {
  color: var(--btn-amber-color);
  -webkit-text-fill-color: var(--btn-amber-color);
  background: none;
  -webkit-background-clip: border-box;
  background-clip: border-box;
}
.btn-glass-amber:hover {
  background-color: rgba(196, 149, 69, 0.18);
  border-color: rgba(245, 213, 139, 0.55);
  color: var(--btn-amber-hover);
  -webkit-text-fill-color: var(--btn-amber-hover);
  box-shadow: 0 0 0 4px rgba(196, 149, 69, 0.12), 0 0 18px rgba(196, 149, 69, 0.35);
}
.btn-glass-amber:hover .material-symbols-outlined {
  color: var(--btn-amber-hover);
  -webkit-text-fill-color: var(--btn-amber-hover);
}

/* Section heading <em> (hero, featured card, testimonials) — slight glow */
.hero h1 em,
.cat-card.featured h3 em,
.testimonial blockquote em {
  filter: drop-shadow(0 0 18px rgba(196, 149, 69, 0.35));
}

/* FAQ +/- markers: metallic */
.faq-item summary::after {
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Section eyebrow rules already updated above; ensure no conflicting flat color override */

/* Info big number (J+1) — metallic + soft glow */
.info-card .info-big {
  filter: drop-shadow(0 0 20px rgba(196, 149, 69, 0.30));
}

/* Trust chip icons: stay solid amber (small) — metallic clip on tiny icons doesn't render well */
/* Material icon glyphs cannot be background-clipped reliably across browsers — leave them solid amber */


/* ============================================
   TWEAKS — Ambiance / Ornement / Matière
   Re-tone the brand without touching markup.
   ============================================ */

/* ---------- AMBIANCE ---------- */

/* Maison (default) — current warm amber, warm black */
html[data-ambiance="maison"] {
  --bg: #0B0908;
  --amber: #C49545;
  --amber-bright: #D4A14B;
  --amber-deep: #6B5230;
}

/* Souk — saffron + spice, more saturated, hotter */
html[data-ambiance="souk"] {
  --bg: #100805;
  --amber: #E0A14A;
  --amber-bright: #F0B85A;
  --amber-deep: #8A5B22;
}
html[data-ambiance="souk"] body::before {
  background-color: rgba(28, 12, 6, 0.82);
}
html[data-ambiance="souk"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(28, 12, 6, 0.50) 0%, transparent 55%),
    linear-gradient(180deg, rgba(28, 12, 6, 0) 0%, rgba(28, 12, 6, 0) 50%, rgba(28, 12, 6, 0.55) 100%),
    rgba(75, 30, 12, 0.18);
}

/* Atelier — cooler steel-gold, industrial butcher feel, less ornate */
html[data-ambiance="atelier"] {
  --bg: #0A0B0C;
  --amber: #B89860;
  --amber-bright: #C9A968;
  --amber-deep: #6F5A38;
}
html[data-ambiance="atelier"] body {
  background-image: none;
}
html[data-ambiance="atelier"] body::before {
  background-color: #0A0B0C;
}
html[data-ambiance="atelier"] body::after {
  opacity: 0.025;
}
html[data-ambiance="atelier"] .hero {
  background-image: none;
  background-color: #0A0B0C;
}
html[data-ambiance="atelier"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(184, 152, 96, 0.06) 0%, transparent 60%),
    rgba(10, 11, 12, 0.4);
}

/* Palais — deep jet black, brighter gold, dramatic */
html[data-ambiance="palais"] {
  --bg: #050403;
  --amber: #E0B560;
  --amber-bright: #F0C870;
  --amber-deep: #7A5C28;
}
html[data-ambiance="palais"] body::before {
  background-color: rgba(5, 4, 3, 0.92);
}
html[data-ambiance="palais"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(5, 4, 3, 0.65) 0%, transparent 55%),
    linear-gradient(180deg, rgba(5, 4, 3, 0) 0%, rgba(5, 4, 3, 0) 50%, rgba(5, 4, 3, 0.70) 100%),
    rgba(5, 4, 3, 0.10);
}

/* ---------- ORNEMENT ---------- */

/* Discret — minimal pattern + faded arch + no dividers */
html[data-ornement="discret"] body::after {
  opacity: 0.02;
}
html[data-ornement="discret"] .hero {
  background-image: none;
  background-color: var(--bg);
}
html[data-ornement="discret"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(196, 149, 69, 0.08) 0%, transparent 50%),
    rgba(11, 9, 8, 0.5);
}
html[data-ornement="discret"] .ornament-divider {
  display: none;
}
html[data-ornement="discret"] .footer-pattern-strip {
  opacity: 0.06;
}

/* Équilibré (default) — current */

/* Somptueux — denser pattern, brighter visible arch, dividers everywhere */
html[data-ornement="somptueux"] body::after {
  opacity: 0.11;
  background-size: 220px 220px;
}
html[data-ornement="somptueux"] body::before {
  background-color: rgba(11, 9, 8, 0.78);
}
html[data-ornement="somptueux"] .hero::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(11, 9, 8, 0.4) 0%, transparent 55%),
    linear-gradient(180deg, rgba(11, 9, 8, 0) 0%, rgba(11, 9, 8, 0) 50%, rgba(11, 9, 8, 0.35) 100%),
    rgba(11, 9, 8, 0.05);
}
html[data-ornement="somptueux"] .ornament-divider {
  opacity: 0.85;
}
html[data-ornement="somptueux"] .footer-pattern-strip {
  opacity: 0.32;
  height: 130px;
}
/* Add a faint arch outline behind every section */
html[data-ornement="somptueux"] section:not(.hero):not(.quote-section)::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(1200px, 92vw);
  height: 100%;
  background-image: url("assets/mihrab-hero.jpg");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
  mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 30%, black 70%, transparent 100%);
}
html[data-ornement="somptueux"] section { position: relative; }
html[data-ornement="somptueux"] section > .container { position: relative; z-index: 1; }

/* ---------- MATIÈRE ---------- */

/* Verre (default) — liquid glass, current */

/* Velours — matte solid, no blur, soft warm shadow */
html[data-matiere="velours"] .glass {
  background: #14110D;
  border-color: rgba(196, 149, 69, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 1px 0 rgba(255, 240, 200, 0.04) inset, 0 18px 40px -20px rgba(0, 0, 0, 0.6);
}
html[data-matiere="velours"] .glass::before {
  background: linear-gradient(180deg, rgba(255, 240, 200, 0.03) 0%, transparent 30%);
}
html[data-matiere="velours"] .glass-hover:hover {
  background: #1A1611;
  border-color: rgba(196, 149, 69, 0.28);
  box-shadow: 0 1px 0 rgba(255, 240, 200, 0.06) inset, 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}
html[data-matiere="velours"] .faq-item[open] {
  background: #1A1611;
}
html[data-matiere="velours"] .btn-glass {
  background: #14110D;
  border-color: rgba(196, 149, 69, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
html[data-matiere="velours"] .btn-glass:hover {
  background: #1A1611;
  border-color: rgba(196, 149, 69, 0.30);
}
html[data-matiere="velours"] .trust-chip {
  background: #14110D;
  border-color: rgba(196, 149, 69, 0.14);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

/* Parchemin — warm cream-tinted, paper-feel, editorial book */
html[data-matiere="parchemin"] .glass {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(245, 213, 139, 0.05) 0%, transparent 60%),
    rgba(196, 149, 69, 0.05);
  border-color: rgba(196, 149, 69, 0.22);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  box-shadow:
    0 1px 0 rgba(255, 240, 200, 0.10) inset,
    0 0 0 1px rgba(196, 149, 69, 0.06) inset,
    0 16px 36px -20px rgba(0, 0, 0, 0.5);
}
html[data-matiere="parchemin"] .glass::before {
  background:
    linear-gradient(180deg, rgba(245, 213, 139, 0.06) 0%, transparent 25%),
    radial-gradient(ellipse at 100% 100%, rgba(196, 149, 69, 0.04) 0%, transparent 40%);
}
html[data-matiere="parchemin"] .glass-hover:hover {
  background:
    radial-gradient(ellipse at 30% 0%, rgba(245, 213, 139, 0.08) 0%, transparent 60%),
    rgba(196, 149, 69, 0.08);
  border-color: rgba(196, 149, 69, 0.35);
}
html[data-matiere="parchemin"] .trust-chip {
  background: rgba(196, 149, 69, 0.06);
  border-color: rgba(196, 149, 69, 0.22);
}
html[data-matiere="parchemin"] .btn-glass {
  background: rgba(196, 149, 69, 0.06);
  border-color: rgba(196, 149, 69, 0.20);
}
html[data-matiere="parchemin"] .btn-glass:hover {
  background: rgba(196, 149, 69, 0.10);
  border-color: rgba(196, 149, 69, 0.35);
}


/* ============================================
   SOMMAIRE & GAMME sections (catalogue restructure)
   ============================================ */

.sommaire-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sommaire-grid > a.featured {
  grid-column: span 2;
  grid-row: span 2;
}
@media (max-width: 900px) {
  .sommaire-grid { grid-template-columns: repeat(2, 1fr); }
  .sommaire-grid > a.featured { grid-column: span 2; grid-row: auto; }
}
@media (max-width: 480px) {
  .sommaire-grid { grid-template-columns: 1fr; }
  .sommaire-grid > a.featured { grid-column: span 1; }
}

.sommaire-card {
  padding: 24px 26px 22px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  position: relative;
  color: var(--text);
}
.sommaire-card .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--amber);
  letter-spacing: 0.04em;
  background: linear-gradient(180deg, #FBE4A8 0%, #C49545 70%, #A87E32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sommaire-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0;
  line-height: 1.15;
}
.sommaire-card .sub {
  font-size: 0.78rem;
  color: var(--text-mute);
  margin-top: auto;
  padding-top: 12px;
  letter-spacing: 0.01em;
}
.sommaire-card .arrow {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--amber);
  font-size: 18px;
  transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.3, 1);
  opacity: 0.6;
}
.sommaire-card:hover .arrow {
  transform: translate(3px, -3px);
  opacity: 1;
}

.sommaire-card.featured {
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 149, 69, 0.16) 0%, transparent 50%),
    rgba(196, 149, 69, 0.05);
  border-color: rgba(196, 149, 69, 0.30);
  padding: 32px 34px;
  justify-content: space-between;
  gap: 16px;
}
.sommaire-card.featured h3 {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
}
.sommaire-card.featured h3 em {
  font-family: var(--serif);
  font-style: italic;
  background: linear-gradient(180deg, #FBE4A8, #C49545 60%, #8E6A28);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin: 0 0.05em;
}
.sommaire-card.featured .lede-small {
  color: var(--text-mute);
  font-size: 0.95rem;
  line-height: 1.55;
  max-width: 38ch;
  margin: 0;
}
.sommaire-card.featured .sub {
  color: var(--amber);
  opacity: 0.85;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---- Gamme sections ---- */

.gamme-section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .gamme-section { padding: 64px 0; }
}

.gamme-head {
  max-width: 760px;
  margin-bottom: 48px;
}
.gamme-head .gamme-number {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.06em;
  display: inline-block;
  margin-bottom: 12px;
  background: linear-gradient(180deg, #FBE4A8, #C49545 60%, #A87E32);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gamme-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  margin-bottom: 16px;
  line-height: 1.05;
}
.gamme-head h2 em {
  color: var(--amber);
  font-style: italic;
  font-family: var(--serif);
  background: linear-gradient(180deg, #FBE4A8, #C49545 60%, #8E6A28);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gamme-head .lede { color: var(--text-mute); }

/* ---- Catalogue grid (embedded product pages) ---- */

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 700px) {
  .catalogue-grid { grid-template-columns: 1fr; gap: 14px; }
}

.catalogue-page {
  padding: 0;
  overflow: hidden;
  border-radius: var(--r-lg);
  position: relative;
  display: block;
  background: rgba(11, 9, 8, 0.4);
}
.catalogue-page img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.catalogue-page::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, transparent 30%);
  pointer-events: none;
  z-index: 1;
}
.catalogue-page::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(196, 149, 69, 0.0);
  pointer-events: none;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
  z-index: 2;
}
.catalogue-page:hover img { transform: scale(1.02); }
.catalogue-page:hover::after {
  border-color: rgba(196, 149, 69, 0.35);
  box-shadow: 0 0 28px rgba(196, 149, 69, 0.10);
}

.gamme-subhead {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  font-style: italic;
  margin: 56px 0 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(180deg, #FBE4A8, #C49545 60%, #8E6A28);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gamme-subhead::before {
  content: "";
  width: 28px;
  height: 1px;
  flex-shrink: 0;
  background: linear-gradient(90deg, var(--amber), transparent);
  margin-top: 4px;
}
.gamme-subhead:first-of-type { margin-top: 0; }

/* ---- Charcuterie tabs ---- */

.charc-tabs {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.charc-tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 6px;
  background: rgba(196, 149, 69, 0.04);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  align-self: flex-start;
  max-width: 100%;
}
.charc-tab {
  padding: 11px 20px;
  background: transparent;
  border: none;
  border-radius: 999px;
  color: var(--text-mute);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 450;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.charc-tab:hover {
  color: var(--text);
  background: rgba(255,255,255,0.04);
}
.charc-tab.active {
  background:
    linear-gradient(180deg, rgba(255, 240, 200, 0.06) 0%, transparent 100%),
    rgba(196, 149, 69, 0.18);
  color: #F0CA7C;
  box-shadow:
    0 0 0 1px rgba(196, 149, 69, 0.35) inset,
    0 1px 0 rgba(255, 240, 200, 0.15) inset,
    0 0 16px rgba(196, 149, 69, 0.20);
}

.charc-panel { display: none; }
.charc-panel.active {
  display: block;
  animation: charcFadeUp 0.45s cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes charcFadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 760px) {
  .charc-tabbar {
    border-radius: 14px;
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .charc-tabbar::-webkit-scrollbar { display: none; }
  .charc-tab { flex-shrink: 0; }
}


/* ============================================
   PRODUCT CARDS (catalogue sans photos)
   ============================================ */

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 860px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .product-grid { grid-template-columns: 1fr; }
}

.product-card {
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.product-card h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #FBE4A8 0%, #C49545 70%, #A87E32 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.product-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.product-list li {
  font-size: 0.82rem;
  color: var(--text-mute);
  padding: 6px 13px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background: rgba(255,255,255,0.02);
  letter-spacing: 0.01em;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.product-card:hover .product-list li {
  color: var(--text);
  border-color: rgba(196, 149, 69, 0.22);
}


/* ============================================
   AMBIANCE IVOIRE — mode clair "ivoire & or" (Option 3)
   ============================================ */

html[data-ambiance="ivoire"] {
  --bg: #F5EFE4;
  --amber: #A87E32;
  --amber-bright: #C49545;
  --amber-deep: #8E6A28;
  --text: #2A1F14;
  --text-mute: rgba(42, 31, 20, 0.68);
  --text-dim: rgba(42, 31, 20, 0.46);
  --line: rgba(42, 31, 20, 0.12);
  --line-strong: rgba(42, 31, 20, 0.2);
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-bg-hover: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(107, 82, 48, 0.2);
  --glass-border-hover: rgba(107, 82, 48, 0.35);
  --header-bg: rgba(11, 9, 8, 0.92);
  --header-bg-scrolled: rgba(11, 9, 8, 0.97);
  --btn-glass-color: #2A1F14;
  --btn-amber-color: #E8C878;
  --btn-amber-hover: #F4D98A;
}
html[data-ambiance="ivoire"] body {
  background-image: url("assets/bg-gold-door.jpg");
  background-color: #F5EFE4;
  color: var(--text);
}
html[data-ambiance="ivoire"] body::before {
  background-color: rgba(245, 239, 228, 0.58);
}
html[data-ambiance="ivoire"] body::after {
  opacity: 0.05;
}
html[data-ambiance="ivoire"] .hero {
  background-image: url("assets/bg-gold-door.jpg");
  background-color: #EFE6D3;
}
html[data-ambiance="ivoire"] .hero::after {
  background:
    radial-gradient(ellipse 66% 62% at 50% 46%, rgba(245, 239, 228, 0.88) 0%, rgba(245, 239, 228, 0.55) 55%, rgba(245, 239, 228, 0.20) 100%),
    linear-gradient(180deg, rgba(245, 239, 228, 0.30) 0%, rgba(245, 239, 228, 0) 30%, rgba(245, 239, 228, 0) 70%, rgba(245, 239, 228, 0.45) 100%);
}
html[data-ambiance="ivoire"] .site-header {
  background: linear-gradient(rgba(10,9,8,0.55), rgba(10,9,8,0.62)), url("assets/marble-black-gold.webp") !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
  border-bottom: 1px solid rgba(196, 149, 69, 0.28);
  box-shadow: 0 6px 20px -10px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .site-header.scrolled {
  background: linear-gradient(rgba(8,7,6,0.66), rgba(8,7,6,0.72)), url("assets/marble-black-gold.webp") !important;
  background-size: cover, cover !important;
  background-position: center, center !important;
}
/* Bannière noire + écritures dorées (header en mode ivoire) */
html[data-ambiance="ivoire"] .nav a { color: rgba(232, 200, 120, 0.82); }
html[data-ambiance="ivoire"] .nav a:hover { color: #F4D98A; }
html[data-ambiance="ivoire"] .brand-name { color: #E8C878; }
html[data-ambiance="ivoire"] .brand-name small { color: rgba(232, 200, 120, 0.85); }
html[data-ambiance="ivoire"] .header-cta .btn-glass-amber {
  background: rgba(196, 149, 69, 0.12);
  border-color: rgba(245, 213, 139, 0.32);
}
/* Halo crème derrière les titres sur fond (or plus visible) pour rester lisible */
html[data-ambiance="ivoire"] .section-head h2,
html[data-ambiance="ivoire"] .section-head .lede,
html[data-ambiance="ivoire"] .gamme-head h2,
html[data-ambiance="ivoire"] .gamme-head .lede,
html[data-ambiance="ivoire"] .gamme-head .gamme-number,
html[data-ambiance="ivoire"] .gamme-subhead,
html[data-ambiance="ivoire"] .quote-aside h2,
html[data-ambiance="ivoire"] .quote-aside .lede,
html[data-ambiance="ivoire"] .quote-aside .aside-points li,
html[data-ambiance="ivoire"] .quote-aside .contact-direct a,
html[data-ambiance="ivoire"] .section-head .eyebrow {
  text-shadow: 0 1px 12px rgba(245, 239, 228, 0.95), 0 0 5px rgba(245, 239, 228, 0.85);
}
/* Textes or-métallique clair illisibles sur fond clair → bronze + léger halo */
html[data-ambiance="ivoire"] .eyebrow,
html[data-ambiance="ivoire"] .sommaire-card.featured h3 em {
  background: none !important;
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  filter: none !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .sommaire-card .arrow {
  background: none !important;
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  filter: none !important;
  text-shadow: none !important;
  opacity: 0.92 !important;
}
html[data-ambiance="ivoire"] .gamme-number,
html[data-ambiance="ivoire"] .gamme-subhead,
html[data-ambiance="ivoire"] .sommaire-card .num,
html[data-ambiance="ivoire"] .sommaire-card .sub,
html[data-ambiance="ivoire"] .hero h1 em,
html[data-ambiance="ivoire"] .gamme-head h2 em,
html[data-ambiance="ivoire"] .info-card .info-big,
html[data-ambiance="ivoire"] .footer-col h5,
html[data-ambiance="ivoire"] .footer-brand .tagline,
html[data-ambiance="ivoire"] .footer-bottom .signature,
html[data-ambiance="ivoire"] .step-num,
html[data-ambiance="ivoire"] .faq-item summary::after,
html[data-ambiance="ivoire"] .testimonial blockquote em,
html[data-ambiance="ivoire"] .testimonial .role-tag,
html[data-ambiance="ivoire"] .cat-meta .arrow,
html[data-ambiance="ivoire"] .hero-tagline,
html[data-ambiance="ivoire"] .hero-scroll,
html[data-ambiance="ivoire"] .trust-chip .material-symbols-outlined,
html[data-ambiance="ivoire"] .step .step-time,
html[data-ambiance="ivoire"] .quote-aside .contact-direct .label,
html[data-ambiance="ivoire"] .product-card h4 {
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  -webkit-text-fill-color: #7A5A28 !important;
  color: #7A5A28 !important;
  text-shadow: 0 0 6px rgba(245, 239, 228, 0.75);
}
/* Le numéro d'étape garde son cercle, juste le chiffre en bronze */
html[data-ambiance="ivoire"] .step-num {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
  border-color: rgba(122, 90, 40, 0.5);
}

/* Cadre sombre autour des en-têtes de section/gamme → lisibles sur l'or */
html[data-ambiance="ivoire"] .section-head,
html[data-ambiance="ivoire"] .gamme-head {
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border: 1px solid rgba(196, 149, 69, 0.32);
  border-radius: 20px;
  padding: 34px 38px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(0,0,0,0.5);
}
@media (max-width: 600px) {
  html[data-ambiance="ivoire"] .section-head,
  html[data-ambiance="ivoire"] .gamme-head { padding: 24px 22px; }
}
/* Textes clairs dans le cadre sombre (on annule bronze + halo crème) */
html[data-ambiance="ivoire"] .section-head h2,
html[data-ambiance="ivoire"] .gamme-head h2 {
  color: #F5F0E6;
  text-shadow: none;
}
html[data-ambiance="ivoire"] .section-head .lede,
html[data-ambiance="ivoire"] .gamme-head .lede {
  color: rgba(245, 240, 230, 0.80);
  text-shadow: none;
}
html[data-ambiance="ivoire"] .section-head .eyebrow,
html[data-ambiance="ivoire"] .gamme-head .gamme-number,
html[data-ambiance="ivoire"] .gamme-head h2 em,
html[data-ambiance="ivoire"] .section-head h2 em {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}

/* Sous-titres de gamme (Agneau, Veau, Poisson…) en pastille sombre */
html[data-ambiance="ivoire"] .gamme-subhead {
  display: inline-flex;
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%) !important;
  border: 1px solid rgba(196, 149, 69, 0.32);
  border-radius: 14px;
  padding: 10px 22px;
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
  box-shadow: 0 8px 22px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .gamme-subhead::before { display: none; }

/* En-tête du formulaire de devis dans un cadre sombre */
html[data-ambiance="ivoire"] .quote-aside {
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border: 1px solid rgba(196, 149, 69, 0.32);
  border-radius: 20px;
  padding: 32px 30px;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(0,0,0,0.5);
}
html[data-ambiance="ivoire"] .quote-aside h2 { color: #F5F0E6; text-shadow: none; }
html[data-ambiance="ivoire"] .quote-aside .lede { color: rgba(245, 240, 230, 0.80); text-shadow: none; }
html[data-ambiance="ivoire"] .quote-aside .aside-points li { color: rgba(245, 240, 230, 0.82); text-shadow: none; }
html[data-ambiance="ivoire"] .quote-aside .contact-direct a { color: #F5F0E6; -webkit-text-fill-color: #F5F0E6; text-shadow: none !important; }
html[data-ambiance="ivoire"] .quote-aside .eyebrow,
html[data-ambiance="ivoire"] .quote-aside .contact-direct .label {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}

/* Les 6 cartes sommaire reprennent l'en-tête doré de la carte "Authentic & Halal" */
html[data-ambiance="ivoire"] .sommaire-card {
  background:
    linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border-color: rgba(196, 149, 69, 0.32);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .sommaire-card h3 { color: #F5F0E6; }
html[data-ambiance="ivoire"] .sommaire-card.featured .lede-small {
  color: rgba(245, 240, 230, 0.80) !important;
  -webkit-text-fill-color: rgba(245, 240, 230, 0.80) !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .sommaire-card .sub {
  -webkit-text-fill-color: rgba(245, 240, 230, 0.72) !important;
  color: rgba(245, 240, 230, 0.72) !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .sommaire-card .num {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}

/* Cartes produits (toutes gammes) : noir chromé */
html[data-ambiance="ivoire"] .product-card {
  background:
    linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border-color: rgba(196, 149, 69, 0.32);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .product-card h4 {
  -webkit-text-fill-color: #F5F0E6 !important;
  color: #F5F0E6 !important;
}
html[data-ambiance="ivoire"] .product-list li {
  color: rgba(245, 240, 230, 0.80);
  border-color: rgba(196, 149, 69, 0.28);
  background: rgba(255, 255, 255, 0.05);
}
html[data-ambiance="ivoire"] .product-card:hover .product-list li {
  color: #F5F0E6;
  border-color: rgba(196, 149, 69, 0.45);
}
/* Cartes "Pourquoi nous" : noir chromé */
html[data-ambiance="ivoire"] .why-card {
  background:
    linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border-color: rgba(196, 149, 69, 0.32);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .why-card h4 { color: #F5F0E6; }
html[data-ambiance="ivoire"] .why-card p { color: rgba(245, 240, 230, 0.80); }
/* Étapes du process : même teinte dorée + texte clair */
html[data-ambiance="ivoire"] .step {
  background:
    linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border: 1px solid rgba(196, 149, 69, 0.32);
  border-radius: 18px;
  padding: 26px 22px;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .step h4 { color: #F5F0E6; }
html[data-ambiance="ivoire"] .step p { color: rgba(245, 240, 230, 0.80); }
html[data-ambiance="ivoire"] .step .step-time {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .process-timeline::before { opacity: 0.4; }

/* Bandeau de confiance (chips) en noir aussi */
html[data-ambiance="ivoire"] .trust-chip {
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%) !important;
  border-color: rgba(196, 149, 69, 0.32) !important;
  box-shadow: 0 8px 22px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .trust-chip strong { color: #F5F0E6; }
html[data-ambiance="ivoire"] .trust-chip span.muted { color: rgba(245, 240, 230, 0.70); }
html[data-ambiance="ivoire"] .trust-chip .material-symbols-outlined {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}

/* Pied de page sur panneau sombre (illisible sur l'or sinon) */
html[data-ambiance="ivoire"] .site-footer {
  background: rgba(11, 9, 8, 0.90) !important;
  border-top: 1px solid rgba(196, 149, 69, 0.30);
}
html[data-ambiance="ivoire"] .footer-brand .brand-name,
html[data-ambiance="ivoire"] .footer-col ul li a,
html[data-ambiance="ivoire"] .footer-col ul li,
html[data-ambiance="ivoire"] .footer-brand p {
  color: rgba(245, 240, 230, 0.82) !important;
}
html[data-ambiance="ivoire"] .footer-col h5,
html[data-ambiance="ivoire"] .footer-brand .tagline,
html[data-ambiance="ivoire"] .footer-bottom .signature {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .footer-bottom,
html[data-ambiance="ivoire"] .footer-bottom .legal span {
  color: rgba(245, 240, 230, 0.55) !important;
}
html[data-ambiance="ivoire"] .footer-bottom .legal span.copyright-gold {
  color: var(--gold) !important;
}
html[data-ambiance="ivoire"] .footer-col ul li .material-symbols-outlined,
html[data-ambiance="ivoire"] .footer-col ul li .badge {
  color: #E8C878 !important;
}

/* Cartes du bas en noir : témoignages, logistique, FAQ */
html[data-ambiance="ivoire"] .testimonial,
html[data-ambiance="ivoire"] .info-card,
html[data-ambiance="ivoire"] .faq-item {
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%) !important;
  border-color: rgba(196, 149, 69, 0.32) !important;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .faq-item[open] { background: linear-gradient(155deg, #181819 0%, #101012 50%, #08080a 100%) !important; }
html[data-ambiance="ivoire"] .testimonial blockquote,
html[data-ambiance="ivoire"] .testimonial .attribution .name,
html[data-ambiance="ivoire"] .info-card h4,
html[data-ambiance="ivoire"] .faq-item summary {
  color: #F5F0E6 !important;
  -webkit-text-fill-color: #F5F0E6 !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .testimonial .attribution .meta,
html[data-ambiance="ivoire"] .info-card ul li {
  color: #F2D696 !important;
  font-weight: 600 !important;
}
html[data-ambiance="ivoire"] .faq-answer {
  color: rgba(245, 240, 230, 0.80) !important;
}
html[data-ambiance="ivoire"] .info-card ul li .label { color: rgba(245, 240, 230, 0.60) !important; }
html[data-ambiance="ivoire"] .faq-item summary::after,
html[data-ambiance="ivoire"] .info-card .info-big,
html[data-ambiance="ivoire"] .info-card .info-big small,
html[data-ambiance="ivoire"] .testimonial blockquote em,
html[data-ambiance="ivoire"] .testimonial .role-tag {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
  text-shadow: none !important;
}
html[data-ambiance="ivoire"] .btn-glass-amber {
  text-shadow: none;
  background: rgba(196, 149, 69, 0.12);
  border-color: rgba(168, 126, 50, 0.4);
}
html[data-ambiance="ivoire"] .hero-tagline {
  background: rgba(196, 149, 69, 0.10);
  border-color: rgba(168, 126, 50, 0.4);
}
html[data-ambiance="ivoire"] .hero-sub {
  color: rgba(42, 31, 20, 0.72);
  text-shadow: none;
}
html[data-ambiance="ivoire"] .hero-scroll { color: rgba(42, 31, 20, 0.5); }
html[data-ambiance="ivoire"] .btn-glass {
  color: #2A1F14;
  background: rgba(42, 31, 20, 0.05);
  border-color: rgba(42, 31, 20, 0.18);
}
html[data-ambiance="ivoire"] .btn-glass:hover {
  background: rgba(42, 31, 20, 0.09);
  border-color: rgba(42, 31, 20, 0.3);
}
html[data-ambiance="ivoire"] .btn-glass-amber {
  color: #E8C878;
  -webkit-text-fill-color: #E8C878;
  background: linear-gradient(160deg, #2A2018 0%, #0E0B09 55%, #1C1610 100%);
  border-color: rgba(196, 149, 69, 0.45);
  box-shadow: 0 6px 18px -8px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,240,200,0.12);
  text-shadow: none;
}
html[data-ambiance="ivoire"] .btn-glass-amber:hover {
  background: linear-gradient(160deg, #352819 0%, #14100B 55%, #241B12 100%);
  border-color: rgba(232, 200, 120, 0.6);
  box-shadow: 0 8px 22px -8px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,240,200,0.18);
}
html[data-ambiance="ivoire"] .btn-glass-amber .material-symbols-outlined {
  color: #E8C878;
  -webkit-text-fill-color: #E8C878;
}
/* ---- Formulaire de devis : panneau sombre comme les autres cartes ---- */
html[data-ambiance="ivoire"] .quote-form.glass {
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%) !important;
  border-color: rgba(196, 149, 69, 0.32) !important;
  box-shadow: 0 24px 60px -28px rgba(0, 0, 0, 0.7), inset 0 -1px 0 rgba(0,0,0,0.5) !important;
}
html[data-ambiance="ivoire"] .quote-form .form-step > h4,
html[data-ambiance="ivoire"] .quote-form .form-step > label {
  color: #F5F0E6;
}
html[data-ambiance="ivoire"] .quote-form .step-label,
html[data-ambiance="ivoire"] .quote-form .field label {
  color: rgba(245, 240, 230, 0.78);
}
html[data-ambiance="ivoire"] .field input,
html[data-ambiance="ivoire"] .field select,
html[data-ambiance="ivoire"] .field textarea {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 149, 69, 0.25);
  color: #F5F0E6;
}
html[data-ambiance="ivoire"] .field input::placeholder,
html[data-ambiance="ivoire"] .field textarea::placeholder {
  color: rgba(245, 240, 230, 0.40);
}
html[data-ambiance="ivoire"] .field select option {
  background: #14110D;
  color: #F5F0E6;
}
html[data-ambiance="ivoire"] .consent {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 149, 69, 0.22);
  color: rgba(245, 240, 230, 0.80);
}
html[data-ambiance="ivoire"] .radio-card .rc-inner,
html[data-ambiance="ivoire"] .chip .ch-inner {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(196, 149, 69, 0.22);
  color: rgba(245, 240, 230, 0.85);
}
html[data-ambiance="ivoire"] .radio-card .rc-inner .lbl { color: #F5F0E6; }
html[data-ambiance="ivoire"] .radio-card input:checked + .rc-inner,
html[data-ambiance="ivoire"] .chip input:checked + .ch-inner {
  background: rgba(196, 149, 69, 0.20);
  border-color: rgba(196, 149, 69, 0.55);
}
html[data-ambiance="ivoire"] .form-submit { border-top-color: rgba(196, 149, 69, 0.18); }
html[data-ambiance="ivoire"] .form-submit .note { color: rgba(245, 240, 230, 0.65); }
html[data-ambiance="ivoire"] .form-success h3 { color: #F5F0E6; }
html[data-ambiance="ivoire"] .form-success p { color: rgba(245, 240, 230, 0.78); }
html[data-ambiance="ivoire"] .quote-section::before { background: none; }
html[data-ambiance="ivoire"] .map-card {
  background:
    linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%) !important;
  border-color: rgba(196, 149, 69, 0.32) !important;
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.5), 0 10px 28px -14px rgba(0,0,0,0.8);
}
html[data-ambiance="ivoire"] .map-canvas {
  background:
    radial-gradient(circle at 35% 50%, rgba(196, 149, 69, 0.10) 0%, transparent 45%),
    linear-gradient(180deg, #14110D 0%, #0B0908 100%);
}
html[data-ambiance="ivoire"] .map-canvas svg text { fill: rgba(245, 240, 230, 0.7); }
html[data-ambiance="ivoire"] .map-overlay h3 { color: #F5F0E6; }
html[data-ambiance="ivoire"] .map-overlay p { color: rgba(245, 240, 230, 0.72); }
html[data-ambiance="ivoire"] .map-legend {
  background: rgba(11, 9, 8, 0.7);
  border-color: rgba(196, 149, 69, 0.25);
}
html[data-ambiance="ivoire"] .map-legend .lg-row { color: rgba(245, 240, 230, 0.78); }
html[data-ambiance="ivoire"] .site-footer {
  background: linear-gradient(180deg, transparent 0%, rgba(196, 149, 69, 0.10) 100%);
  border-top: 1px solid rgba(42, 31, 20, 0.12);
}
html[data-ambiance="ivoire"] .footer-pattern-strip { opacity: 0.10; }
html[data-ambiance="ivoire"] .step-num {
  border-color: rgba(168, 126, 50, 0.55);
  box-shadow: 0 0 14px rgba(196, 149, 69, 0.18);
}
html[data-ambiance="ivoire"] .charc-tabbar {
  background: rgba(255, 255, 255, 0.5);
  border-color: rgba(107, 82, 48, 0.2);
}
html[data-ambiance="ivoire"] .charc-tab.active { color: #8E6A28; }
html[data-ambiance="ivoire"] ::selection { background: #C49545; color: #2A1F14; }


/* ============================================
   Catalogue CTA + Feuilletoir (pdf.js viewer)
   ============================================ */

.catalogue-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
@media (max-width: 540px) {
  .catalogue-cta { flex-direction: column; }
  .catalogue-cta .btn { width: 100%; }
}

/* Bouton "Télécharger le PDF" visible sur le fond doré (mode Ivoire) */
html[data-ambiance="ivoire"] .catalogue-cta .btn-glass {
  background: rgba(11, 9, 8, 0.86);
  border-color: rgba(196, 149, 69, 0.45);
  color: #F5F0E6;
  box-shadow: 0 8px 28px -12px rgba(0, 0, 0, 0.6);
}
html[data-ambiance="ivoire"] .catalogue-cta .btn-glass .material-symbols-outlined {
  color: #E8C878;
}
html[data-ambiance="ivoire"] .catalogue-cta .btn-glass:hover {
  background: rgba(11, 9, 8, 0.94);
  border-color: rgba(232, 200, 120, 0.7);
  color: #FFFFFF;
}

.catalogue-viewer {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 5, 4, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.catalogue-viewer.open { opacity: 1; visibility: visible; }

.cv-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(196, 149, 69, 0.18);
  flex-shrink: 0;
}
.cv-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: -0.01em;
}
.cv-title .material-symbols-outlined { color: var(--amber); font-size: 22px; }
.cv-actions { display: flex; gap: 10px; }
.cv-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 69, 0.25);
  background: rgba(196, 149, 69, 0.06);
  color: var(--amber);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.25s ease;
}
.cv-btn:hover {
  background: rgba(196, 149, 69, 0.16);
  border-color: rgba(196, 149, 69, 0.5);
}
.cv-btn .material-symbols-outlined { font-size: 22px; }

.cv-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  min-height: 0;
}
.cv-page-wrap {
  position: relative;
  flex: 1;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}
.cv-canvas {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.8), 0 0 0 1px rgba(196, 149, 69, 0.15);
  background: #0B0908;
  display: block;
}
.cv-loader {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--text-mute);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.cv-loader.hidden { display: none; }
.cv-spinner {
  width: 42px;
  height: 42px;
  border: 2px solid rgba(196, 149, 69, 0.2);
  border-top-color: var(--amber);
  border-radius: 50%;
  animation: cvSpin 0.8s linear infinite;
}
@keyframes cvSpin { to { transform: rotate(360deg); } }

.cv-nav {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 69, 0.25);
  background: rgba(196, 149, 69, 0.06);
  color: var(--amber);
  cursor: pointer;
  transition: all 0.25s ease;
}
.cv-nav:hover {
  background: rgba(196, 149, 69, 0.18);
  border-color: rgba(196, 149, 69, 0.5);
  transform: scale(1.05);
}
.cv-nav:disabled { opacity: 0.25; cursor: default; transform: none; }
.cv-nav .material-symbols-outlined { font-size: 30px; }

.cv-footer {
  flex-shrink: 0;
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  border-top: 1px solid rgba(196, 149, 69, 0.18);
}
.cv-counter {
  font-family: var(--serif);
  font-style: italic;
  color: var(--amber);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

@media (max-width: 680px) {
  .cv-stage { padding: 12px; gap: 8px; }
  .cv-nav { width: 44px; height: 44px; }
  .cv-nav .material-symbols-outlined { font-size: 24px; }
  .cv-title { font-size: 0.9rem; }
  .cv-title span:not(.material-symbols-outlined) { display: none; }
}


/* ============================================
   Cartes produit cliquables → feuilletoir
   ============================================ */
.catalogue-link { cursor: pointer; position: relative; }
.catalogue-link:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 3px;
}
.catalogue-link .product-list { transition: opacity 0.3s ease; }
.catalogue-link::after {
  content: "Voir la page";
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: var(--sans);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.catalogue-link:hover::after { opacity: 0.9; transform: translateY(0); }
@media (hover: none) {
  .catalogue-link::after { opacity: 0.55; transform: none; }
}


/* ============================================
   CATALOGUE À ONGLETS (gamme → sous-gamme → produits)
   ============================================ */
.catalogue-panel { padding: 30px 0 10px; }
.gamme-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-bottom: 34px;
}
.gamme-pill {
  font-family: var(--sans);
  font-size: 0.9rem; font-weight: 600;
  color: rgba(245,240,230,0.72);
  background: rgba(11,9,8,0.60);
  border: 1px solid rgba(196,149,69,0.30);
  border-radius: 999px;
  padding: 11px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.gamme-pill:hover { color: #F5F0E6; border-color: rgba(196,149,69,0.55); }
.gamme-pill:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.gamme-pill.active {
  background: linear-gradient(180deg, #E8C878, #C49545 60%, #A87E32);
  color: #0B0908;
  border-color: transparent;
  box-shadow: 0 8px 22px -8px rgba(196,149,69,0.55);
}

.subgamme-tabbar {
  display: flex; gap: 8px;
  margin: 22px 0 26px;
  padding: 8px;
  background: linear-gradient(155deg, #1c1c1f 0%, #121214 50%, #0a0a0c 100%);
  border: 1px solid rgba(196,149,69,0.32);
  border-radius: 18px;
  overflow-x: auto;
  scrollbar-width: thin;
  box-shadow: 0 10px 28px -14px rgba(0,0,0,0.8);
}
.subgamme-tab {
  font-family: var(--sans);
  font-size: 0.85rem; font-weight: 600;
  color: rgba(245,240,230,0.66);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 18px;
  cursor: pointer;
  white-space: nowrap;
  transition: color .18s ease, background .18s ease, border-color .18s ease;
}
.subgamme-tab:hover { color: #F5F0E6; }
.subgamme-tab:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.subgamme-tab.active {
  color: var(--gold);
  background: rgba(196,149,69,0.16);
  border-color: rgba(196,149,69,0.38);
}

.subgamme-content { opacity: 0; transform: translateY(8px); transition: opacity .2s ease, transform .2s ease; }
.subgamme-content.shown { opacity: 1; transform: none; }
.subgamme-content .product-card { padding: 30px 32px; cursor: pointer; }
.subgamme-content .product-card h4 { font-family: var(--serif); font-size: 1.5rem; margin: 0 0 18px; color: #E8C878; }
.subgamme-content .product-card:hover { border-color: rgba(196,149,69,0.5); }
.product-tags { display: flex; flex-wrap: wrap; gap: 9px; }
.product-tag {
  font-family: var(--sans); font-size: 0.82rem;
  color: rgba(245,240,230,0.85);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(196,149,69,0.22);
  border-radius: 999px;
  padding: 7px 14px;
}
.card-hint {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 22px; font-size: 0.82rem; color: var(--gold); font-weight: 600;
}
.card-hint .material-symbols-outlined { font-size: 18px; }

@media (max-width: 768px) {
  .gamme-pills { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  .gamme-pill { flex: 0 0 auto; }
  .subgamme-content .product-card { padding: 24px 22px; }
}

/* Ivoire : pills/tags lisibles sur fond clair (bar sombre conservée) */
html[data-ambiance="ivoire"] .product-tag {
  color: rgba(245,240,230,0.85) !important;
  background: rgba(255,255,255,0.06);
  border-color: rgba(196,149,69,0.28);
}
html[data-ambiance="ivoire"] .subgamme-content .product-card h4 {
  -webkit-text-fill-color: #E8C878 !important;
  color: #E8C878 !important;
}


/* ============================================
   TYPOGRAPHIE — "Tout serif" : le corps de texte adopte aussi le serif.
   On remappe --sans sur la pile serif ; les italiques (déjà en --serif) restent.
   ============================================ */
html[data-typo="serif"] {
  --sans: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
}
/* Filets de sécurité pour les éléments qui codaient Inter en dur */
html[data-typo="serif"] body,
html[data-typo="serif"] p,
html[data-typo="serif"] li,
html[data-typo="serif"] a,
html[data-typo="serif"] button,
html[data-typo="serif"] input,
html[data-typo="serif"] select,
html[data-typo="serif"] textarea,
html[data-typo="serif"] .lede,
html[data-typo="serif"] .nav a,
html[data-typo="serif"] .gamme-pill,
html[data-typo="serif"] .subgamme-tab,
html[data-typo="serif"] .product-tag {
  font-family: "Fraunces", "Cormorant Garamond", "Times New Roman", serif;
}
/* Ne JAMAIS toucher la police des icônes Material */
html[data-typo="serif"] .material-symbols-outlined,
html[data-typo="serif"] .material-icons {
  font-family: "Material Symbols Outlined", "Material Icons" !important;
}


/* Tous les "&" en serif, quel que soit le contexte */
.amp { font-family: "Fraunces", "Cormorant Garamond", "Times New Roman", serif !important; font-style: normal !important; }


/* J+1 GRAND OUEST en blanc */
html[data-ambiance="ivoire"] .info-card .info-big,
html[data-ambiance="ivoire"] .info-card .info-big small,
.info-card .info-big,
.info-card .info-big small {
  color: #F5F0E6 !important;
  -webkit-text-fill-color: #F5F0E6 !important;
  background: none !important;
  -webkit-background-clip: border-box !important;
  background-clip: border-box !important;
  filter: none !important;
}


/* ============================================
   ÉCRAN DE CHARGEMENT (vidéo) — fondu à la fin
   ============================================ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #0B0908;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity .7s ease;
}
#page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}
#loader-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: loaderPulse 2s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.94; transform: scale(1); }
  50%      { opacity: 1; transform: scale(1.02); }
}


/* ============================================
   HERO VIDÉO — fond vidéo + logo OHM, voile sombre cinématographique
   ============================================ */
.hero.has-video { background-image: none !important; }
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-logo {
  display: block;
  width: 104px;
  height: auto;
  margin: 0 auto 22px;
  filter: drop-shadow(0 0 26px rgba(196, 149, 69, 0.55));
}
@media (max-width: 768px) {
  .hero-logo { width: 84px; margin-bottom: 16px; }
}

/* Voile sombre sur la vidéo (remplace tout voile clair, toutes ambiances) */
.hero.has-video::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 66% 64% at 50% 46%, rgba(11, 9, 8, 0.34) 0%, rgba(11, 9, 8, 0.46) 60%, rgba(11, 9, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 9, 8, 0.42) 0%, rgba(11, 9, 8, 0.08) 32%, rgba(11, 9, 8, 0.14) 68%, rgba(11, 9, 8, 0.66) 100%) !important;
}
html[data-ambiance="ivoire"] .hero.has-video::after {
  background:
    radial-gradient(ellipse 66% 64% at 50% 46%, rgba(11, 9, 8, 0.34) 0%, rgba(11, 9, 8, 0.46) 60%, rgba(11, 9, 8, 0.62) 100%),
    linear-gradient(180deg, rgba(11, 9, 8, 0.42) 0%, rgba(11, 9, 8, 0.08) 32%, rgba(11, 9, 8, 0.14) 68%, rgba(11, 9, 8, 0.66) 100%) !important;
}

/* Texte du hero en clair sur la vidéo sombre (toutes ambiances) */
.hero.has-video h1,
html[data-ambiance="ivoire"] .hero.has-video h1 {
  color: #F5F0E6 !important;
  -webkit-text-fill-color: #F5F0E6 !important;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.6);
}
.hero.has-video .hero-sub,
html[data-ambiance="ivoire"] .hero.has-video .hero-sub {
  color: rgba(245, 240, 230, 0.86) !important;
  text-shadow: 0 1px 20px rgba(0, 0, 0, 0.6);
}
/* "transigent pas" reste doré */
.hero.has-video h1 em,
html[data-ambiance="ivoire"] .hero.has-video h1 em {
  color: #E8C878 !important;
  -webkit-text-fill-color: #E8C878 !important;
}


/* Hero vidéo : bouton secondaire + tagline plus lisibles */
.hero.has-video .btn-glass {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(245, 213, 139, 0.55) !important;
  color: #F5F0E6 !important;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.hero.has-video .btn-glass:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: #F4D98A !important;
}
html[data-ambiance="ivoire"] .hero.has-video .hero-tagline {
  border-color: rgba(245, 213, 139, 0.45) !important;
  -webkit-text-fill-color: #FFFFFF !important;
  color: #FFFFFF !important;
  background: rgba(11, 9, 8, 0.55) !important;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.65) !important;
}
html[data-ambiance="ivoire"] .hero.has-video .hero-tagline::before {
  background: rgba(11, 9, 8, 0.45) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}


/* Compteur de références (remplace les pilules produits) */
.product-count {
  font-family: var(--sans);
  font-size: 0.95rem;
  color: rgba(245, 240, 230, 0.78);
  margin: 0;
  line-height: 1.6;
}


/* Pictogrammes des étapes du process */
.step-pic {
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
  line-height: 1;
}
html[data-ambiance="ivoire"] .step-pic { color: #E8C878; }
@media (max-width: 900px) {
  .step-pic { margin-bottom: 8px; }
}


/* Pictogrammes images des étapes */
.step-pic-img {
  height: 72px;
  width: auto;
  display: block;
  margin-bottom: 14px;
  object-fit: contain;
}
@media (max-width: 900px) {
  .step-pic-img { height: 60px; margin-bottom: 10px; }
}




/* ============================================================
   RESPONSIVE — passe mobile consolidée (n'affecte pas le desktop)
   Points de rupture : 960px (tablette) · 600px (téléphone) · 430px (petit tél.)
   ============================================================ */

/* Anti-débordement horizontal global */
html { overflow-x: hidden; }

/* ---------- 960px : TABLETTE ---------- */
@media (max-width: 960px) {
  /* En-tête : le menu passe sur sa propre ligne, centré */
  .site-header { padding: 14px 0; }
  .site-header .container {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px 16px;
    row-gap: 10px;
  }
  .brand { margin-left: 0; }
  .header-cta { margin-right: 0; gap: 10px; }
  .nav {
    display: flex !important;
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 18px 22px;
    padding-top: 4px;
  }
  .nav a { font-size: 0.9rem; }

  /* Grilles 4 colonnes -> 2 colonnes */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .categories-grid .cat-card:first-child { grid-column: span 2; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }

  /* Grilles 3 colonnes + sections 2 colonnes -> empilées */
  .testimonials-grid,
  .logistics-layout,
  .quote-layout,
  .process-timeline { grid-template-columns: 1fr; }
  .quote-aside { position: static; }
}

/* ---------- 600px : TÉLÉPHONE ---------- */
@media (max-width: 600px) {
  /* Espacements verticaux réduits */
  section { padding: 56px 0 !important; }
  .gamme-section { padding: 48px 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 40px; }

  /* Logo rétréci */
  .brand-mark, .brand-mark img { height: 40px !important; max-height: 40px !important; }
  .brand-name-img img { height: 30px; }

  /* Titres qui ne débordent jamais */
  .section-head h2,
  .gamme-head h2 { font-size: clamp(1.5rem, 7vw, 2rem); }
  .hero h1 { font-size: clamp(1.7rem, 7vw, 2.2rem); }

  /* Grilles produits en 2 colonnes lisibles */
  .categories-grid,
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .catalogue-grid { grid-template-columns: 1fr; }
  .sommaire-grid { grid-template-columns: repeat(2, 1fr); }
  .sommaire-grid > a.featured { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  /* Formulaire : champs sur une seule colonne */
  .field-grid { grid-template-columns: 1fr; }
  .radio-cards { grid-template-columns: 1fr 1fr; }

  /* Zones cliquables >= 44px */
  .btn { min-height: 44px; }
  .form-submit .btn-primary { width: 100%; }
}

/* ---------- 430px : PETIT TÉLÉPHONE ---------- */
@media (max-width: 430px) {
  section { padding: 44px 0 !important; }
  .container { padding: 0 14px; }

  /* Masque le bouton redondant, garde le devis */
  .header-cta .btn-glass-amber { display: none; }

  /* Une colonne pour les grilles les plus denses */
  .categories-grid { grid-template-columns: 1fr; }
  .categories-grid .cat-card:first-child { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; }
  .radio-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }

  /* La grille produits reste en 2 colonnes serrées mais lisibles */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .nav { gap: 14px 16px; }
  .nav a { font-size: 0.85rem; }
}
