/* ============================================================
   YES CONCIERGERIE — Pages internes
   Patterns spécifiques aux 12 pages secondaires
   Charge APRÈS styles.css
   ============================================================ */

/* ============ PAGE HERO ============ */

.page-hero {
  position: relative;
  padding: 160px 0 100px;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.page-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  filter: brightness(0.55) saturate(1.1);
}
.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42, 36, 25, 0.45) 0%, rgba(42, 36, 25, 0.7) 100%);
}
.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFB897;
  margin-bottom: 18px;
  padding: 7px 14px;
  background: rgba(200, 101, 74, 0.22);
  border: 1px solid rgba(232, 166, 147, 0.35);
  border-radius: 999px;
}
.page-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: #FFFFFF;
  max-width: 22ch;
  margin-bottom: 22px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.35);
}
.page-hero__title em {
  font-style: normal;
  color: #FFB897;
}
.page-hero__lead {
  font-size: 19px;
  line-height: 1.55;
  color: rgba(247, 241, 232, 0.92);
  max-width: 60ch;
  margin: 0 0 28px;
}
.page-hero__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ============ KPI HERO BAND ============ */

.kpi-band {
  background: var(--cream);
  padding: 40px 0;
}
.kpi-band__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.kpi {
  text-align: center;
}
.kpi__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 3.4vw, 52px);
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.018em;
  display: block;
  margin-bottom: 6px;
}
.kpi__lbl {
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}

/* ============ SERVICES RONDS (Locataire pattern image #9) ============ */

.services-round {
  padding: 64px 0;
  background: var(--cream);
}
.services-round__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 56px;
}
.svc-round {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 40px 28px 32px;
  text-align: center;
  border: 1px solid var(--line);
  transition: all 280ms cubic-bezier(.2,.7,.2,1);
}
.svc-round:hover {
  transform: translateY(-4px);
  border-color: var(--terracotta-soft);
  box-shadow: var(--shadow-soft);
}
.svc-round__img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 22px;
  background: var(--cream);
}
.svc-round__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.svc-round h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
  letter-spacing: -0.005em;
}
.svc-round p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

/* ============ TIMELINE (Qui sommes-nous pattern image #10) ============ */

.timeline-section {
  padding: 72px 0;
  background: var(--cream);
}
.timeline-section__head {
  text-align: center;
  margin-bottom: 60px;
}
.timeline-section__head .display {
  margin: 0 auto 18px;
  max-width: 16ch;
}
.timeline-section__head::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: var(--terracotta);
  margin: 18px auto 0;
  border-radius: 2px;
}
.timeline-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1080px;
  margin: 0 auto;
}
.timeline-photo {
  align-self: start;
}
.timeline-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r-lg);
  display: block;
}
.timeline {
  position: relative;
  padding-left: 32px;
  list-style: none;
  max-height: 680px;
  overflow-y: auto;
  padding-right: 18px;
  scrollbar-width: thin;
  /* Rail vertical qui suit le défilement interne (toute la hauteur du contenu) */
  background-image: linear-gradient(180deg,
    color-mix(in srgb, var(--terracotta) 50%, transparent),
    color-mix(in srgb, var(--terracotta-soft) 50%, transparent));
  background-repeat: no-repeat;
  background-position: 7px 14px;
  background-size: 2px calc(100% - 28px);
  background-attachment: local;
}
.timeline-item {
  position: relative;
  padding-bottom: 40px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-item::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--terracotta);
  border: 3px solid var(--cream);
  border-radius: 50%;
  box-shadow: 0 0 0 2px var(--terracotta);
}
.timeline-year {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--terracotta);
  display: block;
  margin-bottom: 6px;
}
.timeline-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
}
.timeline-desc {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============ MARKET SECTION (image #11) ============ */

.market {
  padding: 72px 0;
  background: var(--cream);
}
.market__head {
  text-align: center;
  margin-bottom: 64px;
}
.market__head .display::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px auto 0;
  border-radius: 2px;
}
.market__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.market-blocks { display: flex; flex-direction: column; gap: 32px; text-align: center; }
.market-block h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--ink);
  margin: 0 0 22px;
  text-align: center;
}
.market-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-items: center;
}
.market-stats > div { text-align: center; }
.market-stat__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 28px;
  color: var(--terracotta);
  line-height: 1.1;
  display: block;
  margin-bottom: 4px;
}
.market-stat__lbl {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.4;
  text-align: center;
}
.market__media img,
.market__media video {
  width: 100%;
  border-radius: var(--r-lg);
  aspect-ratio: 16/10;
  object-fit: cover;
  display: block;
}

/* ============ SOCIAL PROOF (videos temoignages) ============ */
.social-proof { padding: 80px 0; background: var(--white); }
.social-proof__head { text-align: center; margin-bottom: 44px; }
.social-proof__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.social-proof__item { display: flex; flex-direction: column; gap: 14px; }
.social-proof__item video { width: 100%; border-radius: var(--r-lg); aspect-ratio: 16/9; object-fit: cover; background: #0e0e0e; box-shadow: 0 18px 44px rgba(42,36,25,0.14); display: block; }
.social-proof__name { text-align: center; font-weight: 600; color: var(--ink); font-size: 17px; }
.social-proof__role { display: block; margin-top: 3px; font-weight: 400; font-size: 14px; color: var(--ink-soft); }
@media (max-width: 760px) { .social-proof__grid { grid-template-columns: 1fr; gap: 22px; } .social-proof { padding: 56px 0; } }

/* ============ PARCOURS CARDS (image #12) ============ */

.parcours {
  padding: 72px 0;
  background: var(--white);
}
.parcours__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 56px;
}
/* Section "Ce que comprend l'accompagnement Yes" */
.includes { padding: 84px 0; background: var(--white); }
.includes .section-head { text-align: center; margin-bottom: 52px; }
.includes .section-head .lead { max-width: 620px; margin: 14px auto 0; }
.includes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.include-card {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 32px 28px;
}
.include-card .profile-icon { margin: 0 0 18px; }
.include-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.include-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0; }
@media (max-width: 900px) {
  .includes__grid { grid-template-columns: repeat(2, 1fr); }
  .parcours__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .includes__grid { grid-template-columns: 1fr; }
}
.parcours-card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
}
.parcours-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.parcours-card:hover img { transform: scale(1.04); }
.parcours-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
}
.parcours-card h3 {
  position: absolute;
  bottom: 28px;
  left: 28px;
  right: 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--cream);
  letter-spacing: -0.01em;
  margin: 0;
  z-index: 1;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

