:root {
  --navy: #071a38;
  --night: #041126;
  --deep: #0b2854;
  --blue: #7db7e8;
  --blue-soft: #dceefe;
  --coral: #ef5a47;
  --ivory: #f8f4eb;
  --paper: #fffdf8;
  --soft: #f1eee7;
  --line: rgba(7, 26, 56, .12);
  --ink: #0b1830;
  --muted: #657084;
  --header-max: 1750px;
  --content-max: 1500px;
  --footer-max: 1350px;
  --shadow-sm: 0 12px 35px rgba(4, 17, 38, .08);
  --shadow: 0 30px 80px rgba(4, 17, 38, .14);
  --shadow-xl: 0 45px 120px rgba(4, 17, 38, .28);
  --radius-sm: 14px;
  --radius: 24px;
  --radius-xl: 34px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 4%, rgba(125, 183, 232, .15), transparent 28rem),
    linear-gradient(180deg, #f7f4ed 0%, #fff 38%, #f4f0e7 100%);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
main { overflow: clip; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.editorial-link { color: var(--deep); font-weight: 800; text-decoration: underline; text-decoration-color: var(--blue); text-decoration-thickness: 2px; text-underline-offset: 3px; }
.editorial-link:hover { text-decoration-color: var(--coral); }
.editorial-note { margin-top: 22px; color: var(--muted); line-height: 1.75; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; color: var(--night); line-height: .98; letter-spacing: -.045em; text-wrap: balance; }
h1 { max-width: 1100px; font-size: clamp(58px, 5.1vw, 88px); font-weight: 850; }
h2 { font-size: clamp(38px, 3.2vw, 58px); font-weight: 820; }
h3 { font-size: 23px; font-weight: 820; line-height: 1.12; }
ul { padding-left: 1.1rem; }
:focus-visible { outline: 3px solid var(--coral); outline-offset: 4px; }
::selection { background: var(--blue); color: var(--night); }

.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--night);
  box-shadow: var(--shadow);
}
.skip-link:focus { top: 20px; }

.site-breadcrumb {
  width: min(var(--content-max), calc(100% - 48px));
  margin: 20px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  color: #526078;
  font-size: 13px;
}
.site-breadcrumb a { color: var(--deep); font-weight: 800; text-decoration: underline; text-underline-offset: 3px; }
.site-breadcrumb [aria-current="page"] { color: var(--muted); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding: 12px 0;
  background: rgba(248, 244, 235, .78);
  border-bottom: 1px solid rgba(7, 26, 56, .08);
  backdrop-filter: blur(22px) saturate(150%);
}
.site-header__inner {
  width: min(var(--header-max), calc(100% - 48px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-width: 300px;
}
.brand img {
  width: 292px;
  height: 77px;
  object-fit: contain;
  border-radius: 13px;
  box-shadow: 0 12px 30px rgba(4, 17, 38, .14);
}
.brand span { display: none; }
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, .72);
  box-shadow: 0 10px 28px rgba(4, 17, 38, .06);
}
.primary-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 10px 17px;
  border-radius: 999px;
  color: #41506a;
  font-size: 14px;
  font-weight: 780;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}
.primary-nav a:hover,
.primary-nav a[aria-current="page"] { color: var(--night); background: var(--blue-soft); }
.primary-nav a:last-child {
  margin-left: 5px;
  color: var(--paper);
  background: var(--night);
}
.primary-nav a:last-child:hover { color: var(--night); background: var(--blue); transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 15px;
  background: var(--night);
  box-shadow: var(--shadow-sm);
}
.nav-toggle span { display: block; width: 21px; height: 2px; margin: 5px auto; background: var(--paper); }

.hero,
.page-hero {
  position: relative;
  width: min(var(--header-max), calc(100% - 48px));
  margin: 24px auto 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  color: var(--paper);
  background:
    radial-gradient(circle at 78% 30%, rgba(125, 183, 232, .2), transparent 24rem),
    radial-gradient(circle at 96% 85%, rgba(239, 90, 71, .12), transparent 20rem),
    linear-gradient(128deg, #041126 0%, #092451 58%, #071a38 100%);
  box-shadow: var(--shadow-xl);
}
.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .42;
  background:
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(90deg, #000, transparent 82%);
}
.hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  right: -220px;
  bottom: -330px;
  width: 850px;
  height: 850px;
  border: 2px solid rgba(125, 183, 232, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 110px rgba(125,183,232,.035), 0 0 0 220px rgba(255,255,255,.02);
}
.hero__inner,
.page-hero__inner {
  position: relative;
  z-index: 2;
  width: min(var(--content-max), calc(100% - 72px));
  margin: 0 auto;
}
.hero__inner {
  min-height: 790px;
  padding: 100px 0;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(470px, .88fr);
  gap: clamp(60px, 7vw, 130px);
  align-items: center;
}
.page-hero__inner { min-height: 490px; padding: 100px 0; display: grid; align-items: center; }
.hero__copy { max-width: 880px; }
.hero h1, .page-hero h1 { color: var(--ivory); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .14em;
  line-height: 1.2;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero .eyebrow, .page-hero .eyebrow { color: var(--blue); }
.hero__lead, .page-hero__lead {
  max-width: 850px;
  margin: 30px 0 0;
  color: rgba(248, 244, 235, .78);
  font-size: clamp(19px, 1.35vw, 23px);
  line-height: 1.58;
}
.hero__actions, .cta-panel__actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 56px;
  padding: 15px 23px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--night);
  font-weight: 850;
  line-height: 1.1;
  box-shadow: 0 18px 42px rgba(125, 183, 232, .2);
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}
.button::after { content: "↗"; font-size: 18px; }
.button:hover { transform: translateY(-3px); background: var(--paper); box-shadow: 0 24px 52px rgba(4,17,38,.2); }
.button--ghost { color: var(--paper); border-color: rgba(255,255,255,.34); background: rgba(255,255,255,.06); box-shadow: none; }
.button--ghost:hover { color: var(--night); border-color: var(--paper); }
.button--ghost-dark { color: var(--night); border-color: var(--night); background: transparent; box-shadow: none; }
.button--light { color: var(--night); border-color: var(--paper); background: var(--paper); }

