@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #f4efe8;
  --bg-strong: #ede5da;
  --surface: rgba(255, 252, 248, 0.9);
  --surface-soft: rgba(255, 252, 248, 0.68);
  --surface-dark: #122033;
  --ink: #182131;
  --ink-soft: #445065;
  --white: #ffffff;
  --brand: #8f004b;
  --brand-deep: #661235;
  --accent: #c0a17a;
  --line: rgba(24, 33, 49, 0.12);
  --line-strong: rgba(24, 33, 49, 0.22);
  --shadow-lg: 0 24px 70px rgba(24, 33, 49, 0.12);
  --shadow-xl: 0 40px 90px rgba(18, 32, 51, 0.18);
  --radius-sm: 18px;
  --radius-md: 28px;
  --radius-lg: 38px;
  --hero-desktop-offset: 8.5rem;
  --font-body: "Manrope", sans-serif;
  --font-display: "Cormorant Garamond", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: linear-gradient(180deg, #f7f2eb 0%, var(--bg) 35%, #f8f4ee 100%);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(143, 0, 75, 0.11), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(192, 161, 122, 0.18), transparent 26%),
    radial-gradient(circle at 82% 72%, rgba(18, 32, 51, 0.07), transparent 28%);
  pointer-events: none;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.28) 0, rgba(255, 255, 255, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.3) 0, rgba(255, 255, 255, 0) 18%);
  pointer-events: none;
  z-index: -1;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

p,
li {
  color: var(--ink-soft);
}

h1,
h2,
h3,
h4 {
  margin: 0;
  color: var(--ink);
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.eyebrow,
.section-label {
  margin: 0 0 0.75rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--brand);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  box-shadow: 0 16px 34px rgba(143, 0, 75, 0.22);
}

.btn-primary:hover {
  box-shadow: 0 20px 38px rgba(143, 0, 75, 0.28);
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 252, 248, 0.72);
  border-color: rgba(24, 33, 49, 0.1);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.9);
}

.text-link {
  color: var(--brand);
  font-weight: 700;
}

.text-link:hover {
  color: var(--brand-deep);
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.8rem;
}

.section-shell {
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}

.section-heading {
  max-width: 700px;
  margin-bottom: 2.25rem;
}

.section-heading--wide {
  max-width: none;
}

.section-heading--wide h2 {
  max-width: 700px;
}

.section-heading--wide p:last-child {
  max-width: none;
}

