/* =================================================================
   NID CONCIERGERIE — styles.css
   Direction : moderne & chaleureux, éditorial (réf. tesla.com),
   palette chaude marine / crème / or. Écrit à la main, sans framework.
   ================================================================= */

/* ---------- 0. POLICES AUTO-HÉBERGÉES (RGPD : aucune requête vers Google) ---------- */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url(../fonts/plus-jakarta-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400 500;
  font-display: swap;
  src: url(../fonts/fraunces-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- 1. TOKENS ---------- */
:root {
  /* Palette (tirée du logo) */
  --marine:      #111111;
  --marine-soft: #2A2A2A;
  --marine-deep: #111111;
  --cream:       #F7F3EC;
  --linen:       #E8E0D3;
  --gold:        #C4965A;
  --gold-deep:   #A87B43;
  --surface:     #FCFAF6;

  /* Texte */
  --ink:         #2A2A2A;
  --ink-soft:    #675F54;

  /* Typo */
  --sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --serif: 'Fraunces', 'Iowan Old Style', Georgia, serif;

  /* Rayons — aucun angle vif */
  --r-lg: 32px;
  --r-md: 20px;
  --r-sm: 12px;
  --r-pill: 999px;

  /* Ombres chaudes */
  --sh-sm: 0 4px 16px -6px rgba(17,17,17,.16);
  --sh-md: 0 22px 55px -28px rgba(17,17,17,.40);
  --sh-lg: 0 50px 100px -45px rgba(17,17,17,.52);

  /* Mouvement */
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-mag: cubic-bezier(.25,.46,.45,.94);

  /* Mesures */
  --wrap: 1240px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
  --section: clamp(5rem, 11vw, 9.5rem);
  --nav-h: 76px;
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

img { max-width: 100%; display: block; height: auto; }
svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--marine);
}

::selection { background: var(--gold); color: var(--marine); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- 3. UTILITAIRES ---------- */
.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 300;
  background: var(--marine);
  color: var(--cream);
  padding: .7rem 1.1rem;
  border-radius: var(--r-sm);
  font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 16px; }

/* Texture grain globale (anti-aplat) */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .05;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='150' height='150'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px 150px;
}

.svg-sprite { position: absolute; width: 0; height: 0; }

/* Sections sombres */
.section--dark { background: var(--marine); color: rgba(247,243,236,.78); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }

.services, .offres, .about, .faq { padding-block: var(--section); position: relative; }

/* Eyebrow (label en petites capitales espacées) */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--marine-soft);
  margin-bottom: 1.4rem;
}
.eyebrow__dash {
  width: 30px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow--light { color: var(--gold); }

/* Titres & leads de section */
.section__title { font-size: clamp(2rem, 4.4vw, 3.5rem); }
.section__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  color: var(--ink-soft);
  max-width: 46ch;
}
.section--dark .section__lead { color: rgba(247,243,236,.66); }

.section__head { max-width: 720px; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section__head--left { margin-bottom: clamp(2.5rem, 5vw, 4rem); }

/* Lien texte */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  color: var(--marine);
  position: relative;
  transition: transform .3s var(--ease), color .3s var(--ease);
}
.text-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: -3px;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.text-link:hover { transform: translateY(-1px); color: var(--gold-deep); }
.text-link:hover::after { transform: scaleX(1); }
.text-link svg { width: 18px; height: 18px; stroke-width: 1.8; }

/* ---------- 4. BOUTONS (sensation magnétique) ---------- */
.btn {
  --btn-bg: var(--marine);
  --btn-fg: var(--cream);
  --btn-fill: var(--gold);
  --btn-fg-hover: var(--marine);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: .95rem 1.7rem;
  border-radius: var(--r-pill);
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .005em;
  white-space: nowrap;
  transition: transform .4s var(--ease-mag), box-shadow .4s var(--ease);
}
.btn__fill {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--btn-fill);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn__label {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  transition: color .35s var(--ease);
}
.btn__ico { width: 19px; height: 19px; }
.btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: var(--sh-md); }
.btn:hover .btn__fill { transform: translateY(0); }
.btn:hover .btn__label { color: var(--btn-fg-hover); }
.btn:active { transform: translateY(0) scale(.99); }

