/* Amalthea Global Consulting — Washington cabinet aesthetic */

:root {
  --navy: #0c1018;
  --navy-mid: #141c28;
  --cream: #f3f1ec;
  --cream-dark: #e8e4dc;
  --ink: #1a1a1a;
  --muted: #5c5a54;
  --gold: #a8864a;
  --gold-dim: rgba(168, 134, 74, 0.35);
  --white: #f7f6f3;
  --max: 52rem;
  --max-wide: 72rem;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Source Sans 3", system-ui, sans-serif;
  /* Sticky rail: logo height matches .brand img + ~header-inner vertical padding — offset anchor scroll */
  --header-scroll-offset: calc(
    env(safe-area-inset-top, 0px) + 3rem + min(280px, max(8.75rem, min(34vw, 15.5rem)))
  );
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Masquage réversible — enlever `landing-ui-hidden` sur l’élément pour réafficher (nav Contact, mailto section contact, lien Email footer, Sign in / Sign up plateforme). */
.landing-ui-hidden {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-scroll-offset);
}

@media (max-width: 640px) {
  html {
    /* Nav / lang peuvent passer sous le logo au serré — garder les titres de section sous le rail */
    scroll-padding-top: calc(var(--header-scroll-offset) + 2.75rem);
  }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
.section-kicker {
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: -0.02em;
}

a {
  color: var(--gold);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #8f713f;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.wrap.narrow {
  max-width: 38rem;
}

.wrap.wrap--wide {
  width: min(100% - 2.5rem, var(--max-wide));
}

/* Header — dark rail */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid var(--gold-dim);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 0 1.15rem;
  flex-wrap: wrap;
}

.header-end {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem 1.35rem;
}

.lang-switcher {
  position: relative;
  flex-shrink: 0;
}

.lang-switcher__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.6rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(168, 134, 74, 0.4);
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.lang-switcher__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(168, 134, 74, 0.55);
}

.lang-switcher__flag {
  font-size: 1.15rem;
  line-height: 1;
}

.lang-switcher__chev {
  font-size: 0.55rem;
  opacity: 0.75;
  margin-left: 0.05rem;
}

.lang-switcher__menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 60;
  min-width: 11.5rem;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: var(--navy-mid);
  border: 1px solid var(--gold-dim);
  border-radius: 6px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.lang-switcher__menu li {
  margin: 0;
}

.lang-switcher__opt {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.48rem 0.85rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  text-align: left;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
}

.lang-switcher__opt:hover {
  background: rgba(168, 134, 74, 0.14);
}

[dir="rtl"] .header-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .header-end {
  flex-direction: row-reverse;
}

[dir="rtl"] .nav-main {
  flex-direction: row-reverse;
}

[dir="rtl"] .lang-switcher__menu {
  right: auto;
  left: 0;
}

[dir="rtl"] .lang-switcher__opt {
  text-align: right;
  flex-direction: row-reverse;
}

html[lang="zh-Hans"] body {
  font-family: "Noto Sans SC", "Source Sans 3", system-ui, sans-serif;
}

html[lang="ar"] body {
  font-family: "Noto Sans Arabic", "Source Sans 3", system-ui, sans-serif;
}

html[lang="zh-Hans"] h1,
html[lang="zh-Hans"] h2,
html[lang="zh-Hans"] .section-kicker {
  font-family: "Noto Sans SC", "Source Sans 3", Georgia, serif;
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] .section-kicker {
  font-family: "Noto Sans Arabic", "Source Sans 3", sans-serif;
}

.brand {
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 2vw, 1.25rem);
  text-decoration: none;
  color: var(--white);
}

.brand:hover {
  color: var(--white);
}

.brand-logo-img,
.brand img {
  height: clamp(8.75rem, 34vw, 15.5rem);
  width: auto;
  max-height: 280px;
  display: block;
  flex-shrink: 0;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 2px 14px rgba(0, 0, 0, 0.45));
}

.nav-main {
  display: flex;
  flex-wrap: wrap;
  gap: 1.35rem;
  align-items: center;
}

.nav-main > a:not(.btn) {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 246, 243, 0.72);
  text-decoration: none;
}

.nav-main > a:not(.btn):hover {
  color: var(--white);
}

