/* ============================================================
   INTERESSENS — Luxe Doux Stylesheet (main.css)
   Édition 2026 · Maison de parfumerie · Grasse · France
   ============================================================ */

:root {
  --ivoire: #F5F0E7;
  --ivoire-2: #EDE6D7;
  --parchment: #E8DFCD;
  --encre: #120D08;
  --encre-soft: #221A12;
  --or: #9E7A2E;
  --or-soft: #7A5C22;
  --or-light: #C9A868;
  --terre: #6B4E2A;
  --blanc: #FDFBF6;
  --rule: rgba(18,13,8,0.22);
  --rule-soft: rgba(18,13,8,0.10);
  --encre-70: rgba(18,13,8,0.82);
  --encre-55: rgba(18,13,8,0.68);
  --encre-40: rgba(18,13,8,0.50);
  --white-70: rgba(253,251,246,0.85);
  --white-45: rgba(253,251,246,0.60);

  --f-serif: 'Cormorant Garamond', 'EB Garamond', Garamond, serif;
  --f-body: 'EB Garamond', Garamond, 'Times New Roman', serif;
  --f-ui: 'Inter', -apple-system, sans-serif;

  --pad-x: clamp(24px, 5vw, 72px);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--ivoire);
  color: var(--encre);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
}

/* Paper grain overlays */
body::before {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 300;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(176,138,62,0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(122,90,53,0.03) 0, transparent 40%);
  mix-blend-mode: multiply;
}
body::after {
  content: ''; position: fixed; inset: 0; pointer-events: none; z-index: 301;
  opacity: 0.18;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.06 0 0 0 0.06 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

a { color: inherit; }
img, svg, video { display: block; max-width: 100%; height: auto; }

/* ===== UTILITIES ===== */
.rule { height: 1px; background: var(--rule); width: 100%; }
.rule-thin { height: 1px; background: var(--rule-soft); }

.meta {
  font-family: var(--f-ui); font-size: 10px; font-weight: 400;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--encre-55);
}

.serif-title {
  font-family: var(--f-serif); font-weight: 400;
  letter-spacing: -0.015em; line-height: 1.04;
}
.serif-title em { font-style: italic; color: var(--or-soft); font-weight: 400; }

.ornament {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--f-serif); font-style: italic; color: var(--or);
  font-size: 13px;
  letter-spacing: 0.05em;
}
.ornament::before, .ornament::after {
  content: ''; width: 30px; height: 1px; background: var(--or); opacity: 0.6;
}

/* Skip link a11y */
.skip-link {
  position: absolute; top: -100px; left: 8px;
  background: var(--encre); color: var(--blanc); padding: 10px 16px;
  border-radius: 4px; z-index: 99999; text-decoration: none;
  font: 600 13px/1 'Inter', sans-serif; letter-spacing: 0.04em;
  transition: top 0.2s;
}
.skip-link:focus { top: 8px; outline: 2px solid var(--or); outline-offset: 2px; }
:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; border-radius: 2px; }

/* ===== HEADER PLATE ===== */
.plate {
  padding: 22px var(--pad-x);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  border-bottom: 1px solid var(--rule);
  background: var(--ivoire);
  position: relative; z-index: 10;
}
.plate-left { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.plate-left .meta { font-size: 9.5px; }
.plate-brand {
  display: inline-flex; align-items: center; gap: 14px;
  text-decoration: none; color: inherit;
  justify-self: center;
}
.plate-brand:hover .brand-logo { opacity: 0.85; }
.brand-logo { display: block; height: 52px; width: auto; flex-shrink: 0; }
.plate-center {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 26px; letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--encre);
  text-align: center;
  line-height: 1;
}
.plate-center .sub {
  display: block;
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 12px; letter-spacing: 0.1em; text-transform: none;
  color: var(--or-soft); margin-top: 6px;
}
.plate-right {
  display: flex; justify-content: flex-end; align-items: center; gap: 18px;
}
.plate-right .meta { font-size: 9.5px; }