.btn--primary { --btn-bg: var(--marine); --btn-fg: var(--cream); --btn-fill: var(--gold); --btn-fg-hover: var(--marine); }
.btn--gold    { --btn-bg: var(--gold); --btn-fg: var(--marine); --btn-fill: var(--marine); --btn-fg-hover: var(--cream); }
.btn--ghost {
  --btn-bg: transparent;
  --btn-fg: var(--marine);
  --btn-fill: var(--marine);
  --btn-fg-hover: var(--cream);
  box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.35);
}
.btn--lg { padding: 1.15rem 2.1rem; font-size: 1.02rem; }
.btn--block { width: 100%; }

/* ---------- 5. MARQUE / LOGO ---------- */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand__mark {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  color: var(--gold);
  flex-shrink: 0;
}
.brand__mark svg { width: 100%; height: 100%; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -.01em;
  color: var(--marine);
}
.brand__tag {
  font-size: .56rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--marine-soft);
  margin-top: 3px;
}
.brand--light .brand__name { color: var(--cream); }
.brand--light .brand__tag { color: rgba(247,243,236,.6); }

/* ---------- 6. NAVBAR ---------- */
.nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  padding-block: 1.05rem;
  transition: padding .35s var(--ease), background .35s var(--ease),
              box-shadow .35s var(--ease), backdrop-filter .35s var(--ease);
}
.nav__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.nav--scrolled {
  padding-block: .6rem;
  background: rgba(247,243,236,.85);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 rgba(17,17,17,.08), 0 14px 40px -30px rgba(17,17,17,.5);
}

.nav__links { display: none; gap: 2.2rem; }
.nav__links a {
  position: relative;
  font-size: .92rem;
  font-weight: 500;
  color: var(--marine);
  padding-block: .3rem;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}
.nav__links a:hover { color: var(--gold-deep); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta { display: none; }

/* Burger */
.nav__burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 46px; height: 46px;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.22);
  transition: box-shadow .3s var(--ease);
}
.nav__burger span {
  display: block;
  width: 20px; height: 2px;
  margin-inline: auto;
  background: var(--marine);
  border-radius: 2px;
  transition: transform .4s var(--ease), opacity .25s var(--ease);
}
.nav__burger.is-open { box-shadow: inset 0 0 0 1.5px var(--gold); }
.nav__burger.is-open span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger.is-open span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- 7. MENU MOBILE ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 95;
  background: var(--cream);
  padding: calc(var(--nav-h) + 2rem) var(--gutter) 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-14px);
  transition: opacity .4s var(--ease), transform .5s var(--ease), visibility .4s;
}
.menu.is-open { opacity: 1; visibility: visible; transform: none; }
.menu-scrim { display: none; }

.menu__nav { display: flex; flex-direction: column; }
.menu__nav a {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  padding: .55rem 0;
  font-size: clamp(2.1rem, 9vw, 3rem);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--marine);
  border-bottom: 1px solid rgba(17,17,17,.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), color .25s var(--ease);
}
.menu.is-open .menu__nav a { opacity: 1; transform: none; }
.menu.is-open .menu__nav a:nth-child(1) { transition-delay: .12s; }
.menu.is-open .menu__nav a:nth-child(2) { transition-delay: .18s; }
.menu.is-open .menu__nav a:nth-child(3) { transition-delay: .24s; }
.menu.is-open .menu__nav a:nth-child(4) { transition-delay: .30s; }
.menu__nav a:hover { color: var(--gold-deep); }
.menu__idx {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  color: var(--gold);
}
.menu__foot { display: flex; flex-direction: column; gap: 1.6rem; }
.menu__socials { display: flex; gap: .7rem; }
.menu__socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  color: var(--marine);
  box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.18);
  transition: background .3s var(--ease), color .3s var(--ease), transform .3s var(--ease);
}
.menu__socials a svg { width: 19px; height: 19px; stroke-width: 1.7; }
.menu__socials a:hover { background: var(--marine); color: var(--cream); transform: translateY(-2px); }

