@font-face { font-family: Antonio; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/antonio-400.ttf') format('truetype'); }
@font-face { font-family: Antonio; font-style: normal; font-weight: 500 700; font-display: swap; src: url('../assets/fonts/antonio-500.ttf') format('truetype'); }
@font-face { font-family: Manrope; font-style: normal; font-weight: 400 500; font-display: swap; src: url('../assets/fonts/manrope-400.ttf') format('truetype'); }
@font-face { font-family: Manrope; font-style: normal; font-weight: 600 800; font-display: swap; src: url('../assets/fonts/manrope-600.ttf') format('truetype'); }
:root {
  --petrol: #123f55;
  --petrol-deep: #092b3a;
  --acid: #d7ea5b;
  --white: #ffffff;
  --ink: #0d2935;
  --line: rgba(18, 63, 85, .22);
  --display: "Antonio", "Arial Narrow", sans-serif;
  --body: "Manrope", Arial, sans-serif;
  --pad: clamp(1.25rem, 4vw, 4.75rem);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
button, input, textarea { color: inherit; font: inherit; }
:focus-visible { outline: 3px solid #4b8fad; outline-offset: 5px; }
[hidden] { display: none !important; }
::selection { background: var(--acid); color: var(--petrol-deep); }

.skip-link { position: fixed; top: .5rem; left: .5rem; z-index: 200; padding: .7rem 1rem; background: var(--acid); color: var(--ink); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
.progress { position: fixed; top: 0; left: 0; width: 100%; height: 3px; z-index: 160; pointer-events: none; }
.progress span { display: block; width: 100%; height: 100%; background: var(--acid); transform: scaleX(0); transform-origin: left; }

.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 92px; padding: 0 var(--pad); display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid transparent; transition: background .35s, color .35s, height .35s, border-color .35s; }
.site-header.is-scrolled { height: 72px; background: rgba(255,255,255,.92); border-color: var(--line); backdrop-filter: blur(14px); }
.brand { position: relative; z-index: 111; display: inline-flex; align-items: center; gap: .75rem; }
.brand__mark { width: 34px; height: 46px; fill: var(--petrol); }
.brand__leaf { fill: var(--acid); }
.brand__type { display: grid; line-height: 1; }
.brand__type b { font-family: var(--display); font-size: 1.9rem; font-weight: 400; letter-spacing: .01em; }
.brand__type small { margin-top: .28rem; font-size: .52rem; font-weight: 600; letter-spacing: .38em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(1.25rem, 2.4vw, 2.75rem); font-size: .82rem; font-weight: 600; }
.site-nav > a:not(.nav-cta) { position: relative; }
.site-nav > a:not(.nav-cta)::after { content: ""; position: absolute; bottom: -.35rem; left: 0; width: 100%; height: 1px; background: currentColor; transform: scaleX(0); transform-origin: right; transition: transform .3s; }
.site-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { display: inline-flex; align-items: center; gap: 1.2rem; padding: .78rem 1.05rem; border: 1px solid var(--petrol); background: var(--petrol); color: #fff; }
.nav-cta span { color: var(--acid); }
.menu-toggle { display: none; }

.hero { position: relative; min-height: 100svh; padding: 150px var(--pad) 45px; display: flex; flex-direction: column; justify-content: space-between; isolation: isolate; overflow: hidden; }
.hero::before { content: ""; position: absolute; inset: 0; z-index: -3; background: linear-gradient(90deg, transparent calc(50% - .5px), rgba(18,63,85,.07) 50%, transparent calc(50% + .5px)); }
.hero__grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); column-gap: 4vw; }
.eyebrow, .kicker { margin: 0; font-size: .72rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow { grid-column: 1 / -1; display: flex; justify-content: space-between; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.eyebrow span { color: rgba(13,41,53,.55); }
.hero__title { grid-column: 1; min-width: 0; margin: clamp(2.2rem, 5vh, 4rem) 0 0; font-family: var(--display); font-weight: 500; font-size: clamp(4rem, 8.2vw, 9rem); line-height: .94; letter-spacing: -.025em; text-transform: uppercase; }
.hero__line { display: block; }
.hero__line:nth-child(2) { color: transparent; -webkit-text-stroke: 1.5px var(--petrol); }
.hero__title em { font-style: normal; }
.accent { color: var(--acid); -webkit-text-stroke: 0; }
.hero__intro { grid-column: 2; align-self: end; max-width: 34rem; padding-bottom: .75rem; }
.hero__intro p { margin: 0 0 2rem; font-size: clamp(1rem, 1.25vw, 1.2rem); line-height: 1.65; }
.text-link { display: inline-flex; justify-content: space-between; align-items: center; gap: 2.5rem; min-width: 240px; padding: .8rem 0; border-bottom: 1px solid currentColor; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.text-link span { color: currentColor; font-size: 1.1rem; transition: transform .25s; }
.text-link:hover span { transform: translate(3px, -3px); }
.hero-a { position: absolute; z-index: -1; top: 16%; right: -3vw; width: min(40vw, 600px); color: rgba(18,63,85,.055); transform: rotate(6deg); }
.hero-a svg { fill: currentColor; }
.hero-a__leaf { fill: var(--acid); opacity: .9; }
.hero__foot { position: relative; z-index: 2; display: flex; align-items: center; gap: 1.1rem; width: max-content; font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; }
.hero__foot i { width: 38px; height: 1px; background: var(--petrol); opacity: .4; }
.scroll-hint { position: absolute; z-index: 3; right: var(--pad); bottom: 40px; display: flex; align-items: center; gap: .7rem; font-size: .65rem; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; transform: rotate(90deg); transform-origin: right bottom; }
.scroll-hint span { width: 45px; height: 1px; background: var(--petrol); overflow: hidden; }

.ticker { overflow: hidden; background: var(--acid); color: var(--petrol-deep); border-block: 1px solid var(--petrol); }
.ticker__track { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1.25rem 2rem; align-items: center; padding: 1.5rem var(--pad); font-family: var(--display); font-size: clamp(1.1rem, 2vw, 1.7rem); letter-spacing: .08em; text-transform: uppercase; }
.ticker__track > span { display: flex; gap: 1rem; align-items: center; }
.ticker__track img { flex-shrink: 0; }

section { position: relative; }
.section-dark { background: var(--petrol); color: var(--white); }
.services { padding: clamp(6rem, 12vw, 11rem) var(--pad); }
.section-head { display: grid; grid-template-columns: .32fr minmax(0,1fr) .42fr; gap: 3vw; align-items: start; }
.section-head h2 { margin: -.08em 0 0; min-width: 0; font-family: var(--display); font-size: clamp(2.9rem, 5vw, 5.8rem); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; text-transform: uppercase; }
.section-head > p:last-child { margin: 0; align-self: end; font-size: .95rem; opacity: .76; }
.service-list { margin-top: clamp(5rem, 9vw, 9rem); border-top: 1px solid rgba(255,255,255,.35); }
.service { display: grid; grid-template-columns: .15fr 1fr .62fr auto; align-items: center; gap: 2rem; min-height: 132px; border-bottom: 1px solid rgba(255,255,255,.35); transition: background .3s, color .3s, padding .3s; }
.service:hover { padding-inline: 1.5rem; background: var(--acid); color: var(--petrol-deep); }
.service__icon { width: 32px; height: 32px; }
.service h3 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 5.2rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.service p { margin: 0; font-size: .85rem; opacity: .75; }
.service__arrow { color: var(--acid); font-size: 1.5rem; }
.service:hover .service__arrow { color: var(--petrol); transform: translate(3px,-3px); }

.projects { padding: clamp(6rem, 11vw, 10rem) var(--pad); }
.section-head--light { color: var(--petrol); }
.section-head h2 em { display: block; padding-block: .08em; color: transparent; font-style: normal; -webkit-text-stroke: 1.5px var(--petrol); }
.projects-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: clamp(1.2rem, 2.8vw, 3rem); margin-top: clamp(5rem, 9vw, 9rem); }
.project { grid-column: span 6; display: block; }
.project--wide { grid-column: span 7; }
.project--tall { grid-column: 9 / span 4; margin-top: 10vw; }
.project:nth-child(3) { grid-column: 2 / span 4; margin-top: 2vw; }
.project:nth-child(4) { grid-column: 7 / span 6; margin-top: -3vw; }
.project figure { position: relative; margin: 0; overflow: hidden; background: #e7e9e8; aspect-ratio: 4 / 3; transform: scale(var(--project-scale, 1)); transform-origin: center; }
.project--tall figure, .project:nth-child(3) figure { aspect-ratio: 4 / 5; }
.project img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.85); transition: transform .7s cubic-bezier(.2,.7,.2,1), filter .5s; }
.project:hover img { transform: scale(1.04); filter: saturate(1); }
.project figure::after { content: "VEDI PROGETTO"; position: absolute; inset: auto 0 0 auto; padding: .7rem 1rem; background: var(--acid); color: var(--petrol-deep); font-size: .75rem; font-weight: 600; letter-spacing: .12em; transform: translateY(101%); transition: transform .3s; }
.project:hover figure::after { transform: none; }
.project__meta { display: grid; grid-template-columns: 1fr auto; gap: .35rem 1rem; padding-top: 1rem; border-top: 1px solid var(--petrol); }
.project__meta span { grid-column: 1; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; opacity: .6; }
.project__meta b { grid-column: 1; font-family: var(--display); font-size: clamp(1.8rem, 3vw, 3rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
.project__meta i { grid-row: 1 / 3; grid-column: 2; align-self: center; font-size: .72rem; font-style: normal; }
.projects-link { margin-top: 5rem; text-align: center; }
.outline-link { display: inline-flex; align-items: center; justify-content: space-between; min-width: 290px; padding: 1.2rem 1.4rem; border: 1px solid var(--petrol); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; transition: background .3s, color .3s; }
.outline-link:hover { background: var(--petrol); color: #fff; }
.outline-link span { color: currentColor; }
.outline-link:hover span { color: var(--acid); }
.projects-grid { align-items: start; row-gap: 4rem; }
.projects-grid--more { margin-top: 5rem; }
.project:nth-child(4) { margin-top: 5vw; }
.project:focus-visible figure { outline: 3px solid var(--petrol); outline-offset: 4px; }

.statement { min-height: 100svh; padding: clamp(6rem, 9vw, 9rem) var(--pad); display: flex; flex-direction: column; justify-content: space-between; background: var(--acid); color: var(--petrol-deep); overflow: hidden; }
.statement h2 { position: relative; z-index: 2; align-self: flex-end; width: min(100%, 1100px); margin: 8vh 0 0; font-family: var(--display); font-size: clamp(4rem, 10.8vw, 10.8rem); font-weight: 500; line-height: .9; letter-spacing: -.03em; text-align: right; text-transform: uppercase; }
.statement h2 > span { display: block; position: relative; padding-block: .015em; }
.statement h2 > .statement__outline { color: transparent; -webkit-text-stroke: 1.8px var(--petrol-deep); z-index: 1; }
.statement__mark { position: absolute; left: -5vw; top: 8%; width: min(44vw, 610px); color: rgba(18,63,85,.12); transform: rotate(-7deg); }
.statement__mark svg { fill: currentColor; }

.studio { padding: clamp(6rem, 11vw, 10rem) var(--pad); }
.studio__title { display: grid; grid-template-columns: .38fr 1fr; gap: 4vw; }
.studio__title h2 { margin: 0; min-width: 0; font-family: var(--display); font-size: clamp(3rem, 5vw, 5.8rem); font-weight: 400; line-height: 1.1; letter-spacing: -.02em; text-transform: uppercase; }
.studio__title h2 em { color: #32627a; font-style: normal; }
.process { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); margin-top: clamp(3rem, 5vw, 5rem); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.process__item { min-height: 320px; padding: 1.6rem 1.5rem 2rem 0; border-right: 1px solid var(--line); }
.process__item + .process__item { padding-left: 1.5rem; }
.process__item:last-child { border-right: 0; }
.process__item span { display: block; font-size: .7rem; letter-spacing: .16em; opacity: .5; }
.process__item h3 { margin: 2rem 0 .5rem; font-family: var(--display); font-size: 3.8rem; font-weight: 400; line-height: 1.15; }
.process__item h4 { margin: 1.3rem 0 .8rem; font-size: 1.15rem; line-height: 1.5; }
.process__item .discipline { font-size: .8rem; letter-spacing: .03em; opacity: .8; }
.process__item p { margin: 0; font-size: 1rem; color: #3a5764; }
.process__item .query-example { margin-top: 1.5rem; border-top: 1px solid var(--line); padding-top: 1.2rem; font-size: .9rem; font-weight: 600; color: var(--petrol); }
.ai-why { display: flex; gap: 1.5rem; padding: 2rem; margin-top: 2rem; background: var(--acid); }
.ai-why > img { flex-shrink: 0; align-self: flex-start; }
.ai-why h3 { margin: 0 0 1rem; font-size: 1.4rem; line-height: 1.4; }
.ai-why p { margin: 0; max-width: 900px; }
.ai-why .source-note { margin-top: 1rem; font-size: .85rem; }
.source-note a { text-decoration: underline; text-underline-offset: .2em; }

.local-section { display: grid; grid-template-columns: .8fr 1.2fr; min-height: 80svh; background: var(--petrol-deep); color: #fff; }
.local-section__label { display: flex; flex-direction: column; justify-content: space-between; padding: var(--pad); border-right: 1px solid rgba(255,255,255,.2); background: repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.04) 25%); }
.local-section__label span { font-family: var(--display); font-size: clamp(6rem, 13vw, 13rem); line-height: 1.05; writing-mode: vertical-rl; transform: rotate(180deg); text-transform: uppercase; color: var(--acid); }
.local-section__label small { font-size: .65rem; letter-spacing: .16em; text-transform: uppercase; }
.local-section__copy { align-self: center; padding: clamp(4rem, 9vw, 9rem); }
.local-section__copy h2 { margin: 1.5rem 0 2.5rem; font-family: var(--display); font-size: clamp(3.4rem, 5.8vw, 6.5rem); font-weight: 400; line-height: 1.06; letter-spacing: -.02em; text-transform: uppercase; }
.local-section__copy > p:not(.kicker) { max-width: 580px; font-size: 1rem; opacity: .72; }
.text-link--light { margin-top: 2.5rem; }
.text-link--light span { color: var(--acid); }

.testimonials { padding: clamp(6rem, 11vw, 10rem) var(--pad); }
.testimonials .section-head { grid-template-columns: .32fr 1.42fr; }
.review-context { max-width: 760px; margin: 2rem 0; color: #3a5764; font-size: .9rem; }
.quotes { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 1.25rem; margin-top: 2rem; }
.quotes blockquote { margin: 0; padding: 1.65rem; border: 1px solid var(--line); display: flex; flex-direction: column; background: #fff; }
.quotes blockquote p { margin: 1.2rem 0 1.5rem; font-family: var(--body); font-size: 1.1rem; line-height: 1.55; }
.quotes footer { display: grid; gap: .35rem; margin-top: auto; }
.quotes footer b { font-size: .9rem; font-weight: 600; }
.quotes footer span { color: #4b616b; font-size: .75rem; }
.stars { color: #e9ac00; font-size: 1.35rem; letter-spacing: .15em; line-height: 1; }
.reviews-source { margin-top: 2rem; }

.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: 8vw; padding: clamp(6rem, 10vw, 9rem) var(--pad); background: #f3f6f6; }
.faq__title h2 { margin: 1rem 0 0; font-family: var(--display); font-size: clamp(3.2rem, 5.5vw, 6rem); font-weight: 400; line-height: 1.08; text-transform: uppercase; }
.faq__list { border-top: 1px solid var(--petrol); }
.faq details { border-bottom: 1px solid var(--petrol); }
.faq summary { position: relative; padding: 1.7rem 3rem 1.7rem 0; cursor: pointer; list-style: none; font-size: 1.05rem; font-weight: 600; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: .5rem; top: 50%; font-family: var(--display); font-size: 1.8rem; font-weight: 300; transform: translateY(-50%); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 650px; margin: 0 0 1.8rem; font-size: .9rem; opacity: .7; }

.contact { min-height: 88svh; padding: clamp(5rem, 9vw, 9rem) var(--pad); display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr); align-items: center; gap: clamp(2rem,5vw,6rem); background: var(--petrol); color: #fff; overflow: hidden; }
.contact__copy { position: relative; z-index: 2; }
.contact h2 { position: relative; z-index: 2; margin: 2rem 0 3rem; font-family: var(--display); font-size: clamp(3.5rem, 7.5vw, 8rem); font-weight: 500; line-height: 1.03; letter-spacing: -.025em; text-transform: uppercase; }
.contact h2 em { color: var(--acid); font-style: normal; }
.contact__link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: .8rem; align-self: flex-start; padding-bottom: .5rem; border-bottom: 1px solid rgba(255,255,255,.5); font-size: clamp(1rem, 1.8vw, 1.5rem); }
.contact__link span { color: var(--acid); }
.contact__symbol { position: absolute; right: -5vw; bottom: -20%; width: min(45vw, 680px); opacity: .08; filter: brightness(0) invert(1); transform: rotate(8deg); }

.site-footer { display: grid; grid-template-columns: 1fr auto 1.1fr auto; gap: 4vw; align-items: end; padding: 4rem var(--pad); background: var(--petrol-deep); color: rgba(255,255,255,.72); border-top: 1px solid rgba(255,255,255,.15); font-size: .68rem; }
.brand--footer { color: #fff; align-self: start; }
.brand--footer img { width: 28px; filter: brightness(0) invert(1); }
.brand--footer .brand__type b { font-size: 1.5rem; }
.site-footer > div { display: flex; flex-direction: column; gap: .5rem; text-transform: uppercase; letter-spacing: .1em; }
.site-footer p { margin: 0; line-height: 1.8; }
.site-footer__legal { text-align: right; }

.price-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: .75rem; margin-bottom: 1.5rem; }
.price-grid > div { background: #fff; border-top: 3px solid var(--petrol); padding: 1rem; }
.price-grid h3 { font-size: .95rem; margin: 1rem 0 .5rem; line-height: 1.5; }
.price-grid strong { display: block; font-family: var(--display); font-size: 1.9rem; line-height: 1.3; margin-bottom: 1rem; }
.faq .price-grid p { font-size: .85rem; margin: 0; }
.callback-form { position: relative; z-index: 2; padding: clamp(1.5rem,3vw,3rem); background: #fff; color: var(--ink); }
.callback-form h3 { font-family: var(--display); font-weight: 400; text-transform: uppercase; font-size: clamp(2.2rem,3.3vw,3.8rem); line-height: 1.1; margin: 1.2rem 0; }
.callback-form > p { font-size: .9rem; }
.callback-form > label { display: block; margin-top: 1rem; font-size: .875rem; font-weight: 600; }
.callback-form label > span { font-weight: 400; }
.callback-form input:not([type=checkbox]), .callback-form textarea { display: block; width: 100%; border: 0; border-bottom: 1px solid #70848d; border-radius: 0; padding: .8rem 0; color: var(--ink); background: #fff; font-size: 1rem; }
.callback-form textarea { resize: vertical; min-height: 90px; }
.callback-form .consent { display: flex; align-items: flex-start; gap: .8rem; margin-block: 1.5rem; font-size: .875rem; line-height: 1.5; }
.consent input { flex-shrink: 0; width: 20px; height: 20px; margin: 0; accent-color: var(--petrol); }
.consent a { text-decoration: underline; text-underline-offset: 2px; }
.callback-submit { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem; border: 1px solid var(--petrol); background: var(--acid); color: var(--petrol-deep); font-weight: 600; font-size: .95rem; cursor: pointer; }
.callback-submit:hover { background: var(--petrol); color: #fff; }
.callback-submit:disabled { opacity: .65; cursor: wait; }
.callback-form .form-status { margin: 1rem 0 0; font-size: .875rem; }
.form-status:empty { display: none; }
.form-status[data-state=error] { color: #a12424; }
.form-status[data-state=success] { color: #196142; }
.form-honeypot { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); }
.callback-form .form-honeypot input { width: 1px; }
.legal-page { padding: 9rem var(--pad) 5rem; max-width: 1000px; margin-inline: auto; }
.legal-page h1 { font-family: var(--display); font-size: clamp(2.8rem,6vw,5rem); line-height: 1.1; font-weight: 400; }
.legal-page h2 { margin-top: 2rem; font-size: 1.3rem; }
.legal-page a { text-decoration: underline; }

@media (hover: hover) and (pointer: fine) {
  body { cursor: auto; }
  a, button, summary, label[for], input[type=checkbox] { cursor: pointer; }
  input:not([type=checkbox]), textarea { cursor: text; }
}

.reveal { opacity: 1; transform: none; }
.motion-ready .reveal:not(.is-visible) { opacity: 0; transform: translateY(24px); }
.motion-ready .reveal { transition: opacity .65s cubic-bezier(.2,.65,.25,1), transform .65s cubic-bezier(.2,.65,.25,1); }
.reveal.is-visible { opacity: 1; transform: none; }
.hero__line:nth-child(2) { transition-delay: .08s; }
.hero__line:nth-child(3) { transition-delay: .16s; }

@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__intro { grid-column: 1; width: min(480px, 70%); margin-top: 3rem; }
  .hero-a { top: 27%; width: 48vw; }
  .section-head { grid-template-columns: .28fr 1fr; }
  .section-head > p:last-child { grid-column: 2; max-width: 550px; margin-top: 1.5rem; }
  .process { grid-template-columns: 1fr; }
  .process__item, .process__item + .process__item { border-right: 0; border-bottom: 1px solid var(--line); padding: 2rem 0; min-height: 0; }
  .process__item:last-child { border-bottom: 0; }
  .quotes { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .faq { grid-template-columns: 1fr; gap: 3rem; }
  .contact { grid-template-columns: 1fr; }
  .callback-form { max-width: 720px; width: 100%; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer__legal { text-align: left; }
}

@media (max-width: 760px) {
  :root { --pad: 1.25rem; }
  body.menu-open { overflow: hidden; }
  .site-header { height: 74px; }
  .site-header.is-scrolled { height: 64px; }
  .brand__mark { width: 26px; height: 35px; }
  .brand__type b { font-size: 1.55rem; }
  .brand__type small { font-size: .43rem; }
  .menu-toggle { position: relative; z-index: 112; display: grid; gap: 7px; width: 42px; padding: 12px 6px; border: 0; background: transparent; cursor: pointer; }
  .menu-toggle span { display: block; width: 100%; height: 1px; background: currentColor; transition: transform .3s; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
  .site-nav { position: fixed; inset: 0; z-index: 110; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding: 110px var(--pad) 50px; background: var(--petrol); color: #fff; transform: translateY(-105%); transition: transform .45s cubic-bezier(.65,0,.25,1); }
  .site-nav.is-open { transform: none; }
  .site-nav > a { font-family: var(--display); font-size: 3.6rem; font-weight: 300; line-height: 1; text-transform: uppercase; }
  .site-nav .nav-cta { width: 100%; margin-top: 1rem; padding: 1rem 0; border: 0; border-top: 1px solid rgba(255,255,255,.4); background: transparent; font-family: var(--body); font-size: .8rem; }
  .site-header:has(.site-nav.is-open) .brand { color: #fff; }
  .site-header:has(.site-nav.is-open) .brand__mark { fill: #fff; }
  .site-header:has(.site-nav.is-open) .menu-toggle { color: #fff; }
  .hero { min-height: 96svh; padding-top: 110px; }
  .hero::before { display: none; }
  .eyebrow span { display: none; }
  .hero__title { margin-top: 3rem; font-size: clamp(2.8rem, 14.5vw, 6.6rem); line-height: .96; }
  .hero__line:nth-child(2) { margin-left: .22em; }
  .hero__intro { width: 83%; margin-top: 2.5rem; }
  .hero__intro p { font-size: .94rem; }
  .hero-a { top: 23%; right: -21vw; width: 75vw; }
  .hero__foot { gap: .55rem; font-size: .55rem; letter-spacing: .15em; }
  .hero__foot i { width: 16px; }
  .scroll-hint { display: none; }
  .ticker__track { font-size: 1.1rem; flex-direction: column; align-items: flex-start; }
  .section-head { display: block; }
  .section-head h2 { margin-top: 2.2rem; font-size: clamp(2.5rem, 10vw, 4.8rem); line-height: 1.12; }
  .section-head > p:last-child { margin-top: 1.7rem; }
  .service { grid-template-columns: auto 1fr auto; gap: 1rem; min-height: 112px; }
  .service h3 { font-size: 2.35rem; }
  .service p { display: none; }
  .projects-grid { display: block; }
  .outline-link { min-width: 0; width: 100%; gap: 1rem; padding-inline: 1rem; }
  .project, .project--wide, .project--tall, .project:nth-child(3), .project:nth-child(4) { margin: 0 0 3.5rem; }
  .project figure, .project--tall figure, .project:nth-child(3) figure { aspect-ratio: 4 / 3; }
  .project__meta b { font-size: 2.1rem; }
  .statement { min-height: 85svh; }
  .statement h2 { font-size: clamp(2.7rem, 12.2vw, 6rem); line-height: .92; }
  .statement__mark { top: 18%; width: 80vw; }
  .studio__title { display: block; }
  .studio__title h2 { margin-top: 2rem; font-size: clamp(2.8rem,11vw,4rem); }
  .process { grid-template-columns: 1fr; }
  .process__item, .process__item + .process__item { min-height: auto; padding: 1.5rem 0 2rem; border-right: 0; border-bottom: 1px solid var(--line); }
  .process__item h3 { margin: 2.5rem 0 .6rem; }
  .local-section { grid-template-columns: minmax(0,1fr); min-height: auto; }
  .local-section__label { min-height: 150px; padding: 1.5rem var(--pad); border-right: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
  .local-section__label span { font-size: clamp(4rem,24vw,6rem); writing-mode: initial; transform: none; }
  .local-section__copy { padding: 5rem var(--pad); }
  .local-section__copy h2 { font-size: clamp(2.8rem,11vw,4.2rem); }
  .quotes { grid-template-columns: 1fr; }
  .quotes blockquote { padding: 1.5rem; }
  .testimonials .section-head { display: block; }
  .faq { grid-template-columns: 1fr; }
  .faq__list { margin-top: 2rem; }
  .contact { min-height: 75svh; }
  .contact h2 { font-size: clamp(3rem,13vw,6rem); }
  .contact__link { font-size: .85rem; }
  .contact__symbol { width: 85vw; right: -30vw; }
  .site-footer { grid-template-columns: 1fr; gap: 2.5rem; }
  .price-grid { grid-template-columns: 1fr; }
  .price-grid > div { display: grid; grid-template-columns: 24px 1fr auto; gap: .7rem; align-items: center; }
  .price-grid h3, .price-grid strong { margin: 0; }
  .faq .price-grid p { grid-column: 2 / -1; }
  .ai-why { padding: 1.4rem; gap: 1rem; }
  .ai-why > img { width: 26px; height: 26px; }
  .hero__intro { width: 100%; }
  .projects-grid--more { margin-top: 0; }
}

@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, .motion-ready .reveal:not(.is-visible) { opacity: 1; transform: none; }
  .project figure { transform: none; }
}

/* Revisione 3: portfolio compatto e simbolo centrale isolato. */
.projects-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:3.5rem 2rem; margin-top:4rem; align-items:start; }
.projects-grid .project { grid-column:auto; margin:0; min-width:0; }
.projects-grid .project figure { aspect-ratio:4 / 3; }
.project__meta b { font-size:clamp(1.5rem,2.2vw,2.2rem); }
.ticker__track img, .ai-why > img { filter:brightness(0) saturate(100%); }
.google-review-brand { display:flex; align-items:center; gap:.65rem; margin:2.5rem 0 1rem; }
.google-review-brand img { width:112px; height:auto; }
.google-review-brand > span { font-size:1.25rem; color:#52636b; }
@media (hover:hover) and (pointer:fine) {
  body { cursor:auto; }
  a, button, summary, label[for], input[type=checkbox] { cursor:pointer; }
  input:not([type=checkbox]), textarea { cursor:text; }
}
@media(max-width:760px) { .projects-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:2rem 1rem; } }
@media(max-width:540px) { .projects-grid { grid-template-columns:minmax(0,1fr); gap:2.5rem; } }

/* Revision 4: restrained motion, driven by scroll and pointer position. */
.outline-link { gap:1.4rem; }
.outline-link > span, .text-link > span, .contact__link > span, .callback-submit > span { flex-shrink:0; }
.contact { overflow:hidden; isolation:isolate; }
.background-pattern { position:absolute; inset:-24px; z-index:0; pointer-events:none; background:url('../assets/brand/pattern.svg') repeat; background-size:140px 140px; opacity:.045; transform:translate(var(--pattern-x,0px),var(--pattern-y,0px)); transition:transform .7s ease-out; }
.contact .background-pattern { filter:brightness(0) invert(1); opacity:.055; }
.ticker__track { justify-content:center; gap:1.5rem clamp(2rem,5vw,6rem); }
.ticker__track > span { flex-shrink:0; }
.brand-scroll-reveal { display:flex; align-self:flex-start; }
.image-story { padding:4rem var(--pad); overflow:hidden; background:#f1f5f6; }
.image-story__heading { display:flex; align-items:center; justify-content:space-between; gap:1rem; margin-bottom:2rem; }
.image-story__heading > p:last-child { margin:0; color:#48616e; }
.image-story__frames { display:grid; grid-template-columns:1.2fr .8fr 1fr; gap:1.4rem; padding-block:1.5rem; }
.image-story figure { position:relative; margin:0; aspect-ratio:4/3; overflow:hidden; background:var(--petrol); transform:translateY(var(--story-shift,0px)); }
.image-story figure:nth-child(2) { transform:translateY(calc(0px - var(--story-shift,0px))); }
.image-story img { width:100%; height:100%; object-fit:cover; }
.image-story figcaption { position:absolute; inset:auto 0 0; padding:2rem 1rem .8rem; background:linear-gradient(transparent,rgba(9,43,58,.9)); color:#fff; font-family:var(--display); font-size:clamp(1.5rem,2.5vw,2.6rem); text-transform:uppercase; }
.image-story > .text-link { margin-top:1.5rem; }
@media(max-width:760px) {
  .ticker__track { align-items:center; }
  .image-story__heading { display:block; }
  .image-story__heading > p:last-child { margin-top:1rem; }
  .image-story__frames { grid-template-columns:1fr 1fr; gap:.8rem; }
  .image-story figure:first-child { grid-column:1 / -1; aspect-ratio:16/9; }
  .image-story figure { aspect-ratio:1; }
}
@media(prefers-reduced-motion:reduce) {
  .background-pattern, .image-story figure, .image-story figure:nth-child(2) { transform:none; transition:none; }
  .ticker__track > span { translate:none !important; }
  .brand-scroll-reveal { clip-path:none !important; }
}
