@layer reset, base, components, utilities;

@layer reset {
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body, h1, h2, h3, h4, p, figure, blockquote { margin: 0; }
  img, svg, canvas { display: block; max-width: 100%; }
  button, input, select, textarea { font: inherit; }
  a { color: inherit; }
}

@layer base {
  :root {
    color-scheme: dark;
    --ink: #082f37;
    --ink-2: #0e4c5a;
    --ink-3: #176677;
    --amber: #d98a3d;
    --amber-hot: #f1a252;
    --sand: #f5f1ea;
    --paper: #fffdf8;
    --mist: #dce8e6;
    --white: #ffffff;
    --text: #f8f6f0;
    --muted: #b7cac9;
    --line: rgba(255,255,255,.14);
    --surface: rgba(255,255,255,.055);
    --shadow: 0 30px 90px rgba(1,19,24,.28);
    --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 24px;
    --wrap: min(1200px, calc(100% - 40px));
  }

  [data-theme="light"] {
    color-scheme: light;
    --text: #133d44;
    --muted: #5a7478;
    --line: rgba(14,76,90,.16);
    --surface: rgba(14,76,90,.055);
    --shadow: 0 30px 90px rgba(14,76,90,.13);
  }

  [data-theme="dark"] {
    color-scheme: dark;
    --paper: #102329;
    --sand: #0b1c21;
    --text: #f3f7f5;
    --muted: #afc4c1;
    --line: rgba(204,229,225,.16);
    --surface: rgba(214,237,232,.065);
    --shadow: 0 30px 90px rgba(0,0,0,.42);
  }

  [data-theme="light"] body { background: var(--sand); }
  [data-theme="light"] body::before {
    background:
      radial-gradient(circle at 83% 8%, rgba(80,156,166,.16), transparent 31rem),
      radial-gradient(circle at 10% 55%, rgba(217,138,61,.11), transparent 27rem),
      linear-gradient(180deg, #fffdf8 0%, #f5f1ea 100%);
  }

  html { background: var(--ink); }
  body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--ink);
    color: var(--text);
    font-family: var(--sans);
    font-size: 17px;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
      radial-gradient(circle at 83% 8%, rgba(32,119,133,.34), transparent 31rem),
      radial-gradient(circle at 10% 55%, rgba(217,138,61,.09), transparent 27rem),
      linear-gradient(180deg, #082f37 0%, #0a3943 46%, #072b32 100%);
  }

  h1, h2, h3, .serif { font-family: var(--serif); font-weight: 500; line-height: 1.04; }
  h1 { font-size: clamp(3.45rem, 7vw, 7.4rem); letter-spacing: -.055em; }
  h2 { font-size: clamp(2.5rem, 5vw, 5.2rem); letter-spacing: -.045em; }
  h3 { font-size: clamp(1.35rem, 2vw, 2rem); letter-spacing: -.025em; }
  p { color: var(--muted); }
  strong { color: var(--text); }
  em { color: var(--amber-hot); font-weight: inherit; }
  ::selection { background: var(--amber); color: var(--ink); }
  :focus-visible { outline: 3px solid var(--amber-hot); outline-offset: 4px; }
}