/* Lang switcher */
.lang-switcher { position: relative; display: inline-block; }
.lang-toggle {
  display: inline-flex; align-items: center; gap: 7px;
  background: transparent; border: 1px solid var(--rule);
  padding: 6px 10px; cursor: pointer;
  font-family: var(--f-ui); font-size: 11px; letter-spacing: 0.1em;
  font-weight: 600; color: var(--encre); text-transform: uppercase;
  border-radius: 2px;
}
.lang-toggle:hover, .lang-toggle:focus-visible {
  border-color: var(--or-soft); color: var(--or-soft);
}
.lang-toggle[aria-expanded="true"] .lang-chev { transform: rotate(180deg); }
.lang-chev { transition: transform 0.2s ease; }
.lang-menu {
  position: absolute; top: calc(100% + 4px); inset-inline-end: 0;
  background: var(--ivoire); border: 1px solid var(--rule); border-radius: 2px;
  list-style: none; padding: 6px 0; margin: 0; min-width: 170px;
  box-shadow: 0 8px 24px rgba(18,13,8,0.12);
  z-index: 1000; display: none;
}
.lang-menu.open { display: block; }
.lang-menu li { list-style: none; }
.lang-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 14px;
  font-family: var(--f-serif); font-size: 16px; font-style: italic;
  color: var(--encre); text-decoration: none; gap: 12px;
}
.lang-option:hover, .lang-option:focus-visible {
  background: var(--ivoire-2); color: var(--or-soft); outline: none;
}
.lang-option.is-current { color: var(--or-soft); font-weight: 500; }
.lang-option .lang-short {
  font-family: var(--f-ui); font-size: 10px; letter-spacing: 0.1em;
  font-weight: 600; font-style: normal; color: var(--encre-40);
  text-transform: uppercase;
}
.lang-option.is-current .lang-short { color: var(--or-soft); }

/* ===== TOP NAV ===== */
.topnav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244,239,230,0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
  padding: 14px var(--pad-x);
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
}
.topnav-links {
  display: flex; gap: clamp(16px, 3vw, 36px); list-style: none;
  flex-wrap: wrap; align-items: center;
}
.topnav-links a {
  font-family: var(--f-serif); font-style: italic; font-weight: 500;
  font-size: 17px; color: var(--encre);
  text-decoration: none;
  position: relative; padding: 2px 0;
  transition: color 0.25s;
}
.topnav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--or);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.35s;
}
.topnav-links a:hover, .topnav-links a.active { color: var(--or-soft); }
.topnav-links a:hover::after, .topnav-links a.active::after { transform: scaleX(1); }
.topnav-cta {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 20px;
  background: var(--encre); color: var(--blanc);
  text-decoration: none;
  font-family: var(--f-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  transition: all 0.3s;
  border: 1px solid var(--encre);
  border-radius: 2px;
}
.topnav-cta:hover { background: var(--or-soft); border-color: var(--or-soft); }

.burger-btn {
  display: none; background: none; border: 1px solid var(--rule);
  width: 38px; height: 38px; cursor: pointer; padding: 0;
  align-items: center; justify-content: center;
  color: var(--encre); border-radius: 2px;
}
.burger-btn:hover { border-color: var(--or-soft); }

/* ===== MARQUEE (sticky scrolling banner) ===== */
.marquee {
  position: sticky; top: 64px; z-index: 99;
  background: var(--encre); color: var(--ivoire);
  overflow: hidden; padding: 12px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  display: flex; align-items: center;
}
.marquee-track {
  display: flex; gap: 0; white-space: nowrap;
  animation: marquee 90s linear infinite;
  width: max-content;
}
.marquee-item {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 18px; color: var(--ivoire);
  padding: 0 28px; flex-shrink: 0;
  letter-spacing: 0.02em;
}
.marquee-sep {
  color: var(--or); font-size: 16px; padding: 0 4px;
  display: flex; align-items: center; flex-shrink: 0;
  font-family: var(--f-serif); font-style: italic;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee-track { animation: none; }
}

/* ===== HERO (home) ===== */
.hero {
  position: relative;
  padding: clamp(70px, 10vw, 130px) var(--pad-x) clamp(50px, 7vw, 90px);
  background:
    linear-gradient(180deg, rgba(245,240,231,0.78), rgba(245,240,231,0.94)),
    url('../img/photos/flacons-collection.jpg') center/cover no-repeat;
  border-bottom: 1px solid var(--rule);
}
.hero-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 28px;
}
.hero-kicker { color: var(--or-soft) !important; }
.hero-h1 {
  font-size: clamp(48px, 8vw, 116px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--encre);
  max-width: 18ch;
}
.hero-h1 em { font-style: italic; color: var(--or-soft); font-weight: 400; }
.hero-desc {
  font-family: var(--f-body);
  font-size: clamp(17px, 1.6vw, 21px); line-height: 1.75;
  color: var(--encre);
  max-width: 60ch;
}
.hero-actions {
  display: flex; gap: 18px; flex-wrap: wrap; margin-top: 8px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 30px;
  background: var(--encre); color: var(--blanc);
  text-decoration: none;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  border: 1px solid var(--encre); border-radius: 2px;
  transition: all 0.3s;
}
.btn-primary:hover { background: var(--or-soft); border-color: var(--or-soft); }
.btn-secondary {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 16px 28px;
  background: transparent; color: var(--encre);
  text-decoration: none;
  font-family: var(--f-serif); font-size: 17px; font-style: italic;
  border-bottom: 1px solid var(--or-soft);
  transition: all 0.3s;
}
.btn-secondary:hover { color: var(--or-soft); }