/* ---------- 8. HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + clamp(2rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
  background:
    radial-gradient(120% 90% at 88% 8%, rgba(196,150,90,.10), transparent 60%),
    var(--cream);
}
.hero__inner {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  gap: clamp(2.8rem, 6vw, 5rem);
  align-items: center;
}
.hero__title {
  font-size: clamp(2.55rem, 6.6vw, 5.15rem);
  line-height: 1.04;
  letter-spacing: -.03em;
}
.hero__line { display: block; }
.hero__line:nth-child(1) { color: var(--marine-soft); font-weight: 700; }
.hero__line:nth-child(2) { color: var(--marine); }

.mark { position: relative; display: inline-block; white-space: nowrap; isolation: isolate; }
.mark::after {
  content: "";
  position: absolute;
  left: -.04em; right: -.04em;
  bottom: .06em;
  height: .2em;
  background: var(--gold);
  border-radius: 4px;
  transform: scaleX(1);
  transform-origin: left;
  transition: transform .8s var(--ease);
  z-index: -1;
}

.hero__sub {
  margin-top: 1.8rem;
  font-size: clamp(1.08rem, 1.6vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 34ch;
}
.hero__actions {
  margin-top: 2.4rem;
  display: flex;
  align-items: center;
  gap: 1.4rem 2rem;
  flex-wrap: wrap;
}
.hero__scroll svg { width: 17px; height: 17px; }

/* Hero — visuel */
.hero__media { position: relative; }
.hero__frame {
  position: relative;
  z-index: 2;
  border-radius: var(--r-lg);
  overflow: hidden;
  aspect-ratio: 5 / 4.4;
  box-shadow: var(--sh-lg);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__media-back {
  position: absolute;
  z-index: 1;
  right: -22px; bottom: -26px;
  width: 62%; height: 78%;
  background: var(--linen);
  border-radius: var(--r-lg);
}

/* Oiseau perché (motif récurrent) */
.perched-bird {
  position: absolute;
  color: var(--gold);
  z-index: 3;
  filter: drop-shadow(0 8px 14px rgba(17,17,17,.28));
}
.hero__bird {
  width: clamp(56px, 6.4vw, 84px);
  top: 0; left: 11%;
  transform: translateY(-74%);
}

/* ---------- 9. NOS SERVICES ---------- */
.services__top {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5.5rem);
}
.services__media { position: relative; }
.frame {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.frame img { width: 100%; height: 100%; object-fit: cover; }
.frame--soft { aspect-ratio: 4 / 3.1; }
.services__bird {
  width: clamp(48px, 5.4vw, 72px);
  top: 0; right: 10%;
  transform: translateY(-72%);
}

/* Liste éditoriale des 7 services */
.svc-list { display: flex; flex-direction: column; }
.svc {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas:
    "num  body"
    "ico  body";
  gap: .35rem 1.2rem;
  align-items: start;
  padding: clamp(1.6rem, 3vw, 2.3rem) 0;
  border-top: 1px solid rgba(247,243,236,.14);
  transition: border-color .3s var(--ease);
}
.svc:last-child { border-bottom: 1px solid rgba(247,243,236,.14); }
.svc__num {
  grid-area: num;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  color: var(--gold);
  padding-top: .2rem;
}
.svc__ico {
  grid-area: ico;
  display: grid;
  place-items: center;
  width: 52px; height: 52px;
  border-radius: var(--r-pill);
  color: var(--cream);
  box-shadow: inset 0 0 0 1px rgba(247,243,236,.22);
  transition: background .35s var(--ease), color .35s var(--ease),
              box-shadow .35s var(--ease), transform .35s var(--ease);
}
.svc__ico svg { width: 24px; height: 24px; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.svc__body { grid-area: body; }
.svc__title {
  font-size: clamp(1.18rem, 1.7vw, 1.4rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--cream);
}
.svc__desc {
  margin-top: .5rem;
  font-size: 1rem;
  color: rgba(247,243,236,.62);
  max-width: 52ch;
}
.svc:hover { border-color: rgba(196,150,90,.55); }
.svc:hover .svc__ico {
  background: var(--gold);
  color: var(--marine);
  box-shadow: inset 0 0 0 1px var(--gold);
  transform: translateY(-3px);
}

/* ---------- 10. NOS FORMULES ---------- */
.offres { background: var(--cream); padding-top: clamp(1.5rem, 3vw, 2.25rem); }
/* Rapproche les cartes de l'en-tête — uniquement sur la page Offres */
.page-head:has(+ .offres) { padding-bottom: clamp(1rem, 2vw, 1.5rem); }
/* Rapproche les questions de l'en-tête — uniquement sur la page FAQ */
.page-head:has(+ .faq) { padding-bottom: clamp(.75rem, 1.5vw, 1.25rem); }
.plans {
  display: grid;
  gap: clamp(1.6rem, 3vw, 2.2rem);
  align-items: stretch;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid rgba(17,17,17,.10);
  border-radius: var(--r-lg);
  padding: clamp(1.9rem, 3.4vw, 2.7rem);
  box-shadow: var(--sh-sm);
  height: 100%;
}

/* Carte du milieu — mise en avant */
.plan--featured {
  background: var(--marine);
  color: rgba(247,243,236,.8);
  border-color: transparent;
  box-shadow: var(--sh-lg);
}

/* Carte ciblée par une ancre (arrivée depuis l'accueil) */
.plan:target { animation: plan-focus 2.4s var(--ease) 1; }
@keyframes plan-focus {
  0%, 70%  { box-shadow: 0 0 0 3px var(--gold), var(--sh-md); }
  100%     { box-shadow: var(--sh-sm); }
}
.plan--featured:target { animation: plan-focus-featured 2.4s var(--ease) 1; }
@keyframes plan-focus-featured {
  0%, 70%  { box-shadow: 0 0 0 3px var(--gold), var(--sh-lg); }
  100%     { box-shadow: var(--sh-lg); }
}

.plan__bird {
  width: clamp(34px, 4vw, 46px);
  top: 0; left: 9%;
  transform: translateY(-50%);
}

.plan__badge {
  position: absolute;
  top: 0; left: 50%;
  transform: translate(-50%, -50%);
  padding: .5rem 1.15rem;
  background: var(--gold);
  color: var(--marine);
  border-radius: var(--r-pill);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--sh-sm);
}

.plan__name {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--marine);
}
.plan--featured .plan__name { color: var(--cream); }