/* ============ PROFILS (image #13) ============ */

.profiles {
  padding: 72px 0;
  background: var(--cream);
}
.profiles__head { text-align: center; margin-bottom: 56px; }
.profiles__head .display::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px auto 0;
  border-radius: 2px;
}
.profiles__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
.profile-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 28px 22px;
  text-align: center;
  border: 1px solid var(--line);
}
.profile-icon {
  width: 56px;
  height: 56px;
  background: rgba(200, 101, 74, 0.1);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  color: var(--terracotta);
}
.profile-icon svg { width: 26px; height: 26px; }
.profile-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.2;
}
.profile-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.team-rail {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.team-rail__img {
  aspect-ratio: 1/1;
  border-radius: var(--r-md);
  overflow: hidden;
  background: var(--white);
}
.team-rail__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.faq {
  padding: 64px 0;
  background: var(--white);
}
.faq__inner { max-width: 820px; margin: 0 auto; padding: 0 var(--gutter); }
.faq__head { margin-bottom: 48px; text-align: center; }
.faq__head .display::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px auto 0;
  border-radius: 2px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 0;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 200ms;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--terracotta); }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 24px;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 280ms;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item__body {
  padding: 0 0 24px;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}
.faq-item__body p { margin: 0 0 12px; }
.faq-item__body p:last-child { margin: 0; }
/* FAQ : questions plus compactes sur mobile/tablette + fenêtres étroites */
@media (max-width: 820px) {
  .faq-item summary { font-size: 15px; gap: 12px; line-height: 1.35; padding-top: 16px; padding-bottom: 16px; }
  .faq-item summary h3 { font-size: 15px; }
  .faq-item summary::after { font-size: 20px; }
  .faq-item__body { font-size: 15px; }
}
.faq-cat {
  margin: 48px 0 16px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.faq-cat:first-child { margin-top: 0; }

/* ============ STEPS (Devenir Franchisé processus) ============ */

.steps {
  padding: 72px 0;
  background: var(--white);
}
.steps__head { text-align: center; margin-bottom: 56px; }
.steps__head .display::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px auto 0;
  border-radius: 2px;
}
/* Parcours / chemin (timeline verticale zigzag) */
.journey {
  position: relative;
  max-width: 880px;
  margin: 0 auto;
  padding: 8px var(--gutter) 0;
}
.journey::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 30px;
  bottom: 30px;
  width: 2px;
  background: linear-gradient(180deg, var(--terracotta), rgba(200, 101, 74, 0.22));
  transform: translateX(-50%);
}
.milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 72px 1fr;
  align-items: center;
}
.milestone__node {
  grid-column: 2;
  justify-self: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 7px var(--white), 0 10px 24px -10px rgba(200, 101, 74, 0.7);
  z-index: 1;
}
.milestone__content { padding: 26px 0; }
.milestone:nth-child(odd) .milestone__content {
  grid-column: 1;
  text-align: right;
  padding-right: 42px;
}
.milestone:nth-child(even) .milestone__content {
  grid-column: 3;
  padding-left: 42px;
}
.milestone__when {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 4px 10px;
  background: rgba(200, 101, 74, 0.14);
  color: var(--terracotta);
  border-radius: 4px;
  margin-bottom: 12px;
}
.milestone__content h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.25;
}
.milestone__content p {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
  max-width: 360px;
}
.milestone:nth-child(odd) .milestone__content p { margin-left: auto; }

/* ============ NOS ADRESSES — GRILLE FRANCHISES ============ */

.adresses {
  padding: 64px 0;
  background: var(--white);
}
.adresses__filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 56px;
}
.filter-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ink-soft);
  background: var(--cream);
  cursor: pointer;
  transition: all 200ms;
  border: none;
}
.filter-pill:hover { color: var(--ink); }
.filter-pill--active {
  background: var(--ink);
  color: var(--cream);
}
.adresses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.adresse-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 260ms cubic-bezier(.2,.7,.2,1);
  text-decoration: none;
}
.adresse-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: var(--shadow-soft);
}
.adresse-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream);
}
.adresse-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms;
}
.adresse-card:hover .adresse-card__img img { transform: scale(1.04); }
.adresse-card__body {
  padding: 18px 20px 22px;
}
.adresse-card__region {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 6px;
}
.adresse-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 6px;
  color: var(--ink);
}
.adresse-card__cta {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.adresse-card__cta::after {
  content: "→";
  color: var(--terracotta);
  transition: transform 200ms;
}
.adresse-card:hover .adresse-card__cta::after { transform: translateX(3px); }

/* ============ PRESSE ============ */

.press-section {
  padding: 64px 0;
  background: var(--cream);
}
.press-section__head { text-align: center; margin-bottom: 60px; }
.press-section__head .display::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  background: var(--terracotta);
  margin: 20px auto 0;
  border-radius: 2px;
}
.press-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}
.press-card-rich {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  transition: all 260ms;
}
.press-card-rich:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: var(--shadow-soft);
}
.press-card-rich__img {
  background: var(--cream);
  overflow: hidden;
}
.press-card-rich__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-card-rich__body {
  padding: 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.press-card-rich__media {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.press-card-rich h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
  margin: 0;
}
.press-card-rich p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.5;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.video-card {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: all 260ms;
  display: block;
  text-decoration: none;
}
.video-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
}
.video-card__thumb {
  aspect-ratio: 16/9;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.video-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
.video-card__thumb::after {
  content: "▶";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--cream);
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.video-card__body { padding: 18px 20px 22px; }
.video-card__media {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
  display: block;
}
.video-card h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0;
  color: var(--ink);
  line-height: 1.25;
}