.hero-stats {
  display: flex; gap: clamp(16px, 3vw, 40px);
  align-items: center; flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.hero-stats .stat,
.hero-stats .stat-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-stats .stat-n,
.hero-stats .stat-num {
  font-family: var(--f-serif); font-weight: 400; font-style: italic;
  font-size: clamp(28px, 3vw, 38px);
  color: var(--or-soft); line-height: 1;
}
.hero-stats .stat-l,
.hero-stats .stat-label {
  font-family: var(--f-ui); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--encre-55);
}
.stat-sep {
  width: 1px; height: 36px; background: var(--rule);
}

/* ===== BLOCK SYSTEM ===== */
.block {
  padding: clamp(70px, 10vw, 130px) var(--pad-x);
  position: relative;
}
.block--alt { background: var(--ivoire-2); }
.block--dark { background: var(--encre); color: var(--ivoire); }
.block--dark .block-kicker { color: var(--or-light) !important; }
.block--dark .block-sub { color: var(--white-70); }
.block--dark .serif-title { color: var(--ivoire); }
.block--dark .serif-title em { color: var(--or-light); }
.block-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 24px;
}
.block-kicker {
  display: inline-block; color: var(--or-soft);
}
.block-h2 {
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.04; letter-spacing: -0.02em;
  max-width: 18ch;
}
.block-sub {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--or-soft);
  max-width: 56ch;
  margin-bottom: 8px;
}
.block-inner > p {
  font-family: var(--f-body);
  font-size: 18px; line-height: 1.85;
  color: var(--encre);
  max-width: 70ch;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--blanc);
  margin-top: 32px;
}
.service-card {
  padding: clamp(28px, 3.4vw, 44px);
  border-inline-end: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 18px;
  transition: background 0.3s;
}
.service-card:last-child { border-inline-end: none; }
.service-card:hover { background: var(--ivoire); }
.service-num {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 36px; color: var(--or-soft); line-height: 1;
}
.service-h3 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.1; color: var(--encre);
  letter-spacing: -0.01em;
}
.service-h3 em { font-style: italic; color: var(--or-soft); display: block; }
.service-body {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.75;
  color: var(--encre);
  flex: 1;
}
.service-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.service-tag {
  font-family: var(--f-ui); font-size: 10px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--or-soft);
  padding: 4px 10px;
  border: 1px solid var(--or-soft);
  border-radius: 2px;
}

/* ===== STEPS (méthode) ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--blanc);
  margin-top: 32px;
}
.step {
  padding: clamp(24px, 3vw, 36px);
  border-inline-end: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.3s;
}
.step:last-child { border-inline-end: none; }
.step:hover { background: var(--ivoire); }
.step-num {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  color: var(--or-soft); line-height: 0.9;
}
.step-h4 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(18px, 1.8vw, 22px);
  color: var(--encre); line-height: 1.2;
}
.step-body {
  font-family: var(--f-body);
  font-size: 14px; line-height: 1.65;
  color: var(--encre-70);
}

/* ===== FORMATS ===== */
.formats-grid-elegant {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--blanc);
  margin-top: 32px;
}
.format-elegant {
  padding: 32px 22px;
  border-inline-end: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 18px;
  text-align: center;
  min-height: 380px;
  transition: background 0.3s;
}
.format-elegant:last-child { border-inline-end: none; }
.format-elegant:hover { background: var(--ivoire); }
.format-illustration {
  flex: 1;
  display: flex; align-items: center; justify-content: center;
  min-height: 160px;
}
.format-illustration svg {
  height: 150px; width: auto;
  filter: drop-shadow(0 10px 20px rgba(26,20,16,0.10));
}
.format-pl-elegant {
  font-family: var(--f-serif); font-style: italic;
  font-size: 11px; letter-spacing: 0.18em;
  color: var(--or-soft); text-transform: uppercase;
}
.format-h4-elegant {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 22px; color: var(--encre);
  letter-spacing: -0.01em;
}
.format-desc {
  font-family: var(--f-body); font-size: 14px;
  line-height: 1.65; color: var(--encre-70);
}
.format-meta {
  display: flex; flex-direction: column; gap: 6px;
  padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
  font-family: var(--f-ui); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--or-soft);
}

