:root {
  --cfdt-orange: #f39200;
  --cfdt-orange-dark: #d77800;
  --cfdt-on-orange: #101827;
  --ink: #101827;
  --muted: #556171;
  --line: #d7dde6;
  --white: #ffffff;
  --shadow: 0 18px 55px rgba(4, 14, 28, 0.22);
  --display-font: "Segoe UI", Arial, sans-serif;
  --body-font: "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cfdt-orange);
  font-family: var(--body-font);
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
  font: inherit;
}

body.modal-open {
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 14px;
  left: 14px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #101827;
  color: #ffffff;
  font-family: var(--display-font);
  font-weight: 800;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
  outline: 3px solid var(--cfdt-orange);
  outline-offset: 3px;
}

.photo-credit {
  margin-top: auto;
  padding-top: 10px;
  color: var(--muted);
  font-size: 12px;
}

.photo-credit a,
.legal-section a {
  color: #a65300;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.adhesion-privacy {
  margin: 16px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.adhesion-privacy a {
  color: #8e4d00;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3.2;
}

.site-shell {
  min-height: 100vh;
  overflow-x: hidden;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: 20px clamp(20px, 3vw, 48px) 80px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(4, 13, 24, 0.93) 0%, rgba(4, 13, 24, 0.72) 38%, rgba(4, 13, 24, 0.26) 74%),
    linear-gradient(180deg, rgba(5, 19, 35, 0.32) 0%, rgba(5, 19, 35, 0.24) 52%, rgba(5, 19, 35, 0.9) 100%),
    url("assets/sarralbe-aerien.jpg") center 42% / cover;
}

.hero__shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 69% 42%, rgba(255, 90, 0, 0.18), transparent 30%);
  mix-blend-mode: multiply;
  opacity: 0.75;
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start;
  gap: clamp(18px, 1.35vw, 24px);
}

.brand {
  position: relative;
  display: grid;
  grid-template-columns: 150px 194px;
  grid-template-rows: auto auto;
  column-gap: 22px;
  align-items: center;
  min-width: 366px;
}

.brand__mark {
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: #fff;
  font-size: 47px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
}

.brand__text {
  display: block;
}

.brand__sector,
.brand__site {
  display: block;
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.brand__sector {
  padding-bottom: 10px;
  border-bottom: 2px solid var(--cfdt-orange);
  color: #fff;
  font-size: 38px;
}

.brand__site {
  padding-top: 8px;
  padding-right: 42px;
  color: var(--cfdt-orange);
  font-size: 29px;
}

.brand__flask {
  position: absolute;
  right: 0;
  bottom: 8px;
  width: 43px;
  color: var(--cfdt-orange);
  stroke-width: 3.5;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding-top: 58px;
  min-width: 0;
}

.nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav__link::after {
  position: absolute;
  left: 0;
  bottom: -14px;
  width: 0;
  height: 3px;
  content: "";
  background: var(--cfdt-orange);
  transition: width 160ms ease;
}

.nav__link:hover::after,
.nav__link--active::after {
  width: 100%;
}

.nav__link--active {
  color: var(--cfdt-orange);
}

.join-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 128px;
  min-height: 47px;
  margin-top: 44px;
  padding: 0 17px;
  border-radius: 7px;
  background: var(--cfdt-orange);
  box-shadow: 0 8px 22px rgba(255, 90, 0, 0.25);
  color: var(--cfdt-on-orange);
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.join-button svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
  stroke: none;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 7px;
  background: rgba(8, 19, 33, 0.45);
  color: #fff;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
  margin: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  margin-top: 70px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: var(--cfdt-orange);
  font-family: var(--display-font);
  font-size: clamp(22px, 2vw, 29px);
  font-weight: 800;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 710px;
  margin: 0;
  font-size: clamp(42px, 4vw, 59px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.34);
}

.hero__accent {
  display: block;
  width: 89px;
  height: 4px;
  margin: 28px 0 22px;
  background: var(--cfdt-orange);
}

.hero__copy {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(18px, 1.55vw, 23px);
  line-height: 1.55;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-width: 219px;
  min-height: 58px;
  padding: 0 22px;
  border-radius: 7px;
  font-family: var(--display-font);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.button svg {
  width: 25px;
  height: 25px;
}

.button--primary {
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  box-shadow: 0 14px 28px rgba(255, 90, 0, 0.24);
}

.button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: rgba(14, 22, 32, 0.48);
  color: #fff;
  backdrop-filter: blur(6px);
}

