:root {
    --terra: #D3654B;
    --terra-dark: #B9503D;
    --terra-pale: rgba(211,101,75,.09);
    --ink: #353837;
    --muted: #737A76;
    --sage: #E4E9E5;
    --sage-deep: #CDD5CF;
    --paper: #F7F5F1;
    --white: #FFFFFF;
    --story: 'Cormorant Garamond', Georgia, serif;
    --ui: 'Manrope', Arial, sans-serif;
    --ease: cubic-bezier(.16,1,.3,1);
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body { background: var(--paper); color: var(--ink); font-family: var(--ui); line-height: 1.75; -webkit-font-smoothing: antialiased; }
  a { color: inherit; }
  button, a { -webkit-tap-highlight-color: transparent; }

  .reading-progress { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; height: 3px; background: rgba(53,56,55,.1); pointer-events: none; }
  .reading-progress span { display: block; width: 0; height: 100%; background: var(--terra); transform-origin: left center; transition: width .08s linear; }

  .site-header { position: relative; z-index: 5; display: flex; align-items: center; justify-content: space-between; gap: 24px; max-width: 1440px; margin: 0 auto; padding: 22px 5vw; transition: opacity .35s ease, background .35s ease, box-shadow .35s ease; }
  .site-header.is-hidden { opacity: 0; pointer-events: none; }
  .site-header.is-floating { position: fixed; top: 22px; right: auto; bottom: auto; left: 50%; width: max-content; max-width: calc(100vw - 32px); margin: 0; padding: 12px 20px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; background: linear-gradient(135deg, rgba(255,255,255,.1), rgba(255,255,255,.03)), rgba(15,17,17,.34); box-shadow: 0 18px 45px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.16); backdrop-filter: blur(18px) saturate(115%); -webkit-backdrop-filter: blur(18px) saturate(115%); transform: translateX(-50%); }
  .site-header.is-floating:not(.is-visible) { opacity: 0; pointer-events: none; }
  .site-header.is-floating::before { content: ''; position: absolute; inset: 1px; z-index: -1; border-radius: inherit; background: linear-gradient(105deg, rgba(255,255,255,.08), transparent 42%); pointer-events: none; }
  .site-header.is-floating .site-logo { display: none; }
  .site-header.is-floating .site-nav { gap: clamp(18px, 1.8vw, 28px); }
  .site-header.is-floating .site-nav a:not(.site-header-cta) { color: rgba(255,255,255,.92); font-size: .9rem; font-weight: 700; letter-spacing: 1.25px; }
  .site-header.is-floating .site-nav a:not(.site-header-cta):hover { color: var(--white); }
  .site-header.is-floating .site-header-cta { padding: 9px 17px; font-size: .74rem; letter-spacing: 1.15px; }
  .site-logo { color: var(--ink); font-family: var(--story); font-size: 1.5rem; letter-spacing: .08em; text-decoration: none; }
  .site-nav { display: flex; align-items: center; gap: clamp(12px, 1.8vw, 26px); }
  .site-nav a { color: rgba(53,56,55,.78); font-size: .82rem; letter-spacing: 1.55px; text-decoration: none; text-transform: uppercase; transition: color .25s ease; }
  .site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--terra); }
  .site-header-cta { padding: 10px 18px; border-radius: 999px; background: var(--terra); color: var(--white) !important; }
  .menu-toggle { display: none; padding: 10px 15px; border: 1px solid rgba(53,56,55,.25); border-radius: 999px; background: rgba(255,255,255,.42); color: var(--ink); cursor: pointer; font-size: .68rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
  .mobile-menu { display: none; }

  .page-hero { position: relative; overflow: hidden; background: var(--sage); }
  .page-hero::after { content: ''; position: absolute; right: 0; bottom: 0; left: 0; height: 1px; background: rgba(53,56,55,.12); }
  .hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(260px, .9fr); align-items: center; max-width: 1440px; min-height: 570px; margin: 0 auto; padding: 72px 10vw 90px; }
  .hero-copy { position: relative; z-index: 1; max-width: 780px; }
  .hero-tag { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 32px; color: var(--terra); font-size: .62rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; }
  .hero-tag::before { content: ''; width: 30px; height: 1px; background: var(--terra); }
  .hero-title { max-width: 760px; color: var(--ink); font-family: var(--story); font-size: clamp(3.4rem, 7vw, 7rem); font-weight: 300; letter-spacing: -.035em; line-height: .99; }
  .hero-title em { color: var(--terra); font-style: italic; }
  .hero-meta { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 42px; }
  .hero-meta-item { color: var(--muted); font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; }
  .hero-meta-dot { width: 3px; height: 3px; border-radius: 50%; background: var(--terra); opacity: .7; }
  .hero-mark { justify-self: end; color: var(--sage-deep); font-family: var(--story); font-size: clamp(13rem, 24vw, 22rem); font-weight: 300; letter-spacing: -.1em; line-height: .75; opacity: .62; transform: translateX(3vw); user-select: none; }

  .stats-banner { position: relative; z-index: 2; background: var(--white); border-bottom: 1px solid rgba(53,56,55,.08); }
  .stats-inner { display: grid; grid-template-columns: repeat(3, 1fr); max-width: 1180px; margin: 0 auto; padding: 0 5vw; }
  .stat-item { display: flex; flex-direction: column; gap: 8px; padding: 28px 34px; border-right: 1px solid rgba(53,56,55,.08); }
  .stat-item:last-child { border-right: 0; }
  .stat-lockup { display: flex; align-items: baseline; gap: 9px; }
  .stat-num { color: var(--terra); font-family: var(--story); font-size: clamp(3rem, 5vw, 4.8rem); font-variant-numeric: tabular-nums; font-weight: 400; letter-spacing: -.05em; line-height: 1; }
  .stat-inline-label { color: var(--terra); font-family: var(--story); font-size: clamp(1.2rem, 2vw, 1.85rem); line-height: 1; }
  .stat-label { color: var(--muted); font-size: .62rem; letter-spacing: 3px; text-transform: uppercase; }

  .article-wrap { max-width: 1250px; margin: 0 auto; padding: 0 5vw; }
  .article-body { display: grid; grid-template-columns: minmax(0, 1fr) 310px; gap: clamp(54px, 8vw, 110px); align-items: start; padding: 96px 0 110px; }
  .article-main { min-width: 0; }
  .article-main h2 { margin: 76px 0 28px; color: var(--ink); font-family: var(--story); font-size: clamp(2.25rem, 4vw, 3.6rem); font-weight: 400; letter-spacing: -.02em; line-height: 1.05; }
  .article-main h2:first-child { margin-top: 0; }
  .article-main h2 em { color: var(--terra); font-style: italic; }
  .article-main p { max-width: 67ch; margin-bottom: 24px; color: var(--muted); font-size: 1rem; line-height: 1.95; }
  .article-main p strong { color: var(--ink); font-weight: 600; }
  .pull-quote { position: relative; margin: 52px 0; padding: 34px 42px; border: 1px solid rgba(53,56,55,.08); border-radius: 24px; background: var(--sage); overflow: hidden; }
  .pull-quote::before { display: none; }
  .pull-quote p { margin: 0; color: var(--ink); font-family: var(--story); font-size: clamp(1.35rem, 2.4vw, 1.75rem); font-style: italic; line-height: 1.4; }

  .countries-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 9px; margin: 52px 0; padding: 28px 30px 30px; border-top: 1px solid rgba(53,56,55,.12); border-bottom: 1px solid rgba(53,56,55,.12); }
  .countries-strip-label { width: 100%; margin-bottom: 5px; color: var(--terra); font-size: .61rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; }
  .country-tag { padding: 7px 15px; border: 1px solid rgba(53,56,55,.1); border-radius: 50px; background: var(--white); color: var(--ink); font-size: .74rem; font-weight: 500; transition: border-color .25s ease, color .25s ease, transform .25s var(--ease); }
  .country-tag:hover { border-color: var(--terra); color: var(--terra); transform: translateY(-2px); }

  .article-aside { position: sticky; top: 28px; display: flex; flex-direction: column; gap: 22px; }
  .aside-card { position: relative; overflow: hidden; border: 1px solid rgba(53,56,55,.1); border-radius: 26px; background: rgba(255,255,255,.78); box-shadow: 0 18px 42px rgba(53,56,55,.07); }
  .aside-card::before { content: ''; position: absolute; inset: 0 auto 0 0; width: 3px; background: var(--terra); opacity: .9; }
  .aside-card-header { padding: 23px 25px 18px 30px; border-bottom: 1px solid rgba(53,56,55,.1); }
  .aside-card-title { color: var(--terra); font-size: .72rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; }
  .timeline { position: relative; padding-bottom: 7px; }
  .timeline::before { content: ''; position: absolute; top: 22px; bottom: 22px; left: 50px; width: 1px; background: rgba(53,56,55,.13); }
  .timeline-item { position: relative; display: grid; grid-template-columns: 58px 1fr; border-bottom: 0; transition: background .25s ease; }
  .timeline-item:last-child { border-bottom: 0; }
  .timeline-item:hover { background: rgba(228,233,229,.45); }
  .timeline-item::before { content: ''; position: absolute; top: 28px; left: 47px; z-index: 1; width: 7px; height: 7px; border-radius: 50%; background: var(--terra); box-shadow: 0 0 0 4px var(--white); }
  .timeline-year { padding: 21px 0 21px 24px; color: var(--terra); font-family: var(--story); font-size: 1.1rem; line-height: 1.2; }
  .timeline-content { padding: 20px 22px 20px 18px; border-left: 0; }
  .timeline-content strong { display: block; margin-bottom: 3px; color: var(--ink); font-size: .9rem; font-weight: 700; line-height: 1.35; }
  .timeline-content span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.45; }
  .lang-grid { display: flex; flex-wrap: wrap; gap: 9px; padding: 22px 25px 26px 30px; }
  .lang-pill { padding: 8px 14px; border: 1px solid rgba(53,56,55,.16); border-radius: 50px; background: transparent; color: var(--ink); font-size: .82rem; font-weight: 500; }
  .zones-body { padding: 20px 25px 25px 30px; }
  .zone-tag { display: inline-block; margin: 4px 4px 4px 0; padding: 6px 12px; border: 1px solid rgba(211,101,75,.12); border-radius: 50px; background: rgba(211,101,75,.08); color: var(--terra-dark); font-size: .78rem; font-weight: 600; }

  .contact-footer { position: relative; padding: 72px 5vw 30px; border-radius: 60px 60px 0 0; background: var(--terra); }
  .contact-card { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: clamp(40px, 7vw, 100px); max-width: 1250px; margin: 0 auto; padding: 64px; border-radius: 38px; background: var(--paper); }
  .contact-copy { display: flex; flex-direction: column; align-items: flex-start; }
  .contact-copy h2 { margin-bottom: 20px; color: var(--terra); font-family: var(--ui); font-size: clamp(2.8rem, 5vw, 4.5rem); font-weight: 700; line-height: 1.03; }
  .contact-copy h2 i { font-family: var(--story); font-weight: 500; }
  .contact-intro { max-width: 390px; color: var(--muted); font-size: .92rem; line-height: 1.7; }
  .contact-list { display: flex; flex-direction: column; gap: 17px; width: min(100%, 280px); margin: 31px 0; }
  .contact-item { display: flex; align-items: center; gap: 13px; color: var(--ink); text-decoration: none; }
  .contact-icon { display: grid; place-items: center; width: 42px; height: 42px; flex: 0 0 auto; border-radius: 50%; background: var(--terra); color: var(--white); }
  .contact-icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.4; }
  .contact-text p { margin: 0; color: var(--ink); font-size: .82rem; font-weight: 700; line-height: 1.35; }
  .contact-text span { color: var(--muted); font-size: .71rem; }
  .social-label { margin-bottom: 0; color: var(--muted); font-size: .77rem; }
  .social-links { display: flex; gap: 10px; margin-top: 22px; }
  .social-links a { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(53,56,55,.15); border-radius: 50%; color: var(--ink); text-decoration: none; transition: transform .3s var(--ease), border-color .3s ease, background .3s ease; }
  .social-links a:hover { border-color: var(--terra); background: var(--terra); color: var(--white); transform: translateY(-3px); }
  .social-links svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.4; }
  .calendly-wrapper { min-height: 610px; overflow: hidden; border-radius: 18px; background: var(--white); box-shadow: 0 12px 30px rgba(53,56,55,.06); }
  .calendly-inline-widget { min-width: 100%; width: 100%; height: 100%; }
  .footer-zones { max-width: 920px; margin: 42px auto 0; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.25); color: var(--white); text-align: center; }
  .footer-zones-title { display: block; margin-bottom: 13px; font-size: .72rem; letter-spacing: 3px; text-transform: uppercase; }
  .footer-zones-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-size: .95rem; }
  .footer-zones-list a { color: var(--white); text-decoration: none; }

  html.js .fade-up { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
  html.js .fade-up.visible { opacity: 1; transform: none; }
  @media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } html.js .fade-up, html.js .fade-up.visible { opacity: 1; transform: none; transition: none; } }

  @media (max-width: 1050px) {
    .site-nav { gap: 12px; }
    .hero-grid { padding-right: 7vw; padding-left: 7vw; }
    .article-body { grid-template-columns: minmax(0, 1fr) 280px; gap: 52px; }
    .contact-card { padding: 46px; }
  }

  @media (max-width: 900px) {
    .site-header { padding: 18px 6vw; }
    .site-nav { display: none; }
    .menu-toggle { display: block; }
    .site-header.is-floating { top: 16px; right: 16px; bottom: auto; left: auto; width: auto; max-width: none; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; backdrop-filter: none; -webkit-backdrop-filter: none; transform: none; }
    .site-header.is-floating::before { display: none; }
    .site-header.is-floating .site-logo { display: none; }
    .site-header.is-floating .menu-toggle { display: grid; position: relative; width: 52px; height: 52px; min-height: 0; place-items: center; padding: 0; border-color: rgba(255,255,255,.42); border-radius: 50%; background: rgba(20,22,21,.28); color: var(--white); font-size: 0; line-height: 0; box-shadow: 0 12px 28px rgba(0,0,0,.16), inset 0 1px 0 rgba(255,255,255,.18); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
    .site-header.is-floating .menu-toggle::before { display: block; position: absolute; top: 50%; left: 50%; width: 19px; height: 14px; content: ''; margin: 0; background: linear-gradient(to bottom, currentColor 0 1.5px, transparent 1.5px 6px, currentColor 6px 7.5px, transparent 7.5px 12px, currentColor 12px 13.5px); transform: translate(-50%, -50%); }
    .site-header.is-floating .mobile-menu.is-open { position: fixed; top: 80px; right: 6vw; bottom: auto; left: 6vw; width: auto; }
    .mobile-menu.is-open { position: absolute; top: 70px; right: 6vw; left: 6vw; display: flex; flex-direction: column; gap: 0; padding: 16px 20px 20px; border: 1px solid rgba(53,56,55,.12); border-radius: 24px; background: rgba(247,245,241,.97); box-shadow: 0 18px 40px rgba(53,56,55,.12); backdrop-filter: blur(14px); }
    .mobile-menu a { display: flex; align-items: center; min-height: 48px; padding: 12px 4px; border-bottom: 1px solid rgba(53,56,55,.1); color: var(--ink); font-size: .75rem; letter-spacing: 1.5px; text-decoration: none; text-transform: uppercase; }
    .mobile-menu a:last-child { border-bottom: 0; }
    .mobile-menu a[aria-current="page"] { color: var(--terra); font-weight: 700; }
    .mobile-menu .mobile-menu-cta { justify-content: center; margin-top: 14px; padding: 14px 18px; border: 0; border-radius: 999px; background: var(--terra); color: var(--white); font-weight: 700; }
    .hero-grid { grid-template-columns: 1fr; min-height: auto; padding: 72px 8vw 76px; }
    .hero-mark { position: absolute; right: 7vw; bottom: 30px; font-size: 13rem; opacity: .45; }
    .hero-title { max-width: 650px; font-size: clamp(3.3rem, 14vw, 6rem); }
    .hero-meta { gap: 10px 14px; margin-top: 32px; }
    .stats-inner { grid-template-columns: 1fr; }
    .stat-item { padding: 28px 8vw; border-right: 0; border-bottom: 1px solid rgba(53,56,55,.08); }
    .stat-item:last-child { border-bottom: 0; }
    .article-body { display: flex; flex-direction: column; gap: 52px; padding: 66px 0 80px; }
    .article-aside { position: static; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); width: 100%; }
    .contact-footer { padding: 38px 10px 24px; border-radius: 40px 40px 0 0; }
    .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 42px 22px 28px; border-radius: 30px; }
    .contact-copy { align-items: center; text-align: center; }
    .contact-intro { margin: 0 auto; }
    .contact-list { margin: 28px auto; text-align: left; }
    .calendly-wrapper { min-height: 680px; }
    .contact-copy { display: contents; }
    .contact-copy h2 { order: 1; justify-self: center; margin-bottom: 1.35rem; text-align: center; }
    .contact-intro { order: 2; justify-self: center; max-width: none; margin: 0 auto; text-align: center; white-space: nowrap; }
    .calendly-wrapper { order: 3; width: 100%; margin: 0 auto; }
    .contact-list { order: 4; justify-self: center; width: min(100%, 340px); align-items: stretch; margin: 3.5rem auto 0; }
    .contact-item { width: 100%; justify-content: flex-start; text-align: left; }
    .social-block { order: 5; justify-self: center; margin-top: 4.5rem; text-align: center; }
    .social-label { margin-bottom: 0; }
    .social-links { justify-content: center; }
  }

  @media (max-width: 640px) {
    .hero-grid { padding: 58px 7vw 70px; }
    .hero-tag { margin-bottom: 25px; font-size: .56rem; letter-spacing: 3px; }
    .hero-title { font-size: clamp(3rem, 14vw, 5rem); }
    .hero-meta { display: grid; grid-template-columns: auto 1fr; gap: 8px 12px; }
    .hero-meta-dot { align-self: center; }
    .hero-meta-item { font-size: .59rem; letter-spacing: 1.3px; }
    .hero-mark { right: 4vw; bottom: 22px; font-size: 9rem; }
    .article-wrap { padding: 0 7vw; }
    .article-body { padding-top: 54px; }
    .article-main h2 { margin-top: 58px; font-size: 2.35rem; }
    .article-main p { font-size: .92rem; line-height: 1.85; }
    .pull-quote { margin: 40px 0; padding: 28px 24px; }
    .pull-quote::before { display: none; }
    .pull-quote p { font-size: 1.38rem; }
    .countries-strip { margin: 40px 0; padding: 24px 0; }
    .country-tag { padding: 7px 12px; font-size: .69rem; }
    .article-aside { display: flex; flex-direction: column; }
    .aside-card-header, .timeline-year, .timeline-content, .lang-grid, .zones-body { padding-left: 19px; padding-right: 19px; }
    .contact-copy h2 { font-size: 2.75rem; }
    .contact-list { width: min(100%, 280px); }
    .footer-zones-list { gap: 9px; font-size: .79rem; }
  }

  @media (max-width: 519px) {
    .contact-intro { white-space: normal; }
  }

  /* Footer de contact unifié avec la page « Qui suis-je ? » */
  .contact-footer { position: relative; padding: 2vw 2vw 34px; background: var(--terra); color: var(--ink); }
  .contact-card { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(55px, 8vw, 120px); max-width: 1500px; margin: 0 auto; padding: clamp(60px, 7vw, 105px); border-radius: 44px; background: var(--paper); }
  .contact-copy { display: block; }
  .contact-copy h2 { margin: 0; color: var(--terra); font-family: var(--ui); font-size: clamp(3rem, 5vw, 5rem); font-weight: 600; line-height: 1.05; }
  .contact-copy h2 i { font-family: var(--story); font-weight: 400; }
  .contact-intro { max-width: 430px; margin-top: 25px; color: var(--muted); }
  .contact-list { display: flex; flex-direction: column; gap: 18px; margin: 38px 0; }
  .contact-item { display: flex; align-items: center; gap: 16px; color: inherit; text-decoration: none; }
  .contact-item:hover { transform: none; }
  .contact-item:hover .contact-icon { background: var(--terra); box-shadow: none; transform: none; }
  .contact-icon { display: grid; flex: 0 0 44px; place-items: center; width: 44px; height: 44px; border-radius: 50%; background: var(--terra); color: var(--white); }
  .contact-icon svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.3; }
  .contact-text p { margin: 0; color: var(--ink); font-size: .9rem; font-weight: 600; }
  .contact-text span { color: var(--muted); font-size: .76rem; }
  .social-label { color: var(--muted); font-size: .78rem; }
  .social-links { display: flex; gap: 10px; margin-top: 24px; }
  .social-links a { display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid rgba(53,56,55,.15); border-radius: 50%; color: var(--ink); text-decoration: none; transition: color .25s, border-color .25s, transform .25s; }
  .social-links a:hover { border-color: var(--terra); background: transparent; color: var(--terra); transform: translateY(-3px); }
  .social-links svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.3; }
  .calendly-wrapper { min-height: 700px; overflow: hidden; border: 1px solid rgba(53,56,55,.08); border-radius: 18px; background: var(--white); box-shadow: 0 18px 50px rgba(53,56,55,.07); }
  .calendly-inline-widget { min-width: 100%; height: 700px; }
  .footer-zones { max-width: 1200px; margin: 42px auto 0; padding-top: 30px; border-top: 1px solid rgba(255,255,255,.24); color: var(--white); text-align: center; }
  .footer-zones-title { display: block; margin-bottom: 14px; font-size: .72rem; letter-spacing: 2.2px; text-transform: uppercase; }
  .footer-zones-list { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; font-size: .95rem; }
  .footer-zones-list a { color: var(--white); text-decoration: none; }
  @media (max-width: 1060px) {
    .contact-card { grid-template-columns: 1fr; gap: 55px; }
    .contact-copy { display: contents; }
    .contact-copy h2 { order: 1; justify-self: center; margin-bottom: 1.35rem; text-align: center; }
    .contact-intro { order: 2; justify-self: center; max-width: none; margin: 0 auto; text-align: center; white-space: nowrap; }
    .calendly-wrapper { order: 3; width: 100%; margin: 0 auto; }
    .contact-list { order: 4; justify-self: center; width: min(100%, 340px); align-items: stretch; margin: 3.5rem auto 0; }
    .contact-item { width: 100%; justify-content: flex-start; text-align: left; }
    .social-block { order: 5; justify-self: center; margin-top: 4.5rem; text-align: center; }
    .social-label { margin-bottom: 1.25rem; }
    .social-links { justify-content: center; }
  }
  @media (max-width: 640px) {
    .contact-footer { padding: 45px 5px 28px; }
    .contact-card { padding: 55px 6vw; border-radius: 34px; }
    .contact-copy h2 { text-align: center; }
    .contact-intro { margin-right: auto; margin-left: auto; text-align: center; }
    .calendly-wrapper, .calendly-inline-widget { min-height: 760px; height: 760px; }
    .footer-zones-list { gap: 9px; }
  }
  @media (max-width: 519px) { .contact-intro { white-space: normal; } }