.plan__price { display: flex; align-items: flex-start; gap: .1em; margin-top: 1rem; }
.plan__pct {
  font-size: clamp(3.6rem, 8vw, 4.8rem);
  font-weight: 800;
  line-height: .82;
  letter-spacing: -.04em;
  color: var(--marine);
}
.plan--featured .plan__pct { color: var(--cream); }
.plan__sign { font-size: .54em; font-weight: 800; color: var(--gold); margin-top: .12em; }
.plan__priceLabel {
  margin-top: .9rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.plan--featured .plan__priceLabel { color: var(--gold); }

.plan__desc {
  margin-top: 1.2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(17,17,17,.10);
  font-size: .96rem;
  color: var(--ink-soft);
}
.plan--featured .plan__desc {
  border-color: rgba(247,243,236,.14);
  color: rgba(247,243,236,.74);
}

.plan__list {
  margin-top: 1.4rem;
  display: grid;
  gap: .8rem;
  flex: 1 0 auto;
}
.plan__list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--ink);
}
.plan--featured .plan__list li { color: rgba(247,243,236,.86); }
.plan__list li.is-lead {
  font-weight: 600;
  color: var(--marine);
}
.plan--featured .plan__list li.is-lead { color: var(--cream); }
.plan__list svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  margin-top: .2rem;
  fill: none;
  stroke: var(--gold);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.plan .btn { margin-top: 1.9rem; }

.plans__foot {
  margin-top: clamp(2.2rem, 4vw, 3.2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: .96rem;
}
.plans__foot svg {
  flex-shrink: 0;
  width: 20px; height: 20px;
  fill: none;
  stroke: var(--gold-deep);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ---------- 11. QUI NOUS SOMMES ---------- */
.about { overflow: hidden; }
.about__bg { position: absolute; inset: 0; z-index: 0; }
.about__bg img {
  width: 100%; height: 130%;
  object-fit: cover;
  opacity: .15;
}
.about::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, var(--marine), rgba(17,17,17,.78));
}
.about__watermark {
  position: absolute;
  z-index: 0;
  right: -3%; top: 12%;
  width: clamp(180px, 30vw, 420px);
  color: var(--cream);
  opacity: .04;
}
.about__inner { position: relative; z-index: 1; max-width: 820px; }
.about__title { font-size: clamp(2rem, 4.4vw, 3.4rem); }
.about__body {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: rgba(247,243,236,.72);
  max-width: 58ch;
}
.about__manifesto {
  margin-top: clamp(2.4rem, 5vw, 3.6rem);
  padding-left: clamp(1.2rem, 2.5vw, 2rem);
  border-left: 2px solid var(--gold);
}
.about__neutral {
  font-size: 1rem;
  color: rgba(247,243,236,.55);
}
.about__statement {
  margin-top: .6rem;
  font-size: clamp(1.7rem, 3.6vw, 2.85rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: var(--cream);
}
.about__statement em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.about__support {
  margin-top: clamp(2.2rem, 4.5vw, 3.2rem);
  font-size: 1.05rem;
  color: rgba(247,243,236,.72);
  max-width: 56ch;
}

/* ---------- 12. FAQ ---------- */
.faq { background: var(--cream); padding-top: clamp(1.5rem, 3vw, 2.25rem); }
.faq__wrap { max-width: 940px; }
.faq__list { border-bottom: 1px solid rgba(17,17,17,.14); }

.faq__item { border-top: 1px solid rgba(17,17,17,.14); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: clamp(1.3rem, 2.6vw, 1.85rem) 0;
  font-size: clamp(1.08rem, 1.7vw, 1.28rem);
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--marine);
  list-style: none;
  transition: color .25s var(--ease);
}
.faq__q::-webkit-details-marker { display: none; }
.faq__q:hover { color: var(--gold-deep); }