.pillars {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(1450px, calc(100% - 88px));
  margin: -74px auto 42px;
  padding: 22px 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.pillar {
  display: flex;
  min-height: 218px;
  padding: 0 clamp(22px, 2.5vw, 52px);
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
}

.pillar + .pillar {
  border-left: 1px solid var(--line);
}

.pillar__icon {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
  color: var(--cfdt-orange);
  stroke-width: 2.8;
}

.pillar h2 {
  margin: 0;
  color: #1c2431;
  font-family: var(--display-font);
  font-size: 21px;
  font-weight: 800;
  text-transform: uppercase;
}

.pillar__line {
  width: 43px;
  height: 3px;
  margin: 8px 0 10px;
  background: var(--cfdt-orange);
}

.pillar p {
  max-width: 292px;
  margin: 0;
  color: #1e2735;
  font-size: 15px;
  line-height: 1.45;
}

.pillar a {
  margin-top: auto;
  padding-top: 13px;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.flash-info {
  position: absolute;
  z-index: 2;
  right: clamp(28px, 5vw, 86px);
  top: 285px;
  width: min(390px, calc(100% - 96px));
}

.flash-info__inner {
  display: grid;
  justify-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 42px rgba(4, 14, 28, 0.3);
  text-align: center;
  backdrop-filter: blur(8px);
}

.flash-info__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.flash-info__label svg {
  width: 25px;
  height: 25px;
}

.flash-info__status {
  margin: 12px 0 0;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(243, 146, 0, 0.42);
  background: #fff7e8;
  color: #8a4b00;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.flash-info h2 {
  margin: 12px 0 0;
  color: #17202d;
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.flash-info p {
  margin: 12px 0 0;
  color: #354154;
  font-size: 18px;
  line-height: 1.5;
}

.flash-info__highlight {
  display: inline-block;
  margin-bottom: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: #fff200;
  color: #101827;
  box-shadow: 0 0 0 3px rgba(243, 146, 0, 0.35);
  font-family: var(--display-font);
  font-weight: 900;
  text-transform: uppercase;
}

.flash-info__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  margin-top: 22px;
  padding: 0 28px;
  border: 0;
  border-radius: 999px;
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  box-shadow: 0 10px 24px rgba(243, 146, 0, 0.36);
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.flash-info__button:hover {
  background: var(--cfdt-orange-dark);
  box-shadow: 0 14px 30px rgba(243, 146, 0, 0.46);
  transform: translateY(-2px);
}

.poster-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
}

.poster-modal.poster-modal--open {
  display: grid;
  place-items: center;
}

.poster-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 13, 24, 0.78);
}