@media (max-width: 960px) {
  .nav-main > a:not(.btn) {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }

  .nav-main {
    gap: 0.75rem 1rem;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.58rem 1.35rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn-nav {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}

.btn-nav:hover {
  background: rgba(168, 134, 74, 0.12);
  color: #c9a860;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
}

.btn-primary:hover {
  background: #c9a860;
  border-color: #c9a860;
  color: var(--navy);
}

.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}

.btn-secondary:hover {
  background: rgba(12, 16, 24, 0.06);
}

.band-platform .btn-secondary {
  color: var(--gold);
  border-color: var(--gold);
}

.band-platform .btn-secondary:hover {
  background: rgba(168, 134, 74, 0.12);
  color: #c9a860;
}

/* Hero — low banner image (wallpaper-style) + content on navy */
.hero {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  color: var(--white);
  padding: 0 0 clamp(2.25rem, 5vw, 3.5rem);
  overflow: hidden;
  background: var(--navy);
}

.hero-banner {
  position: relative;
  width: 100%;
  height: clamp(188px, 22vw, 278px);
  flex-shrink: 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(168, 134, 74, 0.22);
}

.hero-banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(12, 16, 24, 0.55));
}

.hero-banner__roll {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  will-change: auto;
}

/* Bandeau unique : frise + photos en carrés défilants */
@keyframes hero-banner-photo-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.hero-banner__photo-rail {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  background: rgba(7, 9, 14, 0.92);
}

.hero-banner__thumb--frieze .hero-banner__thumb-frame {
  background: #e8e6e1;
}

.hero-banner__thumb--frieze .hero-banner__thumb-frame img {
  object-fit: contain;
  object-position: center;
  filter: grayscale(12%) contrast(1.08) brightness(0.96);
}

.hero-banner__photo-marquee {
  display: flex;
  width: max-content;
  height: 100%;
  align-items: stretch;
  animation: hero-banner-photo-marquee 48s linear infinite;
}

.hero-banner__photo-sequence {
  display: flex;
  flex-direction: row;
  flex-shrink: 0;
  align-items: stretch;
  gap: 0;
  height: 100%;
}

.hero-banner__thumb {
  margin: 0;
  flex: 0 0 auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}

.hero-banner__thumb-frame {
  height: 100%;
  width: auto;
  aspect-ratio: 1;
  flex-shrink: 0;
  background: #07090e;
  overflow: hidden;
}

.hero-banner__thumb-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Ordre séquence : 1 frise, 2 Washington, 3 Paris, 4 New York */
.hero-banner__photo-sequence .hero-banner__thumb:nth-child(2) .hero-banner__thumb-frame img {
  filter: saturate(0.9) contrast(1.04) brightness(1.02);
}

.hero-banner__photo-sequence .hero-banner__thumb:nth-child(3) .hero-banner__thumb-frame img {
  filter: contrast(1.06) brightness(1.04);
}