.faq__plus {
  position: relative;
  flex-shrink: 0;
  width: 26px; height: 26px;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  background: var(--gold-deep);
  border-radius: 2px;
  transition: transform .35s var(--ease);
}
.faq__plus::before { width: 15px; height: 2px; transform: translate(-50%, -50%); }
.faq__plus::after  { width: 2px; height: 15px; transform: translate(-50%, -50%); }
.faq__item[open] .faq__plus::after { transform: translate(-50%, -50%) scaleY(0); }

.faq__a { overflow: hidden; }
.faq__a p {
  padding-bottom: clamp(1.3rem, 2.6vw, 1.85rem);
  color: var(--ink-soft);
  font-size: 1.04rem;
  max-width: 64ch;
}

.faq__cta {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.2rem;
}
.faq__cta p { font-size: 1.1rem; font-weight: 600; color: var(--marine); }

/* ---------- 13. FOOTER ---------- */
.footer {
  position: relative;
  z-index: 2;
  background: var(--marine-deep);
  color: rgba(247,243,236,.66);
  border-radius: clamp(2rem, 5vw, 3.5rem) clamp(2rem, 5vw, 3.5rem) 0 0;
  padding-top: clamp(3.5rem, 8vw, 6.5rem);
  padding-bottom: 2.5rem;
  margin-top: clamp(1rem, 3vw, 2rem);
}

.footer__cta {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
  padding-bottom: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid rgba(247,243,236,.12);
}
.footer__cta .eyebrow { justify-content: center; }
.footer__title {
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  color: var(--cream);
}
.footer__lead {
  margin-top: 1.1rem;
  margin-bottom: 2.2rem;
  color: rgba(247,243,236,.66);
}

.footer__grid {
  display: grid;
  gap: 2.8rem;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.footer__brand { max-width: 320px; }
.footer__signature {
  margin-top: 1.3rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: rgba(247,243,236,.8);
}
.socials { display: flex; gap: .65rem; margin-top: 1.7rem; }
.socials a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--r-pill);
  color: rgba(247,243,236,.82);
  box-shadow: inset 0 0 0 1.5px rgba(247,243,236,.2);
  transition: background .3s var(--ease), color .3s var(--ease),
              transform .3s var(--ease), box-shadow .3s var(--ease);
}
.socials a svg { width: 19px; height: 19px; stroke-width: 1.7; }
.socials a:hover {
  background: var(--gold);
  color: var(--marine);
  box-shadow: inset 0 0 0 1.5px var(--gold);
  transform: translateY(-3px);
}

.footer__col { display: flex; flex-direction: column; }
.footer__head {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.footer__col a, .footer__zone {
  padding-block: .42rem;
  color: rgba(247,243,236,.66);
  font-size: .98rem;
  transition: color .25s var(--ease), transform .25s var(--ease);
}
.footer__col a { width: fit-content; }
.footer__col a:hover { color: var(--gold); transform: translateX(4px); }
.footer__zone { color: rgba(247,243,236,.5); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.5rem;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(247,243,236,.12);
  font-size: .85rem;
  color: rgba(247,243,236,.45);
}

/* ---------- 14. RÉVÉLATIONS (états initiaux) ---------- */
html.js [data-hero],
html.js [data-reveal],
html.js [data-reveal-item] { opacity: 0; }
html.js .mark::after { transform: scaleX(0); }
html.js .mark.is-drawn::after { transform: scaleX(1); }
html.no-anim [data-hero],
html.no-anim [data-reveal],
html.no-anim [data-reveal-item] { opacity: 1 !important; transform: none !important; }
html.no-anim .mark::after { transform: scaleX(1) !important; }

/* ---------- 15. RESPONSIVE ---------- */
@media (min-width: 600px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; max-width: 380px; }
}

