/* ─── Self-hosted Fonts ────────────────────────────────────────────────────── */

/* Cormorant Garamond — normal */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal-latin.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: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-normal-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* Cormorant Garamond — italic */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin.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: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* DM Sans */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin.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: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('../fonts/dm-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* ─── Design Tokens ─────────────────────────────────────────────────────────── */
:root {
  --navy: #1B3A5C;
  --navy-dark: #122844;
  --cream: #F8F6F1;
  --cream-dark: #EDE9E0;
  --gold: #B8944A;
  --gold-light: #D4AF71;
  --sage: #6B8F71;
  --charcoal: #2C2C2C;
  --muted: #6B6B6B;
  --border: #D6D0C4;
}

/* ─── Reset & Global ────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  background: var(--cream);
  color: var(--charcoal);
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  background: rgba(27, 58, 92, 0.13);
}

/* Focus indicators (accessibility) */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

:focus:not(:focus-visible) {
  outline: none;
}

/* Grain texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

a {
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

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

button {
  cursor: pointer;
}

/* ─── Typography ────────────────────────────────────────────────────────────── */
.font-serif {
  font-family: 'Cormorant Garamond', serif;
}

.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.eyebrow--center { text-align: center; }
.eyebrow--left { text-align: left; }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.section-title--center { text-align: center; }
.section-title--left { text-align: left; }
.section-title--light { color: var(--cream); }

.section-title em {
  font-style: italic;
  color: var(--gold);
}

.section-title--light em {
  color: var(--gold-light);
}

/* ─── Layout (mobile-first base) ────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

section {
  padding: 48px 0;
}

/* ─── Thin gold rule ────────────────────────────────────────────────────────── */
.rule {
  display: block;
  width: 48px;
  height: 1.5px;
  background: var(--gold);
  margin: 0 auto 28px;
  border: none;
}

.rule--left {
  margin: 0 0 28px;
}

/* ─── Scroll fade-in ────────────────────────────────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }

/* ─── Photo placeholder ────────────────────────────────────────────────────── */
.photo-placeholder {
  background: linear-gradient(135deg, rgba(27,58,92,0.09), rgba(27,58,92,0.22));
  border: 1px dashed var(--border);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
}

.photo-placeholder svg {
  opacity: 0.35;
}

/* ─── Skip Link (accessibility) ─────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 200;
  background: var(--navy);
  color: var(--cream);
  padding: 12px 24px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 0 0 4px 4px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* ─── Navigation (mobile-first base) ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  box-shadow: 0 0 0 0 rgba(0,0,0,0);
  transition: background 0.3s ease, box-shadow 0.3s ease;
  padding: 0 16px;
}

.nav.scrolled {
  background: rgba(248, 246, 241, 0.97);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.nav__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav__logo-mountain {
  width: 100px;
  height: auto;
  color: var(--navy);
  margin-bottom: 2px;
}

.nav__logo-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 17px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1;
}

.nav__logo-tagline {
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.nav__links {
  display: none;
  gap: 40px;
  align-items: center;
}

.nav__link {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  letter-spacing: 0.06em;
  font-weight: 400;
  color: var(--charcoal);
  transition: color 0.2s;
}

.nav__link:hover {
  color: var(--gold);
}

.nav__phone {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}

.nav__phone:hover {
  color: var(--gold);
}

/* Burger — visible by default (mobile-first) */
.nav__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--navy);
  transition: all 0.3s;
}

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  z-index: 101;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  /* FIX: fallback padding when safe-area env not supported */
  padding: 20px;
}

.nav__mobile-menu.open {
  display: flex;
}

.nav__mobile-link {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 400;
  color: var(--navy);
  transition: color 0.2s;
}

.nav__mobile-link:hover {
  color: var(--gold);
}

.nav__mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--navy);
  cursor: pointer;
}

/* ─── Hero (mobile-first base) ──────────────────────────────────────────────── */
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: 1fr;
  position: relative;
  overflow: hidden;
}

.hero__content {
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 16px 40px;
  position: relative;
}

/* Decorative vertical line */
.hero__content::before {
  content: '';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent);
}

.hero__inner {
  padding-left: 16px;
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold-light);
}

.hero__subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 246, 241, 0.8);
  max-width: 100%;
  margin-bottom: 32px;
}

.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: flex-start;
}

.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  transition: background 0.25s;
  width: 100%;
  text-align: center;
}

.btn-gold:hover {
  background: var(--gold-light);
}