.poster-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 24px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.poster-modal__close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 0;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.poster-modal__category {
  width: fit-content;
  margin: -8px 52px 20px 0;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff2df;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-modal h2 {
  margin: 0 52px 18px 0;
  color: #17202d;
  font-family: var(--display-font);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.poster-modal__poster {
  overflow: hidden;
  border: 1px solid #e2e7ef;
  border-radius: 8px;
  background: #fffaf2;
}

.poster-modal__poster img {
  display: block;
  width: 100%;
  max-height: calc(100vh - 190px);
  object-fit: contain;
  background: #ffffff;
}

.poster-modal__poster--has-image .poster-fallback {
  display: none;
}

.poster-fallback {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 36px);
  text-align: center;
}

.poster-fallback__logo {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 0 auto;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: #ffffff;
  font-size: 31px;
  font-weight: 900;
  line-height: 1;
}

.poster-fallback__headline {
  margin: 0;
  color: #111827;
  font-family: var(--display-font);
  font-size: clamp(32px, 6vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  text-transform: uppercase;
}

.poster-fallback__headline strong {
  display: block;
  color: var(--cfdt-orange);
  font-size: 1.25em;
}

.poster-fallback__grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 16px;
  align-items: stretch;
}

.poster-fallback__date,
.poster-fallback__offer {
  display: grid;
  place-items: center;
  min-height: 110px;
  padding: 16px;
  border-radius: 8px;
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.poster-fallback__date {
  background: #17202d;
  color: #ffffff;
  font-size: 20px;
}

.poster-fallback__date span {
  margin-top: 8px;
  color: var(--cfdt-orange);
  font-size: 17px;
}

.poster-fallback__offer {
  border: 5px solid var(--cfdt-orange);
  background: #fff200;
  color: #101827;
  box-shadow: 0 8px 0 #101827;
  text-shadow: none;
  font-size: clamp(32px, 7vw, 54px);
}

.poster-fallback__benefits,
.poster-fallback__tagline {
  margin: 0;
  color: #354154;
  font-size: 18px;
  line-height: 1.45;
}

.poster-fallback__tagline {
  color: #17202d;
  font-family: var(--display-font);
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 800;
  text-transform: uppercase;
}

.poster-fallback__site {
  margin: 0 -36px -36px;
  padding: 24px;
  background: linear-gradient(90deg, #d84f00, var(--cfdt-orange));
  color: #ffffff;
  font-size: clamp(32px, 6vw, 54px);
  font-weight: 700;
}

.poster-modal__brief {
  margin-top: 18px;
  padding: 18px;
  border-radius: 8px;
  background: #f7f8fb;
}

.poster-modal__brief h3 {
  margin: 0;
  color: #17202d;
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.poster-modal__brief ul {
  display: grid;
  gap: 8px;
  margin: 12px 0 0;
  padding: 0;
  list-style: none;
}

.poster-modal__brief li {
  position: relative;
  padding-left: 24px;
  color: #354154;
  line-height: 1.45;
}

.poster-modal__brief li::before {
  position: absolute;
  left: 0;
  color: var(--cfdt-orange);
  content: "->";
  font-weight: 900;
}

.poster-modal__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  margin-top: 18px;
  border-radius: 999px;
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  font-family: var(--display-font);
  font-weight: 800;
  text-transform: uppercase;
}

.content {
  background: #f4f6fa;
}

.section {
  scroll-margin-top: 24px;
  padding: 58px clamp(20px, 5vw, 72px);
}

.section--soft {
  background: #ffffff;
}

.section--comments {
  background: #f4f6fa;
}

.section--cta {
  background: #101827;
  color: #ffffff;
}

.section__inner {
  width: min(1200px, 100%);
  margin: 0 auto;
}

.section__split,
.comments-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
}

.section__header {
  max-width: 780px;
}

.section__eyebrow {
  margin: 0 0 8px;
  color: var(--cfdt-orange);
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.section h2,
.section h3 {
  margin: 0;
  color: #17202d;
  font-family: var(--display-font);
  font-weight: 800;
  text-transform: uppercase;
}

.section h2 {
  max-width: 820px;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
}

.section h3 {
  font-size: 24px;
}

.section--cta h2,
.section--cta h3 {
  color: #ffffff;
}

.section__lead,
.section p {
  color: #354154;
  font-size: 17px;
  line-height: 1.58;
}

.section__lead {
  max-width: 790px;
  margin: 16px 0 0;
}

.contact-guidance {
  max-width: 720px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--cfdt-orange);
  border-radius: 6px;
  background: #fff7e8;
  color: #2f3848;
  font-weight: 700;
}

.comments-privacy-note {
  max-width: 720px;
  margin: 20px 0 0;
  padding: 16px 18px;
  border-left: 5px solid #2f6f9f;
  border-radius: 6px;
  background: #edf6fb;
  color: #253647;
  font-weight: 700;
}

.section--cta p {
  color: rgba(255, 255, 255, 0.82);
}

.section--values {
  background: #ffffff;
}

.cfdt-container {
  width: min(1100px, 100%);
  margin: 0 auto;
  color: #333333;
}

.cfdt-header {
  margin-bottom: 40px;
  text-align: center;
}

.cfdt-header h2 {
  margin: 0 auto;
  color: #e55b00;
  font-size: clamp(32px, 3vw, 42px);
  letter-spacing: 0;
}

.cfdt-header p {
  margin: 10px auto 0;
  color: #002b49;
  font-size: clamp(18px, 2vw, 20px);
  font-style: italic;
}

.cfdt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
  gap: 25px;
}

.cfdt-card {
  position: relative;
  min-height: 230px;
  padding: 30px 25px 25px;
  border-top: 5px solid #e55b00;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cfdt-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(229, 91, 0, 0.15);
}

.cfdt-badge {
  position: absolute;
  top: -18px;
  left: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: #002b49;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
}

.section .cfdt-card h3 {
  margin: 5px 0 15px;
  color: #002b49;
  font-size: 23px;
  text-transform: none;
}

.section .cfdt-card p {
  margin: 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.6;
}

.highlight-panel,
.comments-card,
.contact-box {
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.highlight-panel {
  padding: 28px;
}

.highlight-panel strong {
  display: block;
  margin-bottom: 8px;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 26px;
  font-weight: 800;
  text-transform: uppercase;
}

.highlight-panel p,
.contact-box p {
  margin: 10px 0 0;
}

.highlight-panel .section-button {
  margin-top: 20px;
}

.defense-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.defense-panel,
.defense-note {
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #f7f8fb;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.defense-panel {
  padding: 28px;
}

.defense-panel__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
}

.defense-panel h3 {
  margin: 0 0 16px;
  color: #17202d;
  font-family: var(--display-font);
  font-size: clamp(24px, 2vw, 30px);
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.defense-panel p,
.defense-note p {
  margin: 14px 0 0;
  color: #354154;
  font-size: 16px;
  line-height: 1.58;
}

.defense-panel strong,
.defense-note strong {
  color: #17202d;
}

.defense-note {
  grid-column: 1 / -1;
  padding: 24px 28px;
  border-left: 5px solid var(--cfdt-orange);
  background: #fffaf2;
}

.defense-note > strong {
  display: block;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
}

.protection-text {
  display: grid;
  gap: 14px;
  max-width: 980px;
  margin-top: 30px;
}

.protection-text h3 {
  margin-top: 12px;
  color: #17202d;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.18;
}

.protection-text p {
  margin: 0;
}

.protection-text strong {
  color: #17202d;
  font-family: var(--display-font);
  font-weight: 800;
}

.structure-section .section__header {
  max-width: 930px;
}

.structure-section h2 {
  max-width: 980px;
}

.brief-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.brief-card,
.structure-card {
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.brief-card {
  padding: 20px;
}

.brief-card strong {
  display: block;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-card p {
  margin: 9px 0 0;
  font-size: 16px;
}

.structure-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.structure-card {
  position: relative;
  min-height: 390px;
  padding: 28px 24px 24px;
  overflow: hidden;
}

.structure-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  content: "";
  background: var(--cfdt-orange);
}

.structure-card--featured {
  border-color: rgba(243, 146, 0, 0.42);
  box-shadow: 0 18px 40px rgba(243, 146, 0, 0.14);
}

.structure-card__level {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 25px;
  font-weight: 800;
}

.person-photo {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 3px solid var(--cfdt-orange);
  background: #ffffff;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-weight: 800;
}

.person-photo span,
.person-photo img {
  grid-area: 1 / 1;
}

.person-photo span {
  font-size: 36px;
  line-height: 1;
}

.person-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.structure-card__portrait {
  width: 96px;
  height: 96px;
  margin-bottom: 16px;
  border-radius: 8px;
}

.structure-card__eyebrow {
  margin: 0 0 8px;
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  text-transform: uppercase;
}

.structure-card .structure-card__title {
  margin: 8px 0 0;
  color: #101827;
  font-weight: 800;
}

.structure-card p {
  font-size: 15.5px;
}

.structure-card__note {
  color: var(--cfdt-orange-dark);
  font-weight: 700;
}

.structure-details {
  display: grid;
  gap: 10px;
  margin: 16px 0 0;
}

.structure-details div {
  padding-top: 10px;
  border-top: 1px solid #e4e9f0;
}

.structure-details dt {
  color: var(--cfdt-orange-dark);
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
  text-transform: uppercase;
}

.structure-details dd {
  margin: 2px 0 0;
  color: #354154;
  font-size: 15px;
  line-height: 1.45;
}

.regional-team {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.person-chip {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px;
  border-radius: 7px;
  background: #f7f8fb;
}

.person-photo--small {
  width: 58px;
  height: 58px;
  border-width: 2px;
  border-radius: 7px;
}

.person-photo--small span {
  font-size: 22px;
}

.person-chip strong,
.person-chip span {
  display: block;
}

.person-chip strong {
  color: #17202d;
  font-family: var(--display-font);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
}

.person-chip div > span {
  margin-top: 4px;
  color: #354154;
  font-size: 14px;
  line-height: 1.25;
}

.person-chip div > .person-chip__org {
  color: #556171;
  font-size: 13px;
  font-weight: 700;
}

.structure-card .person-chip .person-chip__button {
  width: fit-content;
  min-width: 0;
  min-height: 40px;
  margin-top: 10px;
  padding: 0 14px;
  font-size: 13px;
  justify-content: center;
}

.structure-card .section-button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
}

.local-section-card {
  margin-top: 34px;
  padding: 28px;
  border-top: 5px solid var(--cfdt-orange);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 38px rgba(15, 23, 42, 0.1);
}

.local-section-card__logo {
  display: grid;
  place-items: center;
  margin-bottom: 34px;
}

.local-section-card__logo img {
  grid-area: 1 / 1;
  position: relative;
  z-index: 1;
  max-width: 220px;
  height: auto;
}

.local-section-card__brand {
  grid-area: 1 / 1;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  align-content: center;
  place-items: center;
  align-self: start;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--cfdt-orange);
  color: #ffffff;
  line-height: 1;
  text-align: center;
}

.local-section-card__brand span {
  font-size: 45px;
  font-weight: 800;
}

.local-section-card__brand small {
  max-width: 110px;
  font-family: var(--display-font);
  font-size: 16px;
  font-weight: 800;
  line-height: 0.95;
  text-transform: uppercase;
}

.local-section-card__body h3 {
  font-size: clamp(28px, 2.4vw, 38px);
}

.local-team-grid {
  display: grid;
  gap: 24px;
  margin-top: 24px;
}

.representative-card {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  padding: 24px;
  border-left: 5px solid var(--cfdt-orange);
  border-radius: 8px;
  background: #f7f8fb;
}

.representative-card__photo {
  display: grid;
  place-items: center;
  width: 170px;
  height: 170px;
  border-radius: 8px;
}

.representative-card__photo--linda img {
  object-position: center 35%;
}

.representative-card__photo span {
  font-size: 54px;
}

.representative-card__photo--placeholder {
  border-style: dashed;
  background: #fffaf2;
  padding: 12px;
  text-align: center;
}

.representative-card__photo--placeholder span {
  color: var(--cfdt-orange-dark);
  font-family: var(--body-font);
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.representative-card__details h4 {
  margin: 0;
  color: #333333;
  font-family: var(--display-font);
  font-size: 30px;
  font-weight: 800;
  text-transform: uppercase;
}

.representative-card__job {
  color: var(--cfdt-orange-dark);
  font-weight: 800;
}

.representative-card__details p {
  margin: 10px 0 0;
}

.mandate-list {
  display: grid;
  gap: 9px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.mandate-list li {
  position: relative;
  padding-left: 25px;
  color: #354154;
  font-size: 16px;
  line-height: 1.45;
}

.mandate-list li::before {
  position: absolute;
  left: 0;
  color: var(--cfdt-orange);
  content: "->";
  font-weight: 800;
}

.representative-contact,
.contact-links {
  display: grid;
  gap: 7px;
}

.representative-contact {
  margin-top: 20px;
  padding: 16px;
  border-radius: 6px;
  background: #ffffff;
}

.representative-contact strong {
  color: #17202d;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.representative-contact a,
.contact-links a {
  width: fit-content;
  color: var(--cfdt-orange-dark);
  font-weight: 800;
}

.representative-contact a {
  display: grid;
  gap: 2px;
  line-height: 1.25;
}

.representative-contact a span {
  color: #556171;
  font-family: var(--display-font);
  font-size: 15px;
  text-transform: uppercase;
}

.expertise-line {
  padding: 12px 14px;
  border-radius: 6px;
  background: #fffaf2;
  color: #354154;
}

.sector-support {
  margin-top: 10px;
  padding: 24px;
  border-radius: 8px;
  background: #101827;
  color: #ffffff;
}

.sector-support__header h4 {
  margin: 0;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
}

.sector-support__header p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}

.support-member {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 5px solid var(--cfdt-orange);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.support-member__photo {
  width: 76px;
  height: 76px;
  margin-bottom: 12px;
  border: 2px solid var(--cfdt-orange);
  border-radius: 8px;
  background: #ffffff;
  object-fit: cover;
  object-position: center;
}

.support-member strong,
.support-member span {
  display: block;
}

.support-member strong {
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.support-member span {
  margin-top: 5px;
  color: var(--cfdt-orange);
  font-weight: 800;
}

.support-member p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.section--feeds {
  background: #eef2f7;
}

.feed-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 32px;
}

.action-feed {
  scroll-margin-top: 28px;
}

.action-feed:target .action-feed__header {
  border-color: var(--cfdt-orange);
  box-shadow: 0 10px 26px rgba(255, 90, 0, 0.16);
}

.action-feed__header {
  padding: 20px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.action-feed__tag {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.section .action-feed h3 {
  color: #002b49;
  font-size: 23px;
}

.feed-list {
  display: grid;
  gap: 14px;
  max-height: 500px;
  margin-top: 14px;
  padding-right: 4px;
  overflow-y: auto;
}

.feed-list:focus-visible {
  outline: 3px solid rgba(0, 43, 73, 0.35);
  outline-offset: 4px;
}

.feed-post {
  padding: 18px;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.06);
}

.feed-post__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.feed-post__avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: #002b49;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
}

.feed-post strong {
  display: block;
  color: #17202d;
  font-family: var(--display-font);
  font-size: 17px;
  font-weight: 800;
}

.feed-post time {
  display: block;
  margin-top: 3px;
  color: var(--cfdt-orange-dark);
  font-size: 14px;
  font-weight: 800;
}

.section .feed-post p {
  margin: 0;
  color: #354154;
  font-size: 16px;
  line-height: 1.55;
}

.section .feed-post p + p {
  margin-top: 14px;
}

.feed-post__article {
  display: grid;
  gap: 14px;
}

.feed-post__article h4 {
  margin: 8px 0 0;
  color: #002b49;
  font-family: var(--display-font);
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
}

.feed-post__video {
  display: block;
  width: 100%;
  margin-top: 16px;
  border-radius: 8px;
  background: #000000;
}

.feed-summary-list {
  display: grid;
  gap: 9px;
  margin: 14px 0;
  padding-left: 20px;
  color: #354154;
  font-size: 15px;
  line-height: 1.45;
}

.feed-summary-list li::marker {
  color: var(--cfdt-orange);
}

.feed-post__quote {
  margin: 18px 0 0;
  padding: 16px 18px;
  border-left: 5px solid var(--cfdt-orange);
  border-radius: 0 8px 8px 0;
  background: #fff8ed;
  color: #354154;
  font-size: 15.5px;
  line-height: 1.55;
}

.feed-post__quote strong {
  margin-bottom: 6px;
  color: #17202d;
}

.feed-post__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin-top: 18px;
  padding: 12px 18px;
  border-radius: 8px;
  background: #002b49;
  color: #ffffff;
  font-family: var(--display-font);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
  text-align: center;
  text-transform: uppercase;
}

.action-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

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

.action-list a,
.section-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  border-radius: 8px;
  font-family: var(--display-font);
  font-weight: 800;
  text-transform: uppercase;
}

.action-list a {
  border: 1px solid #dce2eb;
  background: #ffffff;
  padding: 0 18px;
  color: #17202d;
}

.action-list a::after {
  content: "->";
  color: var(--cfdt-orange);
}

.section-button {
  width: fit-content;
  min-width: 190px;
  padding: 0 22px;
  border: 0;
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  box-shadow: 0 12px 24px rgba(255, 90, 0, 0.22);
}

.section-button--light {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: #ffffff;
  color: #17202d;
  box-shadow: none;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.adhesion-actions {
  display: grid;
  flex: 0 0 auto;
  gap: 12px;
  min-width: 260px;
}

.adhesion-actions .section-button {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.cta-band p {
  max-width: 720px;
  margin-bottom: 0;
}

.cta-band .adhesion-contact {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
}

.adhesion-more {
  display: grid;
  gap: 14px;
  width: min(980px, 100%);
  margin: 34px auto 0;
}

.adhesion-more h3 {
  margin-top: 10px;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.15;
}

.adhesion-more p {
  max-width: 980px;
  margin: 0;
}

.adhesion-contact a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.comments-card {
  padding: 26px;
}

.comments-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  margin: 0 0 14px;
  padding: 0 12px;
  border-radius: 999px;
  background: #edf6fb;
  color: #245f88;
  font-family: var(--display-font);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.comments-card__button {
  width: 100%;
  justify-content: center;
  margin-top: 18px;
  text-align: center;
}

.comments-card__pending {
  margin: 18px 0 0;
  padding: 14px 16px;
  border-radius: 8px;
  background: #fff7e8;
  color: #3f4754;
  font-weight: 700;
}

.comments-embed {
  margin-top: 20px;
  overflow: hidden;
  border: 1px solid #dce2eb;
  border-radius: 8px;
  background: #ffffff;
}

.comments-embed iframe {
  display: block;
  width: 100%;
  min-height: 540px;
  border: 0;
}

.contact-box {
  padding: 26px;
}

.contact-box .section-button {
  margin-top: 14px;
}

.contact-links {
  margin-top: 16px;
}

.contact-actions {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-family: var(--display-font);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.contact-action--mail {
  background: var(--cfdt-orange);
  color: var(--cfdt-on-orange);
  box-shadow: 0 12px 24px rgba(255, 90, 0, 0.22);
}

.contact-action--whatsapp {
  border-color: #bfe8cc;
  background: #e9f8ef;
  color: #075e54;
}

.contact-action--sms {
  border-color: #cbdaf3;
  background: #eef4ff;
  color: #173b7a;
}

.contact-action--call {
  border-color: #dce2eb;
  background: #f7f8fb;
  color: #17202d;
}

.contact-safety {
  margin: 16px 0 0;
  color: #556171;
  font-size: 14px;
  line-height: 1.45;
}

.nav__link:focus-visible,
.join-button:focus-visible,
.button:focus-visible,
.pillar a:focus-visible,
.flash-info__button:focus-visible,
.poster-modal__close:focus-visible,
.poster-modal__cta:focus-visible,
.action-list a:focus-visible,
.feed-post__link:focus-visible,
.representative-contact a:focus-visible,
.contact-links a:focus-visible,
.contact-action:focus-visible,
.section-button:focus-visible {
  outline: 3px solid rgba(255, 90, 0, 0.45);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .hero {
    min-height: 760px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .brand {
    grid-column: 1;
  }

  .nav-toggle {
    display: block;
    grid-column: 2;
    margin-top: 18px;
  }

  .nav,
  .join-button {
    grid-column: 1 / -1;
  }

  .nav {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    background: rgba(8, 19, 33, 0.72);
    backdrop-filter: blur(8px);
  }

  .join-button {
    justify-self: start;
    margin-top: 0;
  }

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

  .nav__link::after {
    bottom: -5px;
  }

  .hero__content {
    margin-top: 52px;
  }

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

  .pillar:nth-child(3) {
    border-left: 0;
  }

  .pillar:nth-child(n + 3) {
    padding-top: 28px;
    border-top: 1px solid var(--line);
  }

  .flash-info {
    position: relative;
    inset: auto;
    width: min(640px, 100%);
    margin-top: 28px;
  }

  .section__split,
  .comments-layout,
  .contact-layout,
  .defense-content {
    grid-template-columns: 1fr;
  }

  .action-list,
  .brief-grid,
  .structure-timeline,
  .support-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .action-list {
    grid-template-columns: 1fr;
  }

  .feed-board {
    grid-template-columns: 1fr;
  }

  .feed-list {
    max-height: none;
    overflow: visible;
  }
}

@media (min-width: 992px) {
  .cfdt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cfdt-full-width {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(540px, 100%);
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 820px;
    padding: 18px 18px 92px;
    background-position: 62% center;
  }

  .site-header {
    gap: 14px;
  }

  .brand {
    grid-template-columns: 96px 130px;
    column-gap: 14px;
    min-width: 240px;
  }

  .brand__mark {
    width: 96px;
    height: 96px;
    font-size: 31px;
  }

  .brand__sector {
    font-size: 27px;
  }

  .brand__site {
    font-size: 22px;
  }

  .brand__flask {
    width: 31px;
    margin-top: -34px;
  }

  .nav {
    gap: 13px 20px;
  }

  .nav__link {
    font-size: 17px;
  }

  .hero__content {
    margin-top: 46px;
  }

  .hero h1 {
    font-size: 43px;
  }

  .hero__actions {
    gap: 14px;
  }

  .button {
    width: 100%;
  }

  .pillars {
    grid-template-columns: 1fr;
    width: calc(100% - 36px);
    margin-top: -58px;
  }

  .pillar {
    min-height: 230px;
  }

  .pillar + .pillar {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding-top: 28px;
  }

  .flash-info__inner {
    padding: 24px 18px;
  }

  .flash-info__button {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .poster-modal {
    padding: 12px;
  }

  .poster-modal__dialog {
    max-height: calc(100vh - 24px);
    padding: 16px;
  }

  .poster-modal h2 {
    margin-top: -20px;
  }

  .poster-fallback__grid {
    grid-template-columns: 1fr;
  }

  .poster-fallback__site {
    margin: 0 -20px -20px;
  }

  .section {
    padding: 46px 18px;
  }

  .brief-grid,
  .structure-timeline,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .structure-card {
    min-height: 0;
  }

  .local-section-card {
    padding: 22px;
  }

  .local-section-card__brand {
    width: 118px;
    height: 118px;
    gap: 10px;
  }

  .local-section-card__brand span {
    font-size: 36px;
  }

  .local-section-card__brand small {
    max-width: 88px;
    font-size: 13px;
  }

  .representative-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .representative-card__photo {
    width: 150px;
    height: 150px;
    margin: 0 auto;
  }

  .mandate-list {
    text-align: left;
  }

  .representative-contact a,
  .contact-links a {
    width: 100%;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .adhesion-actions {
    width: 100%;
  }

  .section-button {
    width: 100%;
    justify-content: center;
  }

  .comments-embed iframe {
    min-height: 520px;
  }
}

@media (max-width: 440px) {
  .hero {
    min-height: 870px;
  }

  .brand {
    grid-template-columns: 80px 112px;
    min-width: 206px;
  }

  .brand__mark {
    width: 80px;
    height: 80px;
    font-size: 26px;
  }

  .brand__sector {
    font-size: 23px;
  }

  .brand__site {
    font-size: 19px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero__copy {
    font-size: 17px;
  }
}

.site-footer {
  color: var(--white);
  background: #101827;
}

.site-footer__inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer a {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer__privacy {
  max-width: 310px;
  color: #c7cfdb;
  text-align: right;
}

.legal-page {
  color: var(--ink);
  background: #f4f6f8;
}

.legal-header {
  color: var(--white);
  background: #101827;
  border-bottom: 5px solid var(--cfdt-orange);
}

.legal-header__inner {
  width: min(1000px, calc(100% - 40px));
  min-height: 104px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.legal-brand {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display-font);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.legal-brand .brand__mark {
  width: 68px;
  height: 68px;
  font-size: 23px;
}

.legal-back {
  padding: 11px 16px;
  color: var(--ink);
  background: var(--white);
  border-radius: 4px;
  font-weight: 800;
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 64px 0 76px;
}

.legal-intro {
  margin-bottom: 36px;
}

.legal-intro h1 {
  max-width: 760px;
  margin: 8px 0 12px;
  font-family: var(--display-font);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.05;
  text-transform: uppercase;
}

.legal-intro > p:last-child {
  color: var(--muted);
}

.legal-section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-section h2 {
  margin: 0 0 18px;
  font-family: var(--display-font);
  font-size: 27px;
  text-transform: uppercase;
}

.legal-section h3 {
  margin: 25px 0 8px;
  font-size: 19px;
}

.legal-section p,
.legal-list {
  max-width: 780px;
  margin-top: 0;
  color: #344052;
  font-size: 16px;
  line-height: 1.7;
}

.legal-details {
  max-width: 780px;
  margin: 22px 0;
  border-top: 1px solid var(--line);
}

.legal-details div {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) 1fr;
  gap: 20px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.legal-details dt {
  font-weight: 800;
}

.legal-details dd {
  margin: 0;
}

.legal-list {
  padding-left: 22px;
}

.legal-list li + li {
  margin-top: 12px;
}

.site-footer--legal .site-footer__inner {
  width: min(900px, calc(100% - 40px));
}

@media (max-width: 760px) {
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer__privacy {
    text-align: left;
  }

  .legal-header__inner {
    min-height: 92px;
  }

  .legal-brand .brand__mark {
    width: 58px;
    height: 58px;
    font-size: 20px;
  }

  .legal-brand > span:last-child {
    display: none;
  }

  .legal-main {
    padding-top: 44px;
  }

  .legal-details div {
    grid-template-columns: 1fr;
    gap: 5px;
  }
}