.section-heading h2,
.trust-card h2,
.cta-surface h2,
.page-hero h1,
.hero-copy h1 {
  font-family: var(--font-display);
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.section-heading h2 {
  font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.section-heading p {
  margin: 1rem 0 0;
  font-size: 1.05rem;
}

.site-topbar {
  background: rgba(18, 32, 51, 0.96);
  color: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding: 0.8rem 0;
  font-size: 0.86rem;
}

.topbar-inner p {
  margin: 0;
  color: inherit;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.topbar-link {
  color: rgba(255, 255, 255, 0.88);
}

.topbar-link:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(246, 240, 233, 0.78);
  border-bottom: 1px solid rgba(24, 33, 49, 0.08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.brand img {
  width: min(270px, 26vw);
  min-width: 180px;
}

.brand-baseline {
  font-size: 0.69rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(24, 33, 49, 0.62);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.18rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
  flex: 0 0 auto;
}

.nav-item.has-panel::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 22px;
}

.nav-trigger,
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 0.8rem;
  border: 0;
  background: transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 700;
  color: var(--ink);
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-trigger:hover,
.nav-link:hover,
.nav-item.is-current > .nav-trigger,
.nav-link.is-current {
  background: rgba(24, 33, 49, 0.06);
  color: var(--brand);
}

.nav-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  margin-left: 0.65rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.25s ease;
}

.has-panel.is-open .nav-trigger::after,
.has-panel:hover .nav-trigger::after {
  transform: rotate(-135deg) translateX(-2px);
}

.nav-panel {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 50%;
  width: min(370px, 82vw);
  padding: 1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(24, 33, 49, 0.08);
  background: rgba(255, 252, 248, 0.96);
  box-shadow: var(--shadow-xl);
  display: grid;
  gap: 0.65rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, 14px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.has-panel:hover .nav-panel,
.has-panel:focus-within .nav-panel,
.has-panel.is-open .nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.panel-link {
  display: grid;
  gap: 0.2rem;
  padding: 1rem 1rem 0.95rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 49, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.panel-link span {
  color: var(--ink);
  font-weight: 700;
}

.panel-link small {
  color: var(--ink-soft);
  line-height: 1.45;
}

.panel-link:hover,
.panel-link.is-current {
  transform: translateY(-1px);
  border-color: rgba(143, 0, 75, 0.18);
  background: rgba(255, 248, 252, 0.86);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex: 0 0 auto;
}

.nav-actions .btn {
  padding: 0.82rem 1.1rem;
  font-size: 0.94rem;
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(24, 33, 49, 0.1);
  background: rgba(255, 255, 255, 0.72);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

body.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

body.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero-home {
  padding: clamp(0.25rem, 0.9vw, 0.7rem) 0 0;
  position: relative;
  min-height: 650px;
  background: rgba(247, 243, 237, 0.96);
  isolation: isolate;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../images/immeuble-desktop.webp") center 31% / cover no-repeat;
  opacity: 0.4;
  z-index: 0;
  pointer-events: none;
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 243, 237, 0.95) 0%, rgba(247, 243, 237, 0.88) 26%, rgba(247, 243, 237, 0.6) 52%, rgba(247, 243, 237, 0.22) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(247, 243, 237, 0.18) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: clamp(1.7rem, 2.8vw, 2.35rem);
  align-items: start;
  position: relative;
  z-index: 2;
  min-height: 585px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 585px;
  padding: 0.25rem 0 clamp(1.45rem, 2.3vw, 2rem);
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 4.2vw, 3.95rem);
  line-height: 0.91;
  margin: 0 0 0.85rem;
  max-width: none;
}

.hero-copy p:last-of-type {
  margin: clamp(1.35rem, 2.2vw, 1.9rem) 0 0;
  font-size: 1.08rem;
  line-height: 1.72;
  max-width: 54ch;
}

.hero-copy .action-row {
  margin-top: 2rem;
}

.hero-founder-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
  gap: 1.35rem;
  align-items: center;
  width: 100%;
  padding: 1.25rem 1.4rem;
  margin: 0;
  border-radius: 28px;
  background: rgba(255, 251, 247, 0.86);
  border: 1px solid rgba(24, 33, 49, 0.08);
  box-shadow: var(--shadow-lg);
}

.intro-grid.intro-grid--founder {
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.62fr);
  margin-bottom: 2.2rem;
  align-items: stretch;
}

.section-shell--intro {
  padding-top: clamp(2.2rem, 4.4vw, 3rem);
}

.intro-grid--founder .section-heading {
  max-width: none;
  margin-bottom: 0;
}

.hero-founder-panel--photo {
  display: block;
  padding: 0;
  overflow: hidden;
  align-self: stretch;
  min-height: 100%;
  width: min(100%, 430px);
  justify-self: end;
}

.hero-founder-panel--photo .hero-founder-media {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border-radius: 28px;
  margin: 0;
  aspect-ratio: 4 / 5;
}

.hero-founder-media {
  position: relative;
  min-height: 250px;
  border-radius: 26px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

.hero-founder-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 12%;
  transform: scale(1.08);
  transform-origin: center center;
}

.hero-founder-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  margin-bottom: 0.45rem;
}

.hero-founder-copy p:last-child {
  margin: 0;
  max-width: none;
}

.hero-visual {
  padding-top: 0;
  padding-bottom: 0;
}

.hero-image-stack {
  position: relative;
  min-height: 585px;
}

.hero-main-image {
  display: none;
}

@media (min-width: 1101px) {
  .hero-home {
    min-height: max(40.625rem, calc(100dvh - var(--hero-desktop-offset)));
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-founder-panel--photo {
    margin-top: 0.95rem;
  }
}

.hero-main-image img,
.feature-media img,
.founder-figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-stat,
.page-hero-card,
.value-card,
.timeline-card,
.feature-card,
.resource-card,
.contact-card,
.trust-card {
  box-shadow: var(--shadow-lg);
}

.floating-stat {
  position: absolute;
  top: 1.15rem;
  right: 0;
  width: min(240px, 75%);
  padding: 1.35rem;
  border-radius: 26px;
  background: rgba(18, 32, 51, 0.94);
  color: rgba(255, 255, 255, 0.88);
}

.floating-stat strong {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--white);
  font-size: 1.15rem;
}