.press-logos-rail {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 36px 56px;
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 60px 0;
}
.press-logos-rail span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 19px;
  color: var(--ink-mute);
  opacity: 0.7;
}

/* ============ CONTACT ============ */

.contact-section {
  padding: 56px 0 72px;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-channels { display: flex; flex-direction: column; gap: 18px; }
.contact-channel {
  display: flex;
  gap: 18px;
  padding: 18px 22px;
  background: var(--cream);
  border-radius: var(--r-md);
  text-decoration: none;
  transition: all 220ms;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  width: 100%;
  position: relative;
}
.contact-channel:hover {
  border-color: var(--terracotta-soft);
  transform: translateX(4px);
}
.contact-channel.is-active {
  border-color: var(--terracotta);
  background: rgba(200, 101, 74, 0.08);
  box-shadow: 0 2px 12px -6px rgba(200, 101, 74, 0.3);
}
.contact-channel.is-active::after {
  content: "✓";
  position: absolute;
  top: 18px;
  right: 20px;
  width: 24px;
  height: 24px;
  background: var(--terracotta);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}
.contact-channel__icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--white);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.contact-channel__icon svg { width: 22px; height: 22px; }
.contact-channel__body { flex: 1; min-width: 0; }
.contact-channel h3 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 4px;
  color: var(--ink);
}
.contact-channel p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin: 0 0 6px;
  line-height: 1.5;
}
.contact-channel__link {
  font-size: 12px;
  color: var(--terracotta);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.contact-channel__link:hover { text-decoration: underline; }
.contact-form {
  background: var(--cream);
  padding: 36px 32px;
  border-radius: var(--r-lg);
}
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}
.contact-form .sub {
  font-size: 14px;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  color: var(--ink);
  transition: border-color 180ms;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--terracotta);
}
.field textarea { min-height: 110px; resize: vertical; }

.offices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.office {
  padding: 24px 26px;
  background: var(--cream);
  border-radius: var(--r-md);
}
.office h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}
.office p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* ============ ESTIMATEUR ============ */

.estimator {
  padding: 64px 0;
  background: var(--cream);
}
.estimator__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.estimator__head { text-align: center; margin-bottom: 48px; max-width: 720px; margin-left: auto; margin-right: auto; }
.estimator__embed { width: 100%; max-width: 1200px; margin: 0 auto; }
.estimator__embed iframe { display: block; width: 100%; min-height: 720px; }
.estimator-form {
  background: var(--white);
  padding: 40px 36px;
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
}
.estimator-form .fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.estimator-form .field--full { grid-column: 1 / -1; }
.estimator__cta {
  margin-top: 24px;
  text-align: center;
}

/* ============ BREADCRUMB ============ */

.crumb {
  font-size: 13px;
  color: rgba(247, 241, 232, 0.7);
  margin-bottom: 20px;
}
.crumb a { color: rgba(247, 241, 232, 0.9); border-bottom: 1px solid transparent; }
.crumb a:hover { border-bottom-color: var(--terracotta-soft); }
.crumb span { color: #FFB897; }

/* ============ DENSE TEXT (sous-pages) ============ */

.long-text {
  padding: 64px 0;
  background: var(--white);
}
.long-text__inner {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.long-text h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
  color: var(--ink);
  letter-spacing: -0.012em;
  margin: 56px 0 18px;
  line-height: 1.2;
}
.long-text h2:first-child { margin-top: 0; }
.long-text h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  color: var(--ink);
  margin: 36px 0 14px;
}
.long-text p {
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin: 0 0 18px;
}
.long-text ul {
  padding-left: 0;
  margin: 0 0 24px;
  list-style: none;
}
.long-text ul li {
  position: relative;
  padding-left: 28px;
  font-size: 17px;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 10px;
}
.long-text ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 14px;
  height: 2px;
  background: var(--terracotta);
}
.long-text strong { color: var(--ink); font-weight: 600; }

.callout {
  background: var(--cream);
  padding: 28px 32px;
  border-radius: var(--r-md);
  border-left: 4px solid var(--terracotta);
  margin: 32px 0;
}
.callout p:last-child { margin-bottom: 0; }