.hero__chips, .mini-tags { display: flex; flex-wrap: wrap; gap: 9px; margin: 34px 0 0; padding: 0; list-style: none; }
.hero__chips li, .mini-tags span {
  padding: 9px 14px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255,255,255,.06);
  font-size: 13px;
  font-weight: 760;
}
.hero__chips li:first-child { color: #ffc0b7; border-color: rgba(239,90,71,.45); background: rgba(239,90,71,.13); }
.mini-tags span { color: var(--deep); border-color: var(--line); background: var(--paper); }

.hero-brand-stage { position: relative; min-height: 590px; }
.brand-slab {
  position: absolute;
  inset: 20px 0 auto auto;
  width: min(100%, 625px);
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255,255,255,.11), rgba(255,255,255,.025));
  box-shadow: var(--shadow-xl);
  backdrop-filter: blur(18px);
}
.brand-slab__logo { position: relative; z-index: 1; width: 100%; border-radius: 18px; }
.brand-slab__rule { display: none; }
.brand-slab__meta { display: flex; justify-content: space-between; gap: 24px; margin-top: 18px; padding: 18px 4px 2px; border-top: 1px solid rgba(255,255,255,.13); }
.brand-slab__meta strong { max-width: 270px; color: var(--paper); font-size: 16px; line-height: 1.25; }
.brand-slab__meta span { max-width: 230px; color: rgba(255,255,255,.58); font-size: 12px; line-height: 1.45; text-align: right; text-transform: uppercase; letter-spacing: .08em; }
.coast-card {
  position: absolute;
  right: 5%;
  bottom: 5px;
  width: min(66%, 420px);
  overflow: hidden;
  border: 7px solid var(--paper);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: var(--shadow-xl);
  transform: rotate(3deg);
}
.coast-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.coast-card__cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--line); }
.coast-card__cities span { padding: 9px 11px; color: var(--deep); background: var(--paper); font-size: 12px; font-weight: 820; }
.french-network-badge {
  position: absolute;
  left: -30px;
  bottom: 36px;
  z-index: 3;
  display: grid;
  grid-template-columns: 62px 1fr;
  align-items: center;
  gap: 13px;
  width: 278px;
  padding: 12px;
  border-radius: 18px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.french-network-badge img { width: 62px; height: 62px; border-radius: 50%; }
.french-network-badge span { color: var(--night); font-size: 12px; font-weight: 900; line-height: 1.25; text-transform: uppercase; }
.since-stamp {
  position: absolute;
  right: -16px;
  top: -14px;
  z-index: 4;
  width: 130px;
  height: 130px;
  display: grid;
  place-content: center;
  padding: 15px;
  border: 8px solid var(--night);
  border-radius: 50%;
  background: var(--coral);
  color: var(--paper);
  text-align: center;
  transform: rotate(8deg);
  box-shadow: var(--shadow);
}
.since-stamp strong, .since-stamp span { display: block; }
.since-stamp strong { font-size: 35px; line-height: .9; }
.since-stamp span { margin-top: 7px; font-size: 9px; font-weight: 900; line-height: 1.15; text-transform: uppercase; letter-spacing: .08em; }

.section, .answer-band { width: min(var(--content-max), calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.section { padding: 120px 0; }
.section--soft {
  width: 100%;
  max-width: none;
  padding-left: max(24px, calc((100% - var(--content-max)) / 2));
  padding-right: max(24px, calc((100% - var(--content-max)) / 2));
  background: linear-gradient(145deg, rgba(220,238,254,.46), rgba(255,253,248,.9));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-intro { max-width: 980px; margin-bottom: 52px; }
.section-intro p:last-child { max-width: 850px; margin-top: 22px; font-size: 20px; }
.answer-band {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 38px;
  margin-top: -52px;
  padding: 42px 48px;
  border: 1px solid rgba(7,26,56,.08);
  border-radius: 26px;
  background: rgba(255,253,248,.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.answer-band__label { align-self: start; width: fit-content; padding: 8px 13px; border-radius: 999px; color: var(--blue); background: var(--night); font-size: 11px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.answer-band p { max-width: 900px; margin-top: 14px; font-size: 19px; }

.card-grid, .process-grid, .work-grid, .city-grid, .tourism-grid { display: grid; gap: 22px; }
.card-grid, .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tourism-grid, .work-grid, .process-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process-grid { counter-reset: process; }
.service-card, .plain-card, .process-item, .work-card, .city-card, .contact-card, .contact-form, .notice-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,253,248,.88);
}
.service-card, .plain-card, .process-item, .city-card, .notice-card { position: relative; overflow: hidden; padding: 32px; }
.service-card::after, .plain-card::after, .process-item::after, .city-card::after {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 0;
  height: 4px;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(90deg, var(--blue), var(--coral));
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .25s ease;
}
.service-card, .city-card, .plain-card, .process-item { box-shadow: var(--shadow-sm); }
.service-card, .city-card, .link-cloud a, .work-card { transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.service-card { min-height: 235px; }
.service-card span, .city-card strong { display: block; margin-bottom: 20px; color: var(--deep); font-size: 24px; font-weight: 880; line-height: 1.05; letter-spacing: -.03em; }
.service-card p, .city-card p, .plain-card p, .process-item p { margin: 0; }
.service-card:hover, .city-card:hover, .link-cloud a:hover, .work-card:hover { transform: translateY(-8px); border-color: rgba(125,183,232,.7); box-shadow: var(--shadow); }
.service-card:hover::after, .city-card:hover::after, .plain-card:hover::after { transform: scaleX(1); }
.plain-card h3, .process-item h3, .work-card h3 { margin-bottom: 12px; }
.process-item { counter-increment: process; padding-top: 76px; }
.process-item::before { content: "0" counter(process); position: absolute; top: 26px; left: 32px; color: var(--blue); font-size: 25px; font-weight: 900; line-height: 1; }

.visibility-section { padding-top: 105px; }
.visibility-path { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.visibility-path::before { content: ""; position: absolute; top: 42px; right: 16%; left: 16%; height: 2px; background: linear-gradient(90deg, var(--blue), var(--coral)); }
.visibility-step { position: relative; z-index: 1; min-height: 390px; padding: 35px 32px; border: 1px solid rgba(125,183,232,.32); border-radius: 26px; background: linear-gradient(155deg, rgba(255,255,255,.98), rgba(232,244,255,.72)); box-shadow: var(--shadow-sm); }
.visibility-step > span { display: inline-flex; padding: 8px 12px; border-radius: 999px; color: var(--paper); background: var(--night); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.visibility-step h3 { margin: 44px 0 13px; font-size: 28px; }
.visibility-step p { margin: 0; color: var(--muted); }
.visibility-step ul { display: grid; gap: 9px; margin: 24px 0 0; padding: 20px 0 0; border-top: 1px solid var(--line); list-style: none; }
.visibility-step li { position: relative; padding-left: 20px; color: var(--deep); font-size: 14px; font-weight: 740; }
.visibility-step li::before { content: ""; position: absolute; top: .55em; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); }
.visibility-note { margin: 24px 0 0; padding: 18px 22px; border-left: 4px solid var(--coral); border-radius: 0 14px 14px 0; color: var(--muted); background: rgba(255,109,77,.07); }

.deliverables-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.deliverables-grid article { position: relative; min-height: 240px; padding: 34px; overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: rgba(255,253,248,.92); box-shadow: var(--shadow-sm); }
.deliverables-grid article::after { content: ""; position: absolute; right: -42px; bottom: -58px; width: 150px; height: 150px; border: 24px solid rgba(125,183,232,.15); border-radius: 50%; }
.deliverables-grid span { display: block; margin-bottom: 25px; color: var(--deep); font-size: 12px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.deliverables-grid h3 { max-width: 440px; margin-bottom: 12px; font-size: 25px; }
.deliverables-grid p { position: relative; z-index: 1; max-width: 560px; margin: 0; color: var(--muted); }

.method-timeline { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0; margin: 0; padding: 0; list-style: none; counter-reset: none; }
.method-timeline li { position: relative; padding: 0 25px; border-left: 1px solid var(--line); }
.method-timeline li:last-child { border-right: 1px solid var(--line); }
.method-timeline span { display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 25px; border-radius: 50%; color: var(--night); background: var(--blue); font-weight: 950; box-shadow: 0 0 0 8px rgba(125,183,232,.16); }
.method-timeline h3 { margin-bottom: 10px; font-size: 23px; }
.method-timeline p { margin: 0; color: var(--muted); font-size: 15px; }

.outcome-table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: var(--shadow-sm); }
.outcome-table { width: 100%; min-width: 720px; border-collapse: collapse; }
.outcome-table caption { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.outcome-table th, .outcome-table td { padding: 22px 25px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.outcome-table th { color: var(--paper); background: var(--night); font-size: 12px; letter-spacing: .09em; text-transform: uppercase; }
.outcome-table tbody tr:last-child td { border-bottom: 0; }
.outcome-table tbody tr:nth-child(even) { background: rgba(125,183,232,.07); }
.outcome-table td:first-child { color: var(--deep); font-weight: 800; }
.outcome-table a { color: var(--deep); font-weight: 900; text-decoration: underline; text-decoration-color: var(--blue); text-underline-offset: 4px; }

.form-heading { grid-column: 1 / -1; margin-bottom: 5px; }
.form-heading h2 { margin-bottom: 8px; font-size: 30px; }
.form-heading > p:last-child { margin: 0; font-size: 14px; }
.form-privacy-disclosure { grid-column: 1 / -1; padding: 16px 18px; border: 1px solid var(--line); border-radius: 14px; background: rgba(125,183,232,.07); }
.form-privacy-disclosure summary { cursor: pointer; color: var(--deep); font-size: 14px; font-weight: 850; }
.form-privacy-disclosure p { margin: 13px 0 0; font-size: 12px; line-height: 1.65; }
.form-privacy-disclosure a { color: var(--deep); font-weight: 850; text-decoration: underline; text-underline-offset: 2px; }
.form-reassurance { align-self: center; margin: 0; font-size: 12px; line-height: 1.5; }

section[id] { scroll-margin-top: 110px; }
.guide-jump { display: flex; flex-wrap: wrap; gap: 10px; width: min(var(--content-max), calc(100% - 48px)); margin: 38px auto 0; padding: 15px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.92); box-shadow: var(--shadow-sm); }
.guide-jump a { padding: 10px 14px; border-radius: 999px; color: var(--deep); background: var(--blue-soft); font-size: 13px; font-weight: 850; white-space: nowrap; transition: color .2s ease, background .2s ease, transform .2s ease; }
.guide-jump a:hover { color: var(--paper); background: var(--deep); transform: translateY(-2px); }
.guide-callout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 40px; align-items: center; margin-top: 24px; padding: 32px 36px; border: 1px solid rgba(125,183,232,.28); border-radius: 24px; background: linear-gradient(120deg, var(--night), var(--deep)); box-shadow: var(--shadow); }
.guide-callout h3, .guide-callout p { color: var(--paper); }
.guide-callout .eyebrow { color: var(--blue); }
.guide-callout h3 { font-size: 28px; }
.guide-callout > p { margin: 0; color: rgba(255,255,255,.76); }
.project-checklist { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; margin: 0; padding: 0; list-style: none; }
.project-checklist li { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; min-height: 150px; padding: 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.9); box-shadow: var(--shadow-sm); }
.project-checklist span { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; color: var(--paper); background: var(--deep); font-size: 12px; font-weight: 900; }
.project-checklist h3 { margin-bottom: 8px; font-size: 21px; }
.project-checklist p { margin: 0; font-size: 15px; }

.split-layout, .local-layout { display: grid; grid-template-columns: .92fr 1.08fr; gap: 58px; align-items: start; }
.map-panel { position: relative; overflow: hidden; padding: 18px; border-radius: 28px; background: linear-gradient(145deg, var(--night), var(--deep)); color: var(--paper); box-shadow: var(--shadow); }
.map-panel::before { content: ""; position: absolute; inset: 0; border: 1px solid rgba(255,255,255,.14); border-radius: 28px; pointer-events: none; }
.map-panel img { width: 100%; margin-bottom: 20px; border-radius: 18px; }
.map-panel img[src*="carte-cote-fleurie-2026"] { content: url('../img/cote-fleurie-honfleur.wwc-1200.webp'); aspect-ratio: 3 / 2; object-fit: cover; }
.map-panel p { margin: 0; padding: 0 10px 9px; color: rgba(255,255,255,.75); }
.link-cloud { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.link-cloud a { position: relative; overflow: hidden; min-height: 126px; padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,253,248,.88); box-shadow: var(--shadow-sm); }
.link-cloud a::before { content: "↗"; position: absolute; right: 20px; top: 16px; color: var(--blue); font-size: 20px; }
.link-cloud strong, .link-cloud span { display: block; padding-right: 25px; }
.link-cloud strong { color: var(--deep); font-size: 19px; font-weight: 880; }
.link-cloud span { margin-top: 7px; color: var(--muted); font-size: 14px; }
.check-list { display: grid; gap: 12px; margin: 22px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 34px; color: var(--muted); }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: .05em; width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; color: var(--night); background: var(--blue); font-size: 12px; font-weight: 900; }

.section--depth { padding-top: 118px; padding-bottom: 118px; }
.depth-layout { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 72px; align-items: start; }
.depth-copy { max-width: 850px; }
.depth-copy h2 { margin-bottom: 30px; }
.depth-copy > p:not(.eyebrow) { margin-top: 20px; font-size: 18px; line-height: 1.85; color: var(--muted); }
.depth-copy > p:not(.eyebrow):first-of-type { font-size: 20px; color: var(--ink); }
.depth-points { display: grid; gap: 16px; position: sticky; top: 110px; }
.depth-point { padding: 25px 26px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.9); box-shadow: var(--shadow-sm); }
.depth-point h3 { margin-bottom: 9px; font-size: 20px; }
.depth-point p { margin: 0; font-size: 15px; line-height: 1.65; color: var(--muted); }
.work-card { overflow: hidden; background: var(--paper); box-shadow: var(--shadow-sm); }
.work-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.work-card div { padding: 24px; }
.work-card h3 { font-size: 20px; }
.work-card p { margin: 0; font-size: 15px; }
.visual-story { padding-top: 40px; }
.visual-story__grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.visual-story__grid figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: var(--radius); background: var(--night); box-shadow: var(--shadow); }
.visual-story__grid picture, .visual-story__grid img { display: block; width: 100%; height: 100%; }
.visual-story__grid img { position: absolute; inset: 0; object-fit: cover; transition: transform .45s ease; }
.visual-story__grid figure::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.94)); }
.visual-story__grid figure:hover img { transform: scale(1.035); }
.visual-story__grid figcaption { position: absolute; z-index: 2; right: 28px; bottom: 25px; left: 28px; }
.visual-story__grid strong, .visual-story__grid span { display: block; }
.visual-story__grid strong { color: var(--paper); font-size: 27px; line-height: 1.1; }
.visual-story__grid span { margin-top: 8px; color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.45; }
.visual-showcase { padding-top: 25px; }
.visual-showcase__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }
.visual-showcase__grid figure { position: relative; min-height: 360px; margin: 0; overflow: hidden; border-radius: 24px; background: var(--night); box-shadow: var(--shadow); }
.visual-showcase__grid picture, .visual-showcase__grid img { display: block; width: 100%; height: 100%; }
.visual-showcase__grid img { position: absolute; inset: 0; object-fit: cover; }
.visual-showcase__grid figure::after { content: ""; position: absolute; inset: 44% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.94)); }
.visual-showcase__grid figcaption { position: absolute; z-index: 2; right: 22px; bottom: 22px; left: 22px; }
.visual-showcase__grid strong, .visual-showcase__grid span { display: block; }
.visual-showcase__grid strong { color: var(--paper); font-size: 25px; line-height: 1.08; }
.visual-showcase__grid span { margin-top: 7px; color: rgba(255,255,255,.75); font-size: 13px; line-height: 1.45; }
.faq-list { display: grid; gap: 12px; max-width: 1100px; }
.faq-list details { border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow-sm); }
.faq-list summary { cursor: pointer; padding: 23px 26px; color: var(--deep); font-weight: 850; }
.faq-list p { padding: 0 26px 24px; margin: 0; }

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 930px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
  width: min(var(--content-max), calc(100% - 48px));
  margin: 0 auto 34px;
  padding: 86px clamp(36px, 5vw, 76px);
  border-radius: var(--radius-xl);
  color: var(--paper);
  background: linear-gradient(118deg, var(--night), var(--deep) 67%, #173d71);
  box-shadow: var(--shadow-xl);
}
.cta-panel h2 { color: var(--paper); }
.cta-panel p { max-width: 790px; margin-top: 18px; color: rgba(255,255,255,.7); }
.cta-panel .eyebrow { color: var(--blue); }
.notice-card { color: var(--paper); background: radial-gradient(circle at 90% 20%, rgba(125,183,232,.24), transparent 25rem), linear-gradient(135deg, var(--night), var(--deep)); box-shadow: var(--shadow); }
.notice-card h2, .notice-card h3, .notice-card p { color: var(--paper); }
.notice-card .eyebrow { color: var(--blue); }