.floating-stat p:last-child {
  margin: 0;
  color: inherit;
}

.floating-stat .section-label {
  color: rgba(255, 255, 255, 0.74);
}

.trust-strip {
  padding-bottom: 2rem;
}

.trust-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  align-items: start;
  padding: 1.75rem;
  border-radius: 30px;
  background: rgba(255, 252, 248, 0.82);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.trust-card h2 {
  font-size: clamp(2rem, 2.85vw, 2.85rem);
}

.trust-card-heading {
  max-width: 620px;
}

.trust-card-text {
  grid-column: 1 / -1;
  margin: 0;
  max-width: none;
}

.trust-logo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
}

.trust-logo-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 126px;
  padding: 1rem 0.9rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(24, 33, 49, 0.08);
  text-align: center;
}

.trust-reg-logo {
  display: block;
  width: 100%;
  max-width: 136px;
  max-height: 58px;
  object-fit: contain;
}

.trust-reg-logo--cci {
  max-width: 170px;
}

.trust-reg-logo--cncgp {
  max-width: 120px;
}

.trust-reg-logo--amf,
.trust-reg-logo--acpr {
  max-height: 66px;
}

.trust-logo-note {
  margin: 0.7rem 0 0;
  font-size: 0.76rem;
  line-height: 1.32;
  font-weight: 700;
  color: #1d6ea5;
}

.intro-grid,
.split-feature,
.founder-surface,
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: 2rem;
  align-items: start;
}

.value-grid,
.resource-grid,
.contact-grid {
  display: grid;
  gap: 1rem;
}

.value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.value-card,
.timeline-card,
.feature-card,
.resource-card,
.contact-card,
.page-hero-card {
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.value-card h3,
.timeline-card h3,
.feature-card h3,
.resource-card h3,
.contact-card h2 {
  margin-bottom: 0.7rem;
  font-size: 1.24rem;
}

.tone-dark {
  padding-top: 1rem;
}

.section-surface,
.founder-surface,
.cta-surface {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.tone-dark .section-surface {
  padding: clamp(2rem, 4vw, 3.2rem);
  background:
    linear-gradient(135deg, rgba(18, 32, 51, 0.98) 0%, rgba(22, 33, 52, 0.98) 58%, rgba(82, 28, 59, 0.98) 100%);
  color: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-xl);
}

.tone-dark .section-heading h2,
.tone-dark .section-heading p,
.tone-dark .section-heading .eyebrow,
.tone-dark .need-card h3,
.tone-dark .need-card p {
  color: var(--white);
}

.tone-dark .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.need-card {
  display: block;
  padding: 1.45rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, background 0.25s ease;
}

.need-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 1rem;
  border-radius: 18px;
  background: rgba(143, 0, 75, 0.08);
  color: var(--brand);
  font-weight: 800;
}

.feature-media,
.founder-figure {
  position: relative;
  min-height: 540px;
  height: 100%;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.feature-media--contain {
  background: rgba(255, 255, 255, 0.96);
}

.feature-media--contain img {
  object-fit: contain;
  object-position: center;
  padding: 1rem;
}

.feature-media--diagram img {
  padding: 0.6rem;
}

.feature-media--diagram {
  display: grid;
  grid-template-rows: auto auto;
  gap: 0.25rem;
  min-height: auto;
  height: auto;
  aspect-ratio: auto;
  width: 100%;
  max-width: 100%;
  align-self: start;
  padding: 1rem;
}

.feature-media--diagram .feature-media-visual {
  position: relative;
  min-height: auto;
  aspect-ratio: 1.72;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
}

.feature-media--diagram .feature-overlay-card {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 100%;
  margin: 0;
}

.feature-media--diagram .feature-media-visual img {
  position: absolute;
  inset: 0.35rem 0.45rem 0.45rem;
  width: calc(100% - 0.9rem);
  height: calc(100% - 0.8rem);
  padding: 0;
  border-radius: 26px;
  object-fit: contain;
  object-position: center top;
  transform: none;
}

.feature-overlay-card {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  padding: 1.1rem 1.2rem;
  border-radius: 22px;
  background: rgba(18, 32, 51, 0.82);
  color: var(--white);
}

.feature-overlay-card strong {
  font-size: 1.05rem;
}

.feature-overlay-card .section-label {
  color: rgba(255, 255, 255, 0.76);
}

.feature-stack {
  display: grid;
  gap: 1rem;
}

.feature-stack--wide .section-heading {
  max-width: 920px;
}

.methodology-home {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2rem;
  align-items: start;
}

.methodology-home-copy {
  grid-column: 1;
  grid-row: 1;
  gap: 1.15rem;
}

.methodology-home-copy .section-heading {
  margin-bottom: 0;
}

.methodology-home-copy .action-row {
  margin-top: 0.15rem;
}

.method-summary--duo {
  margin: 1.6rem 0 0;
  grid-column: 2;
  grid-row: 1;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.founder-surface {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  padding: clamp(1.25rem, 3vw, 1.8rem);
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.9) 0%, rgba(241, 233, 223, 0.92) 100%);
  border: 1px solid rgba(24, 33, 49, 0.08);
  box-shadow: var(--shadow-lg);
}