/* ===== PROFILES (clients) ===== */
.profiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid rgba(176,138,62,0.30);
  margin-top: 32px;
}
.profile {
  padding: clamp(28px, 3.4vw, 44px);
  border-inline-end: 1px solid rgba(176,138,62,0.20);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 360px;
}
.profile:last-child { border-inline-end: none; }
.profile-num {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 38px; color: var(--or-light); line-height: 1;
}
.profile-h3 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(22px, 2.2vw, 26px);
  color: var(--ivoire); line-height: 1.2;
  letter-spacing: -0.01em;
}
.profile-h3 em { font-style: italic; color: var(--or-light); display: block; }
.profile-body {
  font-family: var(--f-body);
  font-size: 16px; line-height: 1.75;
  color: var(--white-70);
  flex: 1;
}
.profile-tag {
  font-family: var(--f-serif); font-style: italic;
  font-size: 13px; color: var(--or-light);
  padding-top: 14px;
  border-top: 1px solid rgba(176,138,62,0.28);
}

/* ===== ZONES (export) ===== */
.zones {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(176,138,62,0.28);
  margin-top: 12px;
}
.zone {
  padding: clamp(22px, 2.6vw, 32px);
  border-inline-end: 1px solid rgba(176,138,62,0.22);
  display: flex; flex-direction: column; gap: 10px;
}
.zone:last-child { border-inline-end: none; }
.zone-num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 13px; color: var(--or-light);
  letter-spacing: 0.05em;
}
.zone-h4 {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 22px; color: var(--ivoire);
  line-height: 1.15;
}
.zone-h4 em { font-style: italic; color: var(--or-light); }
.zone-pays {
  font-family: var(--f-body); font-size: 14px;
  color: var(--white-70); line-height: 1.6;
}
.zone-mode {
  font-family: var(--f-serif); font-style: italic;
  font-size: 12px; color: var(--or-light);
  display: inline-block; padding: 4px 10px;
  border: 1px solid var(--or-light);
  align-self: flex-start;
  margin-top: 6px;
}

/* ===== FAQ ===== */
.faq-list {
  border-top: 1px solid var(--rule);
  margin-top: 32px;
}
.faq-item { border-bottom: 1px solid var(--rule); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 28px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  text-align: start;
  font-family: var(--f-serif); font-weight: 500;
  font-size: clamp(20px, 2.2vw, 26px);
  color: var(--encre);
  letter-spacing: -0.01em;
  line-height: 1.3;
  transition: color 0.25s;
}
.faq-q::after {
  content: '+';
  font-family: var(--f-serif); font-style: italic; font-weight: 300;
  font-size: 28px; color: var(--or-soft);
  transition: transform 0.3s, color 0.25s;
}
.faq-q:hover { color: var(--or-soft); }
.faq-q.open::after { transform: rotate(45deg); color: var(--or); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.5s ease;
  font-family: var(--f-body);
  font-size: 17px; line-height: 1.85;
  color: var(--encre);
  max-width: 72ch;
}
.faq-a.open {
  max-height: 600px;
  padding: 0 0 28px;
}