.projections {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: 32px 28px;
  margin: 28px 0;
}
.projections__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.projections__row + .projections__row {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.projections__lbl {
  display: block;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.projections__val {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  color: var(--ink);
  margin-top: 6px;
}
.projections__val--terra { color: var(--terracotta); }

/* ============ VIDÉOS TÉMOIGNAGES (home) ============ */
.testi-videos { margin-top: 72px; }
.testi-videos__head { text-align: center; margin-bottom: 36px; }
.testi-videos__head .eyebrow { display: inline-block; }
.testi-videos__head h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(24px, 3vw, 34px);
  color: var(--ink);
  margin: 10px 0 0;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.testi-videos__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.testi-video { margin: 0; border-radius: var(--r-md); overflow: hidden; background: var(--ink); aspect-ratio: 16/9; }
.testi-video video { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ============ CALENDLY SECTION (contact) ============ */
.calendly-section {
  margin-top: 96px;
  padding-top: 64px;
  border-top: 1px solid var(--line);
}
.calendly-section .section-head { margin-bottom: 36px; }
.calendly-inline-widget { background: var(--white); border-radius: var(--r-md); overflow: hidden; }
@media (max-width: 820px) {
  .calendly-section { margin-top: 64px; padding-top: 48px; }
}

.cta-inline {
  margin: 40px 0;
  padding: 36px 36px;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-inline h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  color: var(--cream);
}

/* ============ PRESSE & MÉDIA (style Annecy) ============ */

.press-banner {
  padding: 40px 0 48px;
  background: var(--cream);
  overflow: hidden;
}
.press-banner__head {
  text-align: center;
  margin-bottom: 22px;
}
.press-banner__label {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.press-banner__marquee {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.press-banner__rail {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 8px var(--gutter);
  width: max-content;
}
.press-banner__logo {
  height: 44px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  opacity: 1;
  transition: transform 240ms ease;
}
.press-banner__logo:hover {
  transform: translateY(-2px);
}
.press-banner__logo img {
  height: 100%;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  display: block;
}
@media (max-width: 820px) {
  .press-banner__logo { height: 32px; }
  .press-banner__rail { gap: 48px; }
}

.press-articles {
  padding: 96px 0;
  background: var(--white);
}
.press-articles__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.press-article {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  align-items: center;
  transition: all 260ms cubic-bezier(.2,.7,.2,1);
}
.press-article:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 14px 32px -18px rgba(42, 36, 25, 0.18);
}
.press-article__media {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--cream);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
}
.press-article__media--photo { padding: 0; }
.press-article__media--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.press-article__media--logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.press-article__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.press-article__source {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.press-article__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.005em;
}
.press-article__body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 4px 0 8px;
}

.press-videos {
  padding: 96px 0;
  background: var(--cream);
}
.press-videos__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.press-video {
  background: var(--white);
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: all 260ms;
}
.press-video:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 14px 32px -18px rgba(42, 36, 25, 0.18);
}
.press-video__player {
  aspect-ratio: 16/9;
  background: var(--ink);
  position: relative;
}
.press-video__player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.press-video__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.press-video__source {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.press-video__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0;
  line-height: 1.25;
}
.press-video__body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 1080px) {
  .press-articles__grid { grid-template-columns: 1fr; }
  .press-videos__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  .press-articles, .press-videos { padding: 64px 0; }
  .press-article { grid-template-columns: 120px 1fr; gap: 20px; padding: 22px 22px; }
  .press-videos__grid { grid-template-columns: 1fr; }
  .press-banner__rail { gap: 40px; }
  .press-banner__logo { font-size: 18px; }
}

/* ============ PRESSE — FEATURED + CARDS (style Annecy adapté) ============ */

.press-feature {
  padding: 96px 0;
  background: var(--white);
}
.press-feature .section-head { margin-bottom: 56px; }

.press-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}
.press-badge {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1;
}
.press-badge--soft {
  background: var(--cream);
  color: var(--ink);
  border: 1px solid var(--line);
}

.press-featured {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 36px;
  align-items: center;
  padding: 32px;
  background: var(--cream);
  border-radius: var(--r-md);
  margin-bottom: 32px;
}
.press-featured__media {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--r-sm);
  overflow: hidden;
  background: var(--ink);
}
.press-featured__media video,
.press-featured__media iframe,
.press-featured__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border: 0;
}
.press-featured__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 28px);
  color: var(--ink);
  margin: 0 0 14px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.press-featured__body p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
}

.press-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}
.press-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: all 260ms cubic-bezier(.2,.7,.2,1);
}
.press-card:hover {
  transform: translateY(-3px);
  border-color: var(--terracotta-soft);
  box-shadow: 0 14px 32px -18px rgba(42, 36, 25, 0.18);
}
.press-card__media {
  position: relative;
  aspect-ratio: 16/9;
  background: var(--ink);
  overflow: hidden;
}
.press-card__media video,
.press-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}
.press-card__media--paper {
  aspect-ratio: 4/3;
  background: var(--cream);
}
.press-card__media--paper img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.press-card__body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
}
.press-card__body h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 8px;
  line-height: 1.3;
  letter-spacing: -0.005em;
}
.press-card__body p {
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

.press-video__player--iframe iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.press-video__player--iframe { position: relative; }

@media (max-width: 980px) {
  .press-featured { grid-template-columns: 1fr; padding: 22px; gap: 22px; }
}
@media (max-width: 820px) {
  .press-feature { padding: 64px 0; }
  .press-row { grid-template-columns: 1fr; gap: 20px; margin-bottom: 20px; }
}

/* ============ CARTE INTERACTIVE (Nos adresses) ============ */

.map-section {
  padding: 80px 0 32px;
  background: var(--white);
}
.map-legend {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: -16px 0 32px;
  font-size: 14px;
  color: var(--ink-soft);
}
.map-legend span { display: inline-flex; align-items: center; gap: 8px; }
.map-legend .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  display: inline-block;
}
.map-legend .dot--active { background: #F26A3F; box-shadow: 0 0 0 4px rgba(242, 106, 63, 0.18); }
.map-legend .dot--point { background: var(--white); border: 2px solid #F26A3F; }

.yes-map {
  width: 100%;
  height: 560px;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 12px 32px -20px rgba(42, 36, 25, 0.2);
}
@media (max-width: 820px) {
  .yes-map { height: 420px; }
  .map-section { padding: 56px 0 24px; }
}

/* Marqueurs custom */
.yes-marker {
  background: transparent !important;
  border: none !important;
}
.yes-marker__dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #F26A3F;
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px #F26A3F, 0 4px 12px rgba(242, 106, 63, 0.55);
  transition: transform 200ms ease;
}
.yes-marker--point .yes-marker__dot {
  background: var(--white);
  box-shadow: 0 0 0 2px #F26A3F, 0 4px 10px rgba(42, 36, 25, 0.18);
}
.yes-marker:hover .yes-marker__dot { transform: scale(1.18); }

/* Popup style Yes */
.leaflet-popup.yes-popup .leaflet-popup-content-wrapper {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 0;
  box-shadow: 0 20px 40px -16px rgba(42, 36, 25, 0.25);
  overflow: hidden;
  border: 1px solid var(--line);
}
.leaflet-popup.yes-popup .leaflet-popup-content { margin: 0; width: 240px !important; }
.leaflet-popup.yes-popup .leaflet-popup-tip { background: var(--white); }
.leaflet-popup.yes-popup .leaflet-popup-close-button {
  color: var(--ink);
  font-size: 20px;
  font-weight: 400;
  padding: 6px 10px;
  z-index: 2;
}

.map-popup { display: flex; flex-direction: column; }
.map-popup__img {
  aspect-ratio: 16/10;
  background: var(--cream);
  overflow: hidden;
}
.map-popup__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.map-popup__body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.map-popup__region {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
}
.map-popup__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  color: var(--ink);
  margin: 0;
  letter-spacing: -0.01em;
}
.map-popup__cta {
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--terracotta);
  text-decoration: none;
  transition: gap 200ms;
}
.map-popup__cta:hover { gap: 8px; }