.hero-banner__thumb--bw .hero-banner__thumb-frame img {
  filter: grayscale(100%) contrast(1.08) brightness(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(12, 16, 24, 0.04) 0%,
    rgba(12, 16, 24, 0.02) 55%,
    rgba(12, 16, 24, 0.08) 100%
  );
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner__roll {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .hero-banner__photo-marquee {
    animation: none;
    width: 100%;
    justify-content: center;
  }

  .hero-banner__photo-sequence[aria-hidden="true"] {
    display: none;
  }

  .hero-banner__photo-sequence:not([aria-hidden="true"]) {
    justify-content: center;
  }
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  z-index: 3;
  background: linear-gradient(90deg, transparent, var(--gold-dim), transparent);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-top: calc(clamp(1.35rem, 3.5vw, 2.25rem) + 0.5rem);
  isolation: isolate;
  text-align: center;
}

/* Saffron + alpine night — retirées du carrousel, en fond latéral du bloc titre */
.hero-inner::before,
.hero-inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: min(42%, 300px);
  height: clamp(160px, 36vw, 300px);
  background-repeat: no-repeat;
  background-size: cover;
  pointer-events: none;
  z-index: -1;
  -webkit-mask-image: radial-gradient(ellipse 95% 90% at center, #000 0%, #000 42%, transparent 78%);
  mask-image: radial-gradient(ellipse 95% 90% at center, #000 0%, #000 42%, transparent 78%);
}

.hero-inner::before {
  left: max(-2rem, -5vw);
  background-image: url("assets/photo-saffron-flower.png");
  background-position: 44% 34%;
  opacity: 0.36;
  filter: saturate(1.05) contrast(1.02);
}

/* Alps / nuit : plus lisible, sans filtre pour garder ciel et lune tels que sur le fichier */
.hero-inner::after {
  right: max(-2rem, -5vw);
  background-image: url("assets/photo-night-moon.png");
  background-position: 52% 48%;
  opacity: 0.55;
  filter: none;
  -webkit-mask-image: radial-gradient(ellipse 100% 92% at center, #000 0%, #000 50%, transparent 84%);
  mask-image: radial-gradient(ellipse 100% 92% at center, #000 0%, #000 50%, transparent 84%);
}

@media (max-width: 720px) {
  .hero-inner::before,
  .hero-inner::after {
    width: min(52%, 220px);
    height: clamp(120px, 34vw, 220px);
  }

  .hero-inner::before {
    opacity: 0.3;
  }

  .hero-inner::after {
    opacity: 0.48;
  }
}

.hero-eyebrow {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(247, 246, 243, 0.55);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.45);
}

.hero-inner > .inquiry-trigger {
  margin: 0 0 1.25rem;
}

.hero .btn-primary {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero h1 {
  margin: 0 auto 1.75rem;
  font-size: clamp(2.025rem, 3.525vw + 0.825rem, 3.075rem);
  font-weight: 600;
  line-height: 1.15;
  max-width: min(100%, 58rem);
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.55);
}

@media (min-width: 1100px) {
  .hero h1 {
    white-space: nowrap;
  }

  [dir="rtl"] .hero h1,
  html[lang="zh-Hans"] .hero h1 {
    white-space: normal;
  }
}

.hero-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.85rem;
}

.hero-chips li {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: rgba(247, 246, 243, 0.85);
  display: inline-flex;
  align-items: center;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.5);
}

.hero-chips li:not(:first-child)::before {
  content: "·";
  margin-right: 0.85rem;
  color: var(--gold);
  font-weight: 700;
}

.hero-sustainability-note {
  position: relative;
  z-index: 2;
  margin: 1.1rem 0 0;
  padding-bottom: 0.1rem;
  max-width: min(100%, 58rem);
  font-family: var(--font-sans);
  font-size: 0.675rem;
  line-height: 1.45;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: rgba(247, 246, 243, 0.38);
  text-align: left;
  text-wrap: balance;
}

.hero-sustainability-note__src {
  font-style: italic;
  font-weight: 400;
  color: rgba(247, 246, 243, 0.48);
}

/* Stock imagery strip */
.visual-pair {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  padding: 0;
  background: var(--navy);
}

@media (min-width: 768px) {
  .visual-pair {
    grid-template-columns: 1fr 1fr;
  }
}

.visual-pair__item {
  margin: 0;
  position: relative;
}

.visual-pair__item img {
  display: block;
  width: 100%;
  height: min(42vw, 340px);
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
}

.visual-pair__firm-crop {
  object-position: 62% 38%;
}

.visual-pair__statue {
  object-position: 50% 28%;
}

.visual-pair__cap {
  margin: 0;
  padding: 0.5rem 1rem 0.85rem;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 246, 243, 0.42);
  background: var(--navy);
}

.visual-pair__cap a {
  color: rgba(247, 246, 243, 0.55);
}

.visual-pair__cap a:hover {
  color: var(--gold);
}

.visual-pair__cap--firm {
  color: rgba(247, 246, 243, 0.5);
}

/* Keywords band */
.band-keywords {
  background: var(--cream-dark);
  border-top: 1px solid rgba(12, 16, 24, 0.07);
  border-bottom: 1px solid rgba(12, 16, 24, 0.07);
  padding: clamp(1.75rem, 4vw, 2.5rem) 0;
}

.band-keywords__inner {
  text-align: center;
}