@media (min-width: 768px) {
  .svc {
    grid-template-columns: 56px 64px 1fr;
    grid-template-areas: "num ico body";
    align-items: center;
    gap: 0 1.6rem;
  }
  .svc__num { padding-top: 0; align-self: center; }
  .svc__body { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.15fr); gap: .3rem 2rem; align-items: baseline; }
  .svc__desc { margin-top: 0; }
  .plans { grid-template-columns: 1fr 1fr; }
  .tiers { grid-template-columns: repeat(3, 1fr); }
  .faq__cta { flex-direction: row; align-items: center; justify-content: space-between; }
}

@media (min-width: 920px) {
  :root { --nav-h: 84px; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .nav__burger { display: none; }
  .menu { display: none; }
  .hero__inner { grid-template-columns: 1.02fr .98fr; }
  .services__top { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 2.1fr 1fr 1fr 1fr; }
  .footer__brand { grid-column: auto; }
}

@media (min-width: 1040px) {
  .plans { grid-template-columns: repeat(3, 1fr); align-items: center; }
  .plan--featured { transform: scale(1.045); z-index: 2; }
}

@media (min-width: 1120px) {
  .services__top { grid-template-columns: 1.1fr .9fr; }
}

/* ---------- 16. MOUVEMENT RÉDUIT ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  html.js [data-hero],
  html.js [data-reveal],
  html.js [data-reveal-item] { opacity: 1 !important; transform: none !important; }
  html.js .mark::after { transform: scaleX(1) !important; }
}

/* ================================================================
   17. PAGES SECONDAIRES & APERÇUS D'ACCUEIL
   ================================================================ */

/* En-tête des pages secondaires */
.page-head {
  position: relative;
  padding-top: calc(var(--nav-h) + clamp(3.5rem, 9vw, 7rem));
  padding-bottom: clamp(2.5rem, 6vw, 4.5rem);
  background:
    radial-gradient(115% 85% at 88% 0%, rgba(196,150,90,.12), transparent 62%),
    var(--cream);
}
.page-head__inner { max-width: 840px; }
.page-head__title {
  margin-top: .3rem;
  font-size: clamp(2.4rem, 5.6vw, 4.3rem);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.page-head__lead {
  margin-top: 1.4rem;
  font-size: clamp(1.08rem, 1.6vw, 1.3rem);
  color: var(--ink-soft);
  max-width: 54ch;
}

/* Lien de navigation actif */
.nav__links a[aria-current="page"] { color: var(--gold-deep); }
.nav__links a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

/* Aperçus de la page d'accueil */
.preview { padding-block: var(--section); position: relative; }
.preview__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
.preview__media { position: relative; }
.preview__actions { margin-top: 2.2rem; }
.preview__center { max-width: 720px; margin-inline: auto; text-align: center; }
.preview__center .eyebrow { justify-content: center; }
.preview__center .section__lead { margin-inline: auto; }
@media (min-width: 920px) {
  .preview__grid--split { grid-template-columns: 1.05fr .95fr; }
  .preview__grid--rev .preview__text { order: 2; }
  .preview__grid--rev .preview__media { order: 1; }
}

/* Liste de mots-clés (aperçu) */
.taglist { display: flex; flex-wrap: wrap; gap: .65rem; margin-top: 1.9rem; }
.taglist li {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .95rem;
  font-size: .89rem; font-weight: 500;
  border-radius: var(--r-pill);
  box-shadow: inset 0 0 0 1px rgba(247,243,236,.22);
  color: rgba(247,243,236,.85);
}
.taglist li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.preview:not(.section--dark) .taglist li {
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.16);
  color: var(--ink);
}
.preview__center .taglist { justify-content: center; }

/* Trio de formules (aperçu offre) */
.tiers {
  margin-top: 2.4rem;
  display: grid;
  gap: 1rem;
  text-align: left;
}
.tier {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.4rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--surface);
  box-shadow: inset 0 0 0 1px rgba(17,17,17,.10);
  text-decoration: none;
  color: inherit;
  transition: transform .35s var(--ease-mag), box-shadow .35s var(--ease);
}
.tier:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.tier:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.tier--star {
  background: var(--marine);
  box-shadow: var(--sh-md);
}
.tier--star:hover { box-shadow: var(--sh-lg); }
.tier__name {
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--ink-soft);
}
.tier--star .tier__name { color: var(--gold); }
.tier__pct {
  font-size: clamp(2.4rem, 5vw, 3.2rem); font-weight: 800;
  line-height: .9; letter-spacing: -.03em; color: var(--marine);
}
.tier--star .tier__pct { color: var(--cream); }
.tier__pct span { color: var(--gold); font-size: .52em; font-weight: 800; }
.tier__more {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: .25rem;
  font-size: .82rem; font-weight: 600;
  color: var(--gold-deep);
}
.tier--star .tier__more { color: var(--gold); }
.tier__more svg {
  width: 16px; height: 16px;
  fill: none; stroke: currentColor; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  transition: transform .3s var(--ease);
}
.tier:hover .tier__more svg { transform: translateX(3px); }