/* ===== CONTACT FORM ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-top: 36px;
}
.contact-form {
  background: var(--blanc);
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--or-light);
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  margin-bottom: 16px;
}
.form-group { margin-bottom: 16px; }
.form-label {
  display: block;
  font-family: var(--f-ui); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--or-soft); margin-bottom: 8px;
}
.form-input, .form-textarea, .form-select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--rule); background: var(--ivoire);
  font-family: var(--f-ui); font-size: 14px; color: var(--encre);
  border-radius: 2px;
  transition: border-color 0.2s ease;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  outline: none; border-color: var(--or-soft);
  box-shadow: 0 0 0 3px rgba(138,110,75,0.10);
}
.form-textarea {
  resize: vertical; min-height: 130px;
  font-family: var(--f-serif); font-size: 16px;
}
.form-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-family: var(--f-serif); font-size: 13px;
  color: var(--encre-70); margin: 18px 0;
  cursor: pointer;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0; margin-top: 3px; accent-color: var(--or-soft);
}
.form-submit {
  background: var(--encre); color: var(--blanc);
  border: none; padding: 14px 32px;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; border-radius: 2px;
  transition: background 0.2s ease, transform 0.1s ease;
}
.form-submit:hover { background: var(--or-soft); }
.form-submit:disabled { opacity: 0.6; cursor: wait; }

.contact-info { padding-top: 8px; }
.contact-info .serif-title {
  font-size: 28px; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.contact-address {
  font-family: var(--f-body); font-size: 16px;
  font-style: normal; line-height: 1.7;
  color: var(--encre);
  margin-bottom: 24px;
}
.contact-address strong {
  font-family: var(--f-serif); font-weight: 500;
  letter-spacing: 0.04em;
}
.contact-address em {
  font-style: italic; color: var(--or-soft);
  font-size: 14px;
}
.contact-detail {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--rule-soft);
}
.contact-detail-label {
  font-family: var(--f-ui); font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--or-soft);
}
.contact-detail-val {
  font-family: var(--f-serif); font-size: 17px;
  color: var(--encre); text-decoration: none;
  border-bottom: 1px dashed var(--rule);
  width: fit-content;
  transition: color 0.25s, border-color 0.25s;
}
.contact-detail-val:hover { color: var(--or-soft); border-color: var(--or-soft); }

/* ===== SECTION CTA ===== */
.section-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
}
.section-cta a {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--f-serif); font-style: italic;
  font-size: 18px; color: var(--encre);
  text-decoration: none;
  border-bottom: 1px solid var(--or-soft);
  padding-bottom: 4px;
  transition: color 0.25s;
}
.section-cta a:hover { color: var(--or-soft); }

/* ===== A-PROPOS PAGE ===== */
.hero-about {
  padding: clamp(80px, 10vw, 130px) var(--pad-x) clamp(50px, 6vw, 80px);
  background: var(--ivoire-2);
  border-bottom: 1px solid var(--rule);
}
.hero-about-inner { max-width: 1280px; margin: 0 auto; }
.hero-about-h1 {
  font-size: clamp(48px, 7vw, 96px);
  line-height: 1; max-width: 14ch;
  margin: 24px 0 36px;
}
.hero-about-h1 em { font-style: italic; color: var(--or-soft); }

.story-split {
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin: 32px 0;
}
.story-text p {
  font-family: var(--f-body); font-size: 18px; line-height: 1.85;
  color: var(--encre); margin-bottom: 18px;
}
.story-photo {
  position: relative;
  border: 1px solid var(--rule);
  overflow: hidden;
}
.story-photo img {
  width: 100%; height: 100%; object-fit: cover;
  min-height: 320px;
}
.story-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent, rgba(18,13,8,0.7));
  color: var(--ivoire);
  font-family: var(--f-serif); font-style: italic;
  font-size: 14px;
}

.three-pillars {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 40px;
  border: 1px solid var(--rule);
  background: var(--blanc);
}
.pillar {
  padding: clamp(24px, 3vw, 36px);
  border-inline-end: 1px solid var(--rule);
}
.pillar:last-child { border-inline-end: none; }
.pillar-num {
  font-family: var(--f-serif); font-style: italic;
  font-size: 28px; color: var(--or-soft);
}
.pillar-h4 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 22px; margin: 12px 0 10px;
  color: var(--encre);
}
.pillar-body {
  font-family: var(--f-body); font-size: 15px; line-height: 1.7;
  color: var(--encre-70);
}

/* Mission */
.mission-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  margin-bottom: 40px;
  align-items: center;
}
.mission-video {
  position: relative;
  border: 1px solid var(--rule); overflow: hidden;
  aspect-ratio: 4 / 3;
}
.mission-video video {
  width: 100%; height: 100%; object-fit: cover;
}
.video-badge {
  position: absolute; top: 14px; left: 14px;
  background: rgba(18,13,8,0.78); color: var(--or-light);
  padding: 6px 12px; font-family: var(--f-ui);
  font-size: 10px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  z-index: 2; border-radius: 2px;
}