.founder-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: clamp(1rem, 2vw, 1.4rem);
}

.founder-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.7rem);
  line-height: 0.98;
}

.pillar-list {
  display: grid;
  gap: 1rem;
}

.pillar-list strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
}

.resource-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-grid-2,
.content-grid-3,
.tail-grid {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 2.2rem;
}

.content-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-grid-3,
.tail-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.detail-card,
.tail-card,
.callout-note {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.detail-card h3,
.tail-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.18rem;
}

.detail-card p,
.tail-card p,
.callout-note p {
  margin: 0;
}

.callout-note {
  margin: 1.4rem 0 0;
  background: linear-gradient(135deg, rgba(143, 0, 75, 0.08) 0%, rgba(255, 255, 255, 0.8) 100%);
  border-color: rgba(143, 0, 75, 0.14);
}

.page-tail {
  padding: 0 0 4.5rem;
}

.page-tail-inner {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(18, 32, 51, 0.97) 0%, rgba(44, 31, 55, 0.96) 100%);
  color: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-xl);
}

.page-tail-copy {
  max-width: 680px;
  margin-bottom: 1.6rem;
}

.page-tail-copy h2 {
  color: var(--white);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1;
}

.page-tail-copy p,
.page-tail-copy .eyebrow,
.tail-card h3,
.tail-card p {
  color: inherit;
}

.tail-card {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.1);
}

.tail-card .text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--white);
}

.cta-band {
  padding: 1rem 0 6rem;
}

.cta-surface {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(143, 0, 75, 0.98) 0%, rgba(82, 28, 59, 0.96) 58%, rgba(18, 32, 51, 0.96) 100%);
  color: var(--white);
  box-shadow: var(--shadow-xl);
}

.cta-surface h2,
.cta-surface p,
.cta-surface .eyebrow {
  color: var(--white);
}

.cta-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cta-surface .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.inner-page .page-hero,
.contact-page .page-hero {
  padding: clamp(2.4rem, 5vw, 4rem) 0 2rem;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 5vw, 4.9rem);
  margin-bottom: 1rem;
}

.page-intro {
  margin: 0;
  max-width: 54ch;
  font-size: 1.08rem;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: end;
}

.page-bullets,
.contact-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.page-bullets li,
.contact-list li {
  position: relative;
  padding-left: 1.25rem;
}

.page-bullets li::before,
.contact-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--accent));
}

.page-content {
  width: min(1100px, calc(100% - 32px));
  margin: 0 auto 5rem;
  padding: clamp(1.4rem, 4vw, 2.8rem);
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 248, 0.88);
  border: 1px solid rgba(24, 33, 49, 0.08);
  box-shadow: var(--shadow-lg);
}

.page-content h1 {
  display: none;
}

.page-content h2 {
  margin: 2.6rem 0 1rem;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-family: var(--font-display);
  line-height: 1.05;
}

.page-content h3 {
  margin: 0 0 0.65rem;
  font-size: 1.22rem;
}

.page-content h4 {
  margin: 1.2rem 0 0.5rem;
  font-size: 1rem;
  color: var(--ink);
}

.page-content p {
  margin: 0 0 1rem;
}

