@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --ink: #202624;
  --ink-soft: #424a47;
  --paper: #f1f2f0;
  --lavender: #e3e6e4;
  --white: #fbfcfb;
  --coral: #71384f;
  --coral-dark: #55283a;
  --blue: #55615e;
  --violet: #8b6877;
  --sage: #a4aaa7;
  --muted: #626b68;
  --line: rgb(32 38 36 / 14%);
  --display: "Manrope", ui-sans-serif, system-ui, sans-serif;
  --body: "DM Sans", ui-sans-serif, system-ui, sans-serif;
  --max: 1280px;
  --radius: 28px;
  --shadow: 0 30px 80px rgb(32 38 36 / 14%);
}

* { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; color: var(--ink); background: var(--paper); font-family: var(--body); line-height: 1.55; }
img { display: block; max-width: 100%; }
a { color: inherit; text-underline-offset: .22em; }
button, input, select, textarea { font: inherit; }
::selection { color: var(--white); background: var(--coral); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 4px; }

.skip-link { position: fixed; left: 1rem; top: -5rem; z-index: 100; padding: .8rem 1rem; color: var(--white); background: var(--ink); border-radius: 12px; }
.skip-link:focus { top: 1rem; }

.site-header { position: fixed; top: 18px; left: 50%; z-index: 50; display: grid; grid-template-columns: auto 1fr auto; align-items: center; width: min(calc(100% - 36px), var(--max)); min-height: 72px; padding: 8px 10px 8px 18px; background: rgb(250 251 248 / 86%); border: 1px solid rgb(24 32 31 / 12%); border-radius: 12px; box-shadow: 0 12px 40px rgb(24 32 31 / 8%); backdrop-filter: blur(18px) saturate(115%); transform: translateX(-50%); }
.brand { display: grid; align-items: center; overflow: hidden; width: 102px; height: 54px; }
.brand img { width: 95px; height: auto; }
.desktop-nav { justify-self: center; display: flex; gap: clamp(1.3rem, 2.5vw, 2.6rem); }
.desktop-nav a { position: relative; color: var(--ink-soft); font-size: .93rem; font-weight: 600; text-decoration: none; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -.35rem; left: 0; height: 2px; background: var(--coral); transform: scaleX(0); transition: transform .25s ease; transform-origin: right; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }
.mobile-menu { display: none; }

.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: space-between; gap: 1.4rem; padding: .75rem .8rem .75rem 1.25rem; border: 0; border-radius: 999px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.button i { display: grid; flex: 0 0 auto; width: 38px; height: 38px; place-items: center; border-radius: 50%; font-style: normal; transition: transform .25s ease; }
.button:hover { transform: translateY(-3px); }
.button:hover i { transform: rotate(45deg); }
.button-header { min-height: 52px; color: var(--white); background: var(--coral); box-shadow: 0 12px 28px rgb(113 56 79 / 22%); }
.button-header i { color: var(--coral); background: var(--white); }
.button-header:hover { background: var(--coral-dark); box-shadow: 0 16px 34px rgb(113 56 79 / 30%); }
.button-primary { color: var(--white); background: var(--coral); box-shadow: 0 12px 30px rgb(116 52 73 / 25%); }
.button-primary i { color: var(--coral); background: var(--white); }
.button-primary:hover { background: var(--coral-dark); box-shadow: 0 16px 36px rgb(116 52 73 / 34%); }
.button-ghost { padding-left: 1.1rem; color: var(--ink); background: rgb(255 255 255 / 55%); border: 1px solid rgb(16 19 38 / 12%); }
.button-ghost i { border: 1px solid var(--line); }
.button-light { color: var(--ink); background: var(--white); }
.button-light i { color: var(--white); background: var(--coral); }