/* Liste de questions (aperçu FAQ) */
.qlist { margin-top: 2.2rem; border-top: 1px solid rgba(17,17,17,.14); }
.qlist a {
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid rgba(17,17,17,.14);
  font-size: clamp(1.02rem, 1.5vw, 1.18rem); font-weight: 600;
  color: var(--marine);
  transition: color .25s var(--ease), padding-left .3s var(--ease);
}
.qlist a:hover { color: var(--gold-deep); padding-left: .5rem; }
.qlist a svg { width: 20px; height: 20px; flex-shrink: 0; stroke: var(--gold); stroke-width: 2; fill: none; }

/* Bannière image (page Services) */
.services__banner { aspect-ratio: 16 / 6.4; margin-bottom: clamp(3rem, 6vw, 5rem); }
@media (max-width: 640px) { .services__banner { aspect-ratio: 4 / 3; } }

/* Pages légales */
.legal { padding-block: clamp(2.5rem, 5vw, 4rem) var(--section); background: var(--cream); }
.legal__body { max-width: 768px; }
.legal__body > h2 {
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  margin-top: 2.8rem; padding-top: 2.2rem;
  border-top: 1px solid rgba(17,17,17,.12);
}
.legal__body > h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal__body h3 { font-size: 1.08rem; margin-top: 1.7rem; color: var(--marine-soft); }
.legal__body p, .legal__body li { color: var(--ink-soft); margin-top: .9rem; }
.legal__body ul { margin-top: 1rem; padding-left: 1.3rem; }
.legal__body li { list-style: disc; }
.legal__body li::marker { color: var(--gold); }
.legal__body a { color: var(--gold-deep); text-decoration: underline; text-underline-offset: 3px; }
.legal__body strong { color: var(--marine); font-weight: 700; }
.legal__todo {
  display: inline-block;
  background: rgba(196,150,90,.16);
  border: 1px dashed var(--gold-deep);
  color: var(--gold-deep);
  font-size: .8rem; font-weight: 700;
  padding: .08rem .5rem; border-radius: 6px;
}
.legal__note {
  margin-top: 2.8rem; padding: 1.15rem 1.35rem;
  background: var(--linen);
  border-radius: var(--r-md);
  font-size: .92rem; color: var(--marine-soft);
}
.legal__note strong { color: var(--marine); }

/* ================================================================
   18. LOGO IMAGE · BOUTONS · FORMULAIRE MODAL · ÉQUIPE
   ================================================================ */

/* Logo image — pastille blanche, lisible sur crème comme sur noir */
.brand__logo {
  display: block;
  height: 44px;
  width: auto;
}
@media (min-width: 920px) {
  .brand__logo { height: 48px; }
}
/* Footer sombre : le logo détouré est passé en blanc */
.footer__brand .brand__logo {
  height: 52px;
  filter: brightness(0) invert(1);
}

/* Réinitialisation des <button> portant la classe .btn */
button.btn {
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  font-family: inherit;
  cursor: pointer;
}

/* ---- Formulaire modal « Confier votre bien » ---- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1rem, 4vw, 2.5rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.modal.is-open { opacity: 1; visibility: visible; }

.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(17,17,17,.62);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.modal__dialog {
  position: relative;
  width: min(1020px, 100%);
  max-height: 92vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--cream);
  border-radius: var(--r-lg);
  padding: 0;
  box-shadow: var(--sh-lg);
  transform: translateY(26px) scale(.97);
  transition: transform .45s var(--ease);
}
.modal.is-open .modal__dialog { transform: translateY(0) scale(1); }

.modal__close {
  position: absolute;
  top: .75rem;
  right: .75rem;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: rgba(17,17,17,.06);
  color: var(--marine);
  cursor: pointer;
  z-index: 2;
  transition: background .25s var(--ease), transform .35s var(--ease);
}
.modal__close:hover { background: rgba(17,17,17,.12); transform: rotate(90deg); }
.modal__close svg { width: 16px; height: 16px; }

.modal__title { font-size: clamp(1.5rem, 3vw, 2.05rem); margin-top: .55rem; line-height: 1.18; }
.modal__intro { margin-top: .95rem; color: var(--ink-soft); font-size: .98rem; line-height: 1.55; }

/* Champs */
.form { margin-top: 1.9rem; display: flex; flex-direction: column; gap: 1.2rem; }
.form__row { display: grid; gap: 1.1rem; }
@media (min-width: 520px) { .form__row { grid-template-columns: 1fr 1fr; } }