.partner-promo {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 34px;
  padding: 25px 28px 25px 34px;
  border: 1px solid rgba(255,109,77,.22);
  border-radius: 22px;
  background: linear-gradient(112deg, rgba(255,109,77,.12), rgba(255,253,248,.96) 48%, rgba(125,183,232,.14));
  box-shadow: var(--shadow-sm);
}
.partner-promo::before { content: ""; position: absolute; inset: 0 auto 0 0; width: 5px; background: linear-gradient(180deg, var(--coral), var(--blue)); }
.partner-promo__label { width: fit-content; padding: 7px 11px; border-radius: 999px; color: var(--paper); background: var(--deep); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.partner-promo h3 { margin: 0 0 5px; color: var(--deep); font-size: 22px; }
.partner-promo p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.partner-promo__link { display: inline-flex; align-items: center; gap: 8px; padding: 12px 16px; border: 1px solid var(--deep); border-radius: 999px; color: var(--deep); font-size: 13px; font-weight: 850; white-space: nowrap; transition: color .2s ease, background .2s ease, transform .2s ease; }
.partner-promo__link::after { content: "↗"; font-size: 16px; }
.partner-promo__link:hover { color: var(--paper); background: var(--deep); transform: translateY(-2px); }
.partner-promo--standalone { width: min(var(--content-max), calc(100% - 48px)); margin: 0 auto 34px; }

.demo-section { padding-top: 30px; }
.demo-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(380px, .85fr);
  overflow: hidden;
  border: 1px solid rgba(125,183,232,.25);
  border-radius: var(--radius-xl);
  color: var(--paper);
  background: linear-gradient(128deg, #041126, var(--deep));
  box-shadow: var(--shadow-xl);
}
.demo-showcase__visual { position: relative; min-height: 520px; overflow: hidden; background: var(--night); }
.demo-showcase__visual::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.88)); }
.demo-showcase__visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .45s ease; }
.demo-showcase__visual:hover img { transform: scale(1.035); }
.demo-showcase__visual span { position: absolute; z-index: 2; left: 28px; bottom: 25px; padding: 9px 13px; border: 1px solid rgba(255,255,255,.26); border-radius: 999px; color: var(--paper); background: rgba(4,17,38,.7); backdrop-filter: blur(10px); font-size: 11px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.demo-showcase__content { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(36px, 5vw, 72px); }
.demo-showcase__content .eyebrow { color: var(--blue); }
.demo-showcase__content h3 { margin: 8px 0 20px; color: var(--paper); font-family: var(--display); font-size: clamp(32px, 3.1vw, 49px); font-weight: 500; line-height: 1.03; letter-spacing: -.04em; }
.demo-showcase__content > p:not(.eyebrow) { margin: 0; color: rgba(255,255,255,.74); font-size: 17px; line-height: 1.7; }
.demo-showcase__features { display: flex; flex-wrap: wrap; gap: 8px; margin: 26px 0 30px; padding: 0; list-style: none; }
.demo-showcase__features li { padding: 8px 11px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: rgba(255,255,255,.82); background: rgba(255,255,255,.06); font-size: 12px; font-weight: 800; }
.demo-showcase .button { color: var(--night); background: var(--blue); }
.demo-showcase .button:hover { color: var(--paper); background: var(--coral); }
.demo-showcase--restaurant { margin-top: 42px; }

.legal-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.legal-card { padding: clamp(30px, 4vw, 52px); border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,253,248,.9); box-shadow: var(--shadow-sm); }
.legal-card h2 { margin-bottom: 24px; font-size: clamp(32px, 2.8vw, 46px); }
.legal-card p:last-child { margin-bottom: 0; }
.legal-details { display: grid; gap: 16px; margin: 0; }
.legal-details div { display: grid; grid-template-columns: minmax(110px, .45fr) 1fr; gap: 22px; padding-top: 16px; border-top: 1px solid var(--line); }
.legal-details dt { color: var(--deep); font-weight: 850; }
.legal-details dd { margin: 0; color: var(--muted); }
.legal-details a { color: var(--deep); font-weight: 850; text-decoration: underline; text-underline-offset: 3px; }