.keywords-line {
  margin: 0 0 0.85rem;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 2.2vw, 1.22rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.45;
  color: var(--muted);
  max-width: 52rem;
  margin-inline: auto;
}

.keywords-line:last-child {
  margin-bottom: 0;
}

.keywords-line--lead {
  font-size: clamp(1.2rem, 2.8vw, 1.55rem);
  font-weight: 600;
  font-style: normal;
  color: var(--navy);
}

.keywords-line--lead::after {
  content: "";
  display: block;
  width: 3rem;
  height: 2px;
  margin: 0.85rem auto 0;
  background: var(--gold);
}

.keywords-line--close {
  font-size: clamp(0.95rem, 2vw, 1.08rem);
}

.section-about-prose {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.about-prose-inner {
  max-width: 48rem;
}

.about-prose-inner .prose-lead,
.about-prose-inner .prose {
  font-size: 1.05rem;
}

.about-prose-inner .prose--muted {
  font-size: 1.05rem;
}

.prose-muted-foot {
  margin: 0.25rem 0 0;
  font-size: 0.62rem;
  line-height: 1.35;
  color: rgba(92, 90, 84, 0.9);
  max-width: 48rem;
}

.the-big-five {
  margin: 1.75rem 0 0.35rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--navy);
  line-height: 1.15;
}

.markets-copy > .the-big-five:first-of-type {
  margin-top: 0;
}

.about-prose-inner > .the-big-five:first-child,
#services > .wrap > .the-big-five:first-of-type,
#focus .wrap.narrow > .the-big-five:first-of-type,
#dialogue > .wrap > .the-big-five:first-of-type {
  margin-top: 0;
}

.the-big-five--on-dark {
  color: var(--white);
}

.platform-copy-extended > .the-big-five--on-dark:first-child {
  margin-top: 0;
}

.the-big-five__market {
  margin: 0.35rem 0 0.5rem;
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.02em;
}

.the-big-five__sub {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.theme-tags--multiline li {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.55rem;
  white-space: normal;
  max-width: 100%;
  text-align: left;
  line-height: 1.35;
  padding: 0.55rem 0.9rem;
  font-size: 0.68rem;
}

.theme-tag-icon {
  flex-shrink: 0;
  width: 1.4rem;
  height: 1.4rem;
  margin-top: 0.08rem;
  color: var(--gold);
}

.theme-tag-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.theme-tag-text {
  flex: 1;
  min-width: 0;
}

/* About + markets split layouts */
.section-split {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.section-split__grid {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .section-split__grid {
    grid-template-columns: 1fr min(38%, 380px);
    gap: 3rem;
    align-items: center;
  }
}

.section-split__text .section-kicker {
  margin-bottom: 1rem;
}

.section-split__figure {
  margin: 0;
}

.section-split__figure img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
  border-radius: 4px;
  filter: saturate(0.65) contrast(1.06);
  box-shadow: 0 12px 40px rgba(12, 16, 24, 0.18);
}

.section-split__figure figcaption {
  margin: 0.5rem 0 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.prose-lead {
  margin: 0 0 1rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
}

.prose {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink);
}

.prose:last-child {
  margin-bottom: 0;
}

.prose--muted {
  color: var(--muted);
  font-size: 0.92rem;
}

.prose--center {
  text-align: center;
}

.section-kicker--lg {
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
}

.section-intro-wide {
  margin: 0 0 2rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 46rem;
  line-height: 1.6;
}

#services .section-intro-wide {
  font-size: 1.05rem;
}

@media (min-width: 1024px) {
  #services .section-intro-wide--nowrap-lg {
    white-space: nowrap;
    max-width: none;
  }
}

