﻿:root {
      --white: #ffffff;
      --ivory: #fafafa;
      --pearl: #f3f3f4;
      --sand: #e8e8ec;
      --stone: #dfdfe3;
      --wood: #d8c7b5;
      --accent: #6366f1;
      --accent-soft: #eef0ff;
      --selection: #18a800;
      --deep-sage: #6366f1;
      --graphite: #0a0a0a;
      --ink: #0a0a0a;
      --muted: #6b6b6b;
      --line: #e8e8ec;
      --soft-shadow: 0 22px 60px rgba(10, 10, 10, .07);
      --radius: 8px;
      --serif: "Libre Baskerville", Georgia, serif;
      --sans: "Manrope", Helvetica, sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      color: var(--ink);
      background:
        radial-gradient(circle at 1px 1px, rgba(10, 10, 10, .075) 1px, transparent 0) 0 0 / 16px 16px,
        var(--ivory);
      font-family: var(--sans);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    button, input, textarea, select { font: inherit; }

    .container {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

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

    h1, h2, h3 {
      margin: 0;
      font-family: var(--serif);
      font-weight: 400;
      line-height: 1.08;
      letter-spacing: 0;
    }

    h1 { font-size: clamp(31px, 3vw, 39px); max-width: 590px; }
    h2 { font-size: clamp(28px, 2.65vw, 40px); max-width: 680px; }
    h3 { font-size: clamp(21px, 1.85vw, 26px); }
    p { margin: 0; color: var(--muted); }

    .nav {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      pointer-events: none;
    }

    .nav__inner {
      pointer-events: auto;
      position: relative;
      display: grid;
      grid-template-columns: 220px 1fr 220px;
      align-items: center;
      gap: 20px;
      width: 100%;
      margin: 0 auto;
      min-height: 76px;
      padding: 8px max(28px, calc((100vw - 1160px) / 2));
      border-bottom: 1px solid var(--line);
      border-radius: 0;
      background: rgba(255, 255, 255, .88);
      box-shadow: none;
      backdrop-filter: blur(20px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: flex-start;
      min-width: 0;
    }
    .brand img { width: 98px; height: auto; }
.nav__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
    .nav__links li { list-style: none; }
    .nav__links a { transition: color .25s ease; }
    .nav__links a:hover { color: var(--ink); }
    .nav__inner > .btn { justify-self: end; }

    .nav-toggle {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      gap: 5px;
      flex-direction: column;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
      color: var(--ink);
      cursor: pointer;
    }

    .nav-toggle span {
      display: block;
      width: 18px;
      height: 2px;
      border-radius: 99px;
      background: currentColor;
      transition: transform .25s ease, opacity .25s ease;
    }

    .nav.is-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav.is-open .nav-toggle span:nth-child(2) { opacity: 0; }
    .nav.is-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      pointer-events: auto;
      display: none;
      width: min(100% - 28px, 420px);
      margin: 8px 14px 0 auto;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.96);
      box-shadow: var(--soft-shadow);
      backdrop-filter: blur(18px);
    }

    .mobile-menu .nav__links {
      display: grid;
      gap: 0;
      justify-content: stretch;
      margin: 0;
    }

    .mobile-menu .nav__links a {
      display: flex;
      min-height: 46px;
      align-items: center;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
    }

    .mobile-menu .nav__links li:last-child a,
    .mobile-menu .nav__links > a:last-child {
      border-bottom: 0;
    }

    .mobile-menu .btn {
      width: 100%;
      margin-top: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 22px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: var(--white);
      color: var(--ink);
      font-size: 14px;
      font-weight: 800;
      cursor: pointer;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
      white-space: nowrap;
    }

    .btn:hover { transform: translateY(-2px); box-shadow: var(--soft-shadow); }
    .btn--primary { border-color: var(--accent); background: var(--accent); color: var(--white); }
    .btn--glass { background: rgba(255, 255, 255, .86); }

    .hero {
      min-height: 92vh;
      padding: 126px 0 38px;
      display: grid;
      align-items: end;
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 1px 1px, rgba(10, 10, 10, .08) 1px, transparent 0) 0 0 / 16px 16px,
        var(--ivory);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(250,250,250,.14) 0%, rgba(250,250,250,.08) 52%, rgba(250,250,250,.96) 100%),
        linear-gradient(90deg, rgba(250,250,250,.98) 0%, rgba(250,250,250,.76) 31%, rgba(99,102,241,.08) 58%, rgba(250,250,250,.04) 100%),
        radial-gradient(circle at 1px 1px, rgba(10, 10, 10, .09) 1px, transparent 0) 0 0 / 16px 16px,
        url("../images/hero/cuisine-3d-hero-astral.webp") center / cover no-repeat;
      animation: heroDrift 18s ease-out both;
    }

    @keyframes heroDrift {
      from { transform: scale(1.035); }
      to { transform: scale(1); }
    }

    .hero__content {
      position: relative;
      z-index: 2;
      padding: 0 0 56px;
    }

    .hero__content::before {
      content: "";
      display: block;
      width: 54px;
      height: 1px;
      margin: 0 0 24px;
      background: var(--selection);
    }

    .hero__lead {
      max-width: 520px;
      margin-top: 24px;
      color: #4d4d4d;
      font-size: clamp(16px, 1.35vw, 18px);
      line-height: 1.72;
    }

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

    .hero__cutout {
      position: absolute;
      z-index: 2;
      right: max(46px, calc((100vw - 1160px) / 2));
      top: 49%;
      width: min(36vw, 560px);
      margin: 0;
      pointer-events: none;
      transform: translateY(-42%);
      filter: drop-shadow(0 28px 56px rgba(10,10,10,.18));
      animation: heroCutoutShadow 6.8s ease-in-out infinite;
    }

    .hero__cutout img {
      width: 100%;
      height: auto;
      object-fit: contain;
      transform-origin: 52% 58%;
      animation: heroCutoutFloat 6.8s ease-in-out infinite;
      will-change: transform;
    }

    @keyframes heroCutoutFloat {
      0%, 100% {
        transform: translate3d(0, 0, 0) rotate(-.35deg) scale(1);
      }
      50% {
        transform: translate3d(0, -12px, 0) rotate(.65deg) scale(1.014);
      }
    }

    @keyframes heroCutoutShadow {
      0%, 100% {
        filter: drop-shadow(0 28px 56px rgba(10,10,10,.18));
      }
      50% {
        filter: drop-shadow(0 36px 66px rgba(10,10,10,.14));
      }
    }

    .trustbar {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, .86);
      border-radius: 0;
      overflow: visible;
      box-shadow: none;
      backdrop-filter: blur(14px);
    }

    .trustbar span {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 58px;
      padding: 14px 22px;
      border-right: 1px solid var(--line);
      background: transparent;
      color: #4f4f4f;
      font-size: 13px;
      font-weight: 700;
      backdrop-filter: none;
    }

    .trustbar span:last-child { border-right: 0; }

    .mark {
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      border: 1px solid var(--selection);
      border-radius: 50%;
      background: rgba(24, 168, 0, .08);
    }

    section { padding: 112px 0; }

    .page-hero {
      padding: 112px 0 38px;
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.72);
    }

    .page-hero__inner {
      max-width: 780px;
      text-align: center;
    }

    .page-hero h1 {
      max-width: 720px;
      margin: 0 auto;
      font-size: clamp(31px, 3vw, 46px);
    }

    .page-body {
      padding: 56px 0 104px;
    }

    .page-content {
      max-width: 780px;
      padding: 42px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.9);
    }

    .page-content h2 {
      margin: 34px 0 12px;
      font-family: var(--sans);
      font-size: 17px;
      font-weight: 900;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .page-content h2:first-child {
      margin-top: 0;
    }

    .page-content p,
    .page-content li {
      color: #4d4d4d;
      font-size: 15px;
      line-height: 1.8;
    }

    .page-content p + p {
      margin-top: 16px;
    }

    .page-content ul {
      margin: 14px 0 0;
      padding-left: 20px;
    }

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

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .92fr) minmax(280px, .62fr);
      gap: 60px;
      align-items: end;
      margin-bottom: 54px;
    }

    .section-head p { font-size: 16px; line-height: 1.75; }

    .why {
      background: linear-gradient(180deg, var(--ivory), var(--white));
    }

    .why__grid {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 28px;
      align-items: stretch;
    }

    .feature-image {
      min-height: 560px;
      border-radius: var(--radius);
      background: url("../images/sections/architecte-plan-cuisine-sur-mesure.webp") center / cover no-repeat;
      box-shadow: var(--soft-shadow);
    }

    .feature-list {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .feature {
      min-height: 274px;
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.78);
    }

    .feature svg, .service svg, .step svg, .material svg, .contact-card svg {
      width: 28px;
      height: 28px;
      stroke-width: 1.35;
      margin-bottom: 28px;
      color: var(--accent);
      fill: none;
      stroke: currentColor;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .block-icon {
      display: block;
      padding: 4px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255,255,255,.72);
    }

    .feature h3, .service h3 { margin-bottom: 16px; font-family: var(--sans); font-size: 16px; line-height: 1.25; font-weight: 700; }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .service {
      padding: 30px;
      min-height: 310px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .service:hover { transform: translateY(-5px); box-shadow: var(--soft-shadow); }

    .process {
      background: var(--ivory);
      overflow: hidden;
    }

    .timeline {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      overflow: hidden;
    }

    .step {
      position: relative;
      min-height: 250px;
      padding: 28px;
      border-right: 1px solid var(--line);
    }

    .step:last-child { border-right: 0; }
    .step__num {
      display: block;
      margin-bottom: 30px;
      color: var(--deep-sage);
      font-family: var(--serif);
      font-size: 42px;
      line-height: 1;
    }

    .step .block-icon {
      margin-bottom: 24px;
    }

    .step h3 { margin-bottom: 10px; font-family: var(--sans); font-size: 16px; line-height: 1.25; font-weight: 700; }

    .gallery {
      background: var(--white);
    }

    .gallery-grid {
      display: flex;
      justify-content: center;
      align-items: stretch;
      gap: 8px;
      width: 100%;
      max-width: 1040px;
      height: 400px;
      margin: 0 auto;
      padding: 0 4px;
    }

    .gallery-card {
      position: relative;
      margin: 0;
      flex: 1 1 0;
      width: auto;
      min-width: 0;
      height: 100%;
      border-radius: var(--radius);
      overflow: hidden;
      background: var(--pearl);
      isolation: isolate;
      cursor: pointer;
      will-change: flex-grow;
      transform: translateZ(0);
      transition: flex-grow .9s cubic-bezier(.16, 1, .3, 1), box-shadow .32s ease;
    }

    .gallery-card:hover,
    .gallery-card:focus-within {
      flex-grow: 5.6;
      box-shadow: var(--soft-shadow);
    }

    .gallery-card.reveal {
      transition-delay: 0ms !important;
      transition:
        opacity .7s ease,
        transform .7s ease,
        flex-grow .9s cubic-bezier(.16, 1, .3, 1),
        box-shadow .32s ease;
    }

    .gallery-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
      transition: transform .72s cubic-bezier(.22, 1, .36, 1), filter .45s ease;
    }

    .gallery-card:hover img { transform: scale(1.018); }

    .materials {
      background: linear-gradient(180deg, var(--ivory), var(--white));
    }

    .materials-showcase {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 28px;
      align-items: stretch;
    }

    .materials-showcase img {
      width: 100%;
      height: 100%;
      min-height: 520px;
      object-fit: cover;
      border-radius: var(--radius);
      box-shadow: var(--soft-shadow);
    }

    .materials-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    .material {
      padding: 28px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.82);
    }

    .material h3 { margin-bottom: 12px; font-family: var(--sans); font-size: 16px; line-height: 1.25; font-weight: 700; }
    .material a { display: inline-flex; margin-top: 22px; color: var(--deep-sage); font-size: 13px; font-weight: 800; }

    .testimonials-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .quote {
      padding: 34px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
    }

    .stars { color: var(--deep-sage); font-size: 15px; letter-spacing: .08em; }
    .quote p { margin: 24px 0; color: #2c2c2c; font-size: 18px; }
    .quote strong { display: block; font-size: 14px; }
    .quote small { color: var(--muted); }

    .blog-preview {
      background:
        linear-gradient(90deg, rgba(250,250,250,.96), rgba(243,243,244,.86)),
        url("../images/gallery/cuisine-contemporaine-lumineuse.webp") center / cover no-repeat;
    }

    .blog-preview__top {
      display: flex;
      justify-content: space-between;
      gap: 24px;
      align-items: end;
      margin-bottom: 42px;
    }

    .blog-preview__top .section-head {
      display: block;
      margin-bottom: 0;
      max-width: 720px;
    }

    .blog-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .blog-card {
      display: grid;
      grid-template-rows: 240px auto;
      overflow: hidden;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.9);
      backdrop-filter: blur(12px);
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .blog-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--soft-shadow);
    }

    .blog-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .blog-card__body {
      padding: 24px;
    }

    .blog-card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 14px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .blog-card h3 {
      margin-bottom: 14px;
      font-family: var(--sans);
      font-size: 20px;
      line-height: 1.25;
      font-weight: 800;
    }

    .blog-card p { margin-bottom: 22px; }
    .blog-card__link { color: var(--accent); font-size: 13px; font-weight: 800; }

    .faq {
      background: var(--white);
    }

    .faq-list {
      display: grid;
      gap: 10px;
      max-width: 900px;
      margin: 0 auto;
    }

    details {
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--ivory);
      overflow: hidden;
    }

    summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px 24px;
      font-weight: 800;
      cursor: pointer;
      list-style: none;
    }

    summary::-webkit-details-marker { display: none; }
    summary::after { content: "+"; color: var(--deep-sage); font-size: 24px; line-height: 1; }
    details[open] summary::after { content: "-"; }
    details p { padding: 0 24px 24px; }

    .contact {
      background: var(--ivory);
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .82fr 1.18fr;
      gap: 28px;
      align-items: start;
    }

    .contact-card {
      position: sticky;
      top: 112px;
      padding: 34px;
      border-radius: var(--radius);
      background:
        linear-gradient(180deg, rgba(255,255,255,.72), rgba(255,255,255,.92)),
        url("../images/materials/materiaux-premium-cuisine.webp") center / cover no-repeat;
      box-shadow: var(--soft-shadow);
    }

    .contact-card h2 { margin-bottom: 18px; }
    .contact-card p { margin-bottom: 28px; }