.btn-outline-light {
  display: inline-block;
  border: 1px solid rgba(248, 246, 241, 0.27);
  color: rgba(248, 246, 241, 0.8);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  transition: all 0.25s;
  background: transparent;
  width: 100%;
  text-align: center;
}

.btn-outline-light:hover {
  border-color: var(--cream);
  color: var(--cream);
}

.btn-navy {
  display: inline-block;
  background: var(--navy);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 24px;
  border: none;
  transition: background 0.25s;
  width: 100%;
  text-align: center;
}

.btn-navy:hover {
  background: var(--navy-dark);
}

.hero__contact-subtle {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(248, 246, 241, 0.09);
}

.hero__contact-label {
  font-size: 12px;
  letter-spacing: 0.06em;
  color: rgba(248, 246, 241, 0.4);
  margin-bottom: 6px;
}

.hero__contact-phone {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: rgba(248, 246, 241, 0.8);
  letter-spacing: 0.02em;
}

/* Hero photo side */
.hero__photo {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero__badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(248, 246, 241, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 10px 12px;
  border-left: 3px solid var(--gold);
}

.hero__badge-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  line-height: 1;
}

.hero__badge-role {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
  font-weight: 500;
}

/* ─── Valeurs / Cabinet (mobile-first base) ─────────────────────────────────── */
.valeurs {
  background: var(--cream-dark);
}

.valeurs__intro {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
  max-width: 640px;
  margin: 28px auto 48px;
}

.valeurs__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
}

.valeurs__card {
  background: var(--cream);
  padding: 28px 20px;
  height: 100%;
  border-top: 2px solid transparent;
  transition: border-color 0.3s;
}

.valeurs__card:hover,
.valeurs__card--active {
  border-top-color: var(--gold);
}

.valeurs__icon {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--gold);
  margin-bottom: 20px;
  line-height: 1;
}

.valeurs__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}

.valeurs__card p {
  font-size: 14.5px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
}

/* ─── Services (mobile-first base) ──────────────────────────────────────────── */
.services {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.services__bg-circle {
  position: absolute;
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 148, 74, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  margin-top: 48px;
  background: rgba(248, 246, 241, 0.09);
}

.services__card {
  display: block;
  background: var(--navy);
  padding: 32px 20px;
  height: 100%;
  transition: background 0.3s;
  position: relative;
}

.services__card:hover {
  background: var(--navy-dark);
}

.services__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 32px;
  font-weight: 400;
}

.services__card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 12px;
}

.services__accroche {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.services__desc {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.8;
  color: rgba(248, 246, 241, 0.53);
  margin-bottom: 28px;
}

.services__keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 32px;
}

.services__keyword {
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(248, 246, 241, 0.33);
  border: 1px solid rgba(248, 246, 241, 0.13);
  padding: 3px 10px;
}

.services__more {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
}

/* ─── Portrait (mobile-first base) ──────────────────────────────────────────── */
.portrait {
  background: var(--cream);
}

.portrait__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.portrait__photo-wrap {
  position: relative;
}

.portrait__img {
  width: 100%;
  height: auto;
  display: block;
}

/* Decorative border offset */
.portrait__photo-wrap::after {
  content: '';
  position: absolute;
  top: 8px;
  left: -8px;
  right: 8px;
  bottom: -8px;
  border: 1px solid rgba(184, 148, 74, 0.33);
  pointer-events: none;
  z-index: -1;
}

.portrait__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 3.5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 28px;
}

.portrait__quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
  line-height: 1.4;
}

.portrait__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.portrait__list-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.portrait__list-bullet {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 12px;
}

.portrait__list-item p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
}

.portrait__cta {
  margin-top: 40px;
}

/* ─── Zone Géo (mobile-first base) ──────────────────────────────────────────── */
.zone {
  background: var(--cream-dark);
}

.zone__intro {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  text-align: center;
  max-width: 580px;
  margin: 24px auto 56px;
}

.zone__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  margin-bottom: 48px;
}

.zone__tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 300;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  letter-spacing: 0.04em;
}

.zone__tag--primary {
  font-weight: 500;
  color: var(--navy);
  border-color: var(--gold);
}

.zone__map-wrap {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(27,58,92,0.10);
}

.zone__map-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
}

/* ─── Application Mobile (mobile-first base) ────────────────────────────────── */
.app-mobile {
  background: var(--cream);
}

.app-mobile__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

.app-mobile__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 24px;
}

.app-mobile__title em {
  font-style: italic;
  color: var(--gold);
}

.app-mobile__desc {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 32px;
}

.app-mobile__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-mobile__badge {
  display: block;
  transition: opacity 0.2s;
}