.services-grid {
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 720px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.service-card {
  padding: 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(12, 16, 24, 0.08);
  border-radius: 6px;
}

.service-card__heading {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0 0 0.65rem;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.25;
}

.service-card__icon {
  flex-shrink: 0;
  width: 1.85rem;
  height: 1.85rem;
  margin-top: 0.06em;
  color: var(--gold);
}

.service-card__icon--trailing {
  margin-top: 0.06em;
  margin-left: 0.35rem;
}

.service-card__dollar.service-card__icon {
  width: auto;
  min-width: 1ch;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.service-card__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.service-card__heading-text {
  flex: 1;
  min-width: 0;
}

.service-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.58;
  color: var(--muted);
}

.service-card a {
  font-weight: 600;
}

.section-markets {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.markets-layout {
  display: grid;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 900px) {
  .markets-layout {
    grid-template-columns: 1fr min(40%, 420px);
    gap: 3rem;
    align-items: center;
  }
}

.markets-lead-context {
  margin: 0 0 1rem;
  max-width: 40rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(12, 16, 24, 0.78);
}

.markets-copy .prose {
  max-width: 40rem;
  font-size: 1.05rem;
}

.ifi-list {
  margin: 1.5rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid rgba(12, 16, 24, 0.1);
  list-style: none;
}

.ifi-list li {
  position: relative;
  padding: 0.35rem 0 0.35rem 1.25rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.ifi-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 1px;
}

.markets-figure {
  margin: 0;
  width: 100%;
}

.markets-figure__stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  background: #e8e6e1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(12, 16, 24, 0.15);
}

.markets-figure__stack img {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  flex: 0 0 auto;
  align-self: stretch;
  box-sizing: border-box;
  object-fit: cover;
  object-position: center;
  filter: grayscale(100%) contrast(1.08) brightness(1.04);
}

/* Hauteurs plafonnées : bandeau plus compact, peu de gris au-dessus / en-dessous */
.markets-figure__stack .markets-figure__imf {
  height: clamp(9.5rem, 22vw, 13.5rem);
  max-height: 13.5rem;
  object-position: center 48%;
}

.markets-figure__stack .markets-figure__institutions {
  height: clamp(11rem, 28vw, 17rem);
  max-height: 17rem;
  object-position: center 28%;
}

.markets-figure__cap {
  margin: 0.55rem 0 0;
  font-size: 0.68rem;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
}

.platform-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .platform-block {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
  }
}

.platform-copy-extended {
  flex: 1;
  min-width: 0;
}

.platform-one-liner--block {
  margin: 0 0 0.85rem;
  max-width: 48rem;
  line-height: 1.55;
}

.platform-footnote {
  margin: 1.25rem 0 0;
  font-size: 0.72rem;
  line-height: 1.5;
  color: rgba(247, 246, 243, 0.45);
  max-width: 44rem;
}

.platform-actions-stack {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex-shrink: 0;
}

.platform-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  justify-content: center;
}

.band-platform .btn-secondary--ghost {
  color: rgba(247, 246, 243, 0.75);
  border-color: rgba(247, 246, 243, 0.35);
}

.band-platform .btn-secondary--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

/* Credentials band */
.band-credentials {
  background: var(--cream-dark);
  border-bottom: 1px solid rgba(12, 16, 24, 0.08);
  padding: 1.35rem 0;
}

.cred-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1.75rem;
  text-align: center;
}

.cred-item {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cred-num {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  font-weight: 600;
  letter-spacing: 0;
  color: var(--navy);
  margin-right: 0.35rem;
}

.cred-label {
  text-transform: lowercase;
  letter-spacing: 0.06em;
}

.cred-label-strong {
  color: var(--navy);
  font-weight: 600;
}

.cred-rule {
  width: 1px;
  height: 1.75rem;
  background: rgba(12, 16, 24, 0.12);
}

@media (max-width: 640px) {
  .cred-rule {
    display: none;
  }
}

/* Sections */
.section-light {
  padding: clamp(2.75rem, 6vw, 3.75rem) 0;
}

.section-muted {
  padding: clamp(2.75rem, 6vw, 3.75rem) 0;
  background: #ebe8e2;
  border-top: 1px solid rgba(12, 16, 24, 0.06);
  border-bottom: 1px solid rgba(12, 16, 24, 0.06);
}

.sub-staccato {
  margin: 0.85rem 0 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.focus-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.focus-list li {
  padding: 0.65rem 0;
  border-top: 1px solid rgba(12, 16, 24, 0.08);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.focus-list li:last-child {
  border-bottom: 1px solid rgba(12, 16, 24, 0.08);
}

.section-kicker {
  margin: 0 0 0.5rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  color: var(--navy);
}

.section-whisper {
  margin: 0 0 1.5rem;
  font-size: 0.88rem;
  color: var(--muted);
  max-width: 28rem;
}

.theme-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.theme-tags li {
  padding: 0.5rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid rgba(12, 16, 24, 0.18);
  background: rgba(255, 255, 255, 0.45);
}

.band-platform {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 0;
}

.band-platform a {
  color: var(--gold);
}

.band-platform button.btn {
  font: inherit;
}

.platform-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
}

@media (min-width: 640px) {
  .platform-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }
}

.platform-one-liner {
  margin: 0;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  color: rgba(247, 246, 243, 0.65);
}

.platform-one-liner a {
  color: var(--gold);
  text-decoration: none;
}

.platform-one-liner a:hover {
  text-decoration: underline;
}

.section-contact {
  text-align: center;
}

.section-contact .section-kicker {
  margin-bottom: 1rem;
}

.contact-link {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--navy);
}