.field { display: flex; flex-direction: column; gap: .5rem; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .015em;
  color: var(--marine);
}
.field label .req { color: var(--gold-deep); }
.field input,
.field textarea {
  width: 100%;
  font-family: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--surface);
  border: 1.5px solid rgba(17,17,17,.14);
  border-radius: var(--r-sm);
  padding: .85rem .95rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 88px; }
.field input::placeholder,
.field textarea::placeholder { color: rgba(17,17,17,.34); }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196,150,90,.16);
}
.form .btn { margin-top: .35rem; }
.form__note {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .82rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.form__note svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: .12rem; color: var(--gold-deep); }

/* Confirmation après envoi */
.form__success { text-align: center; padding: 1.4rem 0 .5rem; }
.form__success-ico {
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(196,150,90,.16);
  color: var(--gold-deep);
}
.form__success-ico svg { width: 30px; height: 30px; }
.form__success h3 { font-size: 1.35rem; }
.form__success p { margin-top: .6rem; color: var(--ink-soft); }

/* ---- Section Équipe (page À propos) ---- */
.team { padding-block: var(--section); background: var(--cream); }
.team__grid { display: grid; gap: clamp(2.5rem, 5vw, 4.5rem); align-items: center; }
@media (min-width: 920px) {
  .team__grid { grid-template-columns: 1.05fr .95fr; }
}
.team__photos { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(.9rem, 2.4vw, 1.6rem); }
.team__member { display: flex; flex-direction: column; gap: .95rem; margin: 0; }
.team__photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--linen);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem;
  text-align: center;
  box-shadow: inset 0 0 0 1.5px rgba(17,17,17,.12);
}
.team__photo svg { width: 34px; height: 34px; stroke: var(--gold); stroke-width: 1.5; fill: none; }
.team__photo span {
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.team__photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.team__photo-mark {
  width: 56%;
  max-width: 92px;
  aspect-ratio: 410 / 463;
  background: url('../Logo/nid-logo.png') center / contain no-repeat;
  opacity: .55;
}

.team__grid--text-only { grid-template-columns: 1fr; max-width: 68ch; }
.team__linkedin {
  color: var(--gold-deep);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1.5px solid currentColor;
  transition: color .2s var(--ease), border-color .2s var(--ease), transform .25s var(--ease);
  display: inline-block;
}
.team__linkedin:hover {
  color: var(--marine);
  border-color: var(--marine);
  transform: translateY(-1px);
}

/* Modale en 2 colonnes : contacts cliquables (gauche) + formulaire (droite) */
.modal__body {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 760px) {
  .modal__body { grid-template-columns: 38fr 62fr; }
}
.modal__side {
  background: var(--linen);
  padding: clamp(2.4rem, 4.8vw, 3rem) clamp(2rem, 4.4vw, 2.8rem) clamp(2rem, 4.4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal__main {
  padding: clamp(2.4rem, 4.8vw, 3rem) clamp(2rem, 4.4vw, 2.8rem) clamp(2rem, 4.4vw, 2.8rem);
}
.modal__side-title {
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
  margin-top: .25rem;
  line-height: 1.15;
}
.modal__side-intro {
  font-size: .92rem;
  color: var(--ink-soft);
  margin-bottom: .35rem;
}
.modal__contact-link {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .95rem 1.05rem;
  background: rgba(255, 255, 255, .55);
  border-radius: var(--r-sm);
  text-decoration: none;
  font-weight: 600;
  color: var(--marine);
  transition: background .2s var(--ease), color .2s var(--ease), transform .25s var(--ease);
}
.modal__contact-link:hover {
  background: var(--surface);
  color: var(--gold-deep);
  transform: translateY(-1px);
}
.modal__contact-link svg {
  width: 22px;
  height: 22px;
  color: var(--gold-deep);
  flex-shrink: 0;
}
.modal__contact-link span {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.modal__contact-link small {
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2px;
}
.modal__side-divider {
  margin-top: 1.1rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.team__name {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--marine);
}
.team__name span {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
