    :root {
      --navy: #061a33;
      --navy-soft: #0b3157;
      --blue: #175f9d;
      --blue-light: #eaf2f8;
      --black: #000000;
      --grey: #f2f3f4;
      --line: #d8dde2;
      --white: #ffffff;
      --container: 1180px;
      --title: "Barlow Semi Condensed", "Avenir Next Condensed", "Avenir Next", "Helvetica Neue", sans-serif;
      --body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
    }

    * { box-sizing: border-box; }
    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }
    body {
      margin: 0;
      padding-bottom: clamp(64px, 9vh, 86px);
      color: var(--black);
      background: var(--white);
      font-family: var(--body);
      font-synthesis: none;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    body.menu-open { overflow: hidden; }
    img { display: block; width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select, summary { font: inherit; }

    .container {
      width: min(calc(100% - 56px), var(--container));
      margin-inline: auto;
    }

    h1, h2, h3, h4, h5, h6, .eyebrow, .brand, .phone-link, .faq-title, .footer-title, .footer-column strong {
      margin: 0;
      font-family: var(--title);
      font-synthesis: none;
    }

    p { color: var(--black); }

    body, p, li, a, span, summary, figcaption, input, textarea, select, button {
      font-family: var(--body);
    }

    h1, h2, h3, h4, h5, h6, .eyebrow, .brand, .phone-link, .faq-title, .footer-title, .footer-column strong {
      font-family: var(--title);
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--black);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .section-intro {
      max-width: 760px;
      margin: 0 0 48px;
      text-align: left;
    }

    .section-title {
      color: var(--black);
      font-size: clamp(36px, 4.2vw, 54px);
      font-weight: 600;
      line-height: .96;
      letter-spacing: -.035em;
      text-wrap: normal;
    }

    .section-text {
      max-width: 640px;
      margin: 20px 0 0;
      color: var(--black);
      font-size: 15px;
      line-height: 1.75;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: 660px;
      overflow: hidden;
      isolation: isolate;
      color: var(--white);
      background-color: var(--navy);
      background-image: url("https://images.unsplash.com/photo-1767547708642-97afe4b4e583?auto=format&fit=crop&fm=jpg&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&ixlib=rb-4.1.0&q=78&w=2400");
      background-position: center 46%;
      background-size: cover;
      background-repeat: no-repeat;
    }

    /* Dégradé principal : bleu profond à gauche, image plus visible à droite. */
    .hero::before {
      content: "";
      position: absolute;
      z-index: 0;
      inset: 0;
      background:
        linear-gradient(
          112deg,
          rgba(1, 10, 20, .94) 0%,
          rgba(4, 28, 54, .89) 24%,
          rgba(9, 66, 119, .72) 46%,
          rgba(19, 101, 174, .34) 68%,
          rgba(4, 13, 24, .27) 100%
        );
      pointer-events: none;
    }

    /* Reflets noirs et blancs très légers pour éviter un aplat entièrement bleu. */
    .hero::after {
      content: "";
      position: absolute;
      z-index: 1;
      inset: 0;
      background:
        radial-gradient(circle at 82% 18%, rgba(255, 255, 255, .16), transparent 27%),
        radial-gradient(circle at 58% 104%, rgba(83, 159, 222, .18), transparent 34%),
        linear-gradient(
          180deg,
          rgba(0, 0, 0, .30) 0%,
          rgba(0, 0, 0, .05) 38%,
          rgba(0, 0, 0, .12) 68%,
          rgba(2, 12, 24, .52) 100%
        );
      pointer-events: none;
    }

    .hero-header {
      position: absolute;
      inset: 0 0 auto;
      z-index: 10;
      border-bottom: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(180deg, rgba(1, 9, 18, .34), rgba(1, 9, 18, 0));
    }

    .header-inner {
      min-height: 84px;
      display: flex;
      align-items: center;
      gap: 32px;
    }

    .brand {
      display: inline-flex;
      align-items: baseline;
      gap: 0;
      color: var(--white);
      font-family: 'Bebas Neue', var(--title);
      font-size: 34px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .brand span {
      font-family: inherit;
      font-size: inherit;
      font-weight: inherit;
      line-height: inherit;
      letter-spacing: inherit;
      text-transform: inherit;
    }

    .brand-mark {
      width: 35px;
      height: 35px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.75);
      border-radius: 50%;
      font-family: var(--body);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .04em;
    }

    .main-nav {
      margin-left: auto;
      display: flex;
      align-items: center;
      gap: 28px;
      color: var(--white);
      font-size: 12px;
      font-weight: 600;
    }

    .main-nav > a:not(.nav-phone) {
      opacity: 1;
      transition: opacity .2s ease;
    }

    .main-nav > a:not(.nav-phone):hover { opacity: 1; }

    .nav-phone {
      padding-bottom: 4px;
      border-bottom: 1px solid rgba(255,255,255,.75);
      font-family: var(--title);
      font-size: 17px;
      letter-spacing: .025em;
    }

    .menu-toggle {
      display: none;
      margin-left: auto;
      width: 42px;
      height: 42px;
      padding: 10px;
      border: 1px solid rgba(255,255,255,.32);
      background: transparent;
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 1px;
      margin: 5px auto;
      background: var(--white);
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      min-height: 660px;
      display: grid;
      place-items: center;
      padding: 150px 0 86px;
      text-align: center;
    }

    .hero-copy { max-width: 900px; }

    .hero .eyebrow {
      margin-bottom: 16px;
      color: var(--white);
    }

    .hero h1 {
      color: var(--white);
      font-size: clamp(70px, 8.75vw, 115px);
      font-weight: 600;
      line-height: .88;
      letter-spacing: -.045em;
      text-wrap: normal;
    }

    .hero-copy > p:not(.eyebrow) {
      max-width: 650px;
      margin: 24px auto 0;
      color: var(--white);
      font-size: 15px;
      line-height: 1.65;
    }

    .phone-link {
      display: inline-block;
      margin-top: 30px;
      padding-bottom: 7px;
      border-bottom: 2px solid var(--white);
      color: var(--white);
      font-size: clamp(30px, 3.5vw, 44px);
      font-weight: 600;
      letter-spacing: .05em;
    }

    .phone-caption {
      margin-top: 9px;
      color: var(--white);
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .phone-review-stack {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      width: max-content;
      max-width: 100%;
    }

    .phone-review-stack .phone-link {
      margin-left: auto;
      margin-right: auto;
    }

    .review-badge {
      width: 78%;
      min-width: 207px;
      max-width: 285px;
      height: auto;
      margin: 14px auto 0;
      object-fit: contain;
    }

    /* Services */
    .services {
      position: relative;
      overflow: hidden;
      padding: 112px 0 118px;
      background:
        radial-gradient(circle at 12% 18%, rgba(23, 95, 157, .07), transparent 25%),
        radial-gradient(circle at 88% 78%, rgba(6, 26, 51, .05), transparent 24%),
        #f5f7fa;
    }

    .services .section-intro {
      max-width: 720px;
      margin-bottom: 58px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 28px;
      align-items: stretch;
    }

    .service-card {
      position: relative;
      min-height: 300px;
      padding: 38px 36px 34px;
      border: 1px solid rgba(6, 26, 51, .055);
      border-radius: 28px;
      background: rgba(255, 255, 255, .96);
      box-shadow: 0 20px 56px rgba(6, 26, 51, .075);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 28px 68px rgba(6, 26, 51, .11);
    }

    .service-card.is-featured {
      z-index: 1;
      color: var(--white);
      border-color: transparent;
      background: linear-gradient(145deg, #1b6fbd 0%, #08498c 55%, #06376d 100%);
      box-shadow: 0 30px 68px rgba(6, 55, 109, .25);
      transform: rotate(-2.2deg) translateY(-7px);
    }

    .service-card.is-featured:hover {
      transform: rotate(-2.2deg) translateY(-12px);
      box-shadow: 0 36px 78px rgba(6, 55, 109, .30);
    }

    .service-icon {
      width: 68px;
      height: 68px;
      display: grid;
      place-items: center;
      margin-bottom: 30px;
      border-radius: 50%;
      color: #0d58a5;
      background: #eaf2fb;
    }

    .service-card.is-featured .service-icon {
      color: #0d58a5;
      background: var(--white);
    }

    .service-icon svg {
      width: 31px;
      height: 31px;
      display: block;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .service-card h3 {
      max-width: 360px;
      color: var(--black);
      font-size: clamp(27px, 2.25vw, 38px);
      font-weight: 600;
      line-height: 1;
      letter-spacing: -.027em;
    }

    .service-card p {
      max-width: 390px;
      margin: 20px 0 0;
      color: var(--black);
      font-size: 14px;
      line-height: 1.75;
    }

    .service-card.is-featured h3,
    .service-card.is-featured p {
      color: var(--white);
    }

    .service-card.is-featured p { color: var(--white); }

    /* Réalisations */
    .realisations {
      padding: 92px 0 0;
      background: #eef2f5;
    }

    .realisations .section-intro {
      max-width: 760px;
      margin: 0 0 46px;
      text-align: left;
    }

    .realisations .section-title {
      max-width: 720px;
      font-size: clamp(36px, 4vw, 50px);
    }

    .realisations .section-text {
      max-width: 620px;
      margin: 18px 0 0;
    }

    .gallery {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      background: #061a33;
    }

    .gallery figure {
      position: relative;
      min-width: 0;
      min-height: 430px;
      margin: 0;
      overflow: hidden;
      background: #0a213d;
      border-right: 1px solid rgba(255,255,255,.14);
    }

    .gallery figure:last-child { border-right: 0; }

    .gallery img {
      position: absolute;
      inset: 0;
      height: 100%;
      object-fit: cover;
      filter: saturate(.86) contrast(1.04);
      transition: transform .55s cubic-bezier(.2,.7,.2,1), filter .4s ease;
    }

    .gallery figure::after {
      content: "";
      position: absolute;
      inset: 36% 0 0;
      background: linear-gradient(180deg, transparent, rgba(3,14,28,.34) 24%, rgba(3,14,28,.92) 100%);
      pointer-events: none;
    }

    .gallery figure:hover img {
      transform: scale(1.045);
      filter: saturate(.96) contrast(1.06);
    }

    .gallery figcaption {
      position: absolute;
      z-index: 2;
      left: 0;
      right: 0;
      bottom: 0;
      padding: 48px 24px 24px;
      color: var(--white);
      background: linear-gradient(180deg, rgba(7,25,47,0), rgba(7,25,47,.56) 46%, rgba(7,25,47,.78) 100%);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
    }

    .gallery figcaption strong {
      display: block;
      color: var(--white);
      font-family: var(--title);
      font-size: 22px;
      font-weight: 600;
      line-height: 1.06;
      letter-spacing: -.02em;
    }

    .gallery figcaption span {
      display: block;
      max-width: 250px;
      margin-top: 8px;
      color: var(--white);
      font-size: 11px;
      line-height: 1.55;
    }

    /* Présentation de l'entreprise */
    .story {
      padding: 112px 0 108px;
      background: var(--white);
    }

    .story-layout {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(360px, .88fr);
      align-items: center;
      gap: clamp(56px, 7vw, 104px);
    }

    .story-copy { min-width: 0; }

    .story-inner { max-width: 610px; }

    .story .section-title {
      max-width: 620px;
      font-size: clamp(38px, 4vw, 54px);
      text-align: left;
    }

    .story-intro,
    .story-outro {
      max-width: 585px;
      margin: 24px 0 0;
      color: var(--black);
      font-size: 15px;
      line-height: 1.78;
    }

    .story-points {
      max-width: 585px;
      margin: 30px 0 0;
      padding: 0;
      list-style: none;
      border-top: 1px solid var(--line);
    }

    .story-points li {
      position: relative;
      padding: 15px 0 15px 31px;
      border-bottom: 1px solid var(--line);
      color: var(--black);
      font-family: var(--title);
      font-size: 20px;
      font-weight: 600;
      line-height: 1.25;
    }

    .story-points li::before {
      content: "→";
      position: absolute;
      left: 0;
      top: 14px;
      color: var(--blue);
      font-family: var(--body);
      font-size: 18px;
    }

    .story-image {
      position: relative;
      min-height: 548px;
      overflow: hidden;
      border-radius: 26px;
      background: #dfe7ec;
      box-shadow: 0 28px 70px rgba(6, 26, 51, .12);
    }

    .story-image img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .story-map iframe {
      width: 100%;
      height: 100%;
      min-height: 548px;
      display: block;
      border: 0;
    }

    .story-intervention {
      background: #f8fafc;
      border-top: 1px solid #e5e9ed;
    }

    .story-intervention .story-image {
      background: #dfe7ec;
    }

    /* FAQ */
    .faq {
      padding: 106px 0 110px;
      background: #f4f6f8;
    }

    .faq .section-intro {
      max-width: 860px;
      margin: 0 auto 42px;
      text-align: left;
    }

    .faq .section-title {
      font-size: clamp(38px, 4.2vw, 58px);
    }

    .faq-list {
      max-width: 860px;
      margin: 0 auto;
      border-top: 1px solid #cbd2d8;
    }

    .faq-list details {
      border-bottom: 1px solid #cbd2d8;
    }

    .faq-list summary {
      position: relative;
      padding: 19px 46px 19px 0;
      color: var(--black);
      font-family: var(--body);
      font-size: 16px;
      font-weight: 600;
      line-height: 1.45;
      list-style: none;
      cursor: pointer;
    }

    .faq-list summary::-webkit-details-marker { display: none; }

    .faq-list summary::after {
      content: "+";
      position: absolute;
      right: 2px;
      top: 15px;
      width: 28px;
      height: 28px;
      display: grid;
      place-items: center;
      border: 1px solid #b9c6d1;
      border-radius: 50%;
      color: var(--blue);
      font-family: var(--body);
      font-size: 18px;
      font-weight: 400;
      transition: transform .2s ease, background .2s ease;
    }

    .faq-list details[open] summary::after {
      transform: rotate(45deg);
      background: #e7eef5;
    }

    .faq-list details p {
      max-width: 720px;
      margin: -1px 0 20px;
      color: var(--black);
      font-size: 13px;
      line-height: 1.75;
    }

    /* Appel sticky */
    .cta {
      position: fixed;
      z-index: 1000;
      left: 0;
      right: 0;
      bottom: 0;
      height: 78px;
      padding: 0;
      background: transparent;
      box-shadow: 0 -10px 30px rgba(3, 16, 31, .16);
    }

    .sticky-call {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: .38em;
      padding: 10px 24px;
      color: var(--white);
      background: linear-gradient(100deg, #061a33 0%, #0a3764 58%, #1265a8 100%);
      font-family: var(--body);
      font-size: clamp(15px, 1.35vw, 19px);
      font-weight: 700;
      line-height: 1.15;
      text-align: center;
      transition: filter .2s ease;
    }

    .sticky-call:hover { filter: brightness(1.08); }

    .sticky-call strong {
      font-family: var(--title);
      font-size: 1.18em;
      font-weight: 700;
      letter-spacing: .015em;
      border-bottom: 1px solid rgba(255,255,255,.72);
    }

    /* Footer */
    footer {
      background: #03101f;
      color: var(--white);
    }

    .footer-main {
      padding: 62px 0 48px;
    }

    .footer-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 48px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,.14);
    }

    .footer-brand {
      max-width: 520px;
    }

    .footer-brand-line {
      display: flex;
      align-items: center;
      gap: 13px;
    }

    .footer-brand .brand-mark {
      flex: 0 0 auto;
      width: 38px;
      height: 38px;
    }

    .footer-title {
      color: var(--white);
      font-family: 'Bebas Neue', var(--title);
      font-size: 34px;
      font-weight: 400;
      line-height: 1;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .footer-brand p {
      max-width: 470px;
      margin: 17px 0 0;
      color: var(--white);
      font-size: 13px;
      line-height: 1.72;
    }

    .footer-call {
      flex: 0 0 auto;
      text-align: right;
    }

    .footer-call span {
      display: block;
      margin-bottom: 8px;
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .footer-call a {
      display: inline-block;
      padding-bottom: 5px;
      border-bottom: 1px solid rgba(255,255,255,.8);
      color: var(--white);
      font-family: var(--title);
      font-size: 28px;
      font-weight: 600;
      letter-spacing: .02em;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.25fr .9fr .9fr;
      gap: 64px;
      padding-top: 40px;
    }

    .footer-column {
      display: grid;
      align-content: start;
      gap: 8px;
    }

    .footer-column strong {
      margin-bottom: 8px;
      color: var(--white);
      font-size: 11px;
      font-weight: 600;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .footer-column a,
    .footer-column span,
    .footer-column p {
      margin: 0;
      color: var(--white);
      font-size: 12px;
      line-height: 1.75;
    }

    .footer-column a {
      width: fit-content;
      transition: color .2s ease;
    }

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

    .footer-zone {
      max-width: 330px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      padding: 20px 0 24px;
      border-top: 1px solid rgba(255,255,255,.1);
      color: var(--white);
      font-size: 10px;
    }

    .footer-legal {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 980px) {
      .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
      .service-card.is-featured { transform: rotate(-1.2deg) translateY(-4px); }
      .service-card.is-featured:hover { transform: rotate(-1.2deg) translateY(-9px); }

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


      .story-layout {
        grid-template-columns: minmax(0, 1fr) minmax(320px, .85fr);
        gap: 48px;
      }

      .story-image { min-height: 500px; }
      .story-map iframe { min-height: 500px; }

      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    }

    @media (max-width: 780px) {
      .container { width: min(calc(100% - 32px), var(--container)); }

      .header-inner { min-height: 68px; }
      .menu-toggle { display: block; }

      .main-nav {
        position: absolute;
        inset: 68px 16px auto;
        display: none;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 14px;
        background: rgba(6, 26, 51, .98);
        border: 1px solid rgba(255,255,255,.18);
      }

      .main-nav.is-open { display: flex; }
      .main-nav a { width: 100%; padding: 10px; }
      .main-nav .nav-phone { width: auto; margin: 4px 10px 8px; padding: 5px 0; }

      .hero,
      .hero-inner { min-height: 485px; }

      .hero { background-position: 61% center; }

      .hero::before {
        background:
          linear-gradient(
            128deg,
            rgba(1, 10, 20, .94) 0%,
            rgba(4, 31, 60, .88) 38%,
            rgba(12, 78, 137, .61) 67%,
            rgba(2, 13, 24, .44) 100%
          );
      }

      .hero::after {
        background:
          radial-gradient(circle at 82% 16%, rgba(255, 255, 255, .11), transparent 25%),
          linear-gradient(180deg, rgba(0, 0, 0, .28), rgba(0, 0, 0, .08) 46%, rgba(1, 11, 22, .48));
      }
      .hero-inner { padding: 104px 0 36px; }
      .hero h1 { font-size: clamp(45px, 12vw, 57px); line-height: 1.05; text-wrap: normal; }
      .hero-copy > p:not(.eyebrow) { max-width: 420px; margin-top: 16px; font-size: 13px; line-height: 1.5; }
      .phone-link { margin-top: 22px; font-size: 28px; }
      .review-badge { width: 75%; min-width: 189px; max-width: 225px; margin-top: 11px; }
      .phone-caption { margin-top: 7px; }

      .services { padding: 78px 0 82px; }
      .services .section-intro { margin-bottom: 38px; text-align: left; }
      .services .section-title,
      .faq .section-title {
        font-size: clamp(32px, 9vw, 40px);
        text-align: left;
        max-width: 100%;
        text-wrap: normal;
      }
      .services-grid { grid-template-columns: 1fr; gap: 18px; }
      .service-card {
        min-height: 0;
        padding: 29px 26px 30px;
        border-radius: 21px;
      }
      .service-card.is-featured,
      .service-card.is-featured:hover {
        transform: none;
      }
      .service-card:hover { transform: none; }
      .service-icon {
        width: 58px;
        height: 58px;
        margin-bottom: 23px;
      }
      .service-icon svg { width: 27px; height: 27px; }
      .service-card h3 { font-size: 31px; }
      .service-card p { margin-top: 15px; font-size: 13px; }

      .realisations { padding-top: 72px; }
      .realisations .section-intro {
        max-width: 620px;
        margin: 0 0 34px;
        text-align: left;
      }
      .realisations .section-title {
        max-width: 100%;
        margin: 0;
        font-size: clamp(32px, 9vw, 40px);
        text-align: left;
        text-wrap: normal;
      }
      .realisations .section-text {
        max-width: 520px;
        margin: 14px 0 0;
        text-align: left;
      }
      .gallery { grid-template-columns: 1fr; }
      .gallery figure {
        min-height: 420px;
        border-right: 0;
        border-bottom: 1px solid rgba(255,255,255,.14);
      }
      .gallery figure:last-child { border-bottom: 0; }
      .gallery figcaption { padding: 56px 22px 22px; }
      .gallery figcaption strong { font-size: 24px; }
      .gallery figcaption span { max-width: 320px; font-size: 12px; }

      .faq { padding: 78px 0 82px; }
      .faq .section-intro { margin: 0 auto 30px; text-align: left; }
      .faq-list summary { padding: 17px 42px 17px 0; font-size: 15px; }
      .faq-list summary::after { top: 12px; }
      .faq-list details p { font-size: 13px; }

      .story { padding: 76px 0 0; }
      .story .container { width: 100%; }
      .story-layout { grid-template-columns: 1fr; gap: 54px; }
      .story-copy { padding: 0 24px; }
      .story-inner { max-width: 650px; margin-inline: auto; }
      .story .eyebrow { text-align: left; }
      .story .section-title {
        max-width: 100%;
        margin: 0;
        font-size: clamp(32px, 9vw, 40px);
        text-align: left;
        text-wrap: normal;
      }
      .story-image {
        min-height: 390px;
        width: 100%;
        border-radius: 0;
        box-shadow: none;
      }

      .cta {
        height: 82px;
        padding-bottom: env(safe-area-inset-bottom, 0px);
      }

      .sticky-call {
        position: relative;
        padding: 12px 18px;
        gap: .34em;
        font-size: clamp(16px, 4.4vw, 19px);
        font-weight: 700;
        white-space: normal;
      }

      .sticky-call span,
      .sticky-call strong {
        font-weight: 700;
      }

      .footer-main { padding: 50px 0 36px; }
      .footer-top { flex-direction: column; gap: 26px; padding-bottom: 32px; }
      .footer-call { text-align: left; }
      .footer-call a { font-size: 26px; }
      .footer-grid { grid-template-columns: 1fr; gap: 30px; padding-top: 32px; }
      .footer-bottom { flex-direction: column; gap: 10px; }
    }

    @media (max-width: 380px) {
      .hero,
      .hero-inner { min-height: 465px; }
      .hero-inner { padding-top: 94px; }
      .hero h1 { font-size: 44px; line-height: 1.05; }
    }