.hero { position: relative; display: grid; grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr); min-height: 850px; padding: 140px max(24px, calc((100vw - var(--max)) / 2)) 68px; overflow: hidden; background: radial-gradient(circle at 88% 20%, rgb(189 198 192 / 30%), transparent 32%), linear-gradient(135deg, #fafaf7 0%, #f0f2ee 58%, #e5e9e5 100%); }
.hero::before { content: ""; position: absolute; width: 680px; height: 680px; top: -330px; left: -280px; border: 1px solid rgb(53 88 121 / 12%); border-radius: 50%; box-shadow: 0 0 0 80px rgb(53 88 121 / 3%), 0 0 0 160px rgb(53 88 121 / 2%); }
.hero-copy { position: relative; z-index: 3; align-self: center; max-width: 660px; padding: 1rem 2rem 2rem 0; }
.eyebrow { display: flex; align-items: center; gap: .65rem; margin: 0 0 1.2rem; color: var(--blue); font-size: .76rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow > span { width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgb(255 90 84 / 12%); }
h1, h2, h3 { margin-top: 0; font-family: var(--display); line-height: .98; }
h1 { margin-bottom: 1.55rem; font-size: clamp(3.6rem, 6.3vw, 6.4rem); font-weight: 700; letter-spacing: -.075em; }
h1 > span { display: block; margin-bottom: 1rem; color: var(--blue); font-size: clamp(.85rem, 1.1vw, 1.05rem); font-weight: 700; letter-spacing: .01em; line-height: 1.3; }
h2 { margin-bottom: 1.3rem; font-size: clamp(2.8rem, 5.2vw, 5.5rem); font-weight: 650; letter-spacing: -.065em; }
h3 { margin-bottom: .8rem; font-size: clamp(1.7rem, 2.6vw, 2.6rem); font-weight: 650; letter-spacing: -.045em; }
.hero-lead { max-width: 600px; margin: 0 0 2rem; color: #505365; font-size: clamp(1.05rem, 1.5vw, 1.24rem); }
.hero-actions { display: flex; align-items: center; gap: .8rem; flex-wrap: wrap; }
.hero-proof { display: flex; align-items: center; gap: 1rem; margin-top: 2.2rem; }
.proof-avatars { display: flex; }
.proof-avatars b { display: grid; width: 34px; height: 34px; margin-left: -7px; place-items: center; color: var(--white); background: var(--blue); border: 3px solid var(--lavender); border-radius: 50%; font-size: .7rem; }
.proof-avatars b:first-child { margin-left: 0; background: var(--coral); }
.proof-avatars b:last-child { background: var(--violet); }
.hero-proof p { display: grid; margin: 0; font-size: .85rem; line-height: 1.35; }
.hero-proof span { color: var(--muted); }
.hero-copy.reveal > .eyebrow, .hero-copy.reveal > h1, .hero-copy.reveal > .hero-lead, .hero-copy.reveal > .hero-actions, .hero-copy.reveal > .hero-proof, .hero-copy.reveal > .palette-preview { opacity: 0; transform: translateY(22px); transition: opacity .65s ease, transform .8s cubic-bezier(.16,.8,.2,1); }
.hero-copy.reveal.is-visible > * { opacity: 1; transform: translateY(0); }
.hero-copy.reveal.is-visible > h1 { transition-delay: .08s; }
.hero-copy.reveal.is-visible > .hero-lead { transition-delay: .16s; }
.hero-copy.reveal.is-visible > .hero-actions { transition-delay: .24s; }
.hero-copy.reveal.is-visible > .hero-proof { transition-delay: .32s; }
.hero-copy.reveal.is-visible > .palette-preview { transition-delay: .4s; }
.palette-preview { display: flex; align-items: center; gap: .55rem; margin-top: 1.5rem; }
.palette-preview > span { margin-right: .25rem; color: var(--muted); font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.palette-preview button { display: inline-flex; align-items: center; gap: .45rem; min-height: 36px; padding: .35rem .7rem; color: var(--ink-soft); background: rgb(255 255 255 / 42%); border: 1px solid rgb(23 35 33 / 12%); border-radius: 999px; cursor: pointer; font-size: .72rem; font-weight: 700; }
.palette-preview button i { width: 16px; height: 16px; background: #87928d; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 2px 6px rgb(23 35 33 / 18%); }
.palette-preview button:nth-child(3) i { background: #6f8790; }
.palette-preview button.is-selected { background: var(--white); border-color: rgb(23 35 33 / 24%); box-shadow: 0 8px 20px rgb(23 35 33 / 10%); }

.hero-visual { --rx: 0deg; --ry: 0deg; position: relative; align-self: center; min-height: 620px; border: 1px solid rgb(23 35 33 / 20%); border-radius: 12px; transform: perspective(1200px) rotateX(var(--rx)) rotateY(var(--ry)); transition: transform .18s ease-out; transform-style: preserve-3d; }
.hero-visual::before, .hero-visual::after { content: ""; position: absolute; z-index: 5; width: 54px; height: 54px; pointer-events: none; }
.hero-visual::before { top: 14px; left: 14px; border-top: 1px solid var(--white); border-left: 1px solid var(--white); }
.hero-visual::after { right: 14px; bottom: 14px; border-right: 1px solid var(--white); border-bottom: 1px solid var(--white); }
.hero-visual > img { position: absolute; z-index: 1; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; border-radius: 11px; clip-path: inset(0 0 100% 0 round 11px); filter: saturate(.82) contrast(1.04) drop-shadow(0 35px 35px rgb(23 35 33 / 16%)); transition: clip-path 1.15s cubic-bezier(.16,.8,.2,1) .12s; }
.hero-visual.reveal.is-visible > img { clip-path: inset(0 0 0 0 round 11px); }
.hero-visual > img::selection { background: transparent; }
.hero-orb { position: absolute; z-index: 0; border-radius: 50%; filter: blur(1px); }
.hero-orb-one { right: -50px; top: 40px; width: 190px; height: 190px; background: linear-gradient(145deg, #fff, #cad3d5); box-shadow: inset -20px -18px 40px rgb(53 88 121 / 14%), 0 28px 60px rgb(53 88 121 / 14%); }
.hero-orb-two { left: 20px; bottom: 30px; width: 76px; height: 76px; background: var(--coral); box-shadow: inset -12px -10px 20px rgb(132 28 27 / 22%), 0 18px 30px rgb(255 90 84 / 25%); }
.floating-card { position: absolute; z-index: 4; display: flex; align-items: center; gap: .8rem; padding: .85rem 1rem; color: var(--white); background: rgb(17 28 26 / 72%); border: 1px solid rgb(255 255 255 / 30%); border-radius: 6px; box-shadow: 0 20px 40px rgb(23 35 33 / 16%); backdrop-filter: blur(16px); transform: translateZ(55px); }
.floating-card p { display: grid; margin: 0; line-height: 1.3; }
.floating-card strong { font-size: .88rem; }
.floating-card small { color: rgb(255 255 255 / 65%); font-size: .72rem; }
.floating-card-top { top: 12%; right: 0; animation: float 5s ease-in-out infinite; }
.floating-card-bottom { bottom: 10%; left: -1%; animation: float 5s 1s ease-in-out infinite; }
.hero-visual.reveal .floating-card { opacity: 0; transform: translateY(18px) translateZ(55px); transition: opacity .55s ease, transform .75s cubic-bezier(.16,.8,.2,1); }
.hero-visual.reveal.is-visible .floating-card { opacity: 1; transform: translateY(0) translateZ(55px); }
.hero-visual.reveal.is-visible .floating-card-top { transition-delay: .72s; }
.hero-visual.reveal.is-visible .floating-card-bottom { transition-delay: .86s; }
.live-dot { width: 10px; height: 10px; background: #38ba77; border-radius: 50%; box-shadow: 0 0 0 6px rgb(56 186 119 / 13%); animation: livePulse 2.2s ease-out infinite; }
.floating-icon { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: var(--blue); border-radius: 10px; }
.visual-index { position: absolute; z-index: 4; top: 1.5rem; left: 1.5rem; display: grid; margin: 0; color: var(--white); font-size: .68rem; letter-spacing: .11em; line-height: 1.45; text-transform: uppercase; }
.visual-index span { opacity: .68; }
.visual-index strong { font-size: .76rem; }
.visual-caption { position: absolute; right: 1.5rem; bottom: 1.3rem; z-index: 3; padding-top: .55rem; color: rgb(255 255 255 / 80%); border-top: 1px dotted rgb(255 255 255 / 55%); font-size: .66rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.scroll-cue { position: absolute; left: max(24px, calc((100vw - var(--max)) / 2)); bottom: 28px; z-index: 3; display: flex; align-items: center; gap: .7rem; font-size: .75rem; font-weight: 700; text-decoration: none; text-transform: uppercase; letter-spacing: .1em; }
.scroll-cue i { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: var(--ink); border-radius: 50%; font-style: normal; animation: scrollNudge 1.8s ease-in-out infinite; }

.ticker { height: 66px; overflow: hidden; contain: strict; color: var(--white); background: var(--ink); }
.ticker > div { display: flex; align-items: center; width: max-content; padding: 1rem 0; animation: ticker 26s linear infinite; }
.ticker span { padding: 0 2rem; font-family: var(--display); font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 600; white-space: nowrap; }
.ticker i { color: var(--coral); font-style: normal; }

.immersive-story { position: relative; height: 260vh; color: var(--white); background: #151b1a; }
.story-sticky { position: sticky; top: 0; height: 100svh; min-height: 690px; overflow: hidden; isolation: isolate; background: linear-gradient(125deg, #151b1a 0%, #202a28 58%, #121716 100%); }
.story-sticky::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .22; background-image: linear-gradient(rgb(255 255 255 / 7%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 7%) 1px, transparent 1px); background-size: 72px 72px; -webkit-mask-image: radial-gradient(circle at 72% 50%, #000, transparent 62%); mask-image: radial-gradient(circle at 72% 50%, #000, transparent 62%); transform: perspective(700px) rotateX(58deg) scale(1.5) translateY(26%); transform-origin: center bottom; }
.story-sticky::after { content: ""; position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: 18%; pointer-events: none; background: linear-gradient(transparent, #151b1a); }
.story-copy { position: absolute; z-index: 4; top: 50%; left: max(24px, calc((100vw - var(--max)) / 2)); width: min(40vw, 540px); transform: translateY(-50%); }
.story-copy h2 { margin-bottom: 2.4rem; color: var(--white); font-size: clamp(4rem, 6vw, 7rem); }
.story-steps { position: relative; min-height: 185px; }
.story-step { position: absolute; inset: 0; max-width: 470px; opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.story-step.is-active { opacity: 1; transform: translateY(0); }
.story-step > span { display: block; margin-bottom: .8rem; color: #b8c8d5; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.story-step h3 { margin-bottom: .7rem; color: var(--white); font-size: clamp(1.7rem, 2.5vw, 2.5rem); }
.story-step p { margin: 0; color: rgb(255 255 255 / 60%); font-size: 1rem; }
.story-stage { position: absolute; z-index: 2; inset: 0 0 0 34%; overflow: hidden; perspective: 1200px; }
.story-stage::before { content: ""; position: absolute; top: 50%; left: 55%; width: min(50vw, 720px); aspect-ratio: 1; background: radial-gradient(circle, rgb(106 137 158 / 18%), transparent 66%); border: 1px solid rgb(188 205 215 / 13%); border-radius: 50%; box-shadow: 0 0 0 90px rgb(91 122 143 / 3%), 0 0 0 180px rgb(91 122 143 / 2%); transform: translate(-50%, -50%); }
.cinematic-video-shell { position: absolute; inset: 0; overflow: hidden; background: #171b18; }
.cinematic-video-shell::before { content: ""; position: absolute; z-index: 2; inset: 1rem; pointer-events: none; border: 1px solid rgb(255 255 255 / 14%); }
.cinematic-video-shell::after { content: ""; position: absolute; z-index: 2; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgb(15 29 27 / 82%) 0%, rgb(15 29 27 / 20%) 29%, transparent 58%), linear-gradient(0deg, rgb(13 21 19 / 38%), transparent 40%); }
.cinematic-video { position: absolute; inset: -2%; width: 104%; height: 104%; object-fit: cover; object-position: center; transform: translate(var(--cinema-x, 0%), var(--cinema-y, 0%)) scale(1.015); filter: saturate(.88) contrast(1.06); will-change: transform; }
.cinematic-video-roller { object-position: 58% center; }
.story-stage-label { position: absolute; z-index: 4; right: 4rem; bottom: 3.2rem; display: grid; gap: .15rem; margin: 0; padding: .65rem 0 .65rem 4rem; border-top: 1px dotted rgb(255 255 255 / 38%); text-align: right; }
.story-stage-label span { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.story-stage-label small { color: rgb(255 255 255 / 50%); }
.story-progress { position: absolute; z-index: 6; right: 2rem; top: 50%; display: grid; gap: 1.25rem; justify-items: center; transform: translateY(-50%); }
.story-progress::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; z-index: -2; width: 1px; background: rgb(255 255 255 / 16%); }
.story-progress i { position: absolute; top: 0; left: 50%; z-index: -1; width: 2px; height: var(--story-progress, 0%); background: var(--coral); transform: translateX(-50%); transition: height .08s linear; }
.story-progress span { display: grid; width: 32px; height: 32px; place-items: center; color: rgb(255 255 255 / 45%); background: #182331; border: 1px solid rgb(255 255 255 / 14%); border-radius: 50%; font-size: .62rem; font-weight: 800; transition: color .3s ease, background .3s ease, border-color .3s ease; }
.story-progress span.is-active { color: var(--white); background: var(--coral); border-color: var(--coral); box-shadow: 0 0 0 7px rgb(255 90 84 / 12%); }
.story-atmosphere i { position: absolute; z-index: 1; border-radius: 50%; filter: blur(1px); animation: orbit 12s ease-in-out infinite alternate; }
.story-atmosphere i:first-child { top: 14%; right: 11%; width: 82px; height: 82px; background: linear-gradient(145deg, #9aabb8, #355879); box-shadow: 0 25px 60px rgb(53 88 121 / 32%); }
.story-atmosphere i:nth-child(2) { right: 42%; bottom: 12%; width: 36px; height: 36px; background: var(--coral); animation-delay: -4s; }
.story-atmosphere i:last-child { top: 21%; left: 47%; width: 18px; height: 18px; background: var(--white); box-shadow: 0 0 28px var(--white); animation-delay: -7s; }
.story-sticky::before, .material-sticky::before, .story-stage::before, .material-stage::before, .story-atmosphere { display: none; }

[data-depth-card] { --depth-x: 0deg; --depth-y: 0deg; --glow-x: 50%; --glow-y: 50%; transform-style: preserve-3d; }
[data-depth-card].is-visible { transform: perspective(1200px) rotateX(var(--depth-x)) rotateY(var(--depth-y)); transition: opacity .7s ease, transform .22s ease-out, box-shadow .35s ease; }
[data-depth-card]::before { content: ""; position: absolute; z-index: 4; inset: 0; border-radius: inherit; pointer-events: none; opacity: 0; background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgb(255 255 255 / 20%), transparent 34%); transition: opacity .25s ease; }
[data-depth-card]:hover::before { opacity: 1; }
.project-card[data-depth-card] { position: relative; border-radius: 24px; }
.project-card[data-depth-card]:hover { box-shadow: 0 34px 70px rgb(0 0 0 / 30%); }

.section { width: min(100%, var(--max)); margin: 0 auto; padding: clamp(6rem, 10vw, 10rem) 24px; }
.section-heading { position: relative; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 3rem; align-items: end; margin-bottom: clamp(3rem, 6vw, 5rem); }
.section-heading::after { content: ""; position: absolute; right: 0; bottom: -1.4rem; left: 0; height: 4px; background: linear-gradient(90deg, var(--coral), #9a7d72 32%, #c7cfca 55%, transparent 88%); background-size: 180% 100%; border-radius: 999px; box-shadow: 0 3px 12px rgb(118 81 93 / 15%); transform: scaleX(0); transform-origin: left; transition: transform 1.25s cubic-bezier(.16,.8,.2,1) .12s; }
.section-heading.is-visible::after { transform: scaleX(1); animation: paintGlint 3.4s ease-in-out 1.3s infinite alternate; }
.section-heading h2, .section-heading > p { margin-bottom: 0; }
.section-heading > p { padding-bottom: .55rem; color: var(--muted); font-size: 1.05rem; }
.services { position: relative; }
.services::after { content: ""; position: absolute; right: -150px; top: 30%; width: 300px; height: 300px; background: #eceafb; border-radius: 50%; filter: blur(3px); z-index: -1; }
.bento-grid { display: grid; grid-template-columns: 1.15fr .85fr; grid-template-rows: repeat(2, minmax(300px, auto)); gap: 1rem; }
.service-card { position: relative; overflow: hidden; min-height: 320px; padding: clamp(1.7rem, 3vw, 2.5rem); border-radius: var(--radius); text-decoration: none; cursor: pointer; }
.service-card h3 { max-width: 520px; }
.service-card p { max-width: 460px; margin-bottom: 0; }
.card-index { display: block; margin-bottom: auto; font-size: .75rem; font-weight: 800; letter-spacing: .12em; opacity: 0; transform: translateY(-12px); transition: opacity .45s ease .2s, transform .55s cubic-bezier(.16,.8,.2,1) .2s; }
.service-card.is-visible .card-index { opacity: 1; transform: translateY(0); }
.circle-link { display: grid; position: absolute; right: 2rem; bottom: 2rem; z-index: 4; width: 54px; height: 54px; place-items: center; color: var(--ink); background: var(--white); border-radius: 50%; font-size: 1.25rem; text-decoration: none; box-shadow: 0 10px 30px rgb(16 19 38 / 14%); transition: transform .25s ease; }
.circle-link:hover { transform: rotate(45deg) scale(1.08); }
.service-feature { grid-row: 1 / 3; display: flex; align-items: flex-end; min-height: 660px; padding: 0; color: var(--white); background: var(--ink); }
.service-feature::after { content: ""; position: absolute; inset: 30% 0 0; background: linear-gradient(transparent, rgb(9 12 28 / 88%)); }
.service-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); transition: transform 1.15s cubic-bezier(.16,.8,.2,1); }
.service-feature.is-visible img { transform: scale(1); }
.service-feature.is-visible:hover img { transform: scale(1.045); }
.service-card-copy { position: relative; z-index: 2; width: 100%; padding: clamp(2rem, 4vw, 3.2rem); }
.service-card-copy p { max-width: 390px; color: rgb(255 255 255 / 75%); }
.service-card-copy .card-index { margin-bottom: 1.5rem; }
.service-card.reveal h3, .service-card.reveal p, .service-card.reveal .circle-link { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .75s cubic-bezier(.16,.8,.2,1); }
.service-card.reveal.is-visible h3, .service-card.reveal.is-visible p, .service-card.reveal.is-visible .circle-link { opacity: 1; transform: translateY(0); }
.service-card.reveal.is-visible p { transition-delay: .12s; }
.service-card.reveal.is-visible .circle-link { transition-delay: .2s; }
.service-card.reveal.is-visible .circle-link:hover { transform: rotate(45deg) scale(1.08); }
.service-tag { position: absolute; top: 1.5rem; right: 1.5rem; z-index: 3; padding: .5rem .85rem; color: var(--ink); background: rgb(255 255 255 / 82%); border-radius: 999px; font-size: .75rem; font-weight: 700; backdrop-filter: blur(10px); }
.service-coral { display: flex; flex-direction: column; justify-content: flex-end; color: var(--white); background: var(--coral); }
.service-coral .card-index { position: absolute; top: 2rem; left: 2rem; }
.service-coral > div:not(.abstract-rings) { position: relative; z-index: 2; max-width: 74%; }
.circle-link-light { color: var(--white); background: rgb(255 255 255 / 18%); border: 1px solid rgb(255 255 255 / 38%); box-shadow: none; }
.abstract-rings { position: absolute; top: -50px; right: -20px; width: 250px; height: 250px; opacity: 0; transform: scale(.62) rotate(-18deg); transition: opacity .7s ease .25s, transform 1.1s cubic-bezier(.16,.8,.2,1) .25s; }
.service-card.is-visible .abstract-rings { opacity: 1; transform: scale(1) rotate(0); }
.service-card.is-visible .abstract-rings { animation: ringsFloat 7s ease-in-out 1.4s infinite alternate; }
.abstract-rings i { position: absolute; inset: 0; border: 1px solid rgb(255 255 255 / 30%); border-radius: 45% 55% 60% 40%; transform: rotate(18deg); }
.abstract-rings i:nth-child(2) { inset: 35px; transform: rotate(48deg); }
.abstract-rings i:nth-child(3) { inset: 70px; background: rgb(255 255 255 / 12%); transform: rotate(78deg); }
.service-blue { display: flex; flex-direction: column; justify-content: space-between; color: var(--white); background: var(--blue); }
.service-blue > div:first-of-type { max-width: 76%; }
.material-swatch { position: absolute; right: 1.8rem; top: 1.8rem; display: flex; opacity: 0; transform: translateY(-24px) rotate(-10deg); transition: opacity .8s ease .08s, transform 1s cubic-bezier(.16,.8,.2,1) .08s; }
.service-card.is-visible .material-swatch { opacity: 1; transform: translateY(0) rotate(0); }
.material-swatch i { width: 36px; height: 90px; margin-left: -12px; background: #fff; border: 1px solid rgb(255 255 255 / 40%); border-radius: 999px; transform: rotate(26deg); box-shadow: 0 10px 20px rgb(11 18 71 / 20%); transition: transform 1s cubic-bezier(.16,.8,.2,1) .3s; }
.material-swatch i:nth-child(2) { background: var(--violet); transform: rotate(46deg); transition-delay: .42s; }
.material-swatch i:nth-child(3) { background: var(--coral); transform: rotate(66deg); transition-delay: .54s; }
.service-card:not(.is-visible) .material-swatch i { transform: rotate(26deg); }
.service-blue:hover .material-swatch i:first-child { transform: rotate(18deg) translateY(-4px); }
.service-blue:hover .material-swatch i:nth-child(2) { transform: rotate(50deg) translateY(-7px); }
.service-blue:hover .material-swatch i:nth-child(3) { transform: rotate(78deg) translateY(-10px); }
.service-points { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.15rem 4.5rem 0 0; padding: 0; list-style: none; }
.service-points li { padding: .42rem .68rem; border: 1px solid rgb(255 255 255 / 30%); border-radius: 999px; color: rgb(255 255 255 / 88%); font-size: .68rem; font-weight: 750; letter-spacing: .035em; }
.service-card.reveal .service-points { opacity: 0; transform: translateY(14px); transition: opacity .55s ease .18s, transform .7s cubic-bezier(.16,.8,.2,1) .18s; }
.service-card.reveal.is-visible .service-points { opacity: 1; transform: translateY(0); }
.services-assurance { display: grid; grid-template-columns: minmax(260px, 1.15fr) minmax(300px, 1fr) auto; gap: 2rem; align-items: center; margin-top: 1rem; padding: clamp(1.5rem, 3vw, 2.2rem); background: #fff; border: 1px solid #ded9d8; border-radius: 24px; box-shadow: 0 18px 60px rgb(34 39 37 / 8%); }
.services-assurance p { display: grid; gap: .35rem; margin: 0; }
.services-assurance p span { color: var(--coral); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.services-assurance p strong { max-width: 430px; font-family: "Manrope", sans-serif; font-size: clamp(1.05rem, 1.7vw, 1.35rem); line-height: 1.35; }
.services-assurance ul { display: flex; flex-wrap: wrap; gap: .65rem 1.25rem; margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: .76rem; font-weight: 750; }
.services-assurance li::before { content: "✓"; margin-right: .45rem; color: var(--coral); font-weight: 900; }
.services-assurance .button { white-space: nowrap; }
.before-after-section { padding-bottom: clamp(3rem, 6vw, 5rem); }
.before-after-wrap { padding-bottom: clamp(2.5rem, 4vw, 4rem); }
.services-assurance-bridge { width: min(calc(100% - 48px), var(--max)); margin: 0 auto; }
@media (max-width: 1050px) { .services-assurance { grid-template-columns: 1fr auto; } .services-assurance ul { grid-column: 1 / -1; grid-row: 2; } }
@media (max-width: 760px) { .service-points { margin-right: 3.5rem; } .services-assurance { grid-template-columns: 1fr; gap: 1.25rem; padding: 1.4rem; border-radius: 20px; } .services-assurance ul { grid-column: auto; grid-row: auto; } .services-assurance .button { width: 100%; } .services-assurance-bridge { width: min(calc(100% - 32px), var(--max)); } }

.projects { color: var(--white); background: var(--ink); border-radius: 48px 48px 0 0; }
.projects-inner { padding-top: clamp(6rem, 9vw, 9rem); }
.section-heading-dark > p { color: rgb(255 255 255 / 58%); }
.eyebrow-light { color: #d9b7a8; }
.project-list { display: grid; grid-template-columns: 1.15fr .85fr; gap: 4rem 1.2rem; }
.project-card a { display: block; text-decoration: none; }
.project-card:nth-child(3) { grid-column: 2; }
.project-image { position: relative; overflow: hidden; aspect-ratio: 4 / 3; border-radius: 24px; }
.project-card.reveal .project-image { clip-path: inset(0 0 16% 0 round 24px); transition: clip-path .9s cubic-bezier(.16,.8,.2,1); }
.project-card.reveal.is-visible .project-image { clip-path: inset(0 0 0 0 round 24px); }
.project-large .project-image { aspect-ratio: 5 / 4; }
.project-image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 55%, rgb(8 10 23 / 60%)); opacity: 0; transition: opacity .35s ease; }
.project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.project-image > span { position: absolute; right: 1.2rem; bottom: 1.2rem; z-index: 2; padding: .7rem 1rem; color: var(--ink); background: var(--white); border-radius: 999px; font-size: .78rem; font-weight: 700; opacity: 0; transform: translateY(10px); transition: opacity .3s ease, transform .3s ease; }
.project-card:hover .project-image img { transform: scale(1.04); }
.project-card:hover .project-image::after, .project-card:hover .project-image > span { opacity: 1; }
.project-card:hover .project-image > span { transform: translateY(0); }
.project-info { position: relative; padding: 1.35rem 4rem 0 0; }
.project-info p { margin: 0 0 .65rem; color: #aaaabd; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.project-info h3 { max-width: 620px; margin: 0; font-size: clamp(1.65rem, 2.7vw, 2.8rem); }
.project-info > i { position: absolute; right: 0; top: 1.35rem; color: #656578; font-style: normal; }
.project-card.reveal .project-info > i { opacity: 0; transform: translateX(-18px); transition: opacity .45s ease .4s, transform .65s cubic-bezier(.16,.8,.2,1) .4s; }
.project-card.reveal.is-visible .project-info > i { opacity: 1; transform: translateX(0); }
.projects-footer { display: flex; align-items: center; justify-content: flex-end; gap: 2rem; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgb(255 255 255 / 15%); }
.projects-footer > p { max-width: 600px; margin: 0; color: #aaaabd; }

.method { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.method-intro { align-self: start; position: sticky; top: 130px; }
.method-intro h2 { font-size: clamp(2.7rem, 4.5vw, 4.6rem); }
.method-intro > p:not(.eyebrow) { max-width: 430px; color: var(--muted); }
.text-arrow { display: inline-flex; align-items: center; gap: .7rem; margin-top: 1rem; font-weight: 700; text-decoration: none; }
.text-arrow span { display: grid; width: 32px; height: 32px; place-items: center; color: var(--white); background: var(--coral); border-radius: 50%; }
.method-list { margin: 0; padding: 0; list-style: none; }
.method-list li { position: relative; isolation: isolate; display: grid; grid-template-columns: 52px 1fr auto; gap: 1.4rem; align-items: start; padding: 2.3rem 0; border-top: 1px solid var(--line); }
.method-list li::before { content: ""; position: absolute; z-index: -1; inset: .45rem -1rem; background: linear-gradient(90deg, rgb(118 81 93 / 10%), rgb(82 103 101 / 5%), transparent 78%); border-radius: 18px; transform: scaleX(0); transform-origin: left; transition: transform .9s cubic-bezier(.16,.8,.2,1) .12s; }
.method-list li.is-visible::before { transform: scaleX(1); }
.method-list li:nth-child(2)::before { transition-delay: .2s; }
.method-list li:nth-child(3)::before { transition-delay: .28s; }
.method-list li:last-child { border-bottom: 1px solid var(--line); }
.method-list > li > span { display: grid; width: 48px; height: 48px; place-items: center; color: var(--blue); background: #e7e6f6; border-radius: 50%; font-size: .75rem; font-weight: 800; opacity: 0; transform: rotate(-16deg) scale(.65); transition: opacity .45s ease .18s, transform .65s cubic-bezier(.16,.8,.2,1) .18s; }
.method-list > li.is-visible > span { opacity: 1; transform: rotate(0) scale(1); }
.method-list h3 { margin: 0 0 .5rem; font-size: clamp(1.65rem, 2.4vw, 2.3rem); }
.method-list p { max-width: 570px; margin: 0; color: var(--muted); }
.method-list > li > i { color: var(--coral); font-size: 1.5rem; font-style: normal; opacity: 0; transform: translateX(-14px); transition: opacity .4s ease .45s, transform .55s cubic-bezier(.16,.8,.2,1) .45s; }
.method-list > li.is-visible > i { opacity: 1; transform: translateX(0); }

.method-timeline { --method-progress: 0%; position: relative; margin: 0; padding: 0 0 0 3.6rem; list-style: none; }
.method-timeline::before, .method-timeline::after { content: ""; position: absolute; top: 1.8rem; bottom: 1.8rem; left: 1.35rem; width: 2px; border-radius: 999px; }
.method-timeline::before { background: #d8d8d4; }
.method-timeline::after { height: var(--method-progress); max-height: calc(100% - 3.6rem); bottom: auto; background: linear-gradient(var(--coral), #a47d8c); box-shadow: 0 0 18px rgb(113 56 79 / 22%); transition: height .12s linear; }
.method-step { position: relative; display: grid; min-height: 230px; margin-bottom: 1rem; padding: clamp(1.6rem, 3vw, 2.3rem); overflow: hidden; background: #fff; border: 1px solid #dedbd9; border-radius: 26px; box-shadow: 0 16px 45px rgb(34 39 37 / 7%); }
.method-step::before { content: ""; position: absolute; inset: 0; background: linear-gradient(110deg, rgb(113 56 79 / 8%), transparent 48%); opacity: 0; transform: translateX(-18%); transition: opacity .6s ease, transform .9s cubic-bezier(.16,.8,.2,1); }
.method-step.is-visible::before { opacity: 1; transform: translateX(0); }
.method-step > span { position: absolute; top: 50%; left: -3.7rem; z-index: 3; display: grid; width: 44px; height: 44px; place-items: center; color: var(--muted); background: var(--paper); border: 2px solid #d8d8d4; border-radius: 50%; font-size: .68rem; font-weight: 850; transform: translateY(-50%); transition: color .45s ease, background .45s ease, border-color .45s ease, box-shadow .45s ease; }
.method-step.is-visible > span { color: #fff; background: var(--coral); border-color: var(--coral); box-shadow: 0 0 0 7px rgb(113 56 79 / 12%); }
.method-step > div { position: relative; z-index: 1; align-self: center; }
.method-step small { display: block; margin-bottom: .55rem; color: var(--coral); font-size: .68rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.method-step h3 { margin: 0 0 .7rem; font-size: clamp(1.65rem, 2.5vw, 2.35rem); }
.method-step p { max-width: 620px; margin: 0; color: var(--muted); line-height: 1.65; }
.method-step strong { display: block; margin-top: 1.15rem; padding-top: .85rem; border-top: 1px solid var(--line); color: #737b78; font-size: .7rem; letter-spacing: .04em; }
.method-step:last-child { margin-bottom: 0; }
@media (max-width: 760px) { .method-timeline { padding-left: 2.7rem; } .method-timeline::before, .method-timeline::after { left: .85rem; } .method-step { min-height: 250px; padding: 1.5rem; border-radius: 22px; } .method-step > span { left: -3rem; width: 38px; height: 38px; } }


.color-lab { overflow: hidden; background: #e7ebe8; }
.color-lab-inner { display: grid; grid-template-columns: .7fr 1.3fr; gap: clamp(3rem, 7vw, 7rem); align-items: center; }
.color-lab-copy h2 { font-size: clamp(3rem, 4.8vw, 5.3rem); }
.color-lab-copy > p:not(.eyebrow) { max-width: 510px; color: var(--muted); }
.color-lab-copy > small { display: block; margin-top: 1rem; color: #7b8482; font-size: .7rem; }
.color-controls { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 2rem; }
.color-choice { display: flex; align-items: center; gap: .55rem; min-height: 46px; padding: .4rem .8rem .4rem .45rem; color: var(--ink); background: rgb(255 255 255 / 55%); border: 1px solid rgb(18 26 36 / 12%); border-radius: 999px; cursor: pointer; transition: background .25s ease, box-shadow .25s ease, transform .25s ease; }
.color-choice:hover { transform: translateY(-2px); }
.color-choice.is-selected { background: var(--white); border-color: rgb(18 26 36 / 22%); box-shadow: 0 10px 24px rgb(38 57 52 / 12%); }
.color-choice i { width: 30px; height: 30px; background: var(--swatch); border: 3px solid var(--white); border-radius: 50%; box-shadow: 0 3px 10px rgb(18 26 36 / 16%); }
.color-choice span { font-size: .8rem; font-weight: 700; }
.color-stage { --stage-x: 3deg; --stage-y: -7deg; --room-tone: #e6e0d4; min-height: 680px; display: grid; place-items: center; perspective: 1700px; }
.room-scene { position: relative; width: min(100%, 760px); aspect-ratio: 1.1 / 1; transform-style: preserve-3d; transform: rotateX(var(--stage-x)) rotateY(var(--stage-y)); transition: transform .22s ease-out; }
.room-frame { position: absolute; inset: 6% 3% 8% 4%; overflow: hidden; background: #d7d4cd; border: 12px solid rgb(255 255 255 / 75%); border-radius: 34px; box-shadow: 42px 56px 80px rgb(42 58 53 / 23%), -14px -12px 36px rgb(255 255 255 / 80%), inset 0 0 0 1px rgb(18 26 36 / 10%); transform: translateZ(55px); }
.room-frame::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(120deg, rgb(255 255 255 / 26%), transparent 30%, transparent 70%, rgb(9 18 23 / 16%)); }
.room-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.78) contrast(1.04); }
.room-tint { position: absolute; inset: 0; background: var(--room-tone); opacity: .34; mix-blend-mode: multiply; transition: background .55s ease; }
.room-light { position: absolute; width: 68%; height: 135%; top: -30%; left: -22%; background: linear-gradient(105deg, rgb(255 255 255 / 58%), transparent 66%); filter: blur(8px); transform: rotate(8deg); }
.room-frame p { position: absolute; z-index: 3; right: 1.2rem; bottom: 1.2rem; display: grid; margin: 0; padding: .75rem 1rem; color: var(--ink); background: rgb(255 255 255 / 82%); border-radius: 14px; backdrop-filter: blur(14px); }
.room-frame p strong { font-size: .78rem; }
.room-frame p small { color: var(--muted); font-size: .68rem; }
.swatch-fan { position: absolute; z-index: 4; right: -2%; bottom: 3%; width: 190px; height: 230px; transform: translateZ(130px); transform-style: preserve-3d; }
.swatch-fan i { position: absolute; right: 0; bottom: 0; width: 88px; height: 210px; background: var(--card); border: 8px solid rgb(255 255 255 / 78%); border-radius: 44px; box-shadow: 0 18px 36px rgb(30 43 39 / 22%); transform-origin: 50% 90%; }
.swatch-fan i:first-child { transform: rotate(-36deg) translateZ(5px); }
.swatch-fan i:nth-child(2) { transform: rotate(-17deg) translateZ(12px); }
.swatch-fan i:nth-child(3) { transform: rotate(2deg) translateZ(19px); }
.swatch-fan i:last-child { transform: rotate(21deg) translateZ(26px); }
.swatch-fan::after { content: ""; position: absolute; right: 25px; bottom: 12px; width: 28px; height: 28px; background: var(--ink); border: 8px solid var(--white); border-radius: 50%; box-shadow: 0 8px 20px rgb(18 26 36 / 25%); }

.material-story { position: relative; height: 250vh; color: var(--white); background: #1a1f1e; }
.material-sticky { position: sticky; top: 0; height: 100svh; min-height: 690px; overflow: hidden; isolation: isolate; background: linear-gradient(128deg, #171d1c 0%, #27302e 55%, #202322 100%); }
.material-sticky::before { content: ""; position: absolute; z-index: -1; inset: 0; opacity: .16; background-image: linear-gradient(rgb(255 255 255 / 8%) 1px, transparent 1px), linear-gradient(90deg, rgb(255 255 255 / 8%) 1px, transparent 1px); background-size: 76px 76px; -webkit-mask-image: radial-gradient(circle at 72% 50%, #000, transparent 65%); mask-image: radial-gradient(circle at 72% 50%, #000, transparent 65%); transform: perspective(800px) rotateX(60deg) scale(1.55) translateY(25%); transform-origin: center bottom; }
.material-sticky::after { content: ""; position: absolute; z-index: 5; right: 0; bottom: 0; left: 0; height: 18%; pointer-events: none; background: linear-gradient(transparent, #1a1f1e); }
.material-copy { position: absolute; z-index: 4; top: 50%; left: max(24px, calc((100vw - var(--max)) / 2)); width: min(41vw, 560px); transform: translateY(-50%); }
.material-copy h2 { margin-bottom: 2rem; color: var(--white); font-size: clamp(3.15rem, 4.7vw, 5.5rem); line-height: .94; }
.material-copy h2 span, .material-copy h2 strong { display: block; font: inherit; }
.material-copy h2 strong { width: fit-content; margin-top: .12em; color: #d8a9ba; }
.material-steps { position: relative; min-height: 176px; }
.material-step { position: absolute; inset: 0; max-width: 475px; opacity: 0; transform: translateY(26px); transition: opacity .55s ease, transform .55s cubic-bezier(.2,.7,.2,1); pointer-events: none; }
.material-step.is-active { opacity: 1; transform: translateY(0); }
.material-step > span { display: block; margin-bottom: .75rem; color: #d9b7a8; font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.material-step h3 { margin-bottom: .7rem; color: var(--white); font-size: clamp(1.7rem, 2.4vw, 2.45rem); }
.material-step p { margin: 0; color: rgb(255 255 255 / 64%); }
.material-cta { position: relative; z-index: 8; margin-top: 1.2rem; }
.material-stage { position: absolute; z-index: 2; inset: 0 0 0 35%; overflow: hidden; }
.material-stage::before { content: ""; position: absolute; top: 50%; left: 57%; width: min(52vw, 760px); aspect-ratio: 1; border: 1px solid rgb(238 218 201 / 15%); border-radius: 50%; background: radial-gradient(circle, rgb(151 75 94 / 22%), transparent 62%); box-shadow: 0 0 0 100px rgb(196 124 97 / 3%), 0 0 0 200px rgb(196 124 97 / 2%); transform: translate(-50%,-50%); }
.material-stage .cinematic-video-shell::after { background: linear-gradient(90deg, rgb(22 37 33 / 76%) 0%, rgb(22 37 33 / 18%) 29%, transparent 58%), linear-gradient(0deg, rgb(18 21 19 / 30%), transparent 40%); }
.cinematic-video-material { object-position: 56% center; filter: saturate(.76) contrast(1.08); }

body[data-theme="mineral"] { --ink: #14232c; --ink-soft: #334754; --paper: #f4f2ed; --lavender: #e8edeb; --coral: #b85f42; --coral-dark: #90452f; --blue: #335f72; --violet: #798f99; --sage: #9ca79c; --muted: #627078; }
body[data-theme="mineral"] .hero { background: radial-gradient(circle at 88% 22%, rgb(121 143 153 / 38%), transparent 30%), linear-gradient(135deg, #f5f3ee 0%, #e7ece9 56%, #dbe4e7 100%); }
body[data-theme="mineral"] .story-sticky { background: radial-gradient(circle at 78% 45%, rgb(51 95 114 / 32%), transparent 34%), linear-gradient(125deg, #101c23 0%, #18313c 58%, #111c22 100%); }
body[data-theme="mineral"] .material-sticky { background: radial-gradient(circle at 78% 48%, rgb(184 95 66 / 26%), transparent 34%), radial-gradient(circle at 22% 20%, rgb(51 95 114 / 25%), transparent 32%), linear-gradient(128deg, #15272f 0%, #233b43 52%, #31231e 100%); }
.material-stage-label { position: absolute; z-index: 4; right: 4rem; bottom: 3.2rem; display: grid; gap: .15rem; margin: 0; padding-left: 1rem; border-left: 2px solid #bc8069; text-align: right; }
.material-stage-label span { font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.material-stage-label small { color: rgb(255 255 255 / 50%); }
.material-progress { position: absolute; z-index: 6; right: 2rem; top: 50%; display: grid; gap: 1.25rem; justify-items: center; transform: translateY(-50%); }
.material-progress::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; z-index: -2; width: 1px; background: rgb(255 255 255 / 16%); }
.material-progress i { position: absolute; top: 0; left: 50%; z-index: -1; width: 2px; height: var(--material-progress, 0%); background: #bc8069; transform: translateX(-50%); }
.material-progress span { display: grid; width: 32px; height: 32px; place-items: center; color: rgb(255 255 255 / 45%); background: #26342f; border: 1px solid rgb(255 255 255 / 14%); border-radius: 50%; font-size: .62rem; font-weight: 800; transition: color .3s ease, background .3s ease, border-color .3s ease; }
.material-progress span.is-active { color: var(--white); background: #9b5565; border-color: #9b5565; box-shadow: 0 0 0 7px rgb(155 85 101 / 16%); }

.before-after-section { background: #e9ece8; }
.before-after-wrap { display: grid; grid-template-columns: .65fr 1.35fr; gap: clamp(3rem, 6vw, 6rem); align-items: center; }
.before-after-copy h2 { font-size: clamp(2.7rem, 4.3vw, 4.6rem); }
.before-after-copy > p:last-child { color: var(--muted); }
.before-after-wrap { display: block; }
.before-after-copy { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .55fr); gap: clamp(2rem, 6vw, 6rem); align-items: end; margin-bottom: clamp(2rem, 4vw, 3rem); padding-bottom: clamp(1.8rem, 3vw, 2.5rem); }
.before-after-copy::after { content: ""; position: absolute; right: 0; bottom: 0; left: 0; height: 4px; background: linear-gradient(90deg, var(--coral) 0%, #9d6378 38%, rgb(113 56 79 / 18%) 72%, transparent 100%); border-radius: 999px; box-shadow: 0 3px 12px rgb(113 56 79 / 16%); transform: scaleX(0); transform-origin: left; transition: transform 1.25s cubic-bezier(.16,.8,.2,1) .12s; }
.before-after-copy.is-visible::after { transform: scaleX(1); }
.before-after-copy .eyebrow { margin-bottom: 1rem; }
.before-after-copy h2 { display: grid; gap: .04em; margin: 0; font-size: clamp(3rem, 5.2vw, 5.5rem); line-height: .95; }
.before-after-copy h2 span, .before-after-copy h2 strong { display: block; font: inherit; }
.before-after-copy h2 span { color: var(--coral); }
.before-after-copy h2 strong { color: var(--ink); font-weight: 850; }
.before-after-copy > p { max-width: 470px; margin: 0 0 .35rem; color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
@media (max-width: 760px) { .before-after-copy { grid-template-columns: 1fr; gap: 1.25rem; } .before-after-copy h2 { font-size: clamp(2.6rem, 12vw, 4rem); } .before-after-copy > p { font-size: .92rem; } }
.before-after { --before-position: 100%; position: relative; min-height: clamp(560px, 65vw, 720px); margin: 0; overflow: hidden; border: 9px solid rgb(255 255 255 / 55%); border-radius: 34px; box-shadow: var(--shadow); }
.before-after.is-visible { --before-position: 50%; }
.before-after > div { position: absolute; inset: 0; overflow: hidden; }
.before-after > div:nth-child(2) { z-index: 1; clip-path: inset(0 0 0 var(--before-position)); transition: clip-path 1.15s cubic-bezier(.16,.8,.2,1) .18s; }
.before-after img { width: 100%; height: 100%; object-fit: cover; }
.before-after > div > span { position: absolute; z-index: 2; top: 1rem; padding: .55rem .85rem; color: var(--ink); background: rgb(255 255 255 / 80%); border-radius: 999px; font-size: .72rem; font-weight: 800; text-transform: uppercase; backdrop-filter: blur(10px); }
.before-after > div:first-child span { left: 1rem; }
.before-after > div:nth-child(2) span { right: 1rem; }
.before-after > input { position: absolute; z-index: 5; inset: 0; width: 100%; height: 100%; margin: 0; opacity: 0; cursor: ew-resize; }
.before-after > i { position: absolute; z-index: 8; top: 50%; left: var(--before-position); display: grid; width: 54px; height: 54px; place-items: center; color: var(--white); background: var(--coral); border: 5px solid var(--white); border-radius: 50%; font-style: normal; pointer-events: none; transform: translate(-50%, -50%); transition: left 1.15s cubic-bezier(.16,.8,.2,1) .18s; }
.before-after::after { content: ""; position: absolute; z-index: 3; top: 0; bottom: 0; left: var(--before-position); width: 2px; background: var(--white); pointer-events: none; transform: translateX(-50%); transition: left 1.15s cubic-bezier(.16,.8,.2,1) .18s; }

.quote-section { position: relative; display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(3rem, 7vw, 7rem); width: min(calc(100% - 48px), var(--max)); margin-block: clamp(3rem, 7vw, 7rem); padding: clamp(2rem, 5vw, 5rem); overflow: hidden; color: var(--white); background: var(--blue); border-radius: 40px; }
.quote-section::before { content: ""; position: absolute; width: 440px; height: 440px; left: -260px; bottom: -260px; border: 1px solid rgb(255 255 255 / 20%); border-radius: 50%; box-shadow: 0 0 0 70px rgb(255 255 255 / 4%), 0 0 0 140px rgb(255 255 255 / 3%); }
.quote-copy { position: relative; z-index: 1; align-self: center; }
.quote-copy h2 { font-size: clamp(3.2rem, 5vw, 5.4rem); }
.quote-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 70%); }
.phone-card { position: relative; display: grid; margin-top: 2rem; padding: 1.1rem 3.4rem 1.1rem 1.2rem; color: var(--ink); background: var(--white); border-radius: 18px; text-decoration: none; }
.phone-card small { color: var(--muted); }
.phone-card strong { font-family: var(--display); font-size: clamp(1.5rem, 2.7vw, 2.2rem); letter-spacing: -.04em; }
.phone-card i { position: absolute; top: 50%; right: 1.2rem; color: var(--coral); font-style: normal; transform: translateY(-50%); }
.phone-card:hover i { animation: arrowNudge .7s ease; }
.quote-form { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; padding: clamp(1.4rem, 3vw, 2.5rem); color: var(--ink); background: var(--white); border-radius: 28px; box-shadow: 0 30px 60px rgb(9 16 70 / 25%); }
.form-head { grid-column: 1 / -1; display: grid; margin-bottom: .5rem; }
.form-head span { color: var(--coral); font-size: .73rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.form-head strong { font-family: var(--display); font-size: 1.55rem; }
.quote-form label { display: grid; gap: .45rem; font-size: .78rem; font-weight: 700; }
.quote-form input, .quote-form select, .quote-form textarea { width: 100%; min-height: 50px; padding: .75rem .9rem; border: 1px solid #d7d6df; border-radius: 12px; color: var(--ink); background: #f8f8fb; outline: none; transition: border .2s ease, box-shadow .2s ease; }
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgb(39 59 159 / 10%); }
.quote-form textarea { resize: vertical; }
.full-field { grid-column: 1 / -1; }
.form-note { margin: -.2rem 0 0; color: var(--muted); font-size: .72rem; text-align: center; }

.site-footer { padding: clamp(3rem, 6vw, 5rem) max(24px, calc((100vw - var(--max)) / 2)) 2rem; color: var(--white); background: var(--ink); }
.footer-main { display: flex; justify-content: space-between; gap: 3rem; padding-bottom: 4rem; }
.footer-brand { display: flex; align-items: center; gap: 2rem; text-decoration: none; }
.footer-brand img { width: 110px; padding: .35rem; background: var(--white); border-radius: 14px; }
.footer-brand span { color: #aaaabd; font-family: var(--display); font-size: 1.3rem; line-height: 1.2; }
.footer-contact { display: grid; text-align: right; }
.footer-contact small { margin-bottom: .3rem; color: #86869b; }
.footer-contact a { font-family: var(--display); font-size: clamp(1.05rem, 2vw, 1.5rem); font-weight: 600; text-decoration: none; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; gap: 2rem; align-items: center; padding-top: 1.5rem; color: #858598; border-top: 1px solid rgb(255 255 255 / 12%); font-size: .78rem; }
.footer-bottom nav { display: flex; gap: 1.5rem; }
.footer-bottom > a { justify-self: end; }
.mobile-actions { display: none; }
.page-progress { position: fixed; z-index: 80; top: 0; right: 0; bottom: 0; width: 4px; pointer-events: none; background: rgb(24 32 31 / 8%); }
.page-progress i { display: block; width: 100%; height: var(--page-progress, 0%); background: linear-gradient(180deg, #9a7d72, var(--coral), #7f9690); border-radius: 0 0 999px 999px; box-shadow: 0 0 14px rgb(118 81 93 / 32%); transition: height .08s linear; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.quote-form.reveal { transform: translateY(28px) scale(.97); }
.quote-form.reveal.is-visible { transform: translateY(0) scale(1); }
@keyframes float { 0%, 100% { transform: translateY(0) translateZ(55px); } 50% { transform: translateY(-10px) translateZ(55px); } }
@keyframes ticker { to { transform: translateX(-50%); } }
@keyframes orbit { to { transform: translate3d(18px, -24px, 0) scale(1.08); } }
@keyframes livePulse { 50% { box-shadow: 0 0 0 11px rgb(56 186 119 / 0%); } }
@keyframes arrowNudge { 50% { transform: translate(5px, -50%); } }
@keyframes scrollNudge { 50% { transform: translateY(5px); } }
@keyframes ringsFloat { to { transform: translateY(9px) rotate(5deg); } }
@keyframes paintGlint { to { background-position: 100% 0; } }

@media (max-width: 1050px) {
  .desktop-nav { gap: 1.2rem; }
  .hero { grid-template-columns: 1fr; padding-top: 145px; }
  .hero-copy { max-width: 760px; padding-right: 0; }
  .hero-visual { min-height: 610px; margin-top: -2rem; }
  .hero-visual > img { inset: 0 -4% 0 -4%; width: 108%; }
  .floating-card-top { right: 5%; }
  .floating-card-bottom { left: 6%; }
  .scroll-cue { display: none; }
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .service-feature { grid-column: 1 / -1; grid-row: auto; min-height: 560px; }
  .method { gap: 4rem; }
  .before-after-wrap { grid-template-columns: 1fr; }
  .before-after-copy { max-width: 720px; }
  .quote-section { grid-template-columns: 1fr; }
  .quote-copy { max-width: 720px; }
  .story-copy { width: min(46vw, 470px); }
  .story-stage { left: 28%; }
  .color-lab-inner { grid-template-columns: 1fr; }
  .color-lab-copy { max-width: 760px; }
}

@media (max-width: 760px) {
  .site-header { top: 10px; width: calc(100% - 20px); min-height: 64px; border-radius: 18px; }
  .brand { width: 88px; height: 46px; }
  .brand img { width: 82px; }
  .desktop-nav, .site-header > .button { display: none; }
  .mobile-menu { display: block; justify-self: end; position: relative; }
  .mobile-menu summary { display: grid; width: 44px; height: 44px; place-content: center; gap: 6px; list-style: none; cursor: pointer; }
  .mobile-menu summary::-webkit-details-marker { display: none; }
  .mobile-menu summary span { width: 22px; height: 2px; background: var(--ink); transition: transform .2s ease; }
  .mobile-menu[open] summary span:first-child { transform: translateY(4px) rotate(45deg); }
  .mobile-menu[open] summary span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .mobile-menu nav { position: absolute; right: -2px; top: 54px; display: grid; min-width: min(300px, calc(100vw - 36px)); padding: .7rem; background: var(--white); border-radius: 18px; box-shadow: var(--shadow); }
  .mobile-menu nav a { padding: .85rem; border-bottom: 1px solid var(--line); font-weight: 700; text-decoration: none; }
  .mobile-menu nav a:last-child { margin-top: .5rem; color: var(--white); background: var(--coral); border: 0; border-radius: 12px; }
  .hero { min-height: auto; padding: 115px 18px 42px; }
  .hero::before { display: none; }
  .hero-copy { padding: 1rem 0 0; }
  h1 { font-size: clamp(3.1rem, 14.5vw, 5rem); }
  h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }
  .hero-lead { font-size: 1.05rem; }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-proof { align-items: flex-start; }
  .palette-preview { align-items: flex-start; flex-wrap: wrap; }
  .palette-preview > span { flex-basis: 100%; }
  .hero-visual { min-height: 410px; margin: 1rem -18px 0; overflow: hidden; border-radius: 0; transform: none !important; }
  .hero-visual > img { inset: 0; width: 100%; height: 100%; border-radius: 0; object-position: center; }
  .hero-orb-one { width: 110px; height: 110px; right: 5px; }
  .hero-orb-two { width: 55px; height: 55px; left: 24px; }
  .floating-card { padding: .65rem .75rem; border-radius: 14px; }
  .floating-card-top { top: 8%; right: 14px; }
  .floating-card-bottom { bottom: 8%; left: 14px; }
  .visual-caption { display: none; }
  .ticker span { padding: 0 1.2rem; }
  .abstract-rings { right: -5px; width: 210px; height: 210px; }
  .abstract-rings i, .abstract-rings i:nth-child(2), .abstract-rings i:nth-child(3) { transform: none; }
  .immersive-story { height: 250vh; }
  .story-sticky { min-height: 650px; }
  .story-copy { top: 110px; left: 18px; width: calc(100% - 36px); transform: none; }
  .story-copy h2 { margin-bottom: 0; font-size: clamp(3.1rem, 14vw, 4.8rem); }
  .story-copy h2 { max-width: 340px; text-shadow: 0 5px 25px #090c1d; }
  .story-copy .eyebrow { margin-bottom: .75rem; }
  .story-steps { position: absolute; top: calc(100svh - 330px); left: 0; width: 100%; min-height: 210px; }
  .story-step { padding: 1.25rem; background: rgb(12 15 34 / 72%); border: 1px solid rgb(255 255 255 / 12%); border-radius: 20px; backdrop-filter: blur(14px); }
  .story-step h3 { font-size: 1.55rem; }
  .story-step p { font-size: .9rem; }
  .story-stage { inset: 27% -5% 8%; }
  .story-stage .cinematic-video { object-position: 68% center; }
  .story-stage::before { left: 58%; width: 100vw; }
  .story-stage-label { display: none; }
  .story-progress { right: 12px; top: 51%; }
  .story-progress span { width: 27px; height: 27px; }
  .material-story { height: 240vh; }
  .material-sticky { min-height: 650px; }
  .material-copy { top: 92px; left: 18px; width: calc(100% - 36px); transform: none; }
  .material-copy h2 { max-width: 355px; margin-bottom: 0; font-size: clamp(2.8rem, 12.6vw, 4.5rem); text-shadow: 0 5px 25px #111; }
  .material-copy .eyebrow { margin-bottom: .7rem; }
  .material-steps { position: absolute; top: calc(100svh - 315px); left: 0; width: 100%; min-height: 188px; }
  .material-step { padding: 1.15rem; background: rgb(20 31 28 / 76%); border: 1px solid rgb(255 255 255 / 13%); border-radius: 20px; backdrop-filter: blur(14px); }
  .material-step h3 { font-size: 1.5rem; }
  .material-step p { font-size: .88rem; }
  .material-cta { display: none; }
  .material-stage { inset: 26% -8% 7%; }
  .material-stage .cinematic-video { object-position: 64% center; }
  .material-stage::before { left: 58%; width: 105vw; }
  .material-stage-label { display: none; }
  .material-progress { right: 12px; top: 51%; }
  .material-progress span { width: 27px; height: 27px; }
  [data-depth-card].is-visible { transform: none; }
  .color-stage { min-height: 420px; margin-top: -2rem; }
  .room-scene { width: 112%; margin-left: -6%; }
  .room-frame { border-width: 7px; border-radius: 25px; }
  .swatch-fan { right: 2%; bottom: 0; transform: translateZ(90px) scale(.72); transform-origin: right bottom; }
  .section { padding: 5.5rem 18px; }
  .section-heading { grid-template-columns: 1fr; gap: 1rem; }
  .section-heading > p { max-width: 580px; }
  .bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .service-feature { grid-column: auto; min-height: 510px; }
  .service-card { min-height: 330px; border-radius: 24px; }
  .service-coral > div:not(.abstract-rings), .service-blue > div:first-of-type { max-width: 80%; }
  .projects { border-radius: 32px 32px 0 0; }
  .project-list { grid-template-columns: 1fr; gap: 3rem; }
  .project-card:nth-child(3) { grid-column: auto; }
  .project-image, .project-large .project-image { aspect-ratio: 4 / 3; }
  .projects-footer { align-items: stretch; flex-direction: column; }
  .method { grid-template-columns: 1fr; gap: 2rem; }
  .method-intro { position: static; }
  .method-list li { grid-template-columns: 46px 1fr; gap: 1rem; }
  .method-list > li > i { display: none; }
  .before-after { min-height: 430px; border-width: 6px; border-radius: 24px; }
  .before-after img { object-position: center; }
  .quote-section { width: calc(100% - 24px); margin-block: 3rem; padding: 1.2rem; border-radius: 28px; }
  .quote-copy { padding: 1.2rem .5rem 0; }
  .quote-form { grid-template-columns: 1fr; padding: 1.2rem; border-radius: 22px; }
  .full-field, .form-head { grid-column: auto; }
  .footer-main { flex-direction: column; }
  .footer-brand { align-items: flex-start; flex-direction: column; }
  .footer-contact { text-align: left; }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; padding-bottom: 5rem; }
  .footer-bottom > a { justify-self: start; }
  .mobile-actions { position: fixed; right: 0; bottom: 0; left: 0; z-index: 60; display: grid; grid-template-columns: .7fr .9fr 1.25fr; padding: .55rem; background: rgb(255 255 255 / 88%); border-top: 1px solid var(--line); backdrop-filter: blur(15px); }
  .mobile-actions a { min-height: 48px; display: grid; place-items: center; font-weight: 800; text-decoration: none; }
  .mobile-actions a:last-child { color: var(--white); background: var(--coral); border-radius: 12px; }
}

@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; }
  .method-list > li > span, .method-list > li > i { opacity: 1; transform: none; }
  .before-after { --before-position: 50%; }
  .page-progress { display: none; }
  .immersive-story { height: auto; min-height: auto; }
  .story-sticky { position: relative; height: auto; min-height: 0; padding: 6rem 24px; }
  .story-copy { position: relative; top: auto; left: auto; width: min(100%, 700px); transform: none; }
  .story-steps { display: grid; gap: 1rem; min-height: 0; }
  .story-step { position: relative; opacity: 1; transform: none; }
  .story-stage { position: relative; inset: auto; height: 420px; margin-top: 2rem; }
  .story-progress, .story-atmosphere { display: none; }
  .cinematic-video-shell { position: relative; height: 100%; }
  .material-story { height: auto; min-height: auto; }
  .material-sticky { position: relative; height: auto; min-height: 0; padding: 6rem 24px; }
  .material-copy { position: relative; top: auto; left: auto; width: min(100%, 700px); transform: none; }
  .material-steps { display: grid; gap: 1rem; min-height: 0; }
  .material-step { position: relative; opacity: 1; transform: none; }
  .material-stage { position: relative; inset: auto; height: 420px; margin-top: 2rem; }
  .material-progress { display: none; }
}
/* WordPress conversion form states */
.hp-field {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}
.form-status {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 0.75rem;
  font-weight: 700;
}
.form-status-success { background: #e8f4ed; color: #175c38; }
.form-status-error { background: #fff0ec; color: #8c2d1f; }


/* Nouvelle ouverture : film réel continu et composition minérale unifiée. */
.home .hero,
.home .ticker {
  display: none;
}

.immersive-story {
  height: 215vh;
  color: #20302c;
  background: #dfe3de;
}

.story-sticky { background: #dfe3de; }

.story-sticky::after {
  height: 28%;
  background: linear-gradient(transparent, rgb(25 38 33 / 24%));
}

.story-stage { inset: 0; }
.cinematic-video-shell { background: #dfe3de; }

.cinematic-video-shell::before {
  inset: 20px;
  border-color: rgb(255 255 255 / 34%);
  border-radius: 20px;
}

.cinematic-video-shell::after {
  background:
    linear-gradient(90deg, rgb(241 242 236 / 94%) 0%, rgb(236 238 231 / 78%) 31%, rgb(224 229 222 / 18%) 59%, rgb(31 45 39 / 8%) 100%),
    linear-gradient(0deg, rgb(25 38 33 / 27%), transparent 43%);
}

.cinematic-video-roller {
  object-position: 64% center;
  filter: saturate(.82) contrast(1.04) brightness(.98);
  animation: hero-film-in 1.1s ease-out both;
}

.story-copy {
  top: 50%;
  width: min(41vw, 560px);
  padding: clamp(2rem, 3.4vw, 3.4rem);
  color: #20302c;
  background: rgb(249 249 244 / 78%);
  border: 1px solid rgb(255 255 255 / 68%);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgb(22 35 31 / 18%);
  backdrop-filter: blur(24px) saturate(115%);
}

.story-copy h1 {
  max-width: 520px;
  margin-bottom: 2.1rem;
  color: #20302c;
  font-size: clamp(3.5rem, 5.35vw, 6.25rem);
  line-height: .92;
  letter-spacing: -.065em;
}

.story-copy .eyebrow-light { color: #52645e; }

.story-copy .eyebrow-light span,
.story-progress i { background: #a96f4b; }

.story-step > span { color: #71857e; }
.story-step h3 { color: #20302c; }
.story-step p { color: rgb(32 48 44 / 70%); }

.story-stage-label {
  right: 3rem;
  bottom: 2rem;
  padding: .75rem 1rem;
  color: #fff;
  background: rgb(24 36 32 / 55%);
  border: 1px solid rgb(255 255 255 / 20%);
  border-radius: 12px;
  backdrop-filter: blur(12px);
}

.story-stage-label small { color: rgb(255 255 255 / 68%); }
.story-progress::before { background: rgb(255 255 255 / 35%); }

.story-progress span {
  color: rgb(255 255 255 / 72%);
  background: rgb(38 57 51 / 72%);
  border-color: rgb(255 255 255 / 24%);
  backdrop-filter: blur(8px);
}

.story-progress span.is-active {
  background: #a96f4b;
  border-color: #a96f4b;
  box-shadow: 0 0 0 7px rgb(169 111 75 / 16%);
}

@keyframes hero-film-in {
  from { opacity: 0; transform: scale(1.045); }
  to { opacity: 1; transform: scale(1.015); }
}

@media (max-width: 760px) {
  .immersive-story { height: 205vh; }
  .story-sticky { min-height: 650px; }
  .story-stage { inset: 0; }

  .cinematic-video-shell::before {
    inset: 10px;
    border-radius: 14px;
  }

  .cinematic-video-shell::after {
    background: linear-gradient(0deg, rgb(233 236 230 / 96%) 0%, rgb(233 236 230 / 72%) 38%, transparent 68%);
  }

  .cinematic-video-roller,
  .story-stage .cinematic-video { object-position: 65% center; }

  .story-copy {
    top: auto;
    right: 14px;
    bottom: 18px;
    left: 14px;
    width: auto;
    padding: 1.35rem;
    transform: none;
    border-radius: 18px;
  }

  .story-copy h1 {
    max-width: 330px;
    margin-bottom: 1.15rem;
    font-size: clamp(2.65rem, 12vw, 4.15rem);
    text-shadow: none;
  }

  .story-copy .eyebrow { margin-bottom: .7rem; }

  .story-steps {
    position: relative;
    top: auto;
    min-height: 164px;
  }

  .story-step {
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    backdrop-filter: none;
  }

  .story-progress {
    top: 31%;
    right: 12px;
  }

  .story-stage-label { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .immersive-story { height: auto; }

  .story-copy {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 700px);
    transform: none;
  }

  .story-stage {
    position: relative;
    inset: auto;
    height: 420px;
    margin-top: 2rem;
  }

  .cinematic-video-roller { animation: none; }
}


/* Hero v3 : séquence photographique compacte, sans vidéo. */
.story-sticky {
  background: #eef0ec;
}

.story-sticky::after {
  display: none;
}

.story-copy {
  left: clamp(48px, 8vw, 140px);
  width: min(36vw, 500px);
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.story-copy h1 {
  font-size: clamp(3.6rem, 5.45vw, 6.5rem);
}

.story-stage {
  top: 50%;
  right: clamp(24px, 4vw, 72px);
  bottom: auto;
  left: auto;
  width: min(94vw, 117svh);
  height: auto;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 75%);
  border-radius: 30px;
  box-shadow: 0 34px 90px rgb(32 48 44 / 20%);
  transform: translateY(-50%);
}

.cinematic-sequence-shell {
  inset: 0;
  border-radius: inherit;
  background: #dde1dc;
}

.cinematic-sequence-shell::before,
.cinematic-sequence-shell::after {
  display: none;
}

.cinematic-frame-sequence {
  position: absolute;
  inset: 0;
  background-color: #dde1dc;
  background-image: var(--sequence-image);
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: 400% 400%;
  will-change: background-position;
}

.story-stage-label {
  right: 1.1rem;
  bottom: 1.1rem;
  padding: .7rem .85rem;
  text-align: right;
}

@media (max-width: 760px) {
  .immersive-story {
    height: 215vh;
  }

  .story-stage {
    top: 72px;
    right: 14px;
    bottom: auto;
    left: 14px;
    width: auto;
    height: auto;
    aspect-ratio: 3 / 2;
    border-radius: 22px;
    transform: none;
  }

  .story-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
    padding: 1.3rem;
    background: rgb(249 249 244 / 88%);
    border: 1px solid rgb(255 255 255 / 76%);
    border-radius: 18px;
    box-shadow: 0 18px 54px rgb(32 48 44 / 16%);
    backdrop-filter: blur(18px);
  }

  .story-copy h1 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-stage {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: min(100%, 760px);
    height: auto;
    aspect-ratio: 3 / 2;
    margin-top: 2rem;
    transform: none;
  }

  .story-copy {
    background: rgb(249 249 244 / 88%);
  }
}


/* Hero v4 : scène photographique plein écran. */
.story-stage {
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.cinematic-sequence-shell {
  border-radius: 0;
}

.cinematic-sequence-shell::before {
  display: block;
  inset: 18px;
  border-color: rgb(255 255 255 / 28%);
  border-radius: 18px;
}

.cinematic-sequence-shell::after {
  display: block;
  background: linear-gradient(90deg, rgb(245 241 232 / 88%) 0%, rgb(245 241 232 / 68%) 28%, rgb(245 241 232 / 12%) 54%, transparent 70%);
}

.cinematic-frame-sequence {
  inset: auto;
  top: 50%;
  left: 50%;
  width: max(100vw, 150svh);
  height: auto;
  aspect-ratio: 3 / 2;
  background-size: 400% 400%;
  transform: translate(-50%, -50%);
}

.story-copy {
  left: clamp(44px, 7vw, 120px);
  width: min(58vw, 680px);
}

.story-copy h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 4.25vw, 5.2rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -.05em;
}

.story-stage-label {
  right: 2rem;
  bottom: 1.5rem;
}

@media (max-width: 760px) {
  .story-stage {
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    transform: none;
  }

  .cinematic-sequence-shell::before {
    inset: 9px;
    border-radius: 12px;
  }

  .cinematic-sequence-shell::after {
    background: linear-gradient(0deg, rgb(245 241 232 / 97%) 0%, rgb(245 241 232 / 82%) 43%, rgb(245 241 232 / 10%) 68%, transparent 78%);
  }

  .story-copy {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: auto;
  }

  .story-copy h1 {
    max-width: 350px;
    font-size: clamp(2.25rem, 9.5vw, 3rem);
    line-height: 1.02;
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-stage {
    position: relative;
    inset: auto;
    width: 100%;
    height: min(72svh, 700px);
    aspect-ratio: auto;
    transform: none;
  }
}


/* Hero confiance : preuves concrètes avant la promesse commerciale. */
.story-trust-bar {
  position: absolute;
  z-index: 7;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: grid;
  grid-template-columns: 1.25fr repeat(3, minmax(0, 1fr));
  overflow: hidden;
  color: #20302c;
  background: rgb(249 247 242 / 82%);
  border: 1px solid rgb(255 255 255 / 72%);
  border-radius: 18px;
  box-shadow: 0 18px 54px rgb(32 48 44 / 14%);
  backdrop-filter: blur(18px) saturate(110%);
}

.story-trust-item {
  min-width: 0;
  min-height: 76px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .16rem;
  padding: .8rem 1.15rem;
  border-left: 1px solid rgb(32 48 44 / 11%);
}

.story-trust-item:first-child {
  border-left: 0;
}

.story-trust-item strong {
  font-family: var(--display);
  font-size: clamp(.95rem, 1.25vw, 1.16rem);
  font-weight: 700;
  line-height: 1.1;
}

.story-trust-item small {
  overflow: hidden;
  color: rgb(32 48 44 / 64%);
  font-size: .72rem;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.story-trust-google {
  color: inherit;
  text-decoration: none;
  transition: background .25s ease;
}

.story-trust-google:hover,
.story-trust-google:focus-visible {
  background: rgb(169 111 75 / 10%);
}

.story-trust-google > span {
  color: #a96f4b;
  font-size: .72rem;
  letter-spacing: .08em;
}

.story-copy h1 {
  max-width: 760px;
  font-size: clamp(2.65rem, 3.9vw, 4.8rem);
}

@media (max-width: 760px) {
  .story-trust-bar {
    top: 104px;
    right: 14px;
    bottom: auto;
    left: 14px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-radius: 14px;
  }

  .story-trust-team {
    display: none;
  }

  .story-trust-item {
    min-height: 58px;
    align-items: center;
    padding: .55rem .35rem;
    border-left: 1px solid rgb(32 48 44 / 10%);
    text-align: center;
  }

  .story-trust-item strong {
    font-size: .78rem;
    white-space: nowrap;
  }

  .story-trust-item small {
    display: none;
  }

  .story-trust-google > span {
    font-size: .58rem;
  }

  .story-copy h1 {
    max-width: 360px;
    font-size: clamp(2.15rem, 8.8vw, 2.85rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .story-trust-bar {
    position: relative;
    inset: auto;
    margin: 1rem 24px;
  }
}

/* Direction artistique graphite : gris minéraux et bordeaux réservé aux actions. */
.site-header {
  background: rgb(248 249 247 / 91%);
  border-color: rgb(32 38 36 / 11%);
  box-shadow: 0 12px 38px rgb(32 38 36 / 9%);
}

.desktop-nav a { color: var(--ink); }
:focus-visible { outline-color: var(--coral); }

.cinematic-sequence-shell::after {
  background: linear-gradient(90deg, rgb(242 243 241 / 94%) 0%, rgb(242 243 241 / 79%) 30%, rgb(242 243 241 / 24%) 54%, transparent 72%);
}

.story-copy h1,
.story-step h3 { color: #1c2220; }

.story-copy .eyebrow-light,
.story-step > span { color: var(--coral); }

.story-step p {
  color: rgb(28 34 32 / 82%);
  font-weight: 500;
}

.story-progress::before { background: rgb(32 38 36 / 20%); }
.story-progress span {
  color: rgb(32 38 36 / 70%);
  background: rgb(247 248 246 / 86%);
  border-color: rgb(32 38 36 / 14%);
}
.story-progress span.is-active {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 0 7px rgb(113 56 79 / 13%);
}

.story-trust-bar {
  color: var(--ink);
  background: rgb(248 249 247 / 92%);
  border-color: rgb(255 255 255 / 78%);
  box-shadow: 0 18px 50px rgb(32 38 36 / 12%);
}
.story-trust-item { border-left-color: rgb(32 38 36 / 12%); }
.story-trust-item small { color: rgb(32 38 36 / 72%); }
.story-trust-google > span { color: var(--coral); }
.story-trust-google:hover,
.story-trust-google:focus-visible { background: rgb(113 56 79 / 9%); }

.circle-link {
  color: var(--white);
  background: var(--coral);
}
.circle-link-light {
  color: var(--white);
  background: rgb(255 255 255 / 14%);
}

.service-blue { background: #56615e; }
.services::after { background: #e7e3e5; }
.projects,
.material-story,
.site-footer { background: #222725; }
.before-after-section { background: var(--lavender); }
.color-lab { background: #e8eae8; }
.method-list > li > span { background: #e1e4e2; }

.quote-form input,
.quote-form select,
.quote-form textarea {
  color: var(--ink);
  background: #f8f9f7;
  border-color: #cfd4d1;
}

@media (max-width: 760px) {
  .cinematic-sequence-shell::after {
    background: linear-gradient(0deg, rgb(242 243 241 / 97%) 0%, rgb(242 243 241 / 88%) 46%, rgb(242 243 241 / 14%) 70%, transparent 80%);
  }
}

/* Passe de finition : une seule signature graphite–bordeaux sur toute la page. */
.eyebrow > span {
  box-shadow: 0 0 0 5px rgb(113 56 79 / 13%);
}

.section-heading::after {
  background: linear-gradient(90deg, var(--coral), var(--violet) 30%, #c4cbc7 58%, transparent 88%);
  box-shadow: 0 3px 12px rgb(113 56 79 / 14%);
}

.eyebrow-light { color: #d8a9ba; }
.section-heading-dark > p,
.projects-footer > p { color: #bdc4c1; }
.project-info p { color: #adb6b2; }
.project-info > i { color: #7f8985; }

.method-list li::before {
  background: linear-gradient(90deg, rgb(113 56 79 / 10%), rgb(85 97 94 / 5%), transparent 78%);
}

.material-sticky {
  background: linear-gradient(128deg, #1b201e 0%, #29312e 56%, #202422 100%);
}
.material-step > span { color: #d8a9ba; }
.material-step p { color: rgb(255 255 255 / 72%); }
.material-stage-label { border-left-color: #b97b91; }
.material-progress i { background: var(--coral); }
.material-progress span.is-active {
  color: var(--white);
  background: var(--coral);
  border-color: var(--coral);
  box-shadow: 0 0 0 7px rgb(113 56 79 / 16%);
}

.quote-section {
  background: #222725;
  border: 1px solid rgb(255 255 255 / 8%);
  box-shadow: 0 30px 80px rgb(32 38 36 / 14%);
}
.quote-section::before {
  border-color: rgb(216 169 186 / 24%);
  box-shadow: 0 0 0 70px rgb(113 56 79 / 7%), 0 0 0 140px rgb(113 56 79 / 4%);
}
.quote-copy h2 { max-width: 620px; }
.quote-copy > p:not(.eyebrow) { color: rgb(255 255 255 / 78%); }
.phone-card {
  background: #f8f9f7;
  border: 1px solid rgb(255 255 255 / 70%);
  box-shadow: 0 18px 42px rgb(8 12 10 / 18%);
}
.quote-form {
  border: 1px solid rgb(32 38 36 / 8%);
  box-shadow: 0 30px 64px rgb(8 12 10 / 28%);
}
.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgb(113 56 79 / 11%);
}

.footer-brand span { color: #b8c0bc; }
.footer-contact small,
.footer-bottom { color: #aab2ae; }
.page-progress i {
  background: linear-gradient(180deg, var(--violet), var(--coral), #59635f);
  box-shadow: 0 0 14px rgb(113 56 79 / 30%);
}

@media (max-width: 760px) {
  .quote-section {
    margin-block: 2.5rem;
    border-radius: 28px;
  }
  .footer-brand span { color: #c2c8c5; }
}

.story-progress,
.material-progress { display: none; }

/* Navigation équilibrée : trois zones visuelles de même poids. */
.site-header { grid-template-columns: 1fr auto 1fr; padding-inline: 20px 10px; }
.brand { justify-self: start; }
.desktop-nav { gap: clamp(2rem, 3.4vw, 3.6rem); }
.site-header > .button { justify-self: end; }

@media (max-width: 1050px) {
  .desktop-nav { gap: 1.5rem; }
}

@media (max-width: 760px) {
  .site-header { grid-template-columns: 1fr auto; padding-inline: 16px 10px; }
}

/* Micro-interactions discrètes pour les éléments qui invitent à l’action. */
.story-trust-item,
.method-step,
.services-assurance li { transition: transform .35s cubic-bezier(.16,.8,.2,1), background .3s ease, border-color .3s ease, box-shadow .35s ease, color .3s ease; }
.story-trust-item strong { transition: color .3s ease; }
.before-after > i { transition: left 1.15s cubic-bezier(.16,.8,.2,1) .18s, transform .3s ease, box-shadow .3s ease; }

@media (hover: hover) and (pointer: fine) {
  .story-trust-item:hover { background: rgb(113 56 79 / 7%); transform: translateY(-3px); }
  .story-trust-item:hover strong { color: var(--coral); }
  .method-step:hover { border-color: rgb(113 56 79 / 28%); box-shadow: 0 24px 58px rgb(34 39 37 / 11%); transform: translateX(7px); }
  .method-step:hover::before { opacity: 1; transform: translateX(0); }
  .services-assurance li:hover { color: var(--ink); transform: translateY(-2px); }
  .before-after:hover > i { box-shadow: 0 0 0 10px rgb(113 56 79 / 16%); transform: translate(-50%, -50%) scale(1.08); }
}

/* Finition mobile : confort tactile, iPhone et rythme des séquences. */
.quote-form input:not([type="hidden"]),
.quote-form select,
.quote-form textarea { font-size: 16px; }

@media (max-width: 760px) {
  html { scroll-padding-top: 92px; }
  #avant-apres, #services, #realisations, #methode, #couleurs, #devis, #devis-form { scroll-margin-top: 92px; }
  .site-header { top: max(10px, env(safe-area-inset-top)); }
  .material-story { height: 220vh; }
  .mobile-actions { padding-bottom: calc(.55rem + env(safe-area-inset-bottom)); }
  .mobile-menu summary,
  .mobile-menu nav a,
  .mobile-actions a,
  .button,
  .before-after input { touch-action: manipulation; }
}