.contact-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 28px; }
.contact-card, .contact-form { padding: 40px; }
.contact-card { color: var(--paper); background: linear-gradient(145deg, var(--night), var(--deep)); box-shadow: var(--shadow); }
.contact-card h2, .contact-card p, .contact-card a { color: var(--paper); }
.contact-card a { font-weight: 850; }
.contact-card address { margin: 22px 0; color: rgba(255,255,255,.78); font-style: normal; }
.contact-card address a { text-decoration: underline; text-underline-offset: 3px; }
.contact-form { display: grid; gap: 17px; background: var(--paper); box-shadow: var(--shadow-sm); }
.contact-form label { display: grid; gap: 7px; color: var(--deep); font-size: 14px; font-weight: 850; }
.contact-form .field-label { display: inline; }
.contact-form input, .contact-form textarea, .contact-form select { width: 100%; padding: 15px 16px; border: 1px solid var(--line); border-radius: 13px; color: var(--ink); background: #fff; font: inherit; }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { outline: 3px solid rgba(125,183,232,.32); border-color: var(--blue); }
.contact-form textarea { min-height: 160px; resize: vertical; }
.form-note { padding: 15px 17px; border-radius: 14px; background: var(--blue-soft); color: var(--deep); font-weight: 800; }
.form-note--error { border: 1px solid rgba(155, 37, 25, .25); background: #fff0ed; color: #7d2017; }
.form-privacy { margin: -2px 0 0; padding: 14px 16px; border-left: 4px solid var(--blue); background: var(--soft); color: var(--muted); font-size: 14px; line-height: 1.55; }
.form-privacy a { color: var(--deep); font-weight: 850; text-decoration: underline; text-underline-offset: 2px; }
.honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.site-footer { position: relative; padding: 48px 0 0; background: var(--night); color: var(--paper); }
.footer-cta, .footer-grid, .footer-bottom { width: min(var(--footer-max), calc(100% - 48px)); margin-left: auto; margin-right: auto; }
.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 820px) auto;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 48px 52px;
  border-radius: 26px;
  color: var(--night);
  background: linear-gradient(112deg, var(--blue), #cde8ff 66%, var(--ivory));
}
.footer-cta h2, .footer-cta .eyebrow, .footer-cta p { color: var(--night); }
.footer-cta h2 { font-size: clamp(32px, 3vw, 48px); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr 1fr; gap: 44px; padding: 68px 0 48px; }
.footer-grid h3 { margin-bottom: 18px; color: var(--paper); font-size: 18px; letter-spacing: -.02em; }
.footer-grid p, .footer-grid a, .footer-bottom { color: rgba(255,255,255,.66); }
.footer-grid ul { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; }
.footer-grid a:hover, .footer-bottom a:hover { color: var(--blue); }
.footer-brand-main img { width: 295px; margin-bottom: 24px; border-radius: 14px; }
.footer-brand-main address { color: rgba(255,255,255,.68); font-size: 14px; font-style: normal; }
.footer-brand-main address a { color: var(--paper); font-weight: 750; text-decoration: underline; text-underline-offset: 3px; }
.footer-affiliation { padding: 22px; border: 1px solid rgba(125,183,232,.18); border-radius: 20px; background: rgba(255,255,255,.04); }
.footer-affiliation img { width: 72px; height: 72px; margin-bottom: 16px; border-radius: 50%; box-shadow: 0 16px 34px rgba(0,0,0,.25); }
.footer-discreet { font-size: 13px; opacity: .72; }
.footer-pro-link { display: grid; gap: 5px; margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.1); }
.footer-pro-link span { color: var(--blue); font-size: 11px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.footer-pro-link a { color: var(--paper); font-weight: 800; line-height: 1.35; }
.footer-pro-link small { color: rgba(255,255,255,.54); font-size: 12px; line-height: 1.5; }
.photo-credits { margin: 12px 2px 0; color: rgba(255,255,255,.42); font-size: 10px; }
.photo-credits a { text-decoration: underline; text-underline-offset: 2px; }
.photo-credits a:hover { color: var(--blue); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding: 22px 0 32px; border-top: 1px solid rgba(255,255,255,.1); font-size: 13px; }
.footer-legal { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px 18px; }

@media (max-width: 1280px) {
  .site-header__inner, .hero, .page-hero { width: min(100% - 36px, var(--header-max)); }
  .site-breadcrumb { width: min(100% - 48px, var(--content-max)); }
  .cta-panel { width: min(100% - 36px, var(--content-max)); }
  .section, .answer-band, .hero__inner, .page-hero__inner { width: min(100% - 48px, var(--content-max)); }
  .brand { min-width: 250px; }
  .brand img { width: 250px; height: auto; }
  .primary-nav a { padding-inline: 13px; }
  .hero__inner { grid-template-columns: 1fr .85fr; gap: 60px; }
  .french-network-badge { left: 0; }
}

@media (max-width: 900px) {
  .partner-promo { grid-template-columns: 1fr auto; }
  .partner-promo__label { grid-column: 1 / -1; }
}

@media (max-width: 1060px) {
  .site-header__inner { min-height: 72px; }
  .brand img { width: 224px; }
  .nav-toggle { display: block; }
  .primary-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 94px;
    display: none;
    padding: 12px;
    border-radius: 20px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }
  .primary-nav.is-open { display: grid; }
  .primary-nav a { justify-content: center; padding: 13px; }
  .primary-nav a:last-child { margin: 4px 0 0; }
  .hero__inner { grid-template-columns: 1fr; min-height: auto; gap: 54px; }
  .hero-brand-stage { min-height: 610px; max-width: 700px; }
  .brand-slab { left: 0; right: auto; }
  .card-grid, .city-grid, .process-grid, .work-grid, .tourism-grid, .local-layout, .split-layout, .contact-grid, .footer-grid, .legal-layout, .depth-layout, .visibility-path, .method-timeline { grid-template-columns: 1fr 1fr; }
  .guide-callout { grid-template-columns: 1fr; gap: 18px; }
  .visibility-path::before { display: none; }
  .method-timeline { gap: 28px 0; }
  .answer-band { grid-template-columns: 1fr; }
  .cta-panel, .footer-cta { grid-template-columns: 1fr; align-items: start; }
  .demo-showcase { grid-template-columns: 1fr; }
  .demo-showcase__visual { min-height: 430px; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  h1 { font-size: clamp(42px, 12vw, 58px); }
  h2 { font-size: 34px; }
  h3 { font-size: 20px; }
  .site-header { padding: 8px 0; }
  .site-header__inner { width: min(100% - 24px, var(--header-max)); min-height: 62px; }
  .brand { min-width: 0; }
  .brand img { width: 190px; border-radius: 10px; }
  .primary-nav { top: 78px; left: 12px; right: 12px; }
  .hero, .page-hero { width: min(100% - 20px, var(--header-max)); margin-top: 10px; border-radius: 24px; }
  .site-breadcrumb { width: min(100% - 28px, var(--content-max)); margin-top: 14px; }
  .cta-panel { width: min(100% - 20px, var(--content-max)); margin-top: 10px; border-radius: 24px; }
  .hero__inner, .page-hero__inner { width: min(100% - 36px, var(--content-max)); padding: 68px 0; }
  .page-hero__inner { min-height: 410px; }
  .hero__lead, .page-hero__lead, .answer-band p, .section-intro p:last-child { font-size: 18px; }
  .hero__actions { margin-top: 30px; }
  .button { width: 100%; }
  .hero-brand-stage { min-height: 475px; }
  .brand-slab { top: 0; width: 100%; padding: 14px; border-radius: 20px; }
  .brand-slab__logo { border-radius: 12px; }
  .brand-slab__meta { display: grid; gap: 7px; margin-top: 12px; padding-top: 13px; }
  .brand-slab__meta strong { font-size: 14px; }
  .brand-slab__meta span { font-size: 10px; text-align: left; }
  .coast-card { right: 0; bottom: 0; width: 78%; border-width: 5px; }
  .french-network-badge { left: 0; bottom: 22px; width: 245px; grid-template-columns: 50px 1fr; }
  .french-network-badge img { width: 50px; height: 50px; }
  .since-stamp { right: -6px; top: -25px; width: 100px; height: 100px; border-width: 6px; }
  .since-stamp strong { font-size: 28px; }
  .section { width: min(100% - 28px, var(--content-max)); padding: 78px 0; }
  .section--soft { width: 100%; padding-left: 18px; padding-right: 18px; }
  .answer-band { width: min(100% - 28px, var(--content-max)); margin-top: -34px; padding: 28px; border-radius: 20px; }
  .card-grid, .city-grid, .process-grid, .work-grid, .tourism-grid, .local-layout, .split-layout, .contact-grid, .footer-grid, .link-cloud, .legal-layout, .depth-layout, .visibility-path, .deliverables-grid, .method-timeline { grid-template-columns: 1fr; }
  .visibility-step { min-height: 0; }
  .method-timeline { gap: 30px; }
  .method-timeline li, .method-timeline li:last-child { padding: 0 0 0 22px; border-right: 0; border-left: 1px solid var(--line); }
  .guide-jump { flex-wrap: nowrap; width: min(100% - 28px, var(--content-max)); overflow-x: auto; }
  .guide-callout { padding: 28px 25px; }
  .project-checklist { grid-template-columns: 1fr; }
  .project-checklist li { grid-template-columns: 48px 1fr; min-height: 0; padding: 23px 20px; }
  .outcome-table-wrap { overflow: visible; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
  .outcome-table { min-width: 0; }
  .outcome-table thead { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
  .outcome-table tbody { display: grid; gap: 14px; }
  .outcome-table tr { display: grid; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--paper); box-shadow: var(--shadow-sm); }
  .outcome-table th, .outcome-table td { border-bottom: 1px solid var(--line); }
  .outcome-table td { display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 14px; padding: 16px 18px; }
  .outcome-table td:last-child { border-bottom: 0; }
  .outcome-table td::before { color: var(--muted); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
  .outcome-table td:nth-child(1)::before { content: "Situation"; }
  .outcome-table td:nth-child(2)::before { content: "Service"; }
  .outcome-table td:nth-child(3)::before { content: "Priorité"; }
  .section--depth { padding-top: 78px; padding-bottom: 78px; }
  .depth-layout { gap: 38px; }
  .depth-points { position: static; }
  .legal-details div { grid-template-columns: 1fr; gap: 4px; }
  .service-card, .plain-card, .process-item, .city-card, .notice-card, .contact-card, .contact-form { padding: 26px; }
  .cta-panel { margin-bottom: 20px; padding: 58px 24px; }
  .site-footer { padding-top: 22px; }
  .footer-cta, .footer-grid, .footer-bottom { width: min(100% - 28px, var(--footer-max)); }
  .footer-cta { padding: 36px 26px; }
  .footer-grid { padding-top: 48px; }
  .footer-bottom { flex-direction: column; }
  .footer-legal { justify-content: flex-start; }
  .partner-promo { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .partner-promo__label { grid-column: auto; }
  .partner-promo__link { width: fit-content; }
  .partner-promo--standalone { width: min(100% - 28px, var(--content-max)); margin-bottom: 20px; }
  .demo-section { padding-top: 18px; }
  .demo-showcase { border-radius: 24px; }
  .demo-showcase__visual { min-height: 290px; }
  .demo-showcase__visual span { left: 18px; right: 18px; bottom: 17px; width: fit-content; font-size: 10px; }
  .demo-showcase__content { padding: 31px 24px 36px; }
  .demo-showcase__content h3 { font-size: 33px; }
  .demo-showcase__content > p:not(.eyebrow) { font-size: 16px; }
  .demo-showcase__features { margin: 22px 0 25px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}

.page-hero--directory .directory-hero__inner {
  min-height: 650px;
  grid-template-columns: minmax(0, 1.2fr) minmax(420px, .8fr);
  gap: clamp(50px, 7vw, 120px);
}
.directory-hero__copy { align-self: center; }
.directory-hero-photo {
  position: relative;
  margin: 0;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 32px 150px 32px 32px;
  background: var(--night);
  box-shadow: 0 30px 70px rgba(4,17,38,.3);
}
.directory-hero-photo::after {
  content: "";
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(4,17,38,.78));
}
.directory-hero-photo picture,
.directory-hero-photo img { display: block; width: 100%; height: 100%; }
.directory-hero-photo img { position: absolute; inset: 0; object-fit: cover; }
.directory-hero-photo figcaption {
  position: absolute;
  z-index: 2;
  right: 26px;
  bottom: 22px;
  margin: 0;
  color: var(--paper);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.directory-stats {
  width: min(var(--content-max), calc(100% - 72px));
  margin: -42px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,253,248,.95);
  box-shadow: var(--shadow);
}
.directory-stats div { padding: 24px 30px; border-right: 1px solid var(--line); }
.directory-stats div:last-child { border-right: 0; }
.directory-stats strong { display: block; color: var(--night); font-size: clamp(27px, 2.2vw, 38px); line-height: 1; letter-spacing: -.05em; }
.directory-stats span { display: block; margin-top: 7px; color: var(--muted); font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }

.directory-intro { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr); gap: clamp(50px, 8vw, 120px); align-items: end; }
.directory-principles { display: grid; grid-template-columns: 45px 1fr; gap: 20px 18px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow-sm); }
.directory-principles > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; color: var(--deep); background: var(--blue-soft); font-size: 11px; font-weight: 900; }
.directory-principles p { margin: 2px 0 0; font-size: 15px; line-height: 1.55; }
.directory-principles strong { color: var(--night); }

.directory-explorer { width: min(var(--header-max), calc(100% - 48px)); border-radius: var(--radius-xl); }
.directory-explorer__heading,
.directory-related__heading { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 34px; }
.directory-explorer__heading h2 { max-width: 880px; }
.directory-result-count { flex: 0 0 auto; margin: 0; padding: 9px 15px; border-radius: 999px; background: var(--night); color: var(--paper); font-size: 13px; font-weight: 830; }
.directory-filters {
  display: grid;
  grid-template-columns: minmax(250px, 1.5fr) minmax(190px, .7fr) minmax(210px, .8fr) auto auto;
  gap: 12px;
  align-items: end;
  margin-bottom: 34px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255,255,255,.78);
  box-shadow: 0 12px 35px rgba(4,17,38,.05);
}
.directory-filters label { display: grid; gap: 7px; }
.directory-filters label > span { padding-left: 3px; color: var(--deep); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.directory-filters input,
.directory-filters select {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(7,26,56,.16);
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  font: inherit;
  font-size: 15px;
}
.directory-filters input::placeholder { color: #8791a2; }
.directory-filter-submit { min-height: 54px; border: 0; cursor: pointer; }
.directory-filter-submit::after { content: "→"; }
.directory-reset { min-height: 54px; display: inline-flex; align-items: center; justify-content: center; padding: 11px 7px; border: 0; color: var(--deep); background: transparent; font-weight: 800; cursor: pointer; text-decoration: underline; text-underline-offset: 4px; }

.directory-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.directory-card {
  --card-accent: var(--blue);
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(4,17,38,.06);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.directory-card:hover { transform: translateY(-5px); border-color: rgba(11,40,84,.28); box-shadow: 0 26px 55px rgba(4,17,38,.12); }
.directory-card > a { min-height: 100%; display: flex; flex-direction: column; padding: 19px; }
.directory-card--restaurant-et-cafe { --card-accent: #ef826f; }
.directory-card--hotel-et-hebergement { --card-accent: #9276d4; }
.directory-card--commerce-local { --card-accent: #efb84a; }
.directory-card--artisan-et-batiment { --card-accent: #5aa988; }
.directory-card--bien-etre { --card-accent: #d28bc8; }
.directory-card--services { --card-accent: #77a8df; }
.directory-card--loisirs-et-tourisme { --card-accent: #4eb8bb; }
.directory-card__top { display: flex; justify-content: space-between; gap: 15px; align-items: center; }
.directory-card__initial { width: 43px; height: 43px; flex: 0 0 auto; display: grid; place-items: center; border-radius: 13px; color: var(--night); background: color-mix(in srgb, var(--card-accent) 55%, white); font-size: 19px; font-weight: 900; box-shadow: inset 0 0 0 1px rgba(7,26,56,.05); }
.directory-card__initial img { width: 100%; height: 100%; padding: 5px; border-radius: inherit; object-fit: contain; background: #fff; }
.directory-card__category { max-width: 170px; overflow: hidden; color: var(--deep); font-size: 10px; font-weight: 900; letter-spacing: .075em; text-align: right; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.directory-card__body { padding: 28px 3px 22px; }
.directory-card__city { margin: 0 0 7px; color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.directory-card__body h3 { font-size: 22px; line-height: 1.08; }
.directory-card__body > p:last-child { margin: 11px 0 0; font-size: 14px; line-height: 1.5; }
.directory-card__footer { display: flex; justify-content: space-between; gap: 14px; align-items: center; margin-top: auto; padding: 15px 3px 2px; border-top: 1px solid var(--line); }
.directory-card__footer span { color: var(--muted); font-size: 10px; font-weight: 760; }
.directory-card__footer strong { color: var(--deep); font-size: 12px; white-space: nowrap; }
.directory-card__footer i { color: var(--coral); font-style: normal; }
.directory-empty { padding: 65px 25px; border: 1px dashed rgba(7,26,56,.2); border-radius: var(--radius); text-align: center; background: rgba(255,255,255,.6); }
.directory-empty strong { display: block; margin-bottom: 8px; color: var(--night); font-size: 24px; }
.directory-empty p { margin: 0; }
.directory-more-wrap { display: flex; justify-content: center; padding-top: 34px; }
.directory-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-top: 34px;
}
.directory-pagination a {
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--coral);
}
.directory-pagination span { color: var(--muted); font-weight: 700; }

.directory-method { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(330px, .75fr); gap: clamp(40px, 8vw, 120px); align-items: center; }
.directory-method__main h2 { max-width: 880px; }
.directory-method__main > p { max-width: 920px; margin-top: 22px; }
.directory-source-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.directory-source-links a { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; color: var(--deep); background: var(--paper); font-size: 12px; font-weight: 780; }
.directory-source-links a::after { content: " ↗"; color: var(--coral); }
.directory-correction { padding: clamp(28px, 4vw, 50px); border-radius: var(--radius-xl); color: var(--paper); background: linear-gradient(145deg, var(--night), var(--deep)); box-shadow: var(--shadow); }
.directory-correction > span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-correction h3 { margin-top: 13px; color: var(--paper); font-size: 31px; }
.directory-correction p { margin-top: 17px; color: rgba(255,255,255,.7); }
.directory-correction .button { margin-top: 13px; }
.directory-cta { margin-top: 0; }

.directory-breadcrumb { width: min(var(--content-max), calc(100% - 72px)); margin: 24px auto -5px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; color: var(--muted); font-size: 12px; font-weight: 750; }
.directory-breadcrumb a:hover { color: var(--coral); }
.page-hero--detail .page-hero__inner { min-height: 560px; grid-template-columns: minmax(0, 1.25fr) minmax(300px, .5fr); gap: clamp(50px, 8vw, 120px); }
.directory-detail-hero h1 { font-size: clamp(56px, 6vw, 94px); }
.directory-detail-tags span { background: rgba(255,255,255,.08); color: rgba(255,255,255,.85); border-color: rgba(255,255,255,.16); }
.directory-identity {
  --card-accent: var(--blue);
  min-height: 330px;
  align-self: center;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 38px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035));
  box-shadow: 0 35px 80px rgba(4,17,38,.28);
  backdrop-filter: blur(15px);
}
.directory-identity > strong { width: 120px; height: 120px; display: grid; place-items: center; margin: 15px 0 20px; border-radius: 32px; color: var(--night); background: color-mix(in srgb, var(--card-accent) 58%, white); font-size: 60px; line-height: 1; }
.directory-identity > strong img { width: 100%; height: 100%; padding: 13px; border-radius: inherit; object-fit: contain; background: #fff; }
.directory-identity__label { color: var(--blue); font-size: 10px; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.directory-identity > p { margin: 0; color: var(--paper); font-size: 18px; font-weight: 850; text-align: center; }
.directory-identity small { display: block; margin-top: 5px; color: rgba(255,255,255,.58); font-size: 12px; font-weight: 700; }

.directory-audit-strip {
  width: min(var(--content-max), calc(100% - 72px));
  margin: -28px auto 0;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,253,248,.97);
  box-shadow: var(--shadow);
}
.directory-audit-strip > div { min-height: 145px; padding: 25px 28px; border-right: 1px solid var(--line); }
.directory-audit-strip > div:last-child { border-right: 0; }
.directory-audit-strip span { display: block; color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-audit-strip strong { display: block; margin-top: 12px; color: var(--night); font-size: 19px; line-height: 1.2; }
.directory-audit-strip small { display: block; margin-top: 9px; color: var(--muted); font-size: 11px; line-height: 1.45; }
.directory-audit-strip .is-positive { background: linear-gradient(145deg, rgba(125,216,255,.14), rgba(255,255,255,.4)); }
.directory-audit-strip .is-positive span { color: var(--deep); }
.directory-audit-strip .is-neutral { background: linear-gradient(145deg, rgba(255,108,80,.06), rgba(255,255,255,.4)); }

.directory-detail-intro { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(360px, .6fr); gap: clamp(50px, 8vw, 125px); align-items: start; }
.directory-detail-copy h2 { max-width: 860px; }
.directory-detail-copy > p { max-width: 930px; margin-top: 24px; font-size: 18px; }
.directory-fact-sheet { padding: 28px; border: 1px solid var(--line); border-radius: 24px; background: var(--paper); box-shadow: var(--shadow-sm); }
.directory-fact-sheet__title { color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-fact-sheet dl { margin: 20px 0; }
.directory-fact-sheet dl div { display: grid; grid-template-columns: 105px 1fr; gap: 18px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.directory-fact-sheet dt { color: var(--muted); font-size: 12px; font-weight: 780; }
.directory-fact-sheet dd { margin: 0; color: var(--night); font-size: 13px; font-weight: 800; }
.directory-external-link,
.directory-source-link { display: flex; justify-content: space-between; gap: 15px; padding: 13px 0; color: var(--deep); font-size: 13px; font-weight: 850; }
.directory-external-link { color: var(--night); }
.directory-external-link span,
.directory-source-link span { color: var(--coral); }
.directory-fact-sheet > small { display: block; margin-top: 8px; color: var(--muted); font-size: 10px; line-height: 1.45; }

.directory-search-opportunity { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(340px, .55fr); gap: clamp(45px, 8vw, 120px); align-items: center; border-radius: var(--radius-xl); }
.directory-search-opportunity__statement > span { color: var(--coral); font-size: 11px; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.directory-search-opportunity blockquote { max-width: 1000px; margin: 22px 0; color: var(--night); font-size: clamp(30px, 3.1vw, 51px); font-weight: 820; line-height: 1.08; letter-spacing: -.045em; }
.directory-search-opportunity blockquote strong { color: var(--deep); }
.directory-search-opportunity blockquote em { color: var(--deep); font-style: normal; text-decoration: underline; text-decoration-color: var(--blue); text-decoration-thickness: 5px; text-underline-offset: 4px; }
.directory-search-opportunity__statement p { max-width: 850px; }
.directory-query-stack { display: grid; gap: 10px; }
.directory-query-stack > div { display: grid; grid-template-columns: 34px 1fr; gap: 1px 12px; padding: 18px; border: 1px solid var(--line); border-radius: 17px; background: var(--paper); box-shadow: 0 10px 25px rgba(4,17,38,.05); }
.directory-query-stack span { grid-row: 1 / 3; color: var(--coral); font-size: 11px; font-weight: 900; }
.directory-query-stack strong { color: var(--night); font-size: 14px; }
.directory-query-stack small { color: var(--muted); font-size: 10px; }

.directory-priority-section .section-intro { max-width: 1000px; }
.directory-priority-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 17px; margin-top: 42px; }
.directory-priority-grid article { min-height: 275px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow-sm); }
.directory-priority-grid article > span { width: 42px; height: 42px; display: grid; place-items: center; margin-bottom: 48px; border-radius: 50%; color: var(--deep); background: var(--blue-soft); font-size: 11px; font-weight: 900; }
.directory-priority-grid h3 { font-size: 22px; }
.directory-priority-grid p { margin: 13px 0 0; font-size: 14px; line-height: 1.55; }
.directory-presence-note { display: grid; grid-template-columns: minmax(0, .75fr) minmax(0, 1.1fr); gap: clamp(50px, 8vw, 130px); padding-top: 15px; border-top: 1px solid var(--line); }
.directory-presence-note p { font-size: 17px; }
.directory-grid--related { grid-template-columns: repeat(3, 1fr); }
.directory-detail-cta { margin-top: 0; }

@media (max-width: 1250px) {
  .directory-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .directory-filters { grid-template-columns: 1.2fr .8fr .8fr; }
  .directory-filter-submit, .directory-reset { width: 100%; }
  .directory-priority-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 960px) {
  .page-hero--directory .directory-hero__inner,
  .page-hero--detail .page-hero__inner { grid-template-columns: 1fr; padding-block: 70px; }
  .directory-hero-photo { width: min(540px, 100%); min-height: 390px; margin: 0 auto; }
  .directory-stats { grid-template-columns: repeat(2, 1fr); margin-top: -25px; }
  .directory-stats div:nth-child(2) { border-right: 0; }
  .directory-stats div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .directory-intro,
  .directory-method,
  .directory-detail-intro,
  .directory-search-opportunity,
  .directory-presence-note { grid-template-columns: 1fr; }
  .directory-audit-strip { grid-template-columns: 1fr; margin-top: -18px; }
  .directory-audit-strip > div { min-height: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .directory-audit-strip > div:last-child { border-bottom: 0; }
  .directory-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .directory-identity { width: min(450px, 100%); justify-self: center; }
}

@media (max-width: 700px) {
  .page-hero--directory .directory-hero__inner,
  .page-hero--detail .page-hero__inner { width: calc(100% - 38px); min-height: auto; padding-block: 54px; }
  .page-hero--directory h1,
  .directory-detail-hero h1 { font-size: clamp(42px, 13vw, 62px); }
  .directory-hero-photo { min-height: 320px; border-radius: 24px 100px 24px 24px; }
  .directory-hero-photo figcaption { right: 18px; bottom: 16px; }
  .directory-stats { width: calc(100% - 32px); }
  .directory-stats div { padding: 18px; }
  .directory-audit-strip { width: calc(100% - 32px); }
  .directory-audit-strip > div { padding: 21px; }
  .directory-intro { gap: 35px; }
  .directory-explorer { width: calc(100% - 24px); }
  .directory-explorer__heading,
  .directory-related__heading { display: grid; align-items: start; }
  .directory-result-count { justify-self: start; }
  .directory-filters { grid-template-columns: 1fr; padding: 13px; }
  .directory-grid,
  .directory-grid--related { grid-template-columns: 1fr; }
  .directory-card > a { min-height: 290px; }
  .directory-breadcrumb { width: calc(100% - 32px); }
  .directory-fact-sheet dl div { grid-template-columns: 90px 1fr; }
  .directory-search-opportunity blockquote { font-size: clamp(29px, 9vw, 42px); }
  .directory-priority-grid { grid-template-columns: 1fr; }
  .directory-priority-grid article { min-height: auto; }
  .directory-priority-grid article > span { margin-bottom: 32px; }
}

:root {
  --sand: #e8ddc9;
  --mint: #b9ddd8;
  --display: Georgia, "Times New Roman", serif;
}

body { background: #f7f5ef; }
h1, h2 { letter-spacing: -.055em; }
.site-header { background: rgba(247,245,239,.9); }
.primary-nav { background: rgba(255,255,255,.76); }
.primary-nav a { padding-inline: 14px; }

.hero {
  background:
    radial-gradient(circle at 14% 72%, rgba(185,221,216,.16), transparent 28rem),
    linear-gradient(122deg, #06142b 0%, #08264a 68%, #15334d 100%);
}
.hero__inner { grid-template-columns: minmax(0, 1.02fr) minmax(500px, .98fr); gap: clamp(52px, 6vw, 110px); }
.hero h1 { max-width: 920px; font-size: clamp(54px, 4.65vw, 82px); }
.hero-photo-stage { position: relative; min-height: 640px; }
.hero-photo { position: absolute; margin: 0; overflow: hidden; background: var(--night); box-shadow: 0 34px 80px rgba(0,0,0,.34); }
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::after { content: ""; position: absolute; inset: 42% 0 0; background: linear-gradient(transparent, rgba(3,13,28,.88)); }
.hero-photo figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: #fff; }
.hero-photo figcaption span, .hero-photo figcaption strong, .hero-photo figcaption small { display: block; }
.hero-photo figcaption span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .14em; }
.hero-photo figcaption strong { font-family: var(--display); font-size: 30px; font-weight: 500; letter-spacing: -.03em; }
.hero-photo figcaption small { color: rgba(255,255,255,.7); font-size: 12px; }
.hero-photo--main { inset: 8px 80px 110px 0; border: 9px solid rgba(255,255,255,.9); border-radius: 160px 26px 26px 26px; transform: rotate(-1.5deg); }
.hero-photo--side { z-index: 2; right: 0; bottom: 10px; width: 47%; height: 265px; border: 7px solid var(--paper); border-radius: 22px 22px 100px 22px; transform: rotate(3deg); }
.hero-photo--side figcaption strong { font-size: 22px; }
.hero-brief-card { position: absolute; z-index: 4; left: -32px; bottom: 28px; width: 255px; padding: 20px; border-radius: 20px; background: var(--coral); color: #fff; box-shadow: var(--shadow); transform: rotate(-3deg); }
.hero-brief-card span, .hero-brief-card strong, .hero-brief-card small { display: block; }
.hero-brief-card span { font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.hero-brief-card strong { margin: 8px 0 20px; font-family: var(--display); font-size: 24px; line-height: 1.02; }
.hero-brief-card small { font-size: 11px; opacity: .75; }

.signal-strip {
  position: relative; z-index: 7; width: min(1320px, calc(100% - 72px)); margin: -36px auto 82px; display: grid;
  grid-template-columns: repeat(4, 1fr); overflow: hidden; border: 1px solid var(--line); border-radius: 22px;
  background: rgba(255,255,255,.96); box-shadow: var(--shadow);
}
.signal-strip div { padding: 24px 28px; border-right: 1px solid var(--line); }
.signal-strip div:last-child { border: 0; }
.signal-strip strong, .signal-strip span { display: block; }
.signal-strip strong { color: var(--deep); font-size: 20px; }
.signal-strip span { color: var(--muted); font-size: 12px; }
.signal-strip + .answer-band { margin-top: 0; }

.page-hero { isolation: isolate; min-height: 570px; }
.page-hero::before {
  z-index: 0; left: auto; right: 0; width: 48%; opacity: 1; background-image:
    linear-gradient(90deg, #06142b 0%, rgba(6,20,43,.18) 58%, rgba(6,20,43,.08) 100%),
    linear-gradient(0deg, rgba(6,20,43,.28), rgba(6,20,43,.05)), var(--page-photo);
  background-size: cover; background-position: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 32%);
}
.page-hero::after { z-index: 1; right: 34px; bottom: 34px; width: 36%; height: calc(100% - 68px); border: 1px solid rgba(255,255,255,.28); border-radius: 24px 150px 24px 24px; box-shadow: none; }
.page-hero__inner { min-height: 570px; }
.page-hero__inner > div { max-width: 850px; padding-right: 60px; }
.page-hero h1 { font-size: clamp(54px, 4.6vw, 80px); }

.tourism-grid .plain-card { min-height: 310px; padding-top: 170px; }
.tourism-grid .plain-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 145px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.tourism-grid .plain-card:nth-child(1)::before { background-image: linear-gradient(0deg, rgba(5,17,38,.18), transparent), url('../img/realisations/icf-restaurant-ambiance-2026.wwc-768.webp'); }
.tourism-grid .plain-card:nth-child(2)::before { background-image: linear-gradient(0deg, rgba(5,17,38,.18), transparent), url('../img/realisations/icf-hotel-ambiance-2026.wwc-768.webp'); }
.tourism-grid .plain-card:nth-child(3)::before { background-image: linear-gradient(0deg, rgba(5,17,38,.18), transparent), url('../img/realisations/icf-commerce-2026.wwc.webp'); }
.tourism-grid .plain-card:nth-child(4)::before { background-image: linear-gradient(0deg, rgba(5,17,38,.18), transparent), url('../img/realisations/icf-artisan-ambiance-2026.wwc-768.webp'); }
.tourism-grid .plain-card h3 { font-family: var(--display); font-size: 27px; font-weight: 500; }

.territory-gallery { min-height: 640px; display: grid; grid-template-columns: 1.1fr .9fr; grid-template-rows: 1fr auto; gap: 16px; }
.territory-gallery figure { position: relative; min-height: 300px; margin: 0; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.territory-gallery__large { grid-row: 1 / 3; }
.territory-gallery img { width: 100%; height: 100%; object-fit: cover; }
.territory-gallery figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.9)); }
.territory-gallery figcaption { position: absolute; z-index: 2; left: 24px; right: 24px; bottom: 22px; color: #fff; }
.territory-gallery figcaption strong, .territory-gallery figcaption span { display: block; }
.territory-gallery figcaption strong { font-family: var(--display); font-size: 30px; font-weight: 500; }
.territory-gallery figcaption span { color: rgba(255,255,255,.72); font-size: 13px; }
.territory-note { padding: 28px; border-radius: 24px; background: var(--coral); color: #fff; box-shadow: var(--shadow); }
.territory-note span, .territory-note strong { display: block; }
.territory-note span { font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.territory-note strong { margin: 9px 0; font-size: 27px; }
.territory-note p { margin: 0; color: rgba(255,255,255,.75); font-size: 14px; }
.local-layout--editorial { grid-template-columns: 1.12fr .88fr; align-items: stretch; }

.editorial-section { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.editorial-section__copy > p:not(.eyebrow) { margin-top: 24px; font-size: 19px; }
.text-link { display: inline-block; margin-top: 30px; color: var(--deep); font-weight: 900; text-decoration: underline; text-decoration-color: var(--coral); text-decoration-thickness: 3px; text-underline-offset: 7px; }
.editorial-stack { position: relative; min-height: 610px; }
.editorial-stack article { position: absolute; overflow: hidden; width: 68%; border: 8px solid var(--paper); border-radius: 26px; background: var(--paper); box-shadow: var(--shadow-xl); }
.editorial-stack article:first-child { left: 0; top: 0; transform: rotate(-3deg); }
.editorial-stack article:last-child { right: 0; bottom: 0; transform: rotate(4deg); }
.editorial-stack img { width: 100%; aspect-ratio: 16/11; object-fit: cover; }
.editorial-stack article div { padding: 20px; }
.editorial-stack span, .editorial-stack strong { display: block; }
.editorial-stack span { color: var(--coral); font-size: 10px; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.editorial-stack strong { margin-top: 6px; color: var(--night); font-family: var(--display); font-size: 24px; line-height: 1.08; }

.region-ribbon { width: min(var(--content-max), calc(100% - 48px)); margin: 30px auto 110px; display: grid; grid-template-columns: .9fr 1.15fr .62fr; gap: 20px; align-items: stretch; }
.context-gallery { width: min(var(--content-max), calc(100% - 48px)); margin: 0 auto 90px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.context-gallery figure { position: relative; min-height: 250px; margin: 0; overflow: hidden; border-radius: 22px; background: var(--night); box-shadow: var(--shadow-sm); }
.context-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.context-gallery figure:hover img { transform: scale(1.04); }
.context-gallery figure::after { content: ""; position: absolute; inset: 54% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.85)); }
.context-gallery figcaption { position: absolute; z-index: 2; left: 20px; bottom: 17px; color: var(--paper); font-size: 13px; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.region-ribbon figure { position: relative; min-height: 470px; margin: 0; overflow: hidden; border-radius: 28px; box-shadow: var(--shadow); }
.region-ribbon figure img { width: 100%; height: 100%; object-fit: cover; }
.region-ribbon figure::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent, rgba(4,17,38,.92)); }
.region-ribbon figcaption { position: absolute; z-index: 2; left: 25px; right: 25px; bottom: 24px; color: #fff; }
.region-ribbon figcaption span, .region-ribbon figcaption strong { display: block; }
.region-ribbon figcaption span { color: var(--blue); font-size: 11px; font-weight: 900; text-transform: uppercase; letter-spacing: .12em; }
.region-ribbon figcaption strong { font-family: var(--display); font-size: 26px; line-height: 1.07; }
.region-ribbon__copy { padding: clamp(38px, 5vw, 72px); border-radius: 28px; background: var(--sand); }
.region-ribbon__copy h2 { font-family: var(--display); font-weight: 500; }
.region-ribbon__copy > p:not(.eyebrow) { margin-top: 24px; color: #46546a; }
.region-ribbon__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.region-ribbon__tags span { padding: 8px 12px; border: 1px solid rgba(7,26,56,.14); border-radius: 999px; background: rgba(255,255,255,.42); color: var(--deep); font-size: 12px; font-weight: 800; }
.region-ribbon__side { margin-top: 90px !important; min-height: 380px !important; }
.region-ribbon__side figcaption { font-size: 13px; font-weight: 850; }

@media (max-width: 1180px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero-photo-stage { max-width: 760px; width: 100%; }
  .page-hero::before { width: 58%; }
  .region-ribbon { grid-template-columns: 1fr 1fr; }
  .region-ribbon__side { display: none; }
}

@media (max-width: 820px) {
  .signal-strip { grid-template-columns: 1fr 1fr; width: min(100% - 28px, 1320px); margin-bottom: 48px; }
  .signal-strip div:nth-child(2) { border-right: 0; }
  .signal-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .page-hero::before { width: 100%; opacity: .48; mask-image: none; }
  .page-hero::after { display: none; }
  .page-hero__inner > div { padding-right: 0; }
  .local-layout--editorial, .editorial-section, .region-ribbon { grid-template-columns: 1fr; }
  .context-gallery { grid-template-columns: 1fr; margin-bottom: 70px; }
  .visual-story__grid { grid-template-columns: 1fr; }
  .visual-showcase__grid { grid-template-columns: 1fr; }
  .editorial-stack { min-height: 540px; }
  .region-ribbon figure { min-height: 380px; }
}

@media (max-width: 700px) {
  .hero-photo-stage { min-height: 510px; }
  .hero-photo--main { inset: 0 28px 90px 0; border-width: 6px; border-radius: 100px 20px 20px 20px; }
  .hero-photo--side { width: 54%; height: 205px; border-width: 5px; }
  .hero-brief-card { left: 0; bottom: 12px; width: 210px; padding: 16px; }
  .hero-brief-card strong { font-size: 20px; }
  .signal-strip div { padding: 18px; }
  .signal-strip strong { font-size: 17px; }
  .territory-gallery { min-height: auto; grid-template-columns: 1fr; grid-template-rows: auto; }
  .territory-gallery__large { grid-row: auto; }
  .territory-gallery figure { min-height: 330px; }
  .editorial-stack { min-height: 480px; }
  .editorial-stack article { width: 82%; border-width: 5px; }
  .region-ribbon { width: min(100% - 28px, var(--content-max)); margin-bottom: 70px; }
  .region-ribbon__copy { padding: 32px 26px; }
}

.directory-home-teaser {
  margin-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 35px;
  align-items: center;
  padding: clamp(28px, 4vw, 48px);
  overflow: hidden;
  border-radius: 28px;
  color: var(--paper);
  background:
    radial-gradient(circle at 82% 30%, rgba(125,183,232,.22), transparent 18rem),
    linear-gradient(125deg, var(--night), var(--deep));
  box-shadow: var(--shadow);
}
.directory-home-teaser div { max-width: 930px; }
.directory-home-teaser span,
.directory-home-teaser strong { display: block; }
.directory-home-teaser span { color: var(--blue); font-size: 11px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
.directory-home-teaser strong { margin-top: 8px; font-family: var(--display); font-size: clamp(29px, 3vw, 43px); font-weight: 500; line-height: 1.05; }
.directory-home-teaser p { margin: 12px 0 0; color: rgba(255,255,255,.7); }
.directory-home-teaser .button { flex: 0 0 auto; }

@media (max-width: 820px) {
  .directory-home-teaser { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 1060px) {
  .primary-nav {
    justify-content: stretch;
    background: var(--paper);
  }
  .primary-nav a { width: 100%; }
}

@media (max-width: 700px) {
  .hero h1,
  .page-hero h1,
  .directory-detail-hero h1 {
    font-size: clamp(38px, 10.4vw, 46px);
    line-height: 1;
  }
  .hero__inner {
    gap: 40px;
    padding-block: 52px 60px;
  }
  .page-hero,
  .page-hero__inner { min-height: auto; }
  .page-hero__inner { padding-block: 54px; }
  .hero__lead,
  .page-hero__lead {
    margin-top: 24px;
    font-size: 17px;
    line-height: 1.52;
  }
  .hero-photo-stage { min-height: 440px; }
}