@layer components {
  .skip-link {
    position: fixed; left: 16px; top: 12px; z-index: 1000;
    transform: translateY(-160%); padding: 10px 16px; border-radius: 999px;
    background: var(--paper); color: var(--ink); font-weight: 800;
  }
  .skip-link:focus { transform: none; }

  .utility {
    position: sticky; top: 0; z-index: 110;
    border-bottom: 1px solid var(--line);
    background: #082f37;
    font-size: .74rem; letter-spacing: .11em; text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(3,28,33,.16);
  }
  .utility .wrap { min-height: 36px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
  .utility strong { color: var(--amber-hot); }
  .utility-contact { display: flex; align-items: center; gap: 16px; }
  .utility-contact a { color: inherit; text-decoration: none; white-space: nowrap; }
  .utility-contact a:hover { color: var(--amber-hot); }

  .contact-fab {
    position: fixed; right: 22px; bottom: 22px; z-index: 120;
    width: 58px; height: 58px; display: grid; place-items: center;
    border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
    background: var(--amber); color: var(--ink);
    box-shadow: 0 14px 35px rgba(4,27,31,.28); text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  [data-theme="dark"] body { background: #061317; }
  [data-theme="dark"] body::before {
    background:
      radial-gradient(circle at 88% 4%, rgba(31,105,116,.22), transparent 30rem),
      radial-gradient(circle at 8% 48%, rgba(190,112,48,.08), transparent 24rem),
      linear-gradient(180deg, #061317 0%, #0a2026 52%, #041014 100%);
  }
  .contact-fab:hover, .contact-fab:focus-visible { transform: translateY(-3px); box-shadow: 0 18px 42px rgba(4,27,31,.34); }
  .contact-fab svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .contact-fab span { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(6px); opacity: 0; pointer-events: none; padding: 8px 11px; border-radius: 999px; background: var(--ink); color: #fff; font-size: .76rem; font-weight: 800; white-space: nowrap; transition: opacity .2s ease, transform .2s ease; }
  .contact-fab:hover span, .contact-fab:focus-visible span { opacity: 1; transform: translateY(-50%) translateX(0); }

  .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
  .chatbot { position: fixed; right: 22px; bottom: 92px; z-index: 130; }
  .chatbot-launcher { width: 58px; height: 58px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; background: var(--ink-2); color: #fff; box-shadow: 0 14px 35px rgba(4,27,31,.3); cursor: pointer; transition: transform .2s ease, background .2s ease; }
  .chatbot-launcher:hover, .chatbot-launcher:focus-visible { transform: translateY(-3px); background: var(--ink-3); }
  .chatbot-launcher svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
  .chatbot-launcher span { position: absolute; right: calc(100% + 10px); top: 50%; transform: translateY(-50%) translateX(6px); opacity: 0; pointer-events: none; padding: 8px 11px; border-radius: 999px; background: var(--ink); color: #fff; font-size: .76rem; font-weight: 800; white-space: nowrap; transition: opacity .2s ease, transform .2s ease; }
  .chatbot-launcher:hover span, .chatbot-launcher:focus-visible span { opacity: 1; transform: translateY(-50%) translateX(0); }
  .chatbot-panel { position: absolute; right: 0; bottom: 70px; width: min(390px, calc(100vw - 28px)); overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); color: var(--text); box-shadow: 0 25px 75px rgba(3,28,33,.3); }
  .chatbot-header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 17px 18px; background: var(--ink); color: #fff; }
  .chatbot-header strong { display: block; color: #fff; font-size: .9rem; }
  .chatbot-header small { display: block; margin-top: 2px; color: #bcd2d0; font-size: .7rem; }
  .chatbot-close { width: 30px; height: 30px; border: 1px solid rgba(255,255,255,.24); border-radius: 50%; background: transparent; color: #fff; cursor: pointer; font-size: 1.2rem; line-height: 1; }
  .chatbot-messages { max-height: 300px; overflow-y: auto; display: grid; gap: 10px; padding: 16px; background: var(--paper); }
  .chat-message { max-width: 92%; padding: 11px 13px; border-radius: 16px; color: var(--text); font-size: .82rem; line-height: 1.5; overflow-wrap: anywhere; }
  .chat-message-bot { justify-self: start; border: 1px solid color-mix(in srgb, var(--line) 88%, var(--ink-2)); background: var(--surface); border-bottom-left-radius: 5px; }
  .chat-message-user { justify-self: end; background: var(--amber); color: #182d30; border-bottom-right-radius: 5px; font-weight: 700; }
  .chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; padding: 0 16px 13px; background: var(--paper); }
  .chatbot-suggestions button { padding: 7px 9px; border: 1px solid var(--line); border-radius: 999px; background: transparent; color: var(--text); cursor: pointer; font-size: .68rem; }
  .chatbot-suggestions button:hover { border-color: var(--amber); color: var(--amber-hot); }
  .chatbot-form { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: var(--paper); }
  .chatbot-form input { min-width: 0; flex: 1; border: 1px solid var(--line); border-radius: 999px; padding: 10px 13px; outline: none; background: var(--surface); color: var(--text); font-size: .82rem; }
  .chatbot-form input:focus { border-color: var(--amber); }
  .chatbot-form > button { width: 38px; height: 38px; flex: 0 0 auto; border: 0; border-radius: 50%; background: var(--amber); color: var(--ink); cursor: pointer; font-weight: 900; }

  .site-header {
    position: sticky; top: var(--utility-height, 36px); z-index: 100;
    border-bottom: 1px solid var(--line);
    background: rgba(8,47,55,.84);
    backdrop-filter: blur(18px) saturate(130%);
  }
  [data-theme="light"] .utility { background: #efe9df; color: #35585d; }
  [data-theme="light"] .site-header { background: rgba(255,253,248,.88); }
  [data-theme="light"] .nav a { color: var(--ink); }
  [data-theme="light"] .hero-note { color: #31565b; }
  .nav-shell { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
  .brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; font-weight: 800; letter-spacing: -.035em; font-size: 1.2rem; }
  .brand-mark {
    width: 38px; height: 38px; position: relative; display: inline-grid; place-items: center;
    border: 1px solid rgba(255,255,255,.35); border-radius: 12px 12px 16px 16px;
    background: linear-gradient(145deg, rgba(255,255,255,.13), rgba(255,255,255,.02));
  }
  .brand-mark::before { content: ""; width: 13px; height: 18px; border-radius: 50% 50% 55% 55%; background: var(--amber); transform: rotate(15deg); }
  .brand b { color: var(--amber-hot); font-weight: inherit; }
  .nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
  .nav a { position: relative; text-decoration: none; color: #dcebea; font-size: .91rem; font-weight: 650; }
  .nav a:not(.button)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 2px; background: var(--amber); transition: right .25s ease; }
  .nav a:hover::after, .nav a[aria-current="page"]::after { right: 0; }
  .nav-actions { display: flex; align-items: center; gap: 10px; }
  .theme-toggle, .menu-toggle {
    width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 50%;
    display: grid; place-items: center; background: transparent; color: var(--text); cursor: pointer;
  }
  .menu-toggle { display: none; }

  .wrap { width: var(--wrap); margin-inline: auto; }
  .section { padding: clamp(88px, 11vw, 150px) 0; }
  .section-compact { padding: clamp(60px, 8vw, 100px) 0; }
  .paper { background: var(--sand); color: var(--ink); }
  .paper p, .paper .muted { color: #4b686d; }
  .paper strong { color: var(--ink); }
  .paper .eyebrow { color: #8e531e; }
  .paper em { color: #ad5e1d; }
  .paper .line { border-color: rgba(14,76,90,.16); }

  .eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 22px; color: var(--amber-hot); font-size: .75rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
  .eyebrow::before { content: ""; width: 28px; height: 1px; background: currentColor; }
  .lead { max-width: 760px; font-size: clamp(1.12rem, 1.5vw, 1.34rem); line-height: 1.62; }
  .lede-xl { max-width: 920px; font-family: var(--serif); color: var(--text); font-size: clamp(1.6rem, 3vw, 3rem); line-height: 1.24; letter-spacing: -.025em; }
  .paper .lede-xl { color: var(--ink); }
  .kicker { display: inline-flex; align-items: center; gap: 9px; padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); font-size: .75rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
  .kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 5px rgba(217,138,61,.12); }

  .button {
    min-height: 52px; display: inline-flex; align-items: center; justify-content: center; gap: 12px;
    padding: 0 21px; border: 1px solid transparent; border-radius: 999px; text-decoration: none;
    font-size: .88rem; font-weight: 800; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease;
  }
  .button:hover { transform: translateY(-2px); }
  .button-primary { background: var(--amber); color: #1e2f31; box-shadow: 0 12px 35px rgba(217,138,61,.22); }
  .button-primary:hover { background: #e99b4d; }
  .button-ghost { border-color: var(--line); color: var(--text); background: rgba(255,255,255,.035); }
  .button-dark { background: var(--ink); color: var(--white); }
  .button-sm { min-height: 44px; padding-inline: 17px; }
  .arrow { transition: transform .2s ease; }
  .button:hover .arrow { transform: translateX(4px); }

  .hero { min-height: calc(100svh - 121px); padding: clamp(60px, 8vw, 110px) 0 0; display: grid; align-items: center; }
  .hero-grid { display: grid; grid-template-columns: minmax(0, .96fr) minmax(460px, .84fr); align-items: center; gap: clamp(40px, 7vw, 100px); }
  .hero-copy h1 { max-width: 820px; margin: 18px 0 28px; }
  .hero-copy h1 em { display: block; }
  .hero-copy .lead { max-width: 680px; }
  .hero-actions { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 12px; }
  .hero-note { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 12px 24px; color: #d7e5e3; font-size: .86rem; }
  .hero-note span { display: inline-flex; align-items: center; gap: 8px; }
  .hero-note i { width: 17px; height: 17px; border: 1px solid var(--amber); border-radius: 50%; position: relative; }
  .hero-note i::after { content: ""; position: absolute; width: 6px; height: 3px; border-left: 2px solid var(--amber); border-bottom: 2px solid var(--amber); transform: rotate(-45deg); left: 4px; top: 4px; }

  .hero-visual { position: relative; min-height: 590px; }
  .visual-frame {
    position: absolute; inset: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.16);
    border-radius: 180px 28px 28px 28px; background: linear-gradient(145deg, rgba(224,239,235,.13), rgba(255,255,255,.025));
    box-shadow: var(--shadow);
  }
  .visual-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(4,27,31,.48)); }
  .hero-canvas { width: 100%; height: 100%; min-height: 590px; }
  .visual-top { position: absolute; z-index: 5; top: 25px; left: 30px; right: 30px; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
  .visual-status { padding: 9px 13px; border-radius: 999px; background: rgba(5,41,48,.76); border: 1px solid rgba(255,255,255,.15); backdrop-filter: blur(12px); color: white; font-size: .74rem; font-weight: 750; }
  .visual-index { color: rgba(255,255,255,.72); font: italic 1.1rem var(--serif); }
  .visual-bottom { position: absolute; z-index: 5; left: 30px; right: 30px; bottom: 26px; display: flex; justify-content: space-between; align-items: end; gap: 24px; }
  .visual-bottom strong { display: block; max-width: 290px; color: white; font: 1.5rem/1.2 var(--serif); }
  .visual-bottom span { color: rgba(255,255,255,.72); font-size: .76rem; }
  .floating-proof { position: absolute; z-index: 10; right: -24px; bottom: 102px; width: 190px; padding: 20px; border-radius: 20px; background: var(--sand); color: var(--ink); box-shadow: var(--shadow); }
  .floating-proof b { display: block; color: var(--amber); font: 2.25rem/1 var(--serif); }
  .floating-proof span { display: block; margin-top: 7px; color: #4c686b; font-size: .74rem; line-height: 1.35; }

  .proof-rail { margin-top: clamp(56px, 8vw, 96px); border-block: 1px solid var(--line); }
  .proof-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
  .proof { padding: 29px clamp(18px, 3vw, 38px); border-right: 1px solid var(--line); }
  .proof:first-child { padding-left: 0; }
  .proof:last-child { border: 0; }
  .proof b { display: block; color: var(--text); font: clamp(2rem, 4vw, 3.7rem)/1 var(--serif); letter-spacing: -.04em; }
  .proof span { display: block; margin-top: 8px; color: var(--muted); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

  .section-head { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(260px, .65fr); align-items: end; gap: 50px; margin-bottom: 60px; }
  .section-head p { max-width: 480px; justify-self: end; }
  .method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .method-card { min-height: 380px; padding: 30px; display: flex; flex-direction: column; border: 1px solid rgba(14,76,90,.15); border-radius: var(--radius); background: rgba(255,255,255,.5); transition: transform .3s ease, background .3s ease; }
  .method-card:hover { transform: translateY(-7px); background: var(--paper); }
  .method-card .num { color: var(--amber); font: italic 1.15rem var(--serif); }
  .method-card .symbol { height: 140px; display: grid; place-items: center; margin-block: 10px 20px; }
  .method-card .symbol i { width: 90px; height: 90px; border: 1px solid rgba(14,76,90,.22); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); font: 2.5rem var(--serif); }
  .method-card h3 { margin-bottom: 14px; }
  .method-card p { font-size: .94rem; }

  .audiences { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; }
  .audience { position: relative; overflow: hidden; padding: clamp(46px, 7vw, 90px); display: flex; flex-direction: column; justify-content: flex-end; isolation: isolate; }
  .audience::before { content: ""; position: absolute; inset: 0; z-index: -2; }
  .audience::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, transparent 10%, rgba(4,32,38,.92) 90%); }
  .audience-pro::before { background: linear-gradient(130deg, rgba(10,52,60,.2), rgba(10,52,60,.72)), url('/media/project-04-after.webp') center/cover; }
  .audience-part::before { background: linear-gradient(130deg, rgba(24,67,73,.12), rgba(24,67,73,.74)), url('/media/project-02-after.webp') center/cover; }
  .audience h3 { max-width: 560px; margin: 16px 0 18px; color: white; font-size: clamp(2.3rem, 4vw, 4rem); }
  .audience p { max-width: 540px; color: #c4d5d4; }
  .audience .button { margin-top: 28px; align-self: flex-start; }

  .cinema-shell { display: grid; grid-template-columns: minmax(0, .75fr) minmax(520px, 1.25fr); gap: clamp(40px, 7vw, 90px); align-items: center; }
  .cinema-copy h2 { margin: 10px 0 24px; }
  .cinema-copy .lead { font-size: 1.06rem; }
  .stage-legend { margin-top: 34px; display: grid; gap: 0; }
  .stage-step { display: grid; grid-template-columns: 34px 1fr; gap: 13px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--muted); font-size: .86rem; cursor: pointer; }
  .stage-step span { color: var(--amber-hot); font: italic 1rem var(--serif); }
  .stage-step.is-active { color: var(--text); }

  .cinema {
    position: relative; min-height: 610px; overflow: hidden; border: 1px solid var(--line); border-radius: 26px;
    background: linear-gradient(145deg, #dbe8e4, #b9ceca); box-shadow: var(--shadow);
  }
  .cinema canvas { width: 100%; height: 610px; }
  .cinema-ui { position: absolute; z-index: 4; inset: auto 20px 20px; padding: 16px; border: 1px solid rgba(255,255,255,.35); border-radius: 18px; background: rgba(7,45,51,.78); backdrop-filter: blur(16px); }
  .cinema-meta { display: flex; justify-content: space-between; gap: 15px; margin-bottom: 11px; color: white; font-size: .78rem; }
  .cinema-controls { display: grid; grid-template-columns: 42px 1fr; gap: 12px; align-items: center; }
  .play { width: 42px; height: 42px; border: 0; border-radius: 50%; display: grid; place-items: center; background: var(--amber); color: var(--ink); cursor: pointer; font-weight: 900; }
  .timeline-range { width: 100%; accent-color: var(--amber); }
  .scene-note { position: absolute; z-index: 4; top: 18px; right: 18px; max-width: 210px; padding: 10px 13px; border-radius: 12px; background: rgba(255,253,248,.88); color: #31555a; font-size: .7rem; line-height: 1.35; }

  .principles { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(40px, 8vw, 120px); align-items: start; }
  .sticky { position: sticky; top: 140px; }
  .principle-list { border-top: 1px solid rgba(14,76,90,.18); }
  .principle { display: grid; grid-template-columns: 54px 1fr; gap: 22px; padding: 32px 0; border-bottom: 1px solid rgba(14,76,90,.18); }
  .principle > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(14,76,90,.22); color: #a55b22; font: italic 1rem var(--serif); }
  .principle p { margin-top: 9px; }

  .quote { padding: clamp(42px, 6vw, 70px); border: 1px solid var(--line); border-radius: 30px; background: var(--surface); }
  .quote blockquote { max-width: 980px; color: var(--text); font: clamp(1.8rem, 4vw, 4rem)/1.24 var(--serif); letter-spacing: -.03em; }
  .quote footer { margin-top: 28px; color: var(--muted); font-size: .82rem; }

  .faq { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(40px, 8vw, 120px); }
  .faq-list { border-top: 1px solid var(--line); }
  details { border-bottom: 1px solid var(--line); }
  summary { list-style: none; padding: 25px 46px 25px 0; position: relative; cursor: pointer; color: var(--text); font-weight: 750; }
  summary::-webkit-details-marker { display: none; }
  summary::after { content: "+"; position: absolute; right: 5px; top: 20px; color: var(--amber); font: 1.6rem var(--serif); transition: transform .2s ease; }
  details[open] summary::after { transform: rotate(45deg); }
  details p { padding: 0 45px 25px 0; }

  .cta-band { position: relative; overflow: hidden; padding: clamp(70px, 10vw, 130px) 0; background: var(--amber); color: var(--ink); }
  .cta-band::after { content: "ADOM"; position: absolute; right: -2vw; bottom: -8vw; color: rgba(255,255,255,.12); font: 22vw/.8 var(--serif); pointer-events: none; }
  .cta-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.25fr .75fr; align-items: end; gap: 50px; }
  .cta-band h2 { max-width: 800px; }
  .cta-band p { color: #513618; }
  .cta-actions { display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 12px; }

  .page-hero { padding: clamp(80px, 11vw, 150px) 0 clamp(70px, 9vw, 120px); }
  .page-hero h1 { max-width: 1000px; margin-block: 20px 28px; font-size: clamp(3.3rem, 7vw, 7rem); }
  .page-hero-grid { display: grid; grid-template-columns: 1.2fr .55fr; align-items: end; gap: 50px; }
  .page-fact { padding: 26px; border-left: 1px solid var(--amber); }
  .page-fact b { display: block; margin-bottom: 8px; color: var(--text); font: 2.5rem var(--serif); }
  .page-fact span { color: var(--muted); font-size: .85rem; }

  .timeline-day { position: relative; display: grid; gap: 0; max-width: 900px; margin-inline: auto; }
  .time-row { display: grid; grid-template-columns: 130px 42px 1fr; gap: 24px; min-height: 180px; }
  .time { padding-top: 4px; color: var(--amber-hot); font: italic 1.45rem var(--serif); text-align: right; }
  .time-rail { position: relative; display: flex; justify-content: center; }
  .time-rail::after { content: ""; position: absolute; top: 18px; bottom: -18px; width: 1px; background: var(--line); }
  .time-row:last-child .time-rail::after { display: none; }
  .time-dot { z-index: 1; width: 15px; height: 15px; margin-top: 7px; border: 3px solid var(--ink); border-radius: 50%; background: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
  .time-content { padding-bottom: 54px; }
  .time-step { display: block; margin-bottom: 8px; color: var(--amber); font-size: .7rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
  .time-content h3 { margin-bottom: 12px; }

  .card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .info-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
  .info-card .num { color: var(--amber-hot); font: italic 1rem var(--serif); }
  .info-card h3 { margin: 38px 0 12px; }

  .project-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 18px; }
  .project { min-height: 430px; position: relative; overflow: hidden; padding: 28px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 24px; border: 1px solid var(--line); background: var(--surface); }
  .project:nth-child(1), .project:nth-child(4) { grid-column: span 7; }
  .project:nth-child(2), .project:nth-child(3) { grid-column: span 5; }
  .project::before { content: ""; position: absolute; inset: 0; z-index: -1; opacity: .75; background: radial-gradient(circle at 70% 30%, rgba(72,148,158,.7), transparent 23%), linear-gradient(145deg, #174c54, #082f37); }
  .project:nth-child(even)::before { background: radial-gradient(circle at 30% 25%, rgba(221,153,84,.65), transparent 23%), linear-gradient(145deg, #315d61, #0b343b); }
  .project-tag { align-self: flex-start; padding: 8px 11px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #dbe8e7; font-size: .7rem; letter-spacing: .08em; text-transform: uppercase; }
  .project h3 { max-width: 500px; color: white; font-size: clamp(2rem, 4vw, 3.8rem); }
  .project p { max-width: 520px; color: #bdd0cf; }
  .photo-disclaimer { margin-top: 18px; color: var(--muted); font-size: .77rem; }

  .compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
  .compare-card { overflow: hidden; border: 1px solid var(--line); border-radius: 24px; background: var(--surface); }
  .compare-visual { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: #173f46; }
  .compare-visual > img, .compare-after img { width: 100%; height: 100%; object-fit: cover; }
  .compare-after { position: absolute; inset: 0; clip-path: inset(0 0 0 50%); }
  .compare-handle { position: absolute; z-index: 3; left: 50%; top: 0; bottom: 0; width: 2px; transform: translateX(-1px); background: white; box-shadow: 0 0 20px rgba(0,0,0,.3); pointer-events: none; }
  .compare-handle::after { content: "↔"; position: absolute; left: 50%; top: 50%; width: 44px; height: 44px; display: grid; place-items: center; transform: translate(-50%,-50%); border: 2px solid white; border-radius: 50%; background: var(--amber); color: var(--ink); font-weight: 900; }
  .compare-range { position: absolute; z-index: 4; inset: 0; width: 100%; height: 100%; cursor: ew-resize; opacity: 0; }
  .compare-label { position: absolute; z-index: 2; top: 15px; padding: 7px 10px; border-radius: 999px; background: rgba(5,38,44,.76); color: white; font-size: .68rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
  .compare-label.before { left: 15px; }
  .compare-label.after { right: 15px; }
  .compare-copy { padding: 24px; }
  .compare-copy h3 { margin-bottom: 8px; }
  .compare-copy p { font-size: .86rem; }

  .model-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 20px; }
  .model-card { min-height: 560px; position: relative; overflow: hidden; border-radius: 26px; background: #d9dfdc; }
  .model-card img { width: 100%; height: 100%; object-fit: cover; }
  .model-card figcaption { position: absolute; inset: auto 18px 18px; padding: 11px 14px; border-radius: 12px; background: rgba(5,38,44,.8); color: white; font-size: .72rem; backdrop-filter: blur(12px); }

  .simulator { display: grid; grid-template-columns: 1.08fr .92fr; overflow: hidden; border: 1px solid rgba(14,76,90,.15); border-radius: 28px; background: var(--paper); box-shadow: 0 25px 80px rgba(14,76,90,.12); }
  .sim-form { padding: clamp(28px, 5vw, 56px); }
  .sim-result { padding: clamp(28px, 5vw, 56px); display: flex; flex-direction: column; justify-content: center; background: var(--ink); color: white; }
  .field { margin-bottom: 24px; }
  .field label, .field-label { display: block; margin-bottom: 9px; color: var(--ink); font-size: .8rem; font-weight: 800; }
  .field input, .field select, .field textarea { width: 100%; min-height: 52px; border: 1px solid rgba(14,76,90,.2); border-radius: 12px; padding: 12px 14px; background: white; color: var(--ink); }
  .field textarea { min-height: 150px; resize: vertical; }
  .segmented { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .segmented button { min-height: 48px; border: 1px solid rgba(14,76,90,.18); border-radius: 12px; background: transparent; color: #49666a; cursor: pointer; }
  .segmented button.is-active { border-color: var(--ink-2); background: var(--ink-2); color: white; }
  .sim-result .label { color: #a9c4c3; font-size: .76rem; letter-spacing: .1em; text-transform: uppercase; }
  .sim-amount { display: block; margin: 14px 0 8px; color: var(--amber-hot); font: clamp(3rem, 6vw, 5.5rem)/1 var(--serif); letter-spacing: -.05em; }
  .sim-result p { color: #c6d7d5; }
  .sim-details { margin: 28px 0; border-top: 1px solid var(--line); }
  .sim-line { padding: 12px 0; display: flex; justify-content: space-between; gap: 20px; border-bottom: 1px solid var(--line); color: #c4d7d5; font-size: .84rem; }
  .sim-line b { color: white; }
  .legal { margin-top: 16px; font-size: .7rem; line-height: 1.45; }

  .contact-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(40px, 8vw, 100px); align-items: start; }
  .contact-card { padding: 30px; border: 1px solid var(--line); border-radius: 22px; background: var(--surface); }
  .contact-card + .contact-card { margin-top: 14px; }
  .contact-card b { display: block; margin-bottom: 8px; }
  .contact-card a { color: var(--amber-hot); }
  .contact-form { padding: clamp(28px, 5vw, 56px); border-radius: 28px; background: var(--sand); }
  #formulaire { scroll-margin-top: 130px; }
  .contact-form .button { border: 0; }

  .site-footer { --text: #f8f6f0; --muted: #a9c2c1; padding: 75px 0 30px; background: #05262c; color: var(--text); }
  .footer-grid { display: grid; grid-template-columns: 1.3fr repeat(3, .65fr); gap: 40px; }
  .footer-brand p { max-width: 390px; margin-top: 20px; font-size: .88rem; }
  .footer-col h3 { margin-bottom: 18px; color: #fff; font: .77rem var(--sans); letter-spacing: .1em; text-transform: uppercase; }
  .footer-col a { display: block; margin-block: 9px; text-decoration: none; color: #a9c2c1; font-size: .86rem; }
  .footer-col a:hover { color: var(--amber-hot); }
  .footer-bottom { margin-top: 60px; padding-top: 22px; display: flex; justify-content: space-between; gap: 30px; border-top: 1px solid var(--line); color: #789897; font-size: .72rem; }

  /* Content stays readable even if a mobile browser blocks JavaScript. When
     the script is available, .js-ready restores the subtle reveal animation. */
  .reveal { opacity: 1; transform: none; transition: opacity .65s ease, transform .65s ease; }
  .js-ready .reveal { opacity: 0; transform: translateY(24px); }
  .js-ready .reveal.is-visible { opacity: 1; transform: none; }
}

@layer utilities {
  .muted { color: var(--muted); }
  .center { text-align: center; }
  .center .eyebrow { justify-content: center; }
  .center .lead { margin-inline: auto; }
  .mt-2 { margin-top: 20px; }
  .mt-3 { margin-top: 32px; }
  .mt-4 { margin-top: 48px; }
  .line { border-top: 1px solid var(--line); }
}

@media (max-width: 1080px) {
  .nav { position: fixed; inset: calc(var(--utility-height, 36px) + 84px + 14px) 20px auto; padding: 24px; display: grid; gap: 20px; border: 1px solid var(--line); border-radius: 20px; background: #082f37; box-shadow: var(--shadow); opacity: 1; transform: none; visibility: visible; transition: .2s ease; }
  .js-ready .nav { opacity: 0; transform: translateY(-12px); visibility: hidden; }
  .js-ready .nav.is-open { opacity: 1; transform: none; visibility: visible; }
  .nav .button { justify-self: start; }
  .menu-toggle { display: grid; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 850px; }
  .hero-visual { width: min(740px, 100%); min-height: 540px; }
  .hero-canvas { min-height: 540px; }
  .cinema-shell { grid-template-columns: 1fr; }
  .cinema-copy { max-width: 760px; }
  .stage-legend { grid-template-columns: repeat(3, 1fr); gap: 0 18px; }
  .principles { grid-template-columns: 1fr; }
  .sticky { position: static; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  [data-theme="light"] .nav { background: var(--paper); }
}

@media (max-width: 760px) {
  :root { --wrap: min(100% - 28px, 1200px); }
  body { font-size: 16px; }
  .utility .wrap { justify-content: center; text-align: center; min-height: 42px; }
  .utility .wrap > span:nth-child(2) { display: none; }
  .utility .wrap > span.utility-contact { display: flex; }
  .utility .wrap { flex-wrap: wrap; padding-block: 5px; gap: 3px 12px; }
  .utility .utility-contact { display: flex; width: 100%; justify-content: center; gap: 12px; }
  .utility-contact a { font-size: .72rem; letter-spacing: .02em; text-transform: none; }
  .contact-fab { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .contact-fab span { display: none; }
  .chatbot { right: 16px; bottom: 82px; }
  .chatbot-launcher { width: 54px; height: 54px; }
  .chatbot-launcher span { display: none; }
  .chatbot-panel { bottom: 66px; }
  .site-header .button-sm { display: none; }
  .nav { inset: calc(var(--utility-height, 42px) + 72px + 14px) 14px auto; }
  .nav-shell { min-height: 72px; }
  .hero { min-height: auto; padding-top: 52px; }
  .hero-visual { min-height: 460px; }
  .visual-frame { border-radius: 110px 22px 22px 22px; }
  .hero-canvas { min-height: 460px; }
  .floating-proof { right: -4px; bottom: 82px; width: 165px; }
  .visual-bottom { left: 20px; right: 20px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof { border-bottom: 1px solid var(--line); }
  .proof:nth-child(2) { border-right: 0; }
  .proof:nth-child(3), .proof:nth-child(4) { border-bottom: 0; }
  .section-head, .page-hero-grid, .cta-grid { grid-template-columns: 1fr; gap: 24px; }
  .section-head p { justify-self: start; }
  .method-grid, .card-grid { grid-template-columns: 1fr; }
  .method-card { min-height: 330px; }
  .audiences { grid-template-columns: 1fr; }
  .audience { min-height: 560px; }
  .cinema { min-height: 490px; }
  .cinema canvas { height: 490px; }
  .stage-legend { grid-template-columns: 1fr 1fr; }
  .faq { grid-template-columns: 1fr; }
  .project { grid-column: 1 / -1 !important; min-height: 360px; }
  .compare-grid, .model-grid { grid-template-columns: 1fr; }
  .model-card { min-height: 440px; }
  .simulator { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .time-row { grid-template-columns: 68px 28px 1fr; gap: 12px; }
  .time { font-size: 1rem; }
}

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

/* V2 — identité claire, photographie chantier et présentation produit */
@layer base {
  [data-theme="light"] body::before {
    background:
      radial-gradient(circle at 88% 4%, rgba(14,76,90,.09), transparent 30rem),
      radial-gradient(circle at 8% 48%, rgba(217,138,61,.08), transparent 24rem),
      linear-gradient(180deg, #fffdf9 0%, #f7f3ec 100%);
  }
  [data-theme="light"] h1,
  [data-theme="light"] h2,
  [data-theme="light"] h3 { font-family: var(--sans); font-weight: 720; }
  [data-theme="light"] h1 { font-size: clamp(3.2rem, 6.2vw, 6.5rem); letter-spacing: -.065em; line-height: .96; }
  [data-theme="light"] h2 { font-size: clamp(2.4rem, 4.6vw, 4.8rem); letter-spacing: -.055em; line-height: 1; }
  [data-theme="light"] h3 { letter-spacing: -.035em; line-height: 1.12; }
  [data-theme="light"] h1 em,
  [data-theme="light"] h2 em { font-family: var(--serif); font-weight: 500; letter-spacing: -.035em; }
}

@layer components {
  .brand { flex: 0 0 auto; }
  .brand-logo { width: clamp(172px, 16vw, 216px); height: auto; }
  [data-theme="dark"] .brand-logo,
  .site-footer .brand-logo { content: url('/logo-adomsenior-white.svg'); }
  [data-theme="light"] .utility { background: var(--ink); color: #dce8e6; }
  [data-theme="light"] .utility strong { color: #f0a65c; }
  [data-theme="light"] .site-header { background: rgba(255,253,249,.94); box-shadow: 0 8px 32px rgba(14,76,90,.06); }
  [data-theme="light"] .theme-toggle,
  [data-theme="light"] .menu-toggle { color: var(--ink); background: white; }
  [data-theme="light"] .button-ghost { border-color: rgba(14,76,90,.22); color: var(--ink); background: rgba(255,255,255,.62); }
  [data-theme="dark"] .utility { background: #061317; color: #dce8e6; }
  [data-theme="dark"] .site-header { background: rgba(3,18,22,.92); }
  [data-theme="dark"] .paper { background: var(--sand); color: var(--text); }
  [data-theme="dark"] .paper h1,
  [data-theme="dark"] .paper h2,
  [data-theme="dark"] .paper h3,
  [data-theme="dark"] .paper strong { color: var(--text); }
  [data-theme="dark"] .paper p { color: var(--muted); }
  [data-theme="dark"] .method-card,
  [data-theme="dark"] .audience-card,
  [data-theme="dark"] .contact-form { background: var(--paper); color: var(--text); }
  [data-theme="dark"] .contact-form .eyebrow { color: #f0a55a; }
  [data-theme="dark"] .contact-form .field label,
  [data-theme="dark"] .contact-form .field-label { color: #f3f7f5; }
  [data-theme="dark"] .contact-form .legal { color: #b7ccca; }
  [data-theme="dark"] .paper .eyebrow,
  [data-theme="dark"] .paper em { color: #f0a55a; }
  [data-theme="dark"] .paper .feature-list,
  [data-theme="dark"] .lt-slide figcaption,
  [data-theme="dark"] .page-hero h1,
  [data-theme="dark"] .page-hero h2,
  [data-theme="dark"] .section-head h2 { color: var(--text); }
  [data-theme="dark"] .audience-section { background: #091b20; color: var(--text); }
  [data-theme="dark"] .realisations-hero { background: linear-gradient(135deg, #10272d 0%, #0a1b20 100%); }
  [data-theme="dark"] .interfast-section { background: #101f2a; color: var(--text); }
  [data-theme="dark"] .interfast-copy .eyebrow { color: #8fc6ff; }
  [data-theme="dark"] .interfast-copy .lead,
  [data-theme="dark"] .interfast-points p,
  [data-theme="dark"] .interfast-visual > p { color: #c1d2d8; }
  [data-theme="dark"] .interfast-source { color: #9bcaff; }
  [data-theme="dark"] .interfast-points article > b { color: #9bcaff; }

  .hero { padding-top: clamp(48px, 6vw, 82px); }
  .hero-grid { grid-template-columns: minmax(0,.88fr) minmax(440px,.92fr); gap: clamp(38px, 6vw, 88px); }
  .hero-copy h1 { margin-top: 22px; }
  .hero-visual { min-height: 620px; }
  .hero-photo { position: absolute; inset: 0; overflow: hidden; border-radius: 32px 32px 150px 32px; background: #d9d4cb; box-shadow: 0 34px 90px rgba(14,76,90,.18); }
  .hero-photo::after { content: ""; position: absolute; inset: 35% 0 0; background: linear-gradient(180deg, transparent, rgba(5,36,42,.75)); }
  .hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 46%; transform: scale(1.015); }
  .hero-photo figcaption { position: absolute; z-index: 2; left: 30px; right: 150px; bottom: 26px; color: white; }
  .hero-photo figcaption span { display: block; margin-bottom: 6px; color: #f3ba82; font-size: .7rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
  .hero-photo figcaption strong { display: block; color: white; font: 1.45rem/1.15 var(--sans); }
  .before-chip { position: absolute; z-index: 5; left: -44px; top: 40px; width: 230px; display: grid; grid-template-columns: 72px 1fr; align-items: center; gap: 12px; padding: 9px; border-radius: 18px; background: rgba(255,253,249,.96); color: var(--ink); text-decoration: none; box-shadow: 0 18px 55px rgba(14,76,90,.2); }
  .before-chip img { width: 72px; height: 78px; object-fit: cover; border-radius: 12px; }
  .before-chip small { display: block; color: #9b5a22; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
  .before-chip strong { display: block; margin-top: 3px; color: var(--ink); font-size: .78rem; line-height: 1.25; }
  [data-theme="light"] .proof-rail { background: rgba(255,255,255,.5); border-color: rgba(14,76,90,.14); }

  .product-section { overflow: hidden; background: #0b434e; color: white; }
  .product-shell { display: grid; grid-template-columns: minmax(320px,.72fr) minmax(0,1.28fr); align-items: center; gap: clamp(42px,7vw,100px); }
  .product-copy .eyebrow { color: #f0a55a; }
  .product-copy h2 { color: white; }
  .product-copy .lead { margin-top: 26px; color: #c5d7d5; }
  .product-controls { margin-top: 36px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
  .product-controls button { min-height: 58px; padding: 10px 13px; display: flex; align-items: center; gap: 10px; border: 1px solid rgba(255,255,255,.15); border-radius: 14px; background: rgba(255,255,255,.04); color: #dbe8e7; cursor: pointer; text-align: left; transition: .25s ease; }
  .product-controls button span { color: #f0a55a; font: italic .85rem var(--serif); }
  .product-controls button.is-active { border-color: #f0a55a; background: #f0a55a; color: #143c42; }
  .product-controls button.is-active span { color: #143c42; }
  .product-showcase { position: relative; min-height: 680px; overflow: hidden; border-radius: 36px; background: #dfe3e0; box-shadow: 0 35px 100px rgba(0,0,0,.3); }
  .product-showcase > img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .product-frame { position: absolute; inset: 0; opacity: 0; transform: scale(1.08); transition: opacity .8s ease, transform 5.8s cubic-bezier(.2,.7,.2,1); }
  .product-frame.is-active { z-index: 1; opacity: 1; transform: scale(1); }
  .product-frame:nth-child(2) img { object-position: 52% 44%; }
  .product-frame:nth-child(3) img { object-position: 72% 40%; transform: scale(1.22); }
  .product-frame:nth-child(4) img { object-position: 56% 50%; }
  .product-frame img { width: 100%; height: 100%; object-fit: cover; }
  .product-vignette { position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(180deg, transparent 50%, rgba(4,28,34,.85)); }
  .product-caption { position: absolute; z-index: 3; left: 32px; right: 32px; bottom: 28px; display: grid; grid-template-columns: 1fr 130px; align-items: end; gap: 30px; color: white; }
  .product-caption span { display: block; margin-bottom: 8px; color: #f1b273; font-weight: 850; letter-spacing: .12em; }
  .product-caption strong { display: block; color: white; font-size: clamp(1.4rem,2.5vw,2.4rem); }
  .product-caption p { max-width: 560px; margin-top: 7px; color: #d2dfde; font-size: .85rem; line-height: 1.5; }
  .product-caption > i { height: 3px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.25); }
  .product-caption > i b { display: block; width: 100%; height: 100%; background: #f0a55a; transform-origin: left; transform: scaleX(0); }
  .product-caption > i b.is-running { animation: product-progress 5.2s linear forwards; }
  @keyframes product-progress { to { transform: scaleX(1); } }

  .realisations-hero { background: linear-gradient(135deg,#fffdf9 0%,#f1ede5 100%); }
  .featured-project { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); align-items: center; gap: clamp(42px,7vw,96px); }
  .feature-list { margin: 30px 0 0; padding: 0; list-style: none; color: #405f64; }
  .feature-list li { position: relative; padding: 12px 0 12px 28px; border-bottom: 1px solid rgba(14,76,90,.13); }
  .feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--amber); font-weight: 900; }
  .compare-feature { box-shadow: 0 28px 85px rgba(14,76,90,.16); }
  .compare-portrait { aspect-ratio: 4 / 5; }
  .project-meta { display: block; margin-bottom: 10px; color: #95602d; font-size: .68rem; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
  .detail-strip { margin-top: 28px; display: grid; grid-template-columns: repeat(3,1fr); gap: 14px; }
  .detail-strip figure { position: relative; min-height: 330px; overflow: hidden; border-radius: 20px; }
  .detail-strip img { width: 100%; height: 100%; object-fit: cover; }
  .detail-strip figcaption { position: absolute; left: 14px; bottom: 14px; padding: 7px 10px; border-radius: 99px; background: rgba(5,36,42,.78); color: white; font-size: .68rem; font-weight: 800; }
  .compare-grid-refined { align-items: start; }
  .compare-grid-refined .compare-visual { aspect-ratio: 4 / 5; }
  .align-project-01 > img { object-position: 51% 48%; }
  .align-project-01 .compare-after img { object-position: 50% 48%; }
  .align-project-02 > img { object-position: 53% 48%; }
  .align-project-02 .compare-after img { object-position: 54% 49%; }
  .align-project-06 > img { object-position: 57% 48%; }
  .align-project-06 .compare-after img { object-position: 56% 48%; }
  .align-project-08 > img { object-position: 55% 50%; }
  .align-project-08 .compare-after img { object-position: 50% 50%; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(760px,100%); margin-inline: auto; min-height: 680px; }
  .product-shell { grid-template-columns: 1fr; }
  .product-copy { max-width: 760px; }
  .featured-project { grid-template-columns: 1fr; }
  .featured-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .brand-logo { width: 166px; }
  .utility { font-size: .62rem; letter-spacing: .07em; }
  .nav { inset: calc(var(--utility-height, 42px) + 72px + 14px) 14px auto; background: #fffdf9; }
  [data-theme="dark"] .nav { background: var(--ink); }
  .hero { padding-top: 36px; }
  .hero-copy h1 { font-size: clamp(3rem,14vw,4.25rem); }
  .hero-copy .lead { font-size: 1.03rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .hero-note { display: grid; gap: 9px; }
  .hero-visual { min-height: 530px; }
  .hero-photo { border-radius: 24px 24px 90px 24px; }
  .hero-photo figcaption { left: 20px; right: 20px; bottom: 20px; }
  .before-chip { left: 12px; top: 14px; width: 198px; grid-template-columns: 60px 1fr; }
  .before-chip img { width: 60px; height: 64px; }
  .floating-proof { right: -4px; bottom: 92px; }
  .proof-rail { margin-top: 42px; }
  .product-controls { grid-template-columns: 1fr 1fr; }
  .product-showcase { min-height: 540px; border-radius: 24px; }
  .product-caption { left: 20px; right: 20px; bottom: 20px; grid-template-columns: 1fr; gap: 16px; }
  .product-caption p { display: none; }
  .featured-project { gap: 30px; }
  .compare-portrait { aspect-ratio: 3 / 4; }
  .detail-strip { grid-template-columns: 1fr 1fr; }
  .detail-strip figure { min-height: 260px; }
  .detail-strip figure:first-child { grid-column: 1 / -1; min-height: 350px; }
  .compare-grid-refined .compare-visual { aspect-ratio: 3 / 4; }
  .page-hero { padding: 64px 0; }
  .page-hero h1 { font-size: clamp(2.9rem,13vw,4.2rem); }
  .page-fact { margin-top: 8px; }
  .section { padding: 76px 0; }
}

/* V3 — preuve visuelle immédiate, galeries réelles et suivi InterFast */
@layer components {
  [hidden] { display: none !important; }

  .home-hero { min-height: 0; padding: 0; display: block; background: var(--ink); }
  .home-hero-stage { width: min(1500px,100%); min-height: 680px; margin-inline: auto; display: grid; grid-template-columns: minmax(420px,.86fr) minmax(0,1.14fr); }
  .home-hero-copy { padding: clamp(52px,6vw,94px) clamp(28px,5vw,78px); display: flex; flex-direction: column; justify-content: center; background: linear-gradient(145deg,#073740 0%,#0e4c5a 100%); color: white; }
  .home-hero-copy .kicker { align-self: flex-start; color: #d6e5e3; border-color: rgba(255,255,255,.22); }
  .home-hero-copy h1 { max-width: 720px; margin: 24px 0 28px; color: white; font-size: clamp(3.2rem,5.4vw,6rem); }
  .home-hero-copy h1 em { display: block; color: #f0a55a; }
  .home-hero-copy .lead { max-width: 620px; color: #d3e1df; font-size: clamp(1.05rem,1.45vw,1.28rem); }
  .home-hero-copy .hero-note { color: #dce9e7; }
  .button-hero-outline { border-color: rgba(255,255,255,.38); color: white; background: rgba(255,255,255,.06); }
  .button-hero-outline:hover { background: rgba(255,255,255,.12); }
  .home-hero-media { position: relative; min-height: 680px; overflow: hidden; background: #d7d2c8; }
  .home-hero-media::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg,rgba(4,31,36,.04) 42%,rgba(4,31,36,.68) 100%); }
  .home-hero-media > img { width: 100%; height: 100%; object-fit: cover; object-position: center 48%; transition: transform 1.2s cubic-bezier(.2,.7,.2,1); }
  .home-hero-stage:hover .home-hero-media > img { transform: scale(1.025); }
  .home-hero-caption { position: absolute; z-index: 2; top: 26px; right: 28px; max-width: 250px; padding: 14px 17px; border-radius: 15px; background: rgba(255,253,249,.92); box-shadow: 0 15px 45px rgba(5,36,42,.16); }
  .home-hero-caption span { display: block; color: #a65f25; font-size: .65rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
  .home-hero-caption strong { display: block; margin-top: 4px; color: var(--ink); font-size: .82rem; line-height: 1.35; }
  .home-before-card { position: absolute; z-index: 3; left: 26px; bottom: 26px; width: min(330px,calc(100% - 52px)); display: grid; grid-template-columns: 94px 1fr; gap: 14px; padding: 10px; border-radius: 18px; background: rgba(255,253,249,.96); color: var(--ink); text-decoration: none; box-shadow: 0 20px 60px rgba(4,31,36,.28); }
  .home-before-card > img { width: 94px; height: 118px; object-fit: cover; border-radius: 12px; }
  .home-before-card > span { align-self: center; }
  .home-before-card small { display: block; color: #a65f25; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
  .home-before-card strong { display: block; margin: 3px 0 10px; color: var(--ink); font-size: .91rem; }
  .home-before-card b { display: block; color: var(--ink-2); font-size: .71rem; }
  .home-hero .proof-rail { margin-top: 0; background: #fffdf9; border-color: rgba(14,76,90,.14); }
  .home-hero .proof b { color: var(--ink); }
  .home-hero .proof span { color: #5a7478; }

  .home-real-work { border-top: 1px solid rgba(14,76,90,.12); }
  .home-project-grid { min-height: 670px; display: grid; grid-template-columns: minmax(0,1.3fr) minmax(330px,.7fr); grid-template-rows: 1fr 1fr; gap: 16px; }
  .home-project-card { position: relative; min-height: 0; overflow: hidden; border-radius: 26px; color: white; text-decoration: none; background: #d8d3ca; }
  .home-project-card::after { content: ""; position: absolute; inset: 28% 0 0; background: linear-gradient(180deg,transparent,rgba(4,31,36,.88)); pointer-events: none; }
  .home-project-card > img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
  .home-project-card:hover > img { transform: scale(1.035); }
  .home-project-main { grid-row: 1 / 3; }
  .home-project-main > img { object-position: center 46%; }
  .home-project-wood > img { object-position: center 42%; }
  .home-project-overlay { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 25px; }
  .home-project-overlay small { display: block; margin-bottom: 6px; color: #f2b879; font-weight: 850; letter-spacing: .11em; text-transform: uppercase; }
  .home-project-overlay strong { display: block; max-width: 620px; color: white; font-size: clamp(1.2rem,2.1vw,2rem); line-height: 1.17; }
  .home-project-overlay b { display: block; margin-top: 10px; color: white; font-size: .75rem; }
  .home-project-proof { padding: 14px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; background: #eae5dc; color: var(--ink); }
  .home-project-proof::after { display: none; }
  .home-project-proof figure { min-width: 0; position: relative; overflow: hidden; border-radius: 16px; }
  .home-project-proof figure img { width: 100%; height: 100%; object-fit: cover; }
  .home-project-proof figcaption { position: absolute; left: 9px; top: 9px; padding: 5px 9px; border-radius: 999px; color: white; background: rgba(5,36,42,.78); font-size: .65rem; font-weight: 850; }
  .home-project-proof > span { grid-column: 1 / -1; padding: 1px 5px 2px; color: #49666b; font-size: .74rem; }

  .audience-section { background: #f0ece4; color: var(--ink); }
  .audience-section p { color: #526d71; }
  .audience-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .audience-card { overflow: hidden; border: 1px solid rgba(14,76,90,.13); border-radius: 28px; background: white; box-shadow: 0 25px 70px rgba(14,76,90,.09); }
  .audience-card-photo { position: relative; height: 310px; overflow: hidden; }
  .audience-card-photo::after { content: ""; position: absolute; inset: 45% 0 0; background: linear-gradient(transparent,rgba(5,36,42,.65)); }
  .audience-card-photo img { width: 100%; height: 100%; object-fit: cover; }
  .audience-card-photo span { position: absolute; z-index: 2; left: 24px; bottom: 21px; padding: 7px 11px; border-radius: 999px; background: rgba(255,253,249,.94); color: var(--ink); font-size: .68rem; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
  .audience-card-pro .audience-card-photo img { object-position: center 43%; }
  .audience-card-part .audience-card-photo img { object-position: center 35%; }
  .audience-card-body { position: relative; min-height: 410px; padding: clamp(28px,4vw,46px); display: flex; flex-direction: column; align-items: flex-start; }
  .audience-card-body h3 { max-width: 580px; margin: 10px 0 17px; font-size: clamp(1.9rem,3vw,3rem); }
  .audience-card-body p { max-width: 570px; }
  .audience-card-body ul { margin: 20px 0 28px; padding: 0; list-style: none; }
  .audience-card-body li { padding: 7px 0; font-size: .82rem; font-weight: 750; }
  .audience-card-body li::before { content: "✓"; margin-right: 9px; color: var(--amber); }
  .audience-card-body .button { margin-top: auto; }
  .audience-number { position: absolute; right: 28px; top: 24px; color: rgba(14,76,90,.18); font: italic 2.8rem var(--serif); }
  .audience-card-pro .audience-card-body { background: #0b4652; color: white; }
  .audience-card-pro .audience-card-body p { color: #c8d9d7; }
  .audience-card-pro .audience-card-body li { color: #e2ecea; }
  .audience-card-pro .audience-number { color: rgba(255,255,255,.2); }
  .audience-card-visual { position: relative; height: 310px; overflow: hidden; padding: 28px; }
  .audience-label { position: relative; z-index: 3; display: inline-flex; padding: 8px 13px; border-radius: 999px; font-size: .7rem; font-weight: 950; letter-spacing: .12em; text-transform: uppercase; }
  .audience-program-visual { background: #e5edf0; }
  .audience-program-visual .audience-label { background: var(--ink); color: white; }
  .program-board { position: absolute; left: clamp(28px,5vw,72px); right: clamp(20px,3vw,44px); top: 86px; padding: 17px; border: 1px solid rgba(14,76,90,.13); border-radius: 18px 18px 0 0; background: rgba(255,255,255,.96); box-shadow: 0 20px 50px rgba(14,76,90,.12); transform: rotate(-1deg); }
  .program-board-head { padding: 0 4px 13px; display: flex; justify-content: space-between; gap: 12px; color: var(--ink); font-size: .76rem; }
  .program-board-head b { color: #95602d; }
  .program-row { min-height: 44px; display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 10px; padding: 0 10px; border-top: 1px solid #e3eaeb; color: #4d686d; font-size: .68rem; }
  .program-row i { color: #176677; font-style: normal; font-weight: 850; }
  .program-row b { padding: 4px 7px; border-radius: 99px; background: #e8f5ed; color: #28774c; font-size: .58rem; }
  .program-row:nth-child(3) b { background: #fff1df; color: #9a5a20; }
  .audience-comfort-visual { background: #e0ad70; }
  .audience-comfort-visual::before { content: ""; position: absolute; width: 440px; height: 440px; right: -100px; top: -130px; border: 1px solid rgba(8,47,55,.18); border-radius: 50%; box-shadow: 0 0 0 55px rgba(255,255,255,.08),0 0 0 110px rgba(255,255,255,.06); }
  .audience-comfort-visual .audience-label { background: white; color: var(--ink); box-shadow: 0 8px 24px rgba(74,48,22,.12); }
  .comfort-orbit { position: absolute; inset: 68px 24px 18px; display: grid; place-items: center; }
  .comfort-orbit strong { color: var(--ink); font: 500 clamp(2.5rem,4vw,4.4rem)/.88 var(--serif); letter-spacing: -.05em; text-align: center; }
  .comfort-tag { position: absolute; padding: 7px 11px; border: 1px solid rgba(8,47,55,.17); border-radius: 999px; background: rgba(255,253,249,.88); color: var(--ink); font-size: .67rem; font-weight: 850; }
  .comfort-security { left: 6%; top: 26%; }
  .comfort-design { right: 4%; top: 14%; }
  .comfort-ease { right: 11%; bottom: 13%; }

  .marble-project { background: #0b4652; color: white; }
  .marble-project .eyebrow { color: #f1ae6b; }
  .marble-project .section-head p { color: #c7d8d6; }
  .project-tour { padding: 18px; border-radius: 30px; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14); }
  .project-tour-nav { display: flex; gap: 8px; padding: 0 0 16px; }
  .project-tour-nav button { min-height: 48px; padding: 0 17px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: transparent; color: #d9e6e4; cursor: pointer; font-weight: 800; }
  .project-tour-nav button span { margin-right: 6px; color: #f1ae6b; font: italic .9rem var(--serif); }
  .project-tour-nav button.is-active { background: #f0a55a; border-color: #f0a55a; color: #163e44; }
  .project-tour-nav button.is-active span { color: #163e44; }
  .project-view { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .project-view figure { position: relative; min-height: 690px; overflow: hidden; border-radius: 22px; background: #d5d0c6; }
  .project-view figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent,rgba(4,31,36,.82)); }
  .project-view img { width: 100%; height: 100%; object-fit: cover; }
  .project-view figcaption { position: absolute; z-index: 2; left: 22px; right: 22px; bottom: 20px; color: white; }
  .project-view figcaption b { display: block; color: #f1ae6b; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }
  .project-view figcaption span { display: block; margin-top: 5px; color: white; font-size: 1rem; font-weight: 750; }

  .wood-project { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(310px,.9fr); align-items: center; gap: clamp(38px,7vw,96px); }
  .wood-project-photo { position: relative; min-height: 720px; overflow: hidden; border-radius: 28px; box-shadow: 0 28px 80px rgba(14,76,90,.13); }
  .wood-project-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 44%; }
  .wood-project-photo figcaption { position: absolute; left: 18px; bottom: 18px; padding: 8px 12px; border-radius: 99px; background: rgba(5,36,42,.8); color: white; font-size: .69rem; font-weight: 800; }
  .wood-project-copy .lead { margin-top: 24px; }

  .finished-gallery { min-height: 980px; display: grid; grid-template-columns: repeat(12,1fr); grid-template-rows: repeat(2,1fr); gap: 14px; }
  .finished-gallery figure { position: relative; grid-column: span 4; min-height: 0; overflow: hidden; border-radius: 22px; background: #ddd8cf; }
  .finished-gallery .finished-gallery-tall { grid-row: span 2; }
  .finished-gallery .finished-gallery-wide { grid-column: span 8; }
  .finished-gallery figure::after { content: ""; position: absolute; inset: 55% 0 0; background: linear-gradient(transparent,rgba(4,31,36,.84)); }
  .finished-gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .65s ease; }
  .finished-gallery figure:hover img { transform: scale(1.035); }
  .finished-gallery figcaption { position: absolute; z-index: 2; left: 18px; right: 18px; bottom: 16px; color: white; }
  .finished-gallery figcaption b { display: block; color: white; }
  .finished-gallery figcaption span { display: block; color: #d5e3e1; font-size: .73rem; }
  .finished-gallery-compact { min-height: 680px; grid-template-columns: 1.2fr 1fr; grid-template-rows: 1fr 1fr; }
  .finished-gallery-compact figure { grid-column: auto; }
  .finished-gallery-compact .finished-gallery-tall { grid-row: 1 / 3; }

  .interfast-section { overflow: hidden; background: #eef3f8; color: var(--ink); }
  .interfast-layout { display: grid; grid-template-columns: minmax(320px,.82fr) minmax(0,1.18fr); align-items: center; gap: clamp(48px,8vw,110px); }
  .interfast-brand { margin-bottom: 42px; display: flex; align-items: center; gap: 20px; }
  .interfast-brand span { padding-right: 20px; border-right: 1px solid rgba(14,76,90,.18); color: #637b80; font-size: .68rem; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
  .interfast-brand img { width: 155px; height: auto; }
  .interfast-copy .eyebrow { color: #1665d8; }
  .interfast-copy .lead { margin-top: 25px; color: #4f696e; font-size: 1.06rem; }
  .interfast-points { margin-top: 34px; border-top: 1px solid rgba(14,76,90,.15); }
  .interfast-points article { display: grid; grid-template-columns: 44px 1fr; gap: 15px; padding: 20px 0; border-bottom: 1px solid rgba(14,76,90,.15); }
  .interfast-points article > b { color: #1665d8; font: italic 1rem var(--serif); }
  .interfast-points h3 { margin-bottom: 5px; font-size: 1.15rem; }
  .interfast-points p { color: #60787c; font-size: .84rem; }
  .interfast-source { display: inline-block; margin-top: 24px; color: #1157b6; font-size: .78rem; font-weight: 800; }
  .interfast-visual { position: relative; min-height: 650px; display: grid; align-content: center; }
  .interfast-screen { position: relative; width: calc(100% - 55px); padding: 18px; border: 1px solid rgba(35,97,175,.17); border-radius: 28px; background: white; box-shadow: 0 35px 90px rgba(34,84,145,.17); }
  .interfast-screen-top { padding: 4px 5px 16px; display: flex; justify-content: space-between; align-items: center; gap: 12px; color: #183f6f; font-size: .76rem; font-weight: 850; }
  .interfast-screen-top i { padding: 5px 9px; border-radius: 999px; background: #e9f7ef; color: #25804c; font-style: normal; font-size: .65rem; }
  .interfast-screen > img { width: 100%; min-height: 390px; object-fit: contain; border-radius: 18px; background: #f8fbff; }
  .interfast-status { padding: 14px 5px 2px; display: flex; flex-wrap: wrap; gap: 17px; color: #587078; font-size: .66rem; }
  .interfast-status span { display: flex; align-items: center; gap: 6px; }
  .interfast-status i { width: 7px; height: 7px; border-radius: 50%; background: #d5a53e; }
  .interfast-status span:nth-child(2) i { background: #2978df; }
  .interfast-status span:nth-child(3) i { background: #35a568; }
  .interfast-mobile { position: absolute; z-index: 2; right: 0; bottom: 50px; width: 190px; min-height: 330px; padding: 34px 17px 20px; border: 6px solid #143b45; border-radius: 30px; background: white; box-shadow: 0 24px 65px rgba(16,61,80,.24); }
  .mobile-notch { position: absolute; top: 8px; left: 50%; width: 58px; height: 7px; border-radius: 99px; background: #143b45; transform: translateX(-50%); }
  .interfast-mobile strong { display: block; color: #183f6f; font-size: .92rem; }
  .mobile-state { display: inline-block; margin: 9px 0 22px; padding: 5px 8px; border-radius: 99px; background: #e9f7ef; color: #278052; font-size: .6rem; font-weight: 850; }
  .interfast-mobile ul { margin: 0; padding: 0; list-style: none; }
  .interfast-mobile li { padding: 12px 0; border-bottom: 1px solid #e4ebf1; color: #5a7076; font-size: .72rem; }
  .interfast-mobile li b { display: inline-grid; width: 25px; height: 25px; margin-right: 7px; place-items: center; border-radius: 7px; background: #eef5ff; color: #1765cf; }
  .interfast-visual > p { width: calc(100% - 70px); margin-top: 15px; color: #6f858a; font-size: .67rem; }
}

@media (max-width: 980px) {
  .home-hero-stage { grid-template-columns: 1fr; }
  .home-hero-media { order: -1; min-height: 500px; }
  .home-hero-copy { min-height: auto; }
  .audience-cards, .wood-project, .interfast-layout { grid-template-columns: 1fr; }
  .interfast-copy { max-width: 760px; }
  .interfast-visual { width: min(820px,100%); margin-inline: auto; }
  .finished-gallery { min-height: 1200px; grid-template-columns: 1fr 1fr; grid-template-rows: repeat(3,1fr); }
  .finished-gallery figure, .finished-gallery .finished-gallery-wide { grid-column: span 1; }
  .finished-gallery .finished-gallery-tall { grid-row: span 2; }
}

@media (max-width: 760px) {
  .home-hero { padding-top: 0; }
  .home-hero-media { min-height: 365px; }
  .home-hero-caption { top: 14px; right: 14px; max-width: 185px; padding: 10px 12px; }
  .home-hero-caption strong { font-size: .7rem; }
  .home-before-card { left: 14px; bottom: 14px; width: 222px; grid-template-columns: 62px 1fr; gap: 10px; padding: 7px; }
  .home-before-card > img { width: 62px; height: 76px; }
  .home-before-card strong { margin-bottom: 3px; font-size: .72rem; }
  .home-before-card b { display: none; }
  .home-hero-copy { padding: 40px 20px 45px; }
  .home-hero-copy h1 { margin: 20px 0 23px; font-size: clamp(3rem,14vw,4.2rem); }
  .home-project-grid { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; }
  .home-project-card, .home-project-main, .home-project-wood { min-height: 480px; grid-row: auto; }
  .home-project-wood { min-height: 420px; }
  .home-project-proof { min-height: 330px; }
  .home-project-overlay { left: 20px; right: 20px; bottom: 19px; }
  .audience-card-photo { height: 270px; }
  .audience-card-body { min-height: 390px; padding: 28px 24px; }
  .audience-card-body h3 { padding-right: 30px; }
  .project-tour { padding: 10px; border-radius: 22px; }
  .project-tour-nav { display: grid; grid-template-columns: 1fr; }
  .project-tour-nav button { width: 100%; text-align: left; }
  .project-view { grid-template-columns: 1fr; }
  .project-view figure { min-height: 530px; }
  .wood-project-photo { min-height: 570px; }
  .finished-gallery { min-height: 0; display: grid; grid-template-columns: 1fr; grid-template-rows: auto; }
  .finished-gallery figure, .finished-gallery .finished-gallery-wide, .finished-gallery .finished-gallery-tall { min-height: 480px; grid-column: auto; grid-row: auto; }
  .interfast-brand { align-items: flex-start; flex-direction: column; gap: 12px; }
  .interfast-brand span { padding: 0 0 10px; border: 0; border-bottom: 1px solid rgba(14,76,90,.18); }
  .interfast-visual { min-height: 540px; }
  .interfast-screen { width: 100%; padding: 11px; }
  .interfast-screen > img { min-height: 285px; }
  .interfast-status { padding-right: 130px; display: grid; gap: 7px; }
  .interfast-mobile { right: 8px; bottom: 52px; width: 150px; min-height: 275px; padding: 30px 12px 14px; }
  .interfast-mobile li { padding: 9px 0; font-size: .63rem; }
  .interfast-visual > p { width: calc(100% - 165px); }
}


/* Rendus 3D LT Showertec — défilement */
.lt-render .lt-head { text-align: center; max-width: 62ch; margin-inline: auto; margin-bottom: clamp(30px, 4vw, 46px); }
.lt-render .lt-head .eyebrow { justify-content: center; }
.lt-marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(to right, transparent, #000 6%, #000 94%, transparent); }
.lt-track { display: flex; gap: 22px; width: max-content; animation: lt-scroll 48s linear infinite; }
.lt-marquee:hover .lt-track { animation-play-state: paused; }
@keyframes lt-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.lt-slide { flex: 0 0 auto; width: min(360px, 78vw); margin: 0; }
.lt-slide img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; border-radius: var(--radius); border: 1px solid rgba(14,76,90,.14); box-shadow: 0 18px 50px rgba(14,76,90,.10); }
.lt-slide figcaption { margin-top: 13px; font: 500 1.12rem var(--serif); color: var(--ink); }
@media (prefers-reduced-motion: reduce) {
  .lt-track { animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .lt-slide[aria-hidden="true"] { display: none; }
}


/* Bailleurs — sous marché / hors marché */
.dual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
@media (max-width: 820px) { .dual-grid { grid-template-columns: 1fr; } }
.dual-card { padding: clamp(26px, 3vw, 40px); border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); }
.dual-card-accent { border-color: rgba(217,138,61,.5); background: linear-gradient(180deg, rgba(217,138,61,.12), rgba(217,138,61,.02)); }
.dual-tag { display: inline-flex; align-items: center; padding: 7px 13px; border: 1px solid var(--line); border-radius: 999px; font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.dual-card-accent .dual-tag { color: #b5701f; border-color: rgba(217,138,61,.5); }
.dual-card h3 { font: 500 clamp(1.35rem, 2vw, 1.75rem)/1.22 var(--serif); color: var(--text); margin-bottom: 12px; }
.dual-card p { color: var(--muted); line-height: 1.62; }
.dual-card strong { color: var(--text); }
.dual-card sup { font-size: .62em; }
.dual-note { margin-top: 24px; max-width: 94ch; color: var(--muted); font-size: .85rem; line-height: 1.6; }
.dual-note em { font-style: italic; color: inherit; opacity: .85; }
.dual-highlight { margin-top: 24px; padding: clamp(24px, 3vw, 36px); display: grid; grid-template-columns: 90px 1fr; gap: clamp(18px, 3vw, 34px); border-radius: var(--radius); background: #0b4d58; color: white; }
.dual-highlight > span { color: #f3a34b; font-size: .7rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.dual-highlight h3 { margin-bottom: 10px; color: white; font: 500 clamp(1.4rem, 2.3vw, 2rem)/1.18 var(--serif); }
.dual-highlight p { max-width: 76ch; color: #d0e1e3; line-height: 1.62; }
.dual-highlight strong { color: white; }
.dual-sources { margin-top: 14px; display: flex; flex-wrap: wrap; gap: 9px; }
.dual-sources a { padding: 9px 12px; border: 1px solid var(--line); border-radius: 999px; color: var(--text); font-size: .72rem; font-weight: 800; transition: .25s ease; }
.dual-sources a:hover { border-color: var(--accent); background: var(--accent); color: #17343a; }
@media (max-width: 640px) {
  .dual-highlight { grid-template-columns: 1fr; }
  .dual-sources { display: grid; }
  .dual-sources a { width: 100%; border-radius: 12px; }
}

/* Statut d'envoi du formulaire de contact */
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 600; line-height: 1.5; min-height: 1px; }
.form-status.is-ok { color: #1f7a53; }
.form-status.is-error { color: #c0392b; }

/* V3 — identité institutionnelle ADOM SENIOR
   Une direction plus calme, plus lisible et plus proche d'un fabricant de
   confiance : photographie réelle, preuve technique et appels à l'action
   explicites. */
@layer adom-v3 {
  :root {
    --ink: #123f48;
    --ink-2: #1d5c66;
    --ink-3: #2f7179;
    --amber: #c97832;
    --amber-hot: #d88943;
    --sand: #f4f0e9;
    --paper: #fffdfa;
    --mist: #e4ece9;
    --text: #173b42;
    --muted: #627478;
    --line: #d9e0dc;
    --surface: #f7f8f5;
    --serif: Georgia, "Times New Roman", serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --radius: 14px;
    --wrap: min(1220px, calc(100% - 48px));
  }

  html { background: var(--sand); }
  body,
  [data-theme="light"] body,
  [data-theme="dark"] body {
    min-width: 320px;
    background: var(--sand);
    color: var(--text);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: clip;
  }
  body::before,
  [data-theme="light"] body::before,
  [data-theme="dark"] body::before { display: none !important; }

  h1, h2, h3, .serif { font-family: var(--serif); font-weight: 400; line-height: 1.08; }
  h1 { font-size: clamp(3.2rem, 6vw, 6.8rem); letter-spacing: -.055em; color: var(--ink); }
  h2 { font-size: clamp(2.35rem, 4.4vw, 4.5rem); letter-spacing: -.045em; color: var(--ink); }
  h3 { font-size: clamp(1.25rem, 1.8vw, 1.75rem); letter-spacing: -.02em; color: var(--ink); }
  p { color: var(--muted); }
  strong { color: var(--ink); }
  em { color: var(--amber); font-style: italic; font-weight: 400; }
  .wrap { width: var(--wrap); max-width: 1220px; }

  .utility {
    position: sticky; top: 0; z-index: 120;
    border: 0; background: var(--ink); color: #dce8e7;
    box-shadow: 0 2px 12px rgba(18,63,72,.13);
    font-size: .7rem; letter-spacing: .06em;
  }
  .utility .wrap { min-height: 38px; gap: 24px; }
  .utility strong { color: #f1c08b; }
  .utility-contact { gap: 18px; }
  .utility-contact a { color: #edf5f2; text-decoration: none; }
  .utility-contact a:hover { color: #f1c08b; }

  .site-header {
    position: sticky; top: var(--utility-height, 38px); z-index: 110;
    border-bottom: 1px solid var(--line);
    background: rgba(255,253,250,.98);
    box-shadow: 0 6px 24px rgba(18,63,72,.06);
    backdrop-filter: none;
  }
  .nav-shell { min-height: 80px; gap: 24px; }
  .brand-logo { width: clamp(172px, 18vw, 218px); height: auto; }
  .nav { gap: clamp(16px, 2.4vw, 32px); }
  .nav a { color: var(--ink); font-size: .82rem; font-weight: 750; letter-spacing: .01em; }
  .nav a:not(.button)::after { bottom: -9px; height: 2px; background: var(--amber); }
  .nav-actions { gap: 8px; }
  .theme-toggle, .menu-toggle {
    width: 40px; height: 40px; border: 1px solid #cbd7d4; background: #fff; color: var(--ink);
  }
  .button { min-height: 50px; padding-inline: 21px; border-radius: 6px; font-size: .82rem; letter-spacing: .01em; }
  .button-primary { background: var(--amber); color: #fff; box-shadow: none; }
  .button-primary:hover { background: #ad6124; }
  .button-ghost { border-color: #bdd0cd; background: transparent; color: var(--ink); }
  .button-dark { background: var(--ink); color: #fff; }
  .button-sm { min-height: 42px; padding-inline: 16px; }

  .hero {
    min-height: auto; padding: clamp(54px, 8vw, 106px) 0 0;
    background: var(--paper); display: block;
  }
  .hero-grid { grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr); align-items: center; gap: clamp(38px, 7vw, 92px); }
  .hero-copy { padding: 0; }
  .kicker {
    padding: 0; border: 0; border-radius: 0; color: #6b7c7d; font-size: .7rem;
    letter-spacing: .13em; font-weight: 800;
  }
  .kicker i { width: 8px; height: 8px; background: var(--amber); box-shadow: none; }
  .hero-copy h1 { max-width: 650px; margin: 20px 0 25px; font-size: clamp(3.15rem, 5.5vw, 6.1rem); }
  .hero-copy h1 em { display: inline; color: var(--amber); }
  .hero-copy .lead { max-width: 590px; color: #566b6e; font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.7; }
  .hero-actions { margin-top: 30px; gap: 11px; align-items: center; }
  .hero-actions .text-link { flex-basis: 100%; margin-top: 3px; color: var(--ink-2); font-size: .8rem; font-weight: 750; }
  .hero-note { margin-top: 25px; gap: 9px 20px; color: #5f7477; font-size: .78rem; }
  .hero-note i { width: 15px; height: 15px; border-color: var(--amber); }

  .hero-visual { min-height: 585px; }
  .hero-photo {
    position: absolute; inset: 0; overflow: hidden; border-radius: 12px;
    background: #d8d8d2; box-shadow: 0 24px 54px rgba(18,63,72,.16);
  }
  .hero-photo::after { inset: 50% 0 0; background: linear-gradient(180deg, transparent, rgba(16,55,61,.74)); }
  .hero-photo img { object-position: center 45%; transform: none; }
  .hero-photo figcaption { left: 26px; right: 26px; bottom: 23px; }
  .hero-photo figcaption span { color: #f1c08b; font-size: .65rem; letter-spacing: .12em; }
  .hero-photo figcaption strong { font: 1.38rem/1.2 var(--serif); color: #fff; }
  .before-chip {
    left: -24px; bottom: 34px; width: 252px; grid-template-columns: 72px 1fr; gap: 11px;
    padding: 8px; border-radius: 8px; background: #fffdfa; box-shadow: 0 16px 36px rgba(18,63,72,.2);
  }
  .before-chip > img { width: 72px; height: 84px; border-radius: 5px; }
  .before-chip small { color: var(--amber); font-size: .62rem; }
  .before-chip strong { margin: 2px 0 5px; color: var(--ink); font-size: .76rem; }
  .before-chip span { color: var(--ink-2); font-size: .64rem; }
  .floating-proof { right: -18px; bottom: 123px; width: 170px; padding: 17px; border-radius: 8px; background: #f2e2ce; box-shadow: 0 16px 36px rgba(18,63,72,.13); }
  .floating-proof b { color: var(--amber); font-size: 2.05rem; }
  .floating-proof span { color: #526a6d; font-size: .7rem; }

  .proof-rail { margin-top: 72px; border-block: 1px solid var(--line); background: #f7f5ef; }
  .proof-grid { grid-template-columns: repeat(4, 1fr); }
  .proof { padding: 24px clamp(14px, 2.5vw, 34px); border-right: 1px solid var(--line); }
  .proof b { color: var(--ink); font: 2.45rem/1 var(--serif); }
  .proof span { color: #687a7c; font-size: .72rem; }

  .section { padding: clamp(76px, 9vw, 126px) 0; }
  .section.paper { background: var(--paper); color: var(--ink); }
  .paper p, .paper .muted { color: #5e7275; }
  .section-head { gap: 34px; margin-bottom: 42px; }
  .section-head p { max-width: 510px; color: #647679; font-size: .94rem; }
  .eyebrow { margin-bottom: 17px; color: var(--amber); font-size: .68rem; letter-spacing: .15em; }
  .eyebrow::before { width: 24px; }

  .home-real-work { border-top: 1px solid var(--line); background: var(--sand); }
  .home-project-grid { min-height: 600px; gap: 12px; }
  .home-project-card { border-radius: 10px; }
  .home-project-card::after { inset: 34% 0 0; background: linear-gradient(180deg, transparent, rgba(14,55,62,.9)); }
  .home-project-overlay { left: 23px; right: 23px; bottom: 21px; }
  .home-project-overlay small { color: #f1c08b; font-size: .62rem; }
  .home-project-overlay strong { font: 1.55rem/1.15 var(--serif); }
  .home-project-overlay b { font-size: .7rem; }
  .home-project-proof { border: 1px solid var(--line); background: #eef0ec; }
  .home-project-proof figure { border-radius: 7px; }
  .home-project-proof figcaption { background: var(--ink); font-size: .6rem; }
  .home-project-proof > span { color: #607478; font-size: .7rem; }

  .method-grid, .card-grid { gap: 12px; }
  .method-card, .info-card { min-height: 0; padding: 26px; border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(18,63,72,.045); }
  .method-card { min-height: 260px; }
  .method-card .symbol { width: 40px; height: 40px; margin-top: 26px; border-radius: 50%; background: #f3e4d3; color: var(--amber); }
  .method-card h3, .info-card h3 { margin: 20px 0 10px; }
  .info-card .num { color: var(--amber); font-size: .8rem; }
  .method-card p, .info-card p { font-size: .86rem; }

  .audience-section { background: #eef2ef; color: var(--ink); }
  .audience-cards { gap: 14px; }
  .audience-card { border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 16px 36px rgba(18,63,72,.07); }
  .audience-card-photo { height: 250px; }
  .audience-card-photo span { left: 20px; bottom: 17px; background: #fff; color: var(--ink); font-size: .6rem; }
  .audience-card-body { min-height: 360px; padding: 30px; }
  .audience-card-body h3 { font: 400 clamp(1.8rem, 3vw, 2.65rem)/1.1 var(--serif); }
  .audience-card-pro .audience-card-body { background: var(--ink); }
  .audience-card-pro .audience-card-body p { color: #c8d9d8; }
  .audience-card-pro .audience-card-body li { color: #e8f0ee; }

  .page-hero { padding: clamp(72px, 9vw, 124px) 0 clamp(58px, 7vw, 96px); background: var(--paper); border-bottom: 1px solid var(--line); }
  .page-hero h1 { max-width: 860px; margin: 17px 0 25px; font-size: clamp(3.15rem, 6vw, 6.4rem); }
  .page-hero-grid { gap: 42px; }
  .page-fact { padding: 20px 0 20px 24px; border-left: 3px solid var(--amber); }
  .page-fact b { color: var(--ink); font: 2.25rem/1.05 var(--serif); }
  .page-fact span { color: #607477; font-size: .82rem; }

  .time-row { min-height: 160px; grid-template-columns: 104px 38px 1fr; gap: 21px; }
  .time { color: var(--amber); font-size: 1.25rem; }
  .time-rail::after { background: #cbd8d5; }
  .time-dot { border-color: var(--paper); background: var(--amber); }
  .time-step { color: var(--amber); font-size: .65rem; }
  .time-content h3 { margin-bottom: 8px; }
  .time-content p { max-width: 680px; font-size: .88rem; }

  .compare-card, .project, .model-card { border-color: var(--line); border-radius: 10px; background: #fff; box-shadow: 0 14px 30px rgba(18,63,72,.06); }
  .compare-visual { background: #dfe6e3; }
  .compare-label { background: rgba(18,63,72,.9); font-size: .6rem; }
  .compare-handle::after { width: 40px; height: 40px; background: var(--amber); }
  .compare-copy { padding: 22px; }
  .compare-copy h3 { margin-bottom: 6px; }
  .project-meta { color: var(--amber); font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
  .photo-disclaimer { color: #6b7d7f; }

  .marble-project { background: var(--ink); }
  .marble-project .section-head p { color: #c6d6d5; }
  .project-tour { padding: 14px; border-radius: 10px; background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18); }
  .project-tour-nav button { border-radius: 6px; font-size: .78rem; }
  .project-tour-nav button.is-active { background: var(--amber); border-color: var(--amber); }
  .project-view figure { min-height: 600px; border-radius: 7px; }

  .finished-gallery figure, .wood-project-photo { border-radius: 10px; }
  .finished-gallery figcaption b { font: 1.15rem var(--serif); }
  .wood-project-copy .lead { margin-top: 20px; }

  .lt-render { background: var(--paper); }
  .lt-slide { width: min(330px, 76vw); }
  .lt-slide img { border-radius: 8px; box-shadow: 0 12px 26px rgba(18,63,72,.08); }
  .lt-slide figcaption { color: var(--ink); font-size: 1rem; }

  .interfast-section { background: #edf2f1; }
  .interfast-screen, .interfast-mobile { border-radius: 10px; box-shadow: 0 22px 50px rgba(18,63,72,.12); }

  .simulator { border-radius: 10px; border-color: var(--line); box-shadow: 0 16px 36px rgba(18,63,72,.07); }
  .sim-result { background: var(--ink); }
  .field input, .field select, .field textarea { border-radius: 6px; border-color: #cbd8d5; }
  .segmented button { border-radius: 6px; }
  .segmented button.is-active { background: var(--ink); border-color: var(--ink); }

  .contact-grid { gap: clamp(38px, 7vw, 92px); }
  .contact-card { padding: 24px; border-radius: 10px; background: #fff; border-color: var(--line); }
  .contact-card a { color: var(--ink-2); font-weight: 750; }
  .contact-form { padding: clamp(25px, 4vw, 45px); border: 1px solid var(--line); border-radius: 10px; background: #fff; box-shadow: 0 16px 36px rgba(18,63,72,.07); }
  .contact-form .field label { color: var(--ink); }

  .cta-band { padding: clamp(60px, 8vw, 100px) 0; background: var(--amber); }
  .cta-band::after { color: rgba(255,255,255,.16); }
  .cta-band h2 { color: var(--ink); }
  .cta-band p { color: #593b20; }

  .site-footer { padding: 64px 0 28px; background: var(--ink); }
  .site-footer .brand-logo { content: url('/logo-adomsenior-white.svg'); }
  .footer-grid { gap: 32px; }
  .footer-col h3 { color: #fff; font-size: .68rem; letter-spacing: .14em; }
  .footer-col a { color: #c1d3d1; font-size: .8rem; }
  .footer-col a:hover { color: #f1c08b; }
  .footer-bottom { margin-top: 48px; border-color: rgba(255,255,255,.18); color: #91acab; font-size: .67rem; }

  .contact-fab { right: 22px; bottom: 22px; width: 54px; height: 54px; border: 0; border-radius: 8px; background: var(--amber); box-shadow: 0 12px 28px rgba(18,63,72,.22); }
  .contact-fab span { background: var(--ink); }
  .chatbot { right: 22px; bottom: 88px; }
  .chatbot-launcher { width: 54px; height: 54px; border: 0; border-radius: 8px; background: var(--ink-2); }
  .chatbot-panel { border-radius: 10px; box-shadow: 0 18px 48px rgba(18,63,72,.22); }

  [data-theme="dark"] body { background: #102b31; color: #eff6f3; }
  [data-theme="dark"] .site-header { background: rgba(16,43,49,.98); border-color: rgba(255,255,255,.14); }
  [data-theme="dark"] .nav a, [data-theme="dark"] .theme-toggle, [data-theme="dark"] .menu-toggle { color: #eff6f3; }
  [data-theme="dark"] .hero, [data-theme="dark"] .section.paper, [data-theme="dark"] .contact-form, [data-theme="dark"] .contact-card { background: #15363d; color: #eff6f3; }
  [data-theme="dark"] h1, [data-theme="dark"] h2, [data-theme="dark"] h3, [data-theme="dark"] strong { color: #eff6f3; }
  [data-theme="dark"] p, [data-theme="dark"] .paper p { color: #c0d2cf; }

  @media (max-width: 1080px) {
    .hero-grid { grid-template-columns: 1fr; gap: 44px; }
    .hero-copy { max-width: 760px; }
    .hero-visual { width: min(780px,100%); min-height: 540px; margin-inline: auto; }
    .nav { background: #fffdfa; border: 1px solid var(--line); border-radius: 8px; box-shadow: 0 18px 42px rgba(18,63,72,.16); }
    [data-theme="dark"] .nav { background: #15363d; }
  }
  @media (max-width: 760px) {
    :root { --wrap: min(100% - 28px, 1220px); }
    .utility .wrap { min-height: 46px; padding-block: 5px; gap: 3px 10px; }
    .utility .wrap > span:nth-child(2) { display: none; }
    .utility .wrap > span.utility-contact { width: 100%; justify-content: center; }
    .utility-contact a { font-size: .68rem; }
    .site-header { top: var(--utility-height,46px); }
    .nav-shell { min-height: 70px; }
    .hero { padding-top: 44px; }
    .hero-copy h1 { font-size: clamp(2.9rem, 14vw, 4.5rem); }
    .hero-copy .lead { font-size: 1rem; }
    .hero-actions { align-items: stretch; }
    .hero-actions .button { width: 100%; }
    .hero-actions .text-link { text-align: center; }
    .hero-visual { min-height: 470px; }
    .before-chip { left: 12px; bottom: 14px; width: 220px; grid-template-columns: 60px 1fr; }
    .before-chip > img { width: 60px; height: 72px; }
    .floating-proof { right: 8px; bottom: 92px; width: 146px; padding: 13px; }
    .floating-proof b { font-size: 1.65rem; }
    .proof-rail { margin-top: 48px; }
    .proof b { font-size: 1.9rem; }
    .proof span { font-size: .65rem; }
    .section { padding: 68px 0; }
    .section-head { margin-bottom: 30px; }
    .home-project-grid { min-height: 0; grid-template-columns: 1fr; grid-template-rows: auto; }
    .home-project-card, .home-project-main, .home-project-wood { min-height: 410px; grid-row: auto; }
    .home-project-proof { min-height: 290px; }
    .page-hero { padding: 62px 0 52px; }
    .page-hero h1 { font-size: clamp(2.9rem, 13vw, 4.25rem); }
    .page-fact { padding-left: 17px; }
    .time-row { grid-template-columns: 54px 25px 1fr; gap: 11px; min-height: 168px; }
    .time { font-size: .95rem; }
    .time-content p { font-size: .82rem; }
    .project-view figure { min-height: 490px; }
    .finished-gallery figure, .finished-gallery .finished-gallery-wide, .finished-gallery .finished-gallery-tall { min-height: 430px; }
    .wood-project-photo { min-height: 490px; }
    .interfast-visual { min-height: 500px; }
    .contact-fab { right: 14px; bottom: 14px; width: 50px; height: 50px; }
    .chatbot { right: 14px; bottom: 76px; }
    .chatbot-launcher { width: 50px; height: 50px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
}

/* Production polish: keep the before/after badge compact even while images load. */
@layer components {
  .before-chip {
    box-sizing: border-box;
    height: 96px;
    min-height: 96px;
    max-height: 96px;
    align-content: center;
    overflow: hidden;
  }

  .before-chip > img {
    display: block;
    width: 72px;
    height: 78px;
    min-width: 0;
    min-height: 0;
    max-width: 72px;
    max-height: 78px;
    object-fit: cover;
  }

  .before-chip > span {
    min-width: 0;
    overflow: hidden;
  }

  .before-chip strong {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  .hero-photo > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
  }
}

@media (max-width: 820px) {
  .before-chip {
    height: 82px;
    min-height: 82px;
    max-height: 82px;
  }

  .before-chip > img {
    width: 60px;
    height: 64px;
    max-width: 60px;
    max-height: 64px;
  }
}

/* Supplier 3D visual in every page hero: visible immediately, without adding
   another block to the reading flow on desktop. */
.page-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.page-hero-visual {
  position: absolute;
  z-index: 0;
  inset: 0 0 0 auto;
  width: min(52%, 760px);
  height: 100%;
  margin: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f7f3ec 0%, rgba(247,243,236,.88) 17%, rgba(247,243,236,.18) 68%, rgba(247,243,236,.08) 100%);
}

.page-hero-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(.92);
}

.page-hero-visual figcaption {
  position: absolute;
  z-index: 1;
  right: 22px;
  bottom: 20px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(14,76,90,.86);
  color: #fff;
  font: 700 .63rem/1 var(--sans);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-hero-grid {
  position: relative;
  z-index: 1;
}

.page-hero .page-fact {
  padding-right: 18px;
  border-radius: 8px;
  background: rgba(247,243,236,.84);
  backdrop-filter: blur(8px);
}

[data-theme="dark"] .page-hero-visual::after {
  background: linear-gradient(90deg, #102b31 0%, rgba(16,43,49,.9) 18%, rgba(16,43,49,.24) 70%, rgba(16,43,49,.12) 100%);
}

[data-theme="dark"] .page-hero .page-fact {
  background: rgba(16,43,49,.84);
}

@media (max-width: 760px) {
  .page-hero {
    padding-bottom: 204px;
  }

  .page-hero-visual {
    inset: auto 0 0;
    width: 100%;
    height: 172px;
  }

  .page-hero-visual::after {
    background: linear-gradient(180deg, #f7f3ec 0%, rgba(247,243,236,.52) 34%, rgba(247,243,236,.08) 100%);
  }

  .page-hero-visual figcaption {
    right: 14px;
    bottom: 14px;
    font-size: .57rem;
  }

  [data-theme="dark"] .page-hero-visual::after {
    background: linear-gradient(180deg, #102b31 0%, rgba(16,43,49,.58) 34%, rgba(16,43,49,.1) 100%);
  }
}