.app-mobile__badge:hover {
  opacity: 0.8;
}

.app-mobile__badge img {
  height: 40px;
  width: auto;
  display: block;
}

.app-mobile__mockup {
  max-width: 300px;
  margin: 0 auto;
}

/* ─── Phone Mockup (scoped) ─────────────────────────────────────────────────── */
.mjc-phone {
  width: 300px;
  border-radius: 38px;
  border: 7px solid #1B3A5C;
  overflow: hidden;
  background: #F8F6F1;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.4;
}

.mjc-phone p {
  margin: 0;
}

.mjc-serif {
  font-family: Georgia, 'Palatino Linotype', 'Cormorant Garamond', serif;
}

.mjc-screens {
  height: 488px;
  overflow: hidden;
  position: relative;
}

.mjc-screen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 16px;
  box-sizing: border-box;
  background: #F8F6F1;
  display: none;
}

.mjc-screen.mjc-on {
  display: block;
}

/* Hide scrollbar inside phone */
.mjc-screen::-webkit-scrollbar {
  display: none;
}

.mjc-screen {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.mjc-card {
  background: white;
  border-radius: 14px;
  border: 0.5px solid #E8E5DE;
  overflow: hidden;
  margin-bottom: 12px;
}

.mjc-row {
  padding: 11px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.5px solid #F0EDE6;
}

.mjc-row:last-child {
  border-bottom: none;
}

.mjc-label {
  color: #8A9BB0;
  font-size: 10px;
  margin: 2px 0 0;
}

.mjc-nav {
  background: white;
  border-top: 0.5px solid #E8E5DE;
  display: flex;
  padding: 5px 0 8px;
}

.mjc-nav-btn {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  min-height: 44px;
  justify-content: center;
}

.mjc-nav-lbl {
  font-size: 9px;
  font-weight: 500;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Tappable elements */
.mjc-tap {
  cursor: pointer;
  transition: opacity 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.mjc-tap:active {
  opacity: 0.7;
}

/* Allocation row expand */
.mjc-alloc-row {
  border-bottom: 0.5px solid #F0EDE6;
}

.mjc-alloc-row:last-child {
  border-bottom: none;
}

.mjc-alloc-sub {
  display: none;
  padding: 0 0 8px 17px;
}

.mjc-alloc-sub.mjc-open {
  display: block;
}

.mjc-alloc-sub-item {
  display: flex;
  justify-content: space-between;
  padding: 3px 0;
  font-size: 10px;
  color: #8A9BB0;
}

/* Expand detail for rows */
.mjc-expand-detail {
  display: none;
  padding: 0 14px 10px;
  font-size: 11px;
  line-height: 1.5;
  color: #8A9BB0;
  border-bottom: 0.5px solid #F0EDE6;
}

.mjc-expand-detail.mjc-open {
  display: block;
}

/* Overlay (slide-up panel) */
.mjc-overlay {
  position: absolute;
  inset: 0;
  background: rgba(27, 58, 92, 0.45);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 10;
  display: flex;
  align-items: flex-end;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}

.mjc-overlay.mjc-show {
  opacity: 1;
  pointer-events: auto;
}

.mjc-panel {
  background: #F8F6F1;
  width: 100%;
  border-radius: 18px 18px 0 0;
  padding: 20px 16px 24px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  max-height: 80%;
  overflow-y: auto;
}

.mjc-panel::-webkit-scrollbar {
  display: none;
}

.mjc-overlay.mjc-show .mjc-panel {
  transform: translateY(0);
}

.mjc-panel-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #1B3A5C;
  margin: 0 0 14px;
}

.mjc-panel-close {
  float: right;
  background: none;
  border: none;
  font-size: 18px;
  color: #8A9BB0;
  cursor: pointer;
  padding: 0 0 0 8px;
  line-height: 1;
}

.mjc-panel-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px solid #E8E5DE;
  font-size: 12px;
}

.mjc-panel-row:last-child {
  border-bottom: none;
}

.mjc-panel-btn {
  display: block;
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  margin-top: 10px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mjc-panel-btn--primary {
  background: #1B3A5C;
  color: white;
}

.mjc-panel-btn--outline {
  background: white;
  color: #1B3A5C;
  border: 0.5px solid #E8E5DE;
}

/* Time slot chips */
.mjc-slot {
  display: inline-block;
  padding: 6px 12px;
  border: 0.5px solid #E8E5DE;
  border-radius: 8px;
  font-size: 11px;
  color: #1B3A5C;
  cursor: pointer;
  margin: 3px;
  transition: all 0.15s;
  background: white;
}

.mjc-slot:active,
.mjc-slot.mjc-selected {
  background: #1B3A5C;
  color: white;
  border-color: #1B3A5C;
}

/* Notification row */
.mjc-notif-row {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 0.5px solid #E8E5DE;
  align-items: flex-start;
}

.mjc-notif-row:last-child {
  border-bottom: none;
}

.mjc-notif-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 4px;
}

/* Fullscreen overlay (calling) */
.mjc-fullscreen {
  position: absolute;
  inset: 0;
  z-index: 12;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #1B3A5C;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.mjc-fullscreen.mjc-show {
  opacity: 1;
  pointer-events: auto;
}

@keyframes mjc-ring {
  0% { transform: scale(1); opacity: 0.5; }
  100% { transform: scale(2.2); opacity: 0; }
}

.mjc-ring {
  position: absolute;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 2px solid #B8963E;
  animation: mjc-ring 1.5s ease-out infinite;
}

.mjc-ring:nth-child(2) {
  animation-delay: 0.5s;
}

.mjc-hangup {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #E74C3C;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  transition: opacity 0.15s;
}

.mjc-hangup:active {
  opacity: 0.7;
}

/* Toast */
.mjc-toast {
  position: absolute;
  bottom: 56px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #1B3A5C;
  color: white;
  font-size: 11px;
  font-weight: 500;
  padding: 7px 14px;
  border-radius: 8px;
  z-index: 20;
  opacity: 0;
  transition: all 0.25s;
  pointer-events: none;
  white-space: nowrap;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mjc-toast.mjc-show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* Message bubble */
.mjc-bubble {
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 12px;
  line-height: 1.5;
  max-width: 85%;
  margin-bottom: 8px;
}

.mjc-bubble--in {
  background: white;
  color: #2C2C2C;
  border: 0.5px solid #E8E5DE;
  align-self: flex-start;
}

.mjc-bubble--out {
  background: #1B3A5C;
  color: white;
  align-self: flex-end;
}

.mjc-chat-input {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.mjc-chat-input input {
  flex: 1;
  padding: 10px 12px;
  border: 0.5px solid #E8E5DE;
  border-radius: 10px;
  font-size: 12px;
  background: white;
  outline: none;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.mjc-chat-send {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #B8963E;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* ─── Contact email value (smaller for long addresses) ──────────────────────── */
.contact__info-value--email {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  word-break: break-all;
}

/* ─── Footer regulatory link ────────────────────────────────────────────────── */
.footer__regulatory a {
  color: rgba(248, 246, 241, 0.25);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__regulatory a:hover {
  color: var(--gold-light);
}

/* ─── Contact (mobile-first base) ───────────────────────────────────────────── */
.contact {
  background: var(--cream);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: start;
}

.contact__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 3.5vw, 52px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}

.contact__title em {
  font-style: italic;
  color: var(--gold);
}

.contact__subtitle {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 40px;
}

.contact__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact__info-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.contact__info-line {
  width: 1px;
  min-height: 40px;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.contact__info-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 4px;
}

.contact__info-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--navy);
}

.contact__info-address {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--charcoal);
  font-weight: 300;
  white-space: pre-line;
}

/* Form */
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  font-weight: 300;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group textarea {
  resize: vertical;
}

.contact__form-note {
  font-size: 11px;
  color: var(--muted);
  font-weight: 300;
}

/* Form success */
.contact__success {
  background: var(--cream-dark);
  padding: 32px 20px;
  border-left: 3px solid var(--gold);
  text-align: center;
  display: none;
}

.contact__success.show {
  display: block;
}

.contact__success h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 16px;
}

.contact__success p {
  font-size: 14px;
  color: var(--muted);
  font-weight: 300;
}

/* ─── Footer (mobile-first base) ────────────────────────────────────────────── */
.footer {
  background: var(--charcoal);
  color: rgba(248, 246, 241, 0.53);
  padding: 40px 0 0;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  padding-bottom: 48px;
}

.footer__col--brand {
  padding-right: 0;
}

.footer__brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--cream);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 4px;
}