.page-content strong,
.page-content em,
.page-content a {
  color: var(--ink);
}

.page-content a {
  color: var(--brand);
}

.page-content ul,
.page-content ol {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 2rem;
  padding: 0;
}

.page-content ul li,
.page-content ol li {
  list-style: none;
  padding: 1rem 1rem 1rem 1.2rem;
  border-radius: 22px;
  border: 1px solid rgba(24, 33, 49, 0.08);
  background: rgba(255, 255, 255, 0.62);
}

.page-content ol {
  counter-reset: steps;
}

.page-content ol li {
  position: relative;
  padding-left: 4rem;
}

.page-content ol li::before {
  counter-increment: steps;
  content: counter(steps, decimal-leading-zero);
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(143, 0, 75, 0.09);
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
}

.page-content ul.plain-list {
  display: block;
  padding-left: 1.2rem;
}

.page-content ul.plain-list li {
  list-style: disc;
  background: transparent;
  border: 0;
  padding: 0;
  margin: 0 0 0.7rem 1rem;
}

.method-block {
  margin: 1.6rem 0;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(143, 0, 75, 0.12);
  background: linear-gradient(135deg, rgba(143, 0, 75, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.method-block > p:last-child,
.method-block > ul:last-child,
.method-block > ol:last-child {
  margin-bottom: 0;
}

.method-summary {
  display: grid;
  gap: 1rem;
  margin: 1.4rem 0 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.method-summary.method-summary--duo {
  gap: 1rem;
  margin: 1.6rem 0 0;
  grid-column: 2;
  grid-row: 1;
  grid-template-columns: 1fr;
}

.method-summary-card {
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.method-summary-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.16rem;
}

.page-content hr {
  height: 1px;
  border: 0;
  background: rgba(24, 33, 49, 0.12);
  margin: 2rem 0;
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.contact-card .btn {
  margin-top: 1rem;
}

.site-footer {
  padding-top: 2rem;
}

.footer-surface {
  padding: 3rem 0 2rem;
  background: rgba(18, 32, 51, 0.98);
  color: rgba(255, 255, 255, 0.84);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(3, minmax(0, 0.75fr));
  gap: 1.8rem;
}

.footer-reviews {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-reviews-copy {
  max-width: 720px;
}

.footer-reviews-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1;
  color: var(--white);
}

.footer-review-widget {
  width: 100%;
  padding: 0.35rem;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-review-widget .embedsocial-hashtag {
  width: 100%;
  min-height: 220px;
}

.footer-review-widget iframe,
.footer-review-widget > div {
  width: 100%;
}

.footer-brand img {
  width: min(280px, 100%);
  margin-bottom: 1rem;
}

.footer-brand p,
.footer-trust-copy p,
.footer-meta p {
  color: inherit;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-title {
  margin: 0 0 0.25rem;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.62);
}

.footer-mail,
.footer-column a {
  color: rgba(255, 255, 255, 0.9);
}

.footer-column a:hover,
.footer-mail:hover {
  color: var(--white);
}

.footer-contact-list {
  display: grid;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.footer-link {
  color: rgba(255, 255, 255, 0.9);
}

.footer-link:hover {
  color: var(--white);
}

.footer-trust,
.footer-meta {
  margin-top: 2rem;
  padding-top: 1.3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-trust {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-trust-copy {
  max-width: 520px;
}

.footer-logo-row {
  justify-content: flex-end;
}

.footer-logo-row .partner-logo {
  background: rgba(255, 255, 255, 0.96);
  padding: 0.55rem 0.85rem;
  border-radius: 18px;
}

.media-grid {
  margin-top: 1.5rem;
}

.media-card {
  overflow: hidden;
}

.media-card img {
  width: calc(100% + 3rem);
  max-width: none;
  height: 220px;
  margin: -1.5rem -1.5rem 1.2rem;
  object-fit: cover;
}

.media-card .resource-embed {
  width: calc(100% + 3rem);
  margin: -1.5rem -1.5rem 1.2rem;
  padding: 0.6rem;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 33, 49, 0.08);
  background: rgba(248, 244, 239, 0.92);
}

.media-card .resource-embed iframe {
  display: block;
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 18px;
  background: transparent;
  overflow: hidden;
}

.media-card--contain img {
  width: calc(100% + 3rem);
  max-width: none;
  height: 220px;
  margin: -1.5rem -1.5rem 1.2rem;
  padding: 0.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.98);
  object-fit: contain;
  object-position: center;
}

.media-card--collage .media-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: stretch;
  gap: 0.8rem;
  width: calc(100% + 3rem);
  height: 220px;
  margin: -1.5rem -1.5rem 1.2rem;
  padding: 0.55rem;
  border-bottom: 1px solid rgba(24, 33, 49, 0.08);
  background: linear-gradient(135deg, rgba(248, 244, 239, 0.96) 0%, rgba(255, 255, 255, 0.92) 100%);
}

.media-card--collage .media-collage-frame {
  margin: 0;
  height: 100%;
  padding: 0.28rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 14px 34px rgba(24, 33, 49, 0.08);
  overflow: hidden;
}

.media-card--collage .media-collage-frame--offset {
  align-self: end;
  height: calc(100% - 1rem);
}

.media-card--collage .media-collage-frame img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border-radius: 16px;
  background: transparent;
  object-fit: cover;
  object-position: center;
}

.partner-wall,
.partner-panel {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(24, 33, 49, 0.08);
  background: linear-gradient(135deg, rgba(255, 252, 248, 0.94) 0%, rgba(240, 232, 223, 0.96) 100%);
  box-shadow: var(--shadow-xl);
}

.partner-wall {
  display: grid;
  align-content: start;
  gap: 1.5rem;
  min-height: 540px;
  padding: clamp(1.5rem, 3vw, 2rem);
}

.partner-wall--full {
  min-height: auto;
  margin-top: 1.5rem;
}

.partner-wall-copy h3 {
  margin-bottom: 0.55rem;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-family: var(--font-display);
  line-height: 1;
}

.partner-wall-copy p:last-child,
.partner-panel p:last-child {
  margin-bottom: 0;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.partner-grid--compact {
  margin-top: 1rem;
}

.partner-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 1rem 1.15rem;
  border-radius: 24px;
  border: 1px solid rgba(24, 33, 49, 0.08);
  background: rgba(255, 255, 255, 0.84);
  text-align: center;
  overflow: hidden;
}

.partner-brand-mark {
  display: block;
  width: 100%;
  max-width: 188px;
  max-height: 60px;
  object-fit: contain;
  transform: scale(1.12);
  transform-origin: center;
}

.partner-brand-mark--metlife,
.partner-brand-mark--wide,
.partner-brand-mark--abeille {
  max-width: 192px;
}

.partner-brand-mark--square {
  max-width: 132px;
  max-height: 132px;
  transform: scale(1.58);
}

.partner-brand-mark--swisslife {
  max-width: 142px;
  max-height: 142px;
  transform: scale(1.66);
}

.partner-brand-mark--april {
  max-width: 126px;
  max-height: 126px;
  transform: scale(1.44);
}

.partner-brand-mark--generali {
  max-width: 210px;
  max-height: 68px;
  transform: scale(1.22);
}

.partner-tile--mma {
  overflow: hidden;
}

.partner-brand-mark--mma {
  max-width: 172px;
  max-height: 66px;
  transform: scale(1.18);
}

.partner-brand-mark--uaf {
  max-width: 178px;
  max-height: 58px;
  transform: scale(1.22);
}

.association-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin: 1.6rem 0 0;
}

.association-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.association-chip img {
  width: auto;
  height: 38px;
  object-fit: contain;
}

.association-chip span {
  font-weight: 700;
  color: var(--ink);
}

.audience-block {
  margin-top: 1.4rem;
  padding: 1.4rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(24, 33, 49, 0.08);
}

.audience-block:first-of-type {
  margin-top: 2rem;
}

.audience-block h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-family: var(--font-display);
  line-height: 1.02;
}

.audience-block p:last-child {
  margin-bottom: 0;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  padding: 1.25rem;
  background: rgba(10, 18, 30, 0.62);
  backdrop-filter: blur(8px);
  overflow-y: auto;
}

.modal-content {
  position: relative;
  width: min(760px, 100%);
  margin: 4vh auto;
  padding: clamp(1.25rem, 4vw, 2rem);
  border-radius: 32px;
  background: rgba(255, 252, 248, 0.98);
  border: 1px solid rgba(24, 33, 49, 0.08);
  box-shadow: var(--shadow-xl);
}

.hubspot-modal h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 0.98;
}

.hubspot-modal p {
  max-width: 60ch;
}

.hubspot-modal .hs-form-frame {
  margin-top: 1.4rem;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(24, 33, 49, 0.08);
  color: var(--ink);
  font-size: 1.6rem;
  cursor: pointer;
}

.close-btn:hover {
  background: rgba(24, 33, 49, 0.14);
}

.footer-meta p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .hero-grid,
  .intro-grid,
  .split-feature,
  .founder-surface,
  .page-hero-grid,
  .trust-card {
    grid-template-columns: 1fr;
  }

  .methodology-home {
    grid-template-columns: 1fr;
  }

  .methodology-home-copy,
  .method-summary--duo,
  .methodology-home-actions {
    grid-column: auto;
    grid-row: auto;
  }

  .method-summary--duo,
  .method-summary.method-summary--duo {
    margin-top: 0;
    grid-column: auto;
    grid-row: auto;
    grid-template-columns: 1fr;
  }

  .trust-card,
  .footer-trust,
  .cta-surface,
  .footer-reviews {
    align-items: flex-start;
  }

  .intro-grid--founder {
    margin-bottom: 1.8rem;
  }

  .intro-grid.intro-grid--founder {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .hero-founder-panel--photo {
    width: min(100%, 320px);
    min-height: auto;
    justify-self: center;
  }

  .hero-founder-panel--photo .hero-founder-media {
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-image-stack {
    min-height: auto;
  }

  .hero-main-image {
    margin: 0;
  }

  .hero-copy {
    display: block;
    min-height: auto;
  }

  .hero-copy p:last-of-type {
    margin-top: 0;
  }

  .floating-stat {
    right: 1rem;
  }

  .trust-logo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-grid,
  .need-grid,
  .timeline,
  .resource-grid,
  .contact-grid,
  .method-summary,
  .content-grid-3,
  .tail-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-topbar {
    display: none;
  }

  .hero-home::before {
    background-image: url("../images/immeuble-mobile.webp");
    background-position: center 30%;
    opacity: 0.3;
  }

  .hero-home::after {
    background:
      linear-gradient(180deg, rgba(247, 243, 237, 0.94) 0%, rgba(247, 243, 237, 0.9) 38%, rgba(247, 243, 237, 0.84) 100%);
  }

  .site-header {
    top: 0;
  }

  .header-inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    padding: 0.8rem 0;
  }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 100vh;
    height: 100dvh;
    padding: 5.75rem 1rem 1.5rem;
    background: #122033;
    color: var(--white);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
    z-index: 100;
    display: none;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  body.nav-open {
    overflow: hidden;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    z-index: 110;
    width: 48px;
    height: 48px;
  }

  body.nav-open .nav-toggle {
    position: fixed;
    top: 0.85rem;
    right: 0.85rem;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(10px);
  }

  body.nav-open .nav-toggle span {
    background: var(--white);
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
  }

  .nav-item {
    padding-bottom: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-item.has-panel::after {
    display: none;
  }

  .nav-trigger,
  .nav-link {
    width: 100%;
    justify-content: space-between;
    padding: 0.45rem 0;
    color: var(--white);
  }

  .nav-trigger:hover,
  .nav-link:hover,
  .nav-item.is-current > .nav-trigger,
  .nav-link.is-current {
    background: transparent;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-panel {
    position: static;
    width: auto;
    margin-top: 0.8rem;
    padding: 0.8rem;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    display: none;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
  }

  .has-panel:hover .nav-panel,
  .has-panel:focus-within .nav-panel {
    transform: none;
  }

  .has-panel.is-open .nav-panel {
    display: grid;
  }

  .panel-link {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
  }

  .panel-link span,
  .panel-link small {
    color: rgba(255, 255, 255, 0.9);
  }

  .nav-actions {
    margin-top: 1rem;
    flex-direction: column;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .hero-copy {
    display: block;
    min-height: auto;
    padding-bottom: 1.6rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-stat {
    position: static;
    width: 100%;
    margin: 1rem 0 0;
  }

  .cta-surface {
    flex-direction: column;
  }

  .footer-reviews {
    flex-direction: column;
  }
}

@media (max-width: 680px) {
  .shell,
  .page-content {
    width: min(100% - 20px, 100%);
  }

  .brand img {
    width: min(210px, 56vw);
    min-width: 0;
  }

  .brand-baseline {
    font-size: 0.54rem;
    letter-spacing: 0.08em;
  }

  .hero-home {
    min-height: auto;
    padding-top: 0.55rem;
  }

  .hero-grid {
    min-height: auto;
    gap: 1rem;
  }

  .hero-copy {
    display: block;
    min-height: auto;
    padding: 0.15rem 0 1rem;
  }

  .eyebrow,
  .section-label {
    margin-bottom: 0.6rem;
    font-size: 0.66rem;
    letter-spacing: 0.19em;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 9.4vw, 3rem);
    line-height: 0.94;
    margin-bottom: 0.65rem;
    max-width: none;
  }

  .hero-copy p:last-of-type {
    margin-top: 0.95rem;
    font-size: 0.96rem;
    line-height: 1.58;
    max-width: none;
  }

  .action-row {
    gap: 0.7rem;
    margin-top: 1.2rem;
  }

  .btn {
    min-height: 50px;
    padding: 0.9rem 1.1rem;
  }

  .hero-visual {
    padding-bottom: 0.9rem;
  }

  .floating-stat,
  .hero-founder-panel {
    border-radius: 22px;
  }

  .value-grid,
  .need-grid,
  .timeline,
  .resource-grid,
  .contact-grid,
  .footer-grid,
  .method-summary,
  .content-grid-2,
  .content-grid-3,
  .tail-grid {
    grid-template-columns: 1fr;
  }

  .hero-founder-panel {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 0.95rem;
  }

  .intro-grid.intro-grid--founder {
    gap: 0.9rem;
  }

  .hero-founder-panel--photo {
    width: min(100%, 250px);
    justify-self: center;
  }

  .hero-founder-panel--photo .hero-founder-media {
    width: 100%;
    height: auto;
    min-height: auto;
    aspect-ratio: 4 / 5;
  }

  .hero-founder-media {
    width: 100%;
    min-height: auto;
    margin: 0;
  }

  .hero-founder-media img {
    transform: scale(1.02);
    object-position: center 10%;
  }

  .trust-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-logo-tile--orias {
    grid-column: 1 / -1;
  }

  .cta-actions,
  .action-row {
    width: 100%;
  }

  .cta-actions .btn,
  .action-row .btn {
    width: 100%;
  }

  .site-nav {
    padding-top: 5rem;
  }

  .media-card img {
    width: calc(100% + 2.4rem);
    height: 200px;
    margin: -1.2rem -1.2rem 1rem;
  }

  .media-card--collage .media-collage {
    width: calc(100% + 2.4rem);
    height: 200px;
    margin: -1.2rem -1.2rem 1rem;
    gap: 0.6rem;
    padding: 0.45rem;
  }

  .media-card--collage .media-collage-frame--offset {
    height: calc(100% - 0.7rem);
  }

  .media-card .resource-embed {
    width: calc(100% + 2.4rem);
    margin: -1.2rem -1.2rem 1rem;
  }

  .media-card .resource-embed iframe {
    height: 200px;
  }

  .media-card--contain img {
    width: calc(100% + 2.4rem);
    height: 200px;
    max-width: none;
    margin: -1.2rem -1.2rem 1rem;
  }

  .association-strip {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-card {
    padding: 1.2rem;
    gap: 1rem;
  }

  .trust-logo-tile {
    min-height: 108px;
    padding: 0.8rem 0.65rem;
  }

  .trust-card-text {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .partner-wall {
    padding: 1rem;
  }

  .partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .partner-tile {
    min-height: 76px;
    padding: 0.75rem;
  }

  .modal {
    padding: 0.75rem;
  }

  .modal-content {
    margin: 1rem auto;
    border-radius: 24px;
  }

  .section-shell {
    padding: 3rem 0;
  }

  .section-heading {
    margin-bottom: 1.5rem;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9vw, 2.7rem);
  }

  .page-content {
    padding: 1.2rem;
  }

  .page-content ol li {
    padding-left: 1.2rem;
  }

  .page-content ol li::before {
    position: static;
    margin-bottom: 0.75rem;
  }
}