/* Témoignages sur fond cream : cards blanches pour contraste */
.testimonials--on-cream .testi {
  background: var(--white);
  box-shadow: 0 12px 32px -20px rgba(42, 36, 25, 0.18);
  border: 1px solid var(--line);
}

/* ============ YES EXCURSIONS (Voyageurs) ============ */

.yes-excursions {
  padding: 96px 0;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
}
.yes-excursions__grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}
.yes-excursions__intro { max-width: 520px; }
.exc-eyebrow {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--terracotta-soft);
  margin-bottom: 22px;
}
.exc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.022em;
  color: var(--cream);
  margin: 0 0 24px;
}
.exc-title em { font-style: normal; color: var(--terracotta); }
.exc-lead {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(247, 241, 232, 0.78);
  margin: 0 0 24px;
}
.exc-list {
  margin: 0 0 32px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.exc-list li {
  position: relative;
  padding-left: 22px;
  font-size: 15.5px;
  line-height: 1.55;
  color: rgba(247, 241, 232, 0.85);
}
.exc-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--terracotta);
  font-size: 18px;
  line-height: 1.4;
}
.exc-list strong { color: var(--cream); font-weight: 600; }
.exc-cta {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.yes-excursions__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.exc-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink);
  text-decoration: none;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.exc-card:hover { transform: translateY(-4px); }
.exc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.exc-card:hover img { transform: scale(1.06); }
.exc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.75) 100%);
  pointer-events: none;
}
.exc-card__season {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  background: var(--terracotta);
  color: var(--cream);
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px -8px rgba(224, 90, 74, 0.6);
}
.exc-card h3 {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  line-height: 1.2;
  color: var(--cream);
  margin: 0;
  letter-spacing: -0.01em;
}

@media (max-width: 1080px) {
  .yes-excursions__grid { grid-template-columns: 1fr; gap: 40px; }
  .yes-excursions__intro { max-width: 100%; }
  .yes-excursions__cards { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; }
}
@media (max-width: 820px) {
  .yes-excursions { padding: 64px 0; }
  .yes-excursions__cards { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .exc-card h3 { font-size: 16px; bottom: 14px; left: 14px; right: 14px; }
  .exc-card__season { font-size: 10px; padding: 5px 10px; top: 12px; left: 12px; }
  .exc-cta { gap: 14px; }
}
@media (max-width: 520px) {
  .yes-excursions__cards { grid-template-columns: 1fr 1fr; }
  .exc-card { aspect-ratio: 1/1; }
}

/* ============ HERO SPLIT (page Propriétaire) ============ */

.hero-split {
  padding-top: 80px;
  padding-bottom: 64px;
  background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 100%);
  overflow: hidden;
}
.hero-split__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 580px;
}
.hero-split__content { padding: 24px 0; }
.hero-split__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  margin-bottom: 22px;
  box-shadow: 0 4px 14px -8px rgba(42, 36, 25, 0.18);
}
.hero-split__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 4.4vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0 0 22px;
  max-width: 14ch;
}
.hero-split__title em {
  font-style: normal;
  color: var(--terracotta);
}
.hero-split__lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 50ch;
  margin: 0 0 32px;
}
.hero-split__cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-split__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px -28px rgba(42, 36, 25, 0.35);
}
.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}
.hero-split__badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--terracotta);
  color: var(--cream);
  padding: 10px 18px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 20px -10px rgba(200, 101, 74, 0.55);
}

@media (max-width: 980px) {
  .hero-split__inner { grid-template-columns: 1fr; gap: 32px; min-height: auto; }
  .hero-split__media { aspect-ratio: 4/3; max-width: 560px; }
}

/* ============ VISION FONDATEUR (Propriétaire) ============ */

.vision {
  padding: 72px 0;
  background: var(--white);
}
.vision__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: center;
}
.vision__photo { margin: 0; position: relative; }
.vision__photo img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
}
.vision__photo figcaption {
  position: absolute;
  bottom: 22px;
  left: 22px;
  background: rgba(42, 36, 25, 0.85);
  color: var(--cream);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.vision__text .display { margin-bottom: 22px; }
.vision__cta {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}

/* ============ CE QUI NOUS DISTINGUE (4 piliers) ============ */

.distinguish {
  padding: 72px 0;
  background: var(--cream);
}
.distinguish__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.pillar {
  text-align: center;
  padding: 36px 26px;
}
.pillar__img {
  width: 168px;
  height: 168px;
  margin: 0 auto 24px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream);
  border: 3px solid var(--white);
  box-shadow: 0 12px 32px -16px rgba(42, 36, 25, 0.25);
  transition: all 320ms cubic-bezier(.2,.7,.2,1);
}
.pillar__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.pillar:hover .pillar__img {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -16px rgba(42, 36, 25, 0.35);
}
.pillar:hover .pillar__img img { transform: scale(1.08); }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 10px;
  line-height: 1.25;
}
.pillar p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============ SERVICES AVEC ILLUSTRATIONS ============ */