.footer__tagline {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 20px;
}

.footer__desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(248, 246, 241, 0.4);
}

.footer__heading {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__nav li {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.5;
}

.footer__nav a {
  color: rgba(248, 246, 241, 0.5);
  transition: color 0.2s;
}

.footer__nav a:hover {
  color: var(--gold-light);
}

.footer__nav--contact address {
  font-style: normal;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.5);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: center;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid rgba(248, 246, 241, 0.09);
}

.footer__copy {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(248, 246, 241, 0.25);
}

.footer__regulatory {
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(248, 246, 241, 0.25);
}

/* ─── Site Credit (MontPC Standard) ────────────────────────────────────────── */
.site-credit {
  background: var(--charcoal);
  padding: 18px 0 14px;
  text-align: center;
}

.site-credit p {
  margin: 0;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(248, 246, 241, 0.12);
}

.site-credit a {
  color: rgba(248, 246, 241, 0.12);
  text-decoration: none;
  transition: color 0.35s;
}

.site-credit a:hover {
  color: rgba(248, 246, 241, 0.3);
}

/* ─── Responsive (mobile-first: min-width) ──────────────────────────────────── */

/* ── Larger mobile (481px+) ─────────────────────────────────────────────────── */
@media (min-width: 481px) {
  .container {
    padding: 0 20px;
  }

  section {
    padding: 64px 0;
  }

  /* Nav */
  .nav {
    padding: 0 20px;
  }

  .nav__inner {
    padding: 16px 0;
  }

  .nav__logo-mountain {
    width: 120px;
  }

  .nav__logo-name {
    font-size: 20px;
  }

  .nav__logo-tagline {
    font-size: 10px;
  }

  .nav__mobile-close {
    top: 24px;
    right: 32px;
  }

  .nav__mobile-link {
    font-size: 28px;
  }

  /* Hero */
  .hero__content {
    padding: 100px 24px 48px;
  }

  .hero__content::before {
    left: 24px;
    height: 80px;
  }

  .hero__inner {
    padding-left: 20px;
  }

  .hero__title {
    margin-bottom: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 48px;
  }

  .hero__contact-subtle {
    margin-top: 40px;
    padding-top: 32px;
  }

  .hero__photo {
    min-height: 280px;
  }

  .hero__badge {
    bottom: 16px;
    right: 16px;
    padding: 12px 16px;
  }

  .hero__badge-name {
    font-size: 18px;
  }

  /* Buttons */
  .btn-gold {
    font-size: 13px;
    padding: 16px 32px;
    width: auto;
    text-align: center;
  }

  .btn-outline-light {
    font-size: 13px;
    padding: 16px 32px;
    width: auto;
    text-align: center;
  }

  .btn-navy {
    font-size: 13px;
    padding: 14px 28px;
    width: auto;
    text-align: center;
  }

  /* Valeurs */
  .valeurs__card {
    padding: 36px 28px;
  }

  /* Services */
  .services__card {
    padding: 40px 28px;
  }

  .portrait__photo-wrap::after {
    top: 12px;
    left: -12px;
    right: 12px;
    bottom: -12px;
  }

  /* Zone */
  .zone__tags {
    gap: 8px;
  }

  .zone__tag {
    font-size: 13px;
    padding: 8px 18px;
  }

  .zone__map-wrap {
    height: 260px;
  }

  /* Contact */
  .contact__success {
    padding: 48px;
  }

  /* Footer */
  .footer {
    padding: 48px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }
}