.mission-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--rule);
  background: var(--blanc);
}
.mission-card {
  padding: clamp(28px, 3vw, 40px);
  border-inline-end: 1px solid var(--rule);
  display: flex; flex-direction: column; gap: 14px;
}
.mission-card:last-child { border-inline-end: none; }
.mission-icon {
  width: 48px; height: 48px;
  color: var(--or-soft);
}
.mission-h4 {
  font-family: var(--f-serif); font-weight: 500;
  font-size: 22px; color: var(--encre);
  letter-spacing: -0.01em;
}
.mission-body {
  font-family: var(--f-body); font-size: 16px; line-height: 1.75;
  color: var(--encre-70);
}

/* Banner Al-Khobar */
.alkhobar-banner {
  position: relative; width: 100%;
  height: clamp(260px, 36vw, 480px);
  overflow: hidden;
}
.alkhobar-banner img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 60%;
  filter: brightness(0.82) saturate(0.9);
}
.alkhobar-banner-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,18,8,0.65) 100%);
  display: flex; align-items: flex-end;
  padding: 2.5rem clamp(1.5rem, 5vw, 5rem);
}
.alkhobar-banner-text {
  font-family: var(--f-serif); font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  color: var(--ivoire); font-weight: 300;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
}

/* GCC */
.block-gcc { background: var(--encre); color: var(--ivoire); padding: clamp(70px, 10vw, 120px) var(--pad-x); }
.gcc-split {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
.gcc-flag-wrapper {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.gcc-flag-img {
  width: 110px; height: auto;
  box-shadow: 0 4px 16px -4px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.15);
}
.gcc-flag-label {
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--or-light); font-weight: 600;
}
.gcc-text .block-h2 { color: var(--ivoire); margin-bottom: 24px; }
.gcc-text .block-h2 em { color: var(--or-light); }
.gcc-address {
  font-family: var(--f-body); font-size: 17px; line-height: 1.8;
  color: var(--white-70); font-style: normal;
  margin-bottom: 20px;
}
.gcc-address strong {
  font-family: var(--f-serif); font-weight: 500; color: var(--ivoire);
}
.gcc-tag {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--or-light);
  color: var(--or-light);
  font-family: var(--f-ui); font-size: 11px;
  letter-spacing: 0.2em; font-weight: 600; text-transform: uppercase;
}
.gcc-photo {
  position: relative;
  border: 1px solid rgba(176,138,62,0.3);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.gcc-photo img {
  width: 100%; height: 100%; object-fit: cover;
}
.gcc-arabic {
  position: absolute; bottom: 18px; right: 22px;
  font-family: 'Amiri', serif; font-size: 48px;
  color: var(--ivoire); opacity: 0.85;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* CTA final */
.block-cta-final {
  padding: clamp(70px, 10vw, 130px) var(--pad-x);
  text-align: center;
  background: var(--ivoire);
  border-top: 1px solid var(--rule);
}
.block-cta-final .ornament { margin-bottom: 22px; }
.cta-h2 {
  font-size: clamp(40px, 6vw, 80px);
  margin-bottom: 36px;
  line-height: 1;
}
.cta-h2 em { font-style: italic; color: var(--or-soft); }
.cta-btn {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 18px 40px;
  background: var(--encre); color: var(--blanc);
  text-decoration: none;
  font-family: var(--f-ui); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s;
}
.cta-btn:hover { background: var(--or-soft); }
.cta-arrow { font-size: 16px; transition: transform 0.3s; }
.cta-btn:hover .cta-arrow { transform: translateX(6px); }

/* ===== GALERIE ===== */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 32px;
}
.galerie-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--ivoire-2);
  border: 1px solid var(--rule);
}
.galerie-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.galerie-item:hover img { transform: scale(1.05); }
.galerie-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 18px 20px 16px;
  background: linear-gradient(180deg, transparent, rgba(18,13,8,0.85));
  color: var(--ivoire);
  font-family: var(--f-serif); font-style: italic;
  font-size: 14px;
}
.galerie-caption strong {
  display: block;
  font-family: var(--f-ui); font-style: normal;
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--or-light);
  margin-bottom: 4px;
}