.contact-link:hover {
  color: var(--gold);
}

.contact-whisper {
  margin: 0.75rem 0 0;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(247, 246, 243, 0.55);
  padding: 2rem 0 2.5rem;
  font-size: 0.75rem;
}

.footer-inner {
  text-align: center;
}

.footer-copy {
  margin: 0 0 0.75rem;
  letter-spacing: 0.06em;
  color: rgba(247, 246, 243, 0.78);
}

.footer-meta-row {
  margin: 0 auto 1.25rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}

.footer-meta-row .footer-meta {
  display: inline-block;
  margin: 0;
  white-space: nowrap;
  text-align: center;
}

.footer-meta {
  line-height: 1.45;
  font-size: 0.675rem;
  color: rgba(247, 246, 243, 0.48);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

.footer-links a {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(247, 246, 243, 0.55);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold);
}

/* Inquiry modal */
.inquiry-dialog {
  width: min(calc(100% - 2rem), 26rem);
  max-height: calc(100% - 2rem);
  padding: 0;
  border: 1px solid rgba(168, 134, 74, 0.35);
  border-radius: 6px;
  background: var(--cream);
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.inquiry-dialog::backdrop {
  background: rgba(12, 16, 24, 0.55);
  backdrop-filter: blur(3px);
}

.inquiry-dialog__panel {
  position: relative;
  padding: 1.5rem 1.35rem 1.25rem;
}

.inquiry-dialog__x {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: transparent;
  color: var(--muted);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 4px;
}

.inquiry-dialog__x:hover {
  color: var(--navy);
  background: rgba(12, 16, 24, 0.06);
}

.inquiry-dialog__title {
  margin: 0 1.75rem 0.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 3vw, 1.5rem);
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.inquiry-dialog__lead {
  margin: 0 0 1rem;
  font-size: 0.86rem;
  line-height: 1.45;
  color: var(--muted);
}

.inquiry-form__label {
  display: block;
  margin: 0 0 0.85rem;
}

.inquiry-form__label-text {
  display: block;
  margin: 0 0 0.35rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.inquiry-form__input,
.inquiry-form__textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  font-family: var(--font-sans);
  font-size: 0.92rem;
  border: 1px solid rgba(12, 16, 24, 0.18);
  border-radius: 4px;
  background: #fff;
  color: var(--ink);
}

.inquiry-form__textarea {
  resize: vertical;
  min-height: 6rem;
}

.inquiry-form__input:focus,
.inquiry-form__textarea:focus {
  outline: 2px solid rgba(168, 134, 74, 0.45);
  outline-offset: 1px;
}

.inquiry-feedback {
  margin: 0 0 0.75rem;
  font-size: 0.86rem;
  color: var(--muted);
}

.inquiry-feedback--ok {
  color: #2d6a4f;
  font-weight: 500;
}

.inquiry-dialog__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: flex-end;
  margin-top: 0.25rem;
}

.inquiry-dialog__cancel {
  border: 1px solid rgba(12, 16, 24, 0.25);
  color: var(--navy);
  background: transparent;
}

.inquiry-dialog__cancel:hover {
  background: rgba(12, 16, 24, 0.06);
}

.inquiry-dialog__fallback-note {
  margin: 1rem 0 0;
  font-size: 0.68rem;
  line-height: 1.4;
  color: rgba(92, 90, 84, 0.85);
}