/* ── Tablet (769px+) ────────────────────────────────────────────────────────── */
@media (min-width: 769px) {
  .container {
    padding: 0 24px;
  }

  section {
    padding: 96px 0;
  }

  /* Nav — show links, hide burger */
  .nav {
    padding: 0 24px;
  }

  .nav__links {
    display: flex;
    gap: 24px;
  }

  .nav__burger {
    display: none;
  }

  /* Hero — stacked but roomier */
  .hero__content {
    padding: 120px 40px 60px;
    min-height: 70vh;
  }

  .hero__content::before {
    left: 40px;
    height: 120px;
  }

  .hero__inner {
    padding-left: 16px;
  }

  /* FIX: was 340px — too narrow on a full-width single-col hero at 769px */
  .hero__subtitle {
    max-width: 480px;
  }

  .hero__ctas {
    flex-direction: row;
    align-items: center;
  }

  .hero__contact-subtle {
    margin-top: 64px;
  }

  .hero__photo {
    min-height: 320px;
  }

  .hero__badge {
    bottom: 40px;
    right: 40px;
    padding: 20px 24px;
  }

  .hero__badge-name {
    font-size: 22px;
  }

  .hero__badge-role {
    font-size: 11px;
    margin-top: 4px;
  }

  /* Valeurs — 2 columns */
  .valeurs__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .valeurs__intro {
    margin: 28px auto 72px;
  }

  /* Services — 2 columns */
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 64px;
  }

  /* Portrait */
  .portrait__grid {
    gap: 40px;
  }

  .portrait__photo-wrap::after {
    top: 16px;
    left: -16px;
    right: 16px;
    bottom: -16px;
  }

  .portrait__quote {
    font-size: 20px;
  }

  /* Zone */
  .zone__map-wrap {
    height: 320px;
  }

  /* Contact */
  .contact__grid {
    gap: 40px;
  }

  /* Footer — 3 columns */
  .footer {
    padding: 64px 0 0;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }

  .footer__col--brand {
    grid-column: 1 / -1;
    max-width: 480px;
  }

  .footer__bottom {
    flex-direction: row;
    gap: 0;
    text-align: left;
    justify-content: space-between;
    padding: 24px 0;
  }
}