/* ===== LEGAL ===== */
.legal-chapter {
  padding: clamp(70px, 8vw, 110px) var(--pad-x);
  background: var(--ivoire-2);
}
.legal-inner {
  max-width: 920px; margin: 0 auto;
}
.legal-inner > .meta { color: var(--or-soft); }
.legal-inner > .serif-title {
  font-size: clamp(40px, 6vw, 72px);
  margin: 16px 0 40px;
  line-height: 1;
}
.legal-block {
  padding: 30px 0;
  border-bottom: 1px solid var(--rule-soft);
}
.legal-block:last-child { border-bottom: none; }
.legal-h3 {
  font-family: var(--f-serif); font-size: clamp(22px, 3vw, 30px);
  font-weight: 400; font-style: italic;
  color: var(--encre); margin-bottom: 20px;
  letter-spacing: -0.01em;
}
.legal-h3::before {
  content: "❦"; display: inline-block;
  margin-inline-end: 14px; color: var(--or-soft); opacity: 0.7;
  font-style: normal; font-size: 0.7em; vertical-align: middle;
}
.legal-dl {
  display: grid; grid-template-columns: minmax(180px, 220px) 1fr;
  gap: 14px 24px;
  font-family: var(--f-body); font-size: 15px; line-height: 1.65;
}
.legal-dl dt {
  font-family: var(--f-ui); text-transform: uppercase;
  letter-spacing: 0.08em; font-size: 11px; font-weight: 600;
  color: var(--or-soft); padding-top: 4px;
  border-top: 1px solid var(--rule-soft);
}
.legal-dl dd {
  color: var(--encre); padding-top: 4px;
  border-top: 1px solid var(--rule-soft);
}
.legal-block p {
  font-family: var(--f-body); font-size: 16px; line-height: 1.75;
  color: var(--encre); margin-bottom: 16px;
}
.legal-block ul {
  margin: 14px 0 18px 24px;
  font-family: var(--f-body); font-size: 16px; line-height: 1.8;
}
.legal-block ul li::marker { color: var(--or-soft); }

/* ===== COLOPHON / FOOTER ===== */
.colophon {
  padding: clamp(60px, 7vw, 96px) var(--pad-x) 36px;
  background: var(--ivoire);
  border-top: 1px solid var(--rule);
}
.colophon-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(28px, 4vw, 64px);
  padding-bottom: 56px;
  border-bottom: 1px solid var(--rule);
  max-width: 1280px; margin: 0 auto;
}
.colophon-mark {
  font-family: var(--f-serif); font-weight: 400;
  font-size: 30px; letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--encre);
  margin-bottom: 16px; line-height: 1;
}
.colophon-mark em {
  font-style: italic; color: var(--or-soft);
  letter-spacing: 0.04em; font-size: 0.6em;
  display: block; margin-top: 8px; text-transform: none;
}
.colophon-desc {
  font-family: var(--f-body); font-size: 15px; line-height: 1.75;
  color: var(--encre); max-width: 38ch;
  margin-bottom: 20px; font-style: italic;
}
.colophon-col h4 {
  font-family: var(--f-serif); font-style: italic; font-weight: 400;
  font-size: 13px; color: var(--or-soft);
  letter-spacing: 0.15em; text-transform: uppercase;
  margin-bottom: 18px; padding-bottom: 12px;
  border-bottom: 1px solid var(--rule);
}
.colophon-col ul { list-style: none; }
.colophon-col li {
  font-family: var(--f-body); font-size: 15px;
  line-height: 1.95; color: var(--encre-70);
}
.colophon-col a {
  color: var(--encre-70); text-decoration: none;
  font-family: var(--f-serif); font-style: italic;
  transition: color 0.25s;
}
.colophon-col a:hover { color: var(--or-soft); }
.colophon-bottom {
  padding-top: 28px;
  display: flex; justify-content: space-between;
  align-items: baseline; gap: 24px; flex-wrap: wrap;
  max-width: 1280px; margin: 0 auto;
}
.colophon-legal {
  font-family: var(--f-body); font-size: 12px;
  color: var(--encre-55); line-height: 1.7;
  max-width: 80ch;
}
.colophon-mark-small {
  font-family: var(--f-serif); font-style: italic;
  font-size: 14px; color: var(--or-soft);
  letter-spacing: 0.05em;
}