.svc--illus .svc__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.svc--illus .svc__num { margin-bottom: 0; }
.svc__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(200, 101, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  transition: all 260ms cubic-bezier(.2,.7,.2,1);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc--illus:hover .svc__icon {
  background: var(--terracotta);
  color: var(--cream);
  transform: rotate(-4deg);
}

/* ============ EXPERTISE (Équipe Yes, 5 numérotés) ============ */

.expertise {
  padding: 72px 0;
  background: var(--white);
}
.expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 64px;
  align-items: center;
}
.expertise__media img {
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
  border-radius: var(--r-lg);
}
.expertise-list {
  padding: 0;
  margin: 0;
  list-style: none;
}
.expertise-list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.expertise-list li:first-child { padding-top: 0; }
.expertise-list li:last-child { border-bottom: none; padding-bottom: 0; }
.expertise-list__num {
  font-family: var(--font-display);
  font-weight: 600;
  font-style: italic;
  font-size: 32px;
  color: var(--terracotta);
  line-height: 1;
  letter-spacing: -0.01em;
}
.expertise-list h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  color: var(--ink);
  margin: 0 0 6px;
}
.expertise-list p {
  font-size: 15px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============ OUTILS & TECHNOLOGIE ============ */

.tools {
  padding: 72px 0;
  background: var(--cream);
}
.tools__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.tools__media img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-soft);
}
.tools-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.tool {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 22px 22px;
  background: var(--white);
  border-radius: var(--r-md);
  border: 1px solid var(--line);
  transition: all 240ms cubic-bezier(.2,.7,.2,1);
}
.tool:hover {
  transform: translateX(4px);
  border-color: var(--terracotta-soft);
}
.tool__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--r-sm);
  background: rgba(200, 101, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
}
.tool__icon svg { width: 28px; height: 28px; }
.tool h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 6px;
}
.tool p {
  font-size: 14.5px;
  color: var(--ink-soft);
  margin: 0;
  line-height: 1.55;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1080px) {
  .services-round__grid { grid-template-columns: repeat(2, 1fr); }
  .profiles__grid { grid-template-columns: repeat(3, 1fr); }
  .team-rail { grid-template-columns: repeat(3, 1fr); }
  .adresses-grid { grid-template-columns: repeat(3, 1fr); }
  .journey { max-width: 100%; }
  .journey::before { left: 26px; }
  .milestone { grid-template-columns: 52px 1fr; }
  .milestone__node { grid-column: 1; width: 52px; height: 52px; font-size: 20px; box-shadow: 0 0 0 5px var(--white); }
  .milestone:nth-child(odd) .milestone__content, .milestone:nth-child(even) .milestone__content { grid-column: 2; text-align: left; padding: 16px 0 16px 22px; }
  .milestone:nth-child(odd) .milestone__content p { margin-left: 0; }
  .milestone__content p { max-width: none; }
  .press-grid-2 { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: repeat(2, 1fr); }
  .parcours__grid { grid-template-columns: 1fr; }
  .timeline-wrap { grid-template-columns: 1fr; }
  .timeline { max-height: none; overflow: visible; padding-right: 0; }
  .timeline-photo { position: static; max-width: 320px; }
  .market__grid { grid-template-columns: 1fr; }
  .distinguish__grid { grid-template-columns: repeat(2, 1fr); }
  .vision__grid, .expertise__grid, .tools__grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 820px) {
  .page-hero { padding: 120px 0 80px; }
  .video-grid { grid-template-columns: 1fr 1fr; }
  .services-round__grid { grid-template-columns: 1fr; gap: 18px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .svc-round { padding: 24px 22px 22px; }
  .svc-round__img { width: 120px; height: 120px; margin-bottom: 16px; }
  .svc-round h3 { font-size: 17px; }
  .svc-round p { font-size: 14px; line-height: 1.5; }
  .services-round { padding: 48px 0; }
  .adresses-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .filter-pill { padding: 5px 11px; font-size: 11.5px; }
  .filter-pills { gap: 6px; margin-bottom: 32px; }
  .adresse-card__body { padding: 12px 12px 14px; }
  .adresse-card h3 { font-size: 14px; line-height: 1.25; }
  .adresse-card__region { font-size: 9px; letter-spacing: 0.14em; }
  .adresse-card__cta { font-size: 11px; margin-top: 6px; }
  .profiles__grid { grid-template-columns: 1fr; }
  .team-rail { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .offices { grid-template-columns: 1fr; }
  .estimator-form .fields { grid-template-columns: 1fr; }
  .press-card-rich { grid-template-columns: 1fr; }
  .press-card-rich__img { aspect-ratio: 16/9; }
  .cta-inline { flex-direction: column; align-items: flex-start; padding: 28px; }
  .distinguish__grid { grid-template-columns: 1fr; gap: 24px; max-width: 360px; margin: 0 auto; }
  .pillar { padding: 20px 16px; }
  .pillar__img { width: 140px; height: 140px; margin-bottom: 18px; }
  .kpi-band__grid { grid-template-columns: repeat(4, 1fr); gap: 10px; padding: 0 16px; align-items: start; }
  .kpi-band { padding: 28px 0; }
  .kpi { display: flex; flex-direction: column; align-items: center; gap: 6px; }
  .kpi__num { font-size: clamp(20px, 6vw, 28px); margin-bottom: 0; }
  .kpi__lbl { font-size: 11px; line-height: 1.25; min-height: 2.5em; display: flex; align-items: flex-start; justify-content: center; text-wrap: balance; padding: 0 2px; }
  .tools__media { display: none; }
  .page-hero__media--mobile-right img { object-position: 80% 30% !important; }
  .page-hero__media--mobile-center img { object-position: 88% 40% !important; }
  .page-hero__media--mobile-left img { object-position: 12% 40% !important; }
  /* long-text mobile (toutes les pages devenir-franchise-*) */
  .long-text { padding: 48px 0; }
  .long-text__inner { padding: 0 18px; }
  .long-text h2 { font-size: 22px; margin: 36px 0 14px; line-height: 1.3; }
  .long-text h3 { font-size: 17px; margin: 28px 0 10px; }
  .long-text p { font-size: 15.5px; line-height: 1.65; margin: 0 0 14px; }
  .long-text ul { margin: 0 0 18px; }
  .long-text ul li { font-size: 15.5px; line-height: 1.6; padding-left: 22px; margin-bottom: 8px; }
  .long-text ul li::before { width: 10px; top: 10px; }
  .callout { padding: 20px 22px; margin: 24px 0; border-left-width: 3px; }
  .callout p { font-size: 14.5px; line-height: 1.6; }
  .cta-inline { margin: 28px 0; padding: 22px 22px !important; gap: 14px; }
  .cta-inline h3 { font-size: 17px; line-height: 1.3; }
  /* tableau projections rentabilité */
  .projections { padding: 22px 18px; margin: 24px 0; }
  .projections__row { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .projections__row + .projections__row { margin-top: 16px; padding-top: 16px; }
  .projections__val { font-size: 15px; margin-top: 4px; }
  .projections__lbl { font-size: 10px; letter-spacing: 0.14em; }
  /* breadcrumb compact */
  .crumb { font-size: 12px; line-height: 1.4; }
  .market-block h3 { font-size: 17px; line-height: 1.3; margin-bottom: 18px; padding: 0 8px; text-wrap: balance; }
  .market-stats { gap: 10px; padding: 0 8px; align-items: start; }
  .market-stats > div { display: flex; flex-direction: column; align-items: center; gap: 6px; width: 100%; }
  .market-stat__num { font-size: 19px; line-height: 1.15; white-space: nowrap; }
  .market-stat__lbl { font-size: 11px; line-height: 1.3; min-height: 2.6em; text-wrap: balance; }
  .market-blocks { gap: 28px; }
  .expertise-list li, .tool { grid-template-columns: 1fr; gap: 8px; }
}


/* Fix contraste badge eyebrow sur hero clair (pages légales) */
.page-hero--compact .page-hero__eyebrow {
  color: var(--terracotta-dark);
  background: rgba(200, 101, 74, 0.10);
  border-color: rgba(160, 79, 56, 0.32);
}

/* ===== Estimateur CTA (propriétaire) ===== */
.estimate-cta { padding: 96px 0; }
.estimate-cta .two-col { align-items: center; }
.estimate-cta__actions { margin-top: 28px; }
.estimate-cta__video { width: 100%; display: block; border-radius: 22px; box-shadow: 0 30px 70px -30px rgba(20,20,20,.35); background:#0e0e10; }
@media (max-width: 860px){ .estimate-cta { padding: 56px 0; } }

/* destinations resserrée quand le titre est retiré (#18) */
.destinations { padding-top: 34px; }
.destinations .container { margin-bottom: 22px; }
.destinations .section-head { margin-bottom: 0; }
/* reveal au scroll (#17) */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.reveal--in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* #20 centrage header accompagnement (ordi + mobile) */
.includes .section-head { margin-left: auto; margin-right: auto; }
/* #19 estimateur centré sur mobile */
@media (max-width: 860px) {
  .estimate-cta .two-col__left { text-align: center; }
  .estimate-cta__actions { display: flex; justify-content: center; }
}

/* Hero : micro-soin (Ken Burns) + dégradé + CTA + invite scroll */
.hero__media img { animation: heroZoom 24s ease-in-out infinite alternate; will-change: transform; }
@keyframes heroZoom { from { transform: scale(1.001); } to { transform: scale(1.09); } }
.hero__overlay { background: linear-gradient(180deg, rgba(28,26,20,0.62) 0%, rgba(28,26,20,0.32) 42%, rgba(28,26,20,0.72) 100%); }
.hero__cta { margin-top: 30px; }
.hero__scroll { display: inline-flex; flex-direction: column; align-items: center; gap: 4px; margin-top: 34px; color: var(--cream); text-decoration: none; font-size: 11px; letter-spacing: 0.24em; text-transform: uppercase; opacity: 0.82; transition: opacity .25s; }
.hero__scroll:hover { opacity: 1; }
.hero__scroll svg { animation: scrollBounce 1.8s ease-in-out infinite; }
@keyframes scrollBounce { 0%,100% { transform: translateY(0); } 50% { transform: translateY(7px); } }
@media (prefers-reduced-motion: reduce) { .hero__media img, .hero__scroll svg { animation: none; } }

/* Projection de revenus (#23) */
.projection { padding: 84px 0; background: var(--cream); }
.projection .section-head { margin-left: auto; margin-right: auto; }
.projection__chart { max-width: 760px; margin: 48px auto 0; display: flex; flex-direction: column; gap: 30px; }
.proj-row__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; gap: 16px; }
.proj-row__year { font-family: var(--font-display); font-weight: 600; font-size: 19px; color: var(--ink); }
.proj-row__val { font-family: var(--font-display); font-weight: 600; font-size: 18px; color: var(--terracotta); white-space: nowrap; }
.proj-bar { height: 14px; border-radius: 999px; background: rgba(200,101,74,0.14); overflow: hidden; }
.proj-bar__fill { display: block; height: 100%; width: var(--w); border-radius: 999px; background: linear-gradient(90deg, var(--terracotta), #e3946d); transition: width 1.2s cubic-bezier(.2,.7,.2,1); }
.proj-row.reveal .proj-bar__fill { width: 0; }
.proj-row.reveal--in .proj-bar__fill { width: var(--w); }
.projection__note { text-align: center; margin: 34px auto 0; font-size: 13px; font-style: italic; color: var(--ink-soft); }

/* Contact — bloc rendez-vous (popup Calendly) #contact */
.booking { padding: 76px 0 24px; }
.booking__card { max-width: 520px; margin: 40px auto 0; background: var(--cream); border-radius: var(--r-lg); padding: 34px 30px; text-align: center; }
.booking__who { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; margin-bottom: 22px; }
.booking__avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--terracotta); color: #fff; display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; font-size: 22px; flex: none; }
.booking__who strong { display: block; color: var(--ink); font-size: 16px; }
.booking__who span { font-size: 13px; color: var(--ink-soft); }
.booking__cta { width: 100%; justify-content: center; }
.booking__reassure { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 18px; }
.booking__reassure span { font-size: 12px; color: var(--ink-soft); background: rgba(200,101,74,0.10); border-radius: 999px; padding: 5px 12px; }
.booking__mail { display: inline-block; margin-top: 18px; font-size: 13px; color: var(--ink-soft); }
.booking__mail:hover { color: var(--terracotta); }

/* Contact — contact direct (tel/WhatsApp/email) */
.booking__direct { margin-top: 22px; }
.booking__direct-call { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--ink); text-decoration: none; }
.booking__direct-call:hover { color: var(--terracotta); }
.booking__direct-call svg { width: 18px; height: 18px; color: var(--terracotta); }
.booking__direct-alt { margin-top: 9px; font-size: 13px; color: var(--ink-soft); display: flex; gap: 10px; justify-content: center; align-items: center; }
.booking__direct-alt a { color: var(--ink-soft); text-decoration: underline; }
.booking__direct-alt a:hover { color: var(--terracotta); }

/* Mur d'avis Google (réels) */
.reviews { padding: 90px 0; background: var(--white); }
.reviews__rating { display: inline-flex; align-items: center; gap: 10px; margin-top: 14px; font-weight: 500; color: var(--ink-soft); font-size: 15px; }
.reviews__rating .stars { display: inline-flex; gap: 2px; color: #E8A33D; }
.reviews__rating .stars svg { width: 18px; height: 18px; }
.reviews__grid { column-count: 3; column-gap: 22px; max-width: var(--container); margin: 46px auto 0; padding: 0 var(--gutter); }
.review-card { break-inside: avoid; -webkit-column-break-inside: avoid; margin: 0 0 22px; padding: 26px 24px; border-radius: var(--r-md); background: var(--cream); }
.review-card:nth-child(3n+2) { background: var(--terracotta); color: #fff; }
.review-card__stars { display: flex; gap: 2px; color: #E8A33D; margin-bottom: 14px; }
.review-card:nth-child(3n+2) .review-card__stars { color: #fff; }
.review-card__stars svg { width: 17px; height: 17px; }
.review-card blockquote { margin: 0 0 14px; font-size: 15px; line-height: 1.6; color: inherit; }
.review-card figcaption { font-size: 14px; color: inherit; }
.review-card figcaption strong { font-weight: 600; }
.review-card__src { display: block; margin-top: 5px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
@media (max-width: 980px) { .reviews__grid { column-count: 2; } }
@media (max-width: 640px) { .reviews__grid { column-count: 1; } .reviews { padding: 64px 0; } }

/* Mur d'avis : grille fixe + rotation */
.reviews__grid { column-count: unset; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: start; }
.review-card { margin: 0; transition: opacity .5s ease; }
.review-card blockquote { display: -webkit-box; -webkit-line-clamp: 6; line-clamp: 6; -webkit-box-orient: vertical; overflow: hidden; }
@media (max-width: 980px) { .reviews__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) {
  /* Mobile : avis empilés à la verticale (pas de scroll horizontal) */
  .reviews__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 0 var(--gutter);
  }
}

/* Façade YouTube (miniature custom) */
.yt-facade { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; padding: 0; margin: 0; cursor: pointer; background-size: cover; background-position: 26% center; display: flex; align-items: center; justify-content: center; }
.yt-facade::after { content: ""; position: absolute; inset: 0; background: rgba(20,18,14,0.18); transition: background .25s; }
.yt-facade:hover::after, .yt-facade:focus-visible::after { background: rgba(20,18,14,0.04); }
.yt-facade__play { position: relative; z-index: 1; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.45)); transition: transform .2s ease; }
.yt-facade:hover .yt-facade__play { transform: scale(1.08); }

/* Hero rotatif (4 univers, vraies photos) */
.hero__media img { position: absolute; inset: 0; opacity: 0; transition: opacity 1.4s ease; }
.hero__media img.is-active { opacity: 1; }

/* CTA appel découverte (popup Calendly) */
.cta-call { background: var(--cream); padding: 88px 0; text-align: center; }
.cta-call__inner { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.cta-call .display { margin: 0; max-width: 18ch; }
.cta-call__btn { display: inline-flex; align-items: center; gap: 10px; font-size: 17px; padding: 17px 34px; border-radius: 999px; box-shadow: 0 12px 30px rgba(193, 92, 60, 0.26); }
.cta-call__icon { flex: none; }
@media (max-width: 640px) { .cta-call { padding: 60px 0; } .cta-call__btn { font-size: 15.5px; padding: 15px 26px; } }

/* ===== Presse — brochures à télécharger (POC siège) ===== */
.press-docs { padding: 96px 0; background: var(--cream); }
.press-docs__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
@media (max-width: 760px) { .press-docs__grid { grid-template-columns: 1fr; } }
.doc-card { display: flex; align-items: center; gap: 20px; padding: 26px 28px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); box-shadow: var(--shadow-soft); text-decoration: none; color: var(--ink); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.doc-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); border-color: var(--terracotta-soft); }
.doc-card__icon { flex: 0 0 auto; width: 52px; height: 52px; border-radius: var(--r-md); display: grid; place-items: center; background: var(--terracotta); color: var(--cream); }
.doc-card__icon svg { width: 26px; height: 26px; }
.doc-card__body { display: flex; flex-direction: column; gap: 3px; flex: 1 1 auto; }
.doc-card__kind { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--terracotta-dark); font-weight: 600; }
.doc-card__title { font-family: var(--font-display); font-size: 18px; font-weight: 600; line-height: 1.25; color: var(--ink); }
.doc-card__meta { font-size: 13px; color: var(--ink-mute); }
.doc-card__cta { flex: 0 0 auto; font-weight: 600; color: var(--terracotta); white-space: nowrap; }
@media (max-width: 480px) { .doc-card { flex-wrap: wrap; } .doc-card__cta { width: 100%; } }