/* ── Small desktop (901px+) ─────────────────────────────────────────────────── */
@media (min-width: 901px) {
  /* Hero — side by side */
  .hero {
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
  }

  .hero__content {
    padding: 100px 40px 60px;
    min-height: auto;
  }

  .hero__photo {
    min-height: auto;
  }

  /* Portrait — side by side */
  .portrait__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  /* App Mobile — side by side */
  .app-mobile__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  /* Contact — side by side */
  .contact__grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

  /* Footer — full 4 columns */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
  }

  .footer__col--brand {
    grid-column: auto;
    max-width: none;
    padding-right: 24px;
  }
}

/* ── Desktop (1025px+) ──────────────────────────────────────────────────────── */
@media (min-width: 1025px) {
  .container {
    padding: 0 32px;
  }

  /* Nav */
  .nav {
    padding: 0 32px;
  }

  .nav__links {
    gap: 40px;
  }

  /* Hero — full desktop */
  .hero__content {
    padding: 120px 64px 80px;
  }

  .hero__content::before {
    left: 64px;
  }

  .hero__inner {
    padding-left: 24px;
  }

  .hero__subtitle {
    max-width: 400px;
  }

  .hero__badge-name {
    font-size: 28px;
  }

  /* Valeurs — 3 columns */
  .valeurs__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .valeurs__card {
    padding: 48px 40px;
  }

  /* Services — 3 columns */
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .services__card {
    padding: 48px 36px;
  }

  /* Portrait */
  .portrait__grid {
    gap: 80px;
  }

  /* Zone — FIX: map height was capped at 320px all the way to desktop */
  .zone__map-wrap {
    height: 420px;
  }

  /* App Mobile */
  .app-mobile__grid {
    gap: 80px;
  }

  /* Contact */
  .contact__grid {
    gap: 80px;
  }
}

/* ─── Breadcrumb ───────────────────────────────────────────────────────────── */
.breadcrumb {
  position: fixed;
  top: 76px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}

.breadcrumb .container {
  padding-top: 18px;
  padding-bottom: 18px;
}

/* push page content below both fixed nav + fixed breadcrumb */
.breadcrumb + main {
  padding-top: 130px;
}

@media (min-width: 769px) {
  .breadcrumb {
    top: 92px;
  }
  .breadcrumb + main {
    padding-top: 150px;
  }
}

.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 0;
  padding: 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--muted);
}

.breadcrumb__list li {
  display: flex;
  align-items: center;
  line-height: 1;
}

.breadcrumb__list li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  border-right: 1.5px solid var(--border);
  border-top: 1.5px solid var(--border);
  transform: rotate(45deg);
  margin: 0 10px;
  flex-shrink: 0;
}

.breadcrumb__list a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}

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

.breadcrumb__list li[aria-current="page"] {
  color: var(--charcoal);
  font-weight: 500;
}

/* ─── Legal Pages ──────────────────────────────────────────────────────────── */
.legal {
  padding: 40px 0 80px;
}

.container--narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 20px;
}

.legal__header {
  margin-bottom: 48px;
}

.legal__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 16px;
}

.legal__subtitle {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

.legal__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}

.legal__section:last-of-type {
  border-bottom: none;
}

.legal__section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 20px;
}

.legal__section h3 {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--navy);
  margin: 24px 0 8px;
}

.legal__section p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 12px;
}

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

.legal__section ul li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  padding-left: 16px;
  position: relative;
  margin-bottom: 8px;
}

.legal__section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.legal__section a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

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

.legal__dl {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 20px;
  font-size: 15px;
  line-height: 1.6;
}

.legal__dl dt {
  font-weight: 500;
  color: var(--navy);
}

.legal__dl dd {
  font-weight: 300;
  color: var(--charcoal);
}