/* ===== STICKY MOBILE CTA ===== */
.sticky-contact {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0;
  padding: 12px 20px;
  background: var(--encre); color: var(--blanc);
  text-align: center; z-index: 900;
  box-shadow: 0 -4px 20px rgba(18,13,8,0.2);
}
.sticky-contact a {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blanc); text-decoration: none;
  font-family: var(--f-ui); font-size: 13px; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
}
.sticky-contact a::before {
  content: "→"; color: var(--or-light); font-weight: 400;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .plate { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .plate-left, .plate-right { justify-content: center; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-inline-end: none; border-bottom: 1px solid var(--rule); }
  .service-card:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step:nth-child(2n) { border-inline-end: none; }
  .step:nth-child(-n+4) { border-bottom: 1px solid var(--rule); }
  .formats-grid-elegant { grid-template-columns: 1fr 1fr; }
  .format-elegant:nth-child(2n) { border-inline-end: none; }
  .format-elegant:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .profiles { grid-template-columns: 1fr; }
  .profile { border-inline-end: none; border-bottom: 1px solid rgba(176,138,62,0.20); }
  .zones { grid-template-columns: 1fr 1fr; }
  .zone:nth-child(2n) { border-inline-end: none; }
  .zone:nth-child(-n+2) { border-bottom: 1px solid rgba(176,138,62,0.22); }
  .three-pillars { grid-template-columns: 1fr; }
  .pillar { border-inline-end: none; border-bottom: 1px solid var(--rule); }
  .pillar:last-child { border-bottom: none; }
  .mission-split, .story-split, .gcc-split, .contact-grid { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .mission-card { border-inline-end: none; border-bottom: 1px solid var(--rule); }
  .galerie-grid { grid-template-columns: 1fr 1fr; }
  .colophon-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .topnav { padding: 12px 20px; }
  .topnav-links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--ivoire); border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 12px 20px; z-index: 500;
    box-shadow: 0 10px 30px rgba(18,13,8,0.15);
  }
  .topnav-links.open { display: flex; }
  .topnav-links li {
    list-style: none; border-bottom: 1px solid var(--rule-soft);
  }
  .topnav-links li:last-child { border-bottom: none; }
  .topnav-links a {
    display: block; padding: 12px 0;
    font-family: var(--f-serif); font-size: 18px; font-style: italic;
  }
  .burger-btn { display: inline-flex; }
  .topnav { position: sticky; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary { justify-content: center; }
  .formats-grid-elegant { grid-template-columns: 1fr; }
  .format-elegant { border-inline-end: none; border-bottom: 1px solid var(--rule); }
  .format-elegant:last-child { border-bottom: none; }
  .zones { grid-template-columns: 1fr; }
  .zone { border-inline-end: none; border-bottom: 1px solid rgba(176,138,62,0.22); }
  .zone:last-child { border-bottom: none; }
  .steps { grid-template-columns: 1fr; }
  .step { border-inline-end: none; border-bottom: 1px solid var(--rule); }
  .step:last-child { border-bottom: none; }
  .form-row { grid-template-columns: 1fr; }
  .galerie-grid { grid-template-columns: 1fr; }
  .colophon-top { grid-template-columns: 1fr; }
  .sticky-contact { display: block; }
  body { padding-bottom: 56px; }
  .plate-center { font-size: 22px; }
  .brand-logo { height: 42px; }
}

@media (max-width: 480px) {
  .plate-left .meta:nth-child(n+2) { display: none; }
  .plate-right .meta { display: none; }
}

/* ===== RTL ===== */
[dir="rtl"] { font-family: 'Amiri', 'EB Garamond', serif; }
[dir="rtl"] .lang-menu { inset-inline-end: 0; inset-inline-start: auto; }

/* ===== WORLDMAP image (#export) ===== */
.worldmap-img {
  margin: 12px 0 0;
  background: var(--ivoire);
  border: 1px solid var(--rule);
  padding: clamp(16px, 2vw, 32px);
  text-align: center;
}
.worldmap-img img {
  display: block;
  width: 100%;
  max-width: 1100px;
  height: auto;
  margin: 0 auto;
}
.worldmap-img figcaption {
  font-family: var(--f-serif);
  font-style: italic;
  font-size: 14px;
  color: var(--encre);
  opacity: 0.7;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

/* Lien zone (Zone I cliquable) */
.zones a.zone {
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: background 0.25s ease;
}
.zones a.zone:hover {
  background: rgba(158,122,46,0.08);
}
.zones a.zone::after {
  content: "→";
  position: absolute;
  top: 14px; right: 14px;
  color: var(--or-light);
  opacity: 0.6;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.zones a.zone:hover::after {
  transform: translateX(4px);
  opacity: 1;
}

/* ===== PRINT (light) ===== */
@media print {
  .topnav, .sticky-contact, .colophon, body::before, body::after { display: none !important; }
  body { background: white; color: black; }
}