form {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--white);
      box-shadow: var(--soft-shadow);
}

.wpcf7 form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.wpcf7 p { margin: 0; color: inherit; }
.wpcf7 .field--wide,
.wpcf7 .form-actions,
.wpcf7 .wpcf7-response-output { grid-column: 1 / -1; }
.wpcf7-spinner { align-self: center; }
.wpcf7-not-valid-tip { margin-top: 6px; font-size: 12px; font-weight: 700; }
.wpcf7 .form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.wpcf7-submit.btn { border-color: var(--accent); background: var(--accent); color: var(--white); }

    .field { display: grid; gap: 7px; }
    .field--wide { grid-column: 1 / -1; }
    label { color: #252525; font-size: 13px; font-weight: 800; }
    input, select, textarea {
      width: 100%;
      min-height: 50px;
      padding: 12px 14px;
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: var(--ivory);
      color: var(--ink);
      outline: none;
      transition: border-color .2s ease, box-shadow .2s ease;
    }

    textarea { min-height: 132px; resize: vertical; }
    input:focus, select:focus, textarea:focus {
      border-color: rgba(99, 102, 241, .58);
      box-shadow: 0 0 0 4px rgba(99, 102, 241, .14);
    }

    .form-note {
      align-self: center;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
    }

    .footer {
      padding: 58px 0 34px;
      background: var(--white);
      border-top: 1px solid var(--line);
    }

    .footer__inner {
      display: grid;
      grid-template-columns: 1.1fr .9fr .8fr;
      gap: 34px;
      align-items: start;
    }

    .footer img { width: 150px; margin-bottom: 14px; }
    .footer nav, .footer address { display: grid; gap: 10px; color: var(--muted); font-style: normal; font-size: 14px; }
    .footer small { display: block; margin-top: 40px; color: var(--muted); }

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

    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .mobile-sticky {
      position: fixed;
      inset: auto 14px 14px;
      z-index: 60;
      display: none;
      box-shadow: 0 18px 44px rgba(10,10,10,.16);
    }

    @media (max-width: 980px) {
      .nav__links { display: none; }
      .nav-toggle { display: inline-flex; }
      .nav__inner {
        display: flex;
        min-height: 72px;
        padding: 8px 22px;
        border-radius: 0;
        justify-content: space-between;
      }
      .nav.is-open .mobile-menu { display: block; }
      .brand img { width: 94px; }
      .hero { min-height: 88vh; padding-top: 112px; }
      .hero::before {
        background:
          linear-gradient(180deg, rgba(250,250,250,.78) 0%, rgba(250,250,250,.56) 46%, rgba(250,250,250,.96) 100%),
          linear-gradient(90deg, rgba(250,250,250,.92) 0%, rgba(243,243,244,.56) 58%, rgba(99,102,241,.08) 100%),
          radial-gradient(circle at 1px 1px, rgba(10, 10, 10, .08) 1px, transparent 0) 0 0 / 16px 16px,
          url("../images/hero/cuisine-3d-hero-astral.webp") 58% center / cover no-repeat;
      }
      .hero__cutout {
        right: 22px;
        top: 39%;
        width: min(42vw, 360px);
        opacity: .94;
      }
      .trustbar, .section-head, .why__grid, .materials-showcase, .contact-layout, .footer__inner {
        grid-template-columns: 1fr;
      }
      .trustbar { gap: 0; border: 1px solid var(--line); }
      .trustbar span { min-height: 58px; border-right: 0; border-bottom: 1px solid var(--line); }
      .feature-image { min-height: 360px; }
      .services-grid, .testimonials-grid, .blog-cards { grid-template-columns: repeat(2, 1fr); }
      .blog-preview__top { display: grid; align-items: start; }
      .timeline { grid-template-columns: 1fr; }
      .step { min-height: 190px; border-right: 0; border-bottom: 1px solid var(--line); }
      .step:last-child { border-bottom: 0; }
      .gallery-grid { height: 360px; }
      .contact-card { position: static; }
    }

    @media (max-width: 640px) {
      .container { width: min(100% - 28px, 1160px); }
      section { padding: 78px 0; }
      .page-hero { padding: 94px 0 30px; }
      .page-body { padding: 34px 0 78px; }
      .page-content { padding: 26px; }
      .nav { inset-top: 10px; }
      .nav__inner .btn { display: none; }
      .nav__inner {
        width: 100%;
        min-height: 70px;
        padding: 8px 16px;
      }
      .brand img { width: 90px; }
      .hero { padding-top: 108px; }
      .hero__cutout {
        position: relative;
        right: auto;
        top: auto;
        width: min(100% - 28px, 330px);
        margin: 0 auto 22px;
        transform: none;
      }
      .hero__content { padding-bottom: 36px; }
      .hero__content::before { margin-bottom: 20px; }
      .hero__actions .btn { width: 100%; }
      .trustbar { border-radius: 0; }
      .trustbar span { min-height: 62px; padding: 14px; }
      .feature-list, .services-grid, .materials-grid, .testimonials-grid, .blog-cards, form { grid-template-columns: 1fr; }
      .gallery-grid { display: grid; grid-template-columns: 1fr; height: auto; }
      .gallery-card {
        width: 100%;
        min-height: 280px;
      }
      .gallery-card:hover,
      .gallery-card:focus-within {
        transform: none;
      }
      .materials-showcase img { min-height: 330px; }
      .field--wide { grid-column: auto; }
      .mobile-sticky { display: inline-flex; }
    }

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