.legal__dl dd a {
  color: var(--navy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color 0.2s;
}

.legal__dl dd a:hover {
  color: var(--gold);
}

.legal__table-wrap {
  overflow-x: auto;
  margin: 16px 0;
}

.legal__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.6;
}

.legal__table th {
  text-align: left;
  font-weight: 600;
  color: var(--navy);
  padding: 10px 12px;
  border-bottom: 2px solid var(--gold);
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.legal__table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  color: var(--charcoal);
}

.legal__table tbody tr:last-child td {
  border-bottom: none;
}

.legal__updated {
  font-size: 12px;
  color: var(--muted);
  font-weight: 300;
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

@media (max-width: 600px) {
  .legal__dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .legal__dl dt {
    margin-top: 12px;
  }

  .legal__dl dt:first-child {
    margin-top: 0;
  }
}

/* ─── Service Pages ────────────────────────────────────────────────────────── */

/* Hero lite — navy background, text-only */
.hero-lite {
  background: var(--navy);
  padding: 40px 0 56px;
  position: relative;
}

.hero-lite .container {
  position: relative;
}

.hero-lite__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero-lite__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 400;
  line-height: 1.15;
  color: var(--cream);
  max-width: 700px;
}

.hero-lite__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  margin-top: 8px;
  font-size: 0.65em;
  line-height: 1.4;
}

/* Service content sections */
.svc {
  padding: 64px 0;
}

.svc--cream {
  background: var(--cream);
}

.svc--cream-dark {
  background: var(--cream-dark);
}

.svc--navy {
  background: var(--navy);
  color: var(--cream);
}

.svc__eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}

.svc__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  margin-bottom: 24px;
}

.svc__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}

.svc--navy .svc__title {
  color: var(--cream);
}

.svc--navy .svc__title em {
  color: var(--gold-light);
}

.svc__lead {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  max-width: 720px;
  margin-bottom: 32px;
}

.svc--navy .svc__lead {
  color: rgba(248, 246, 241, 0.85);
}

.svc__text {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  margin-bottom: 16px;
  max-width: 720px;
}

.svc--navy .svc__text {
  color: rgba(248, 246, 241, 0.8);
}

.svc__h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 500;
  color: var(--navy);
  margin: 32px 0 12px;
  line-height: 1.25;
}

.svc--navy .svc__h3 {
  color: var(--cream);
}

.svc__list {
  list-style: none;
  padding: 0;
  margin: 16px 0 24px;
}

.svc__list li {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  padding-left: 18px;
  position: relative;
  margin-bottom: 6px;
}

.svc__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

.svc--navy .svc__list li {
  color: rgba(248, 246, 241, 0.8);
}

/* Warning / callout box */
.svc__callout {
  border-left: 3px solid var(--gold);
  background: var(--cream-dark);
  padding: 20px 24px;
  margin: 24px 0;
  max-width: 720px;
}

.svc__callout p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

.svc__callout strong {
  font-weight: 500;
  color: var(--navy);
}

/* Inline CTA link */
.svc__cta-inline {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
  margin-top: 8px;
}

.svc__cta-inline:hover {
  color: var(--gold);
}

.svc--navy .svc__cta-inline {
  color: var(--gold-light);
  border-bottom-color: var(--gold-light);
}

.svc--navy .svc__cta-inline:hover {
  color: var(--cream);
  border-bottom-color: var(--cream);
}

/* Domaines grid (intervention areas with icons) */
.svc__domains {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-top: 32px;
}

.svc__domain {
  padding-left: 20px;
  border-left: 2px solid var(--border);
}

.svc__domain:hover {
  border-left-color: var(--gold);
}

.svc__domain h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 8px;
}

.svc__domain p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
  margin: 0;
}

/* Audit steps (numbered process) */
.svc__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 24px 0;
  counter-reset: step;
}

.svc__step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  counter-increment: step;
}

.svc__step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.svc__step-content strong {
  display: block;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 4px;
}

.svc__step-content span {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal);
}

/* Before/after split (case study) */
.svc__split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 32px 0;
  border-radius: 0;
  overflow: hidden;
}

.svc__split-before {
  background: var(--navy);
  padding: 32px 28px;
  color: var(--cream);
}

.svc__split-after {
  background: var(--cream);
  padding: 32px 28px;
  border: 2px solid var(--gold);
  border-top: none;
}

.svc__split-label {
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 12px;
}

.svc__split-before .svc__split-label {
  color: var(--gold-light);
}

.svc__split-after .svc__split-label {
  color: var(--gold);
}

.svc__split h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 12px;
}

.svc__split-before h4 {
  color: var(--cream);
}

.svc__split-after h4 {
  color: var(--navy);
}

.svc__split p, .svc__split li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
}

.svc__split-before p, .svc__split-before li {
  color: rgba(248, 246, 241, 0.8);
}

.svc__split-after p, .svc__split-after li {
  color: var(--charcoal);
}

.svc__split ul {
  list-style: none;
  padding: 0;
  margin: 8px 0 0;
}

.svc__split li {
  padding-left: 16px;
  position: relative;
  margin-bottom: 4px;
}

.svc__split-before li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold-light);
}

.svc__split-after li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 13px;
}

/* FAQ section */
.svc-faq {
  padding: 64px 0;
  background: var(--cream);
}

.svc-faq__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 32px;
  text-align: center;
}

.svc-faq__list {
  max-width: 720px;
  margin: 0 auto;
}

.svc-faq__item {
  border-bottom: 1px solid var(--border);
}

.svc-faq__item:first-child {
  border-top: 1px solid var(--border);
}

.svc-faq__q {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 40px 20px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  position: relative;
  line-height: 1.5;
}

.svc-faq__q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.25s;
}

.svc-faq__item.open .svc-faq__q::after {
  content: '−';
}

.svc-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s ease;
}

.svc-faq__item.open .svc-faq__a {
  max-height: 300px;
}

.svc-faq__a p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal);
  padding: 0 0 20px;
}

/* CTA final section */
.svc-cta {
  padding: 64px 0;
  background: var(--navy);
  text-align: center;
}

.svc-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 12px;
}

.svc-cta__sub {
  font-size: 15px;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.7);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.svc-cta__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.svc-cta__secondary {
  font-size: 14px;
  font-weight: 300;
  color: rgba(248, 246, 241, 0.5);
  transition: color 0.2s;
}

.svc-cta__secondary:hover {
  color: var(--gold-light);
}

/* Service page responsive */
@media (min-width: 769px) {
  .hero-lite {
    padding: 64px 0 72px;
  }

  .svc {
    padding: 80px 0;
  }

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

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

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

  .svc__split-after {
    border-top: 2px solid var(--gold);
    border-left: none;
  }

  .svc-faq {
    padding: 80px 0;
  }

  .svc-cta {
    padding: 80px 0;
  }

  .svc-cta__buttons {
    flex-direction: row;
    justify-content: center;
    gap: 24px;
  }
}

@media (min-width: 1025px) {
  .svc {
    padding: 96px 0;
  }

  .svc-faq {
    padding: 96px 0;
  }

  .svc-cta {
    padding: 96px 0;
  }
}

/* ── Cross-browser / compatibility ──────────────────────────────────────────── */

/* iOS Safari: prevent auto-zoom on form inputs */
@supports (-webkit-touch-callout: none) {
  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}

/* Ensure minimum touch target sizes */
@media (pointer: coarse) {
  .nav__burger {
    min-width: 44px;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav__mobile-close {
    min-width: 44px;
    min-height: 44px;
  }

  .nav__link,
  .nav__phone {
    padding: 8px 4px;
  }

  .footer__nav a {
    padding: 4px 0;
    display: inline-block;
  }

  .zone__tag {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

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

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav,
  .nav__inner,
  .nav__link,
  .nav__phone,
  .valeurs__card,
  .services__card,
  .footer__nav a {
    transition: none;
  }
}

/* Landscape phones */
@media (max-height: 500px) and (orientation: landscape) {
  .hero {
    min-height: auto;
  }

  .hero__content {
    padding-top: 80px;
    padding-bottom: 40px;
    min-height: auto;
  }

  .nav__mobile-menu {
    overflow-y: auto;
    gap: 20px;
    padding: 60px 20px 20px;
    justify-content: flex-start;
  }

  .nav__mobile-link {
    font-size: 22px;
  }
}

/* ─── Safe area for notched devices ─────────────────────────────────────────── */
@supports (padding: env(safe-area-inset-top)) {
  .nav {
    padding-top: env(safe-area-inset-top);
  }

  /* FIX: use max() to guarantee minimum padding on devices without notch
     (env() resolves to 0 on non-notched devices, which wipes all padding) */
  .nav__mobile-menu {
    padding:
      max(20px, env(safe-area-inset-top))
      max(20px, env(safe-area-inset-right))
      max(20px, env(safe-area-inset-bottom))
      max(20px, env(safe-area-inset-left));
  }

  .site-credit {
    padding-bottom: max(12px, env(safe-area-inset-bottom));
  }
}
