/* Dott.ssa Diana Charismas · psicologa a Firenze e Pistoia · v4 (stile dei siti Benci/Gironi/Amazzoni)
   Carta chiara, inchiostro caldo, accento mattone. Foto grandi, titoli serif con un corsivo colorato. */
:root {
  --paper: #F7F3EC;
  --paper-2: #EFE8DD;
  --paper-3: #E2D8C9;
  --ink: #2A2420;
  --ink-2: #574C44;
  --ink-3: #7C6F64;
  --line: #DDD2C2;
  --red: #9A4B38;
  --red-2: #C0694F;
  --night: #2B211C;
  --night-line: #473A32;
  --cream: #F4EEE4;
  --cream-2: #CDBFAE;
  --serif: "Source Serif 4", Georgia, serif;
  --sans: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(.23, 1, .32, 1);
  --g: clamp(16px, 4vw, 56px);
  color-scheme: light;
}
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; hanging-punctuation: first last; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 1.0625rem/1.65 var(--sans); -webkit-font-smoothing: antialiased; overflow-x: clip; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.06; margin: 0; letter-spacing: -.015em; text-wrap: balance; font-optical-sizing: auto; }
h1 em, h2 em { color: var(--red); }
p { margin: 0 0 1em; text-wrap: pretty; }
::selection { background: var(--red); color: var(--cream); }
:focus-visible { outline: 2px solid var(--red); outline-offset: 3px; border-radius: 4px; }
[id] { scroll-margin-top: 96px; }
.skip { position: fixed; left: 12px; top: -60px; z-index: 200; background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 999px; text-decoration: none; transition: top .2s var(--ease); }
.skip:focus { top: 12px; }
.wrap { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 var(--g); }
.lbl { font: 600 .74rem/1.3 var(--sans); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-3); display: inline-flex; align-items: center; gap: 10px; }
.lbl.dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

/* ---------- testata ---------- */
.top { position: sticky; top: 0; z-index: 90; background: color-mix(in srgb, var(--paper) 90%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid transparent; transition: translate .5s var(--ease), border-color .3s var(--ease); }
.top.hide { translate: 0 -100%; }
.top.scrolled { border-bottom-color: var(--line); }
.menu-open .top { translate: 0 0; }
.top .wrap { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 72px; }
.brand { text-decoration: none; display: flex; align-items: center; gap: 12px; line-height: 1.1; }
.brand svg { width: 30px; height: 30px; flex: none; }
.brand b { display: block; font: 400 1.3rem/1 var(--serif); }
.brand small { display: block; font-size: .76rem; color: var(--ink-3); margin-top: 4px; }
.nav { display: flex; gap: 28px; align-items: center; }
.nav a { text-decoration: none; font-size: .93rem; color: var(--ink-2); position: relative; padding: 6px 0; transition: color .2s var(--ease); }
.nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--red); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.nav a[aria-current="page"] { color: var(--ink); }
.nav a[aria-current="page"]::after { transform: scaleX(1); }
@media (hover: hover) { .nav a:hover { color: var(--ink); } .nav a:hover::after { transform: scaleX(1); } }
.top .tel { display: inline-flex; }
.burger { display: none; appearance: none; background: transparent; border: 1px solid var(--ink); color: var(--ink); border-radius: 999px; min-height: 44px; padding: 0 18px; font: 500 .9rem var(--sans); cursor: pointer; }
.menu { position: fixed; inset: 72px 0 0 0; z-index: 80; background: var(--paper); display: flex; flex-direction: column; padding: 16px var(--g) calc(32px + env(safe-area-inset-bottom)); opacity: 0; visibility: hidden; translate: 0 -8px; transition: opacity .3s var(--ease), translate .3s var(--ease), visibility .3s; }
.menu-open .menu { opacity: 1; visibility: visible; translate: 0 0; }
.menu a { font: 400 2rem/1.2 var(--serif); text-decoration: none; padding: 14px 0; border-bottom: 1px solid var(--line); }
.menu a[aria-current="page"] { color: var(--red); }
.menu .m-foot { margin-top: auto; display: flex; gap: 10px; }
.menu .m-foot a { flex: 1; font: 500 .95rem var(--sans); border: 0; }

/* ---------- bottoni ---------- */
.btn { position: relative; isolation: isolate; overflow: hidden; display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 24px; border-radius: 999px; background: var(--ink); color: var(--cream); border: 1px solid var(--ink); text-decoration: none; font: 500 .95rem/1 var(--sans); cursor: pointer; transition: color .35s var(--ease), border-color .35s var(--ease), scale .15s var(--ease); }
.btn::before { content: ""; position: absolute; inset: 0; z-index: -1; background: var(--red); transform: translateX(-101%); transition: transform .45s var(--ease); }
.btn:active { scale: .97; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn.sm { min-height: 42px; padding: 0 18px; font-size: .9rem; }
.btn.line { background: transparent; color: var(--ink); }
.btn.line::before { background: var(--ink); }
.btn.light { background: var(--cream); color: var(--night); border-color: var(--cream); }
.btn.light::before { background: var(--red-2); }
.btn.lline { background: transparent; color: var(--cream); border-color: var(--cream-2); }
.btn.lline::before { background: var(--cream); }
@media (hover: hover) {
  .btn:hover::before { transform: translateX(0); }
  .btn:hover { border-color: var(--red); }
  .btn.line:hover { color: var(--cream); border-color: var(--ink); }
  .btn.light:hover { color: var(--cream); }
  .btn.lline:hover { color: var(--night); border-color: var(--cream); }
}
.ul { color: var(--ink); text-decoration: none; background: linear-gradient(var(--red), var(--red)) 0 100% / 100% 1px no-repeat; padding-bottom: 2px; font-weight: 500; transition: color .2s var(--ease); }
@media (hover: hover) { .ul:hover { color: var(--red); } }
.arrow::after { content: " →"; }

/* ---------- ingressi ---------- */
.lm { display: block; overflow: hidden; padding-top: .16em; margin-top: -.16em; padding-bottom: .06em; margin-bottom: -.06em; }
.lm > span { display: block; transform: translateY(105%); transition: transform 1.1s var(--ease); }
.in .lm > span, .lm.in > span { transform: none; }
.lm:nth-child(2) > span { transition-delay: .08s; }
.lm:nth-child(3) > span { transition-delay: .16s; }
.lm:nth-child(4) > span { transition-delay: .24s; }
.fade { opacity: 0; translate: 0 18px; transition: opacity .9s var(--ease), translate .9s var(--ease); }
.fade.in { opacity: 1; translate: 0 0; }
.veil { overflow: hidden; }
.veil img { clip-path: inset(0 0 100% 0); scale: 1.08; transition: clip-path 1.3s var(--ease), scale 1.8s var(--ease); }
.veil.in img { clip-path: inset(0 0 0 0); scale: 1; }

/* ================= HOME ================= */
.hero { padding: clamp(24px, 4vw, 56px) 0 clamp(56px, 7vw, 96px); }
.hero .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 88px); align-items: center; min-height: calc(100svh - 72px - clamp(80px, 11vw, 152px)); }
.hero h1 { font-size: clamp(2.8rem, 1.2rem + 4.2vw, 5.4rem); margin: 22px 0 26px; }
.hero .intro { font-size: 1.12rem; color: var(--ink-2); max-width: 44ch; }
.hero .cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 12px; }
.hero .meta { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 6px 18px; font-size: .86rem; color: var(--ink-3); }
.hero .meta span + span::before { content: "·"; margin-right: 18px; }
.hero .visual { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; align-items: start; }
.city { display: block; text-decoration: none; }
.city.c2 { margin-top: clamp(48px, 7vw, 110px); }
.city .pic { display: block; border-radius: 8px; aspect-ratio: 3 / 4.2; }
.city .pic img { width: 100%; height: 100%; object-fit: cover; transition: scale 1.2s var(--ease); }
.city.c1 .pic img { object-position: 30% 50%; }
.city.c2 .pic img { object-position: 60% 50%; }
.city .cap { display: grid; grid-template-columns: 1fr auto; column-gap: 12px; row-gap: 4px; margin-top: 14px; font-size: .86rem; color: var(--ink-3); }
.city .cap b, .city .cap span { grid-column: 1; }
.city .cap::after { grid-column: 2; grid-row: 1; }
.city .cap b { font: 400 1.35rem/1 var(--serif); color: var(--ink); transition: color .25s var(--ease); }
.city .cap::after { content: "→"; color: var(--red); transition: translate .3s var(--ease); }
@media (hover: hover) { .city:hover .pic img { scale: 1.04; } .city:hover .cap b { color: var(--red); } .city:hover .cap::after { translate: 4px 0; } }

.presenta { padding: clamp(80px, 11vw, 150px) 0; }
.presenta .wrap { display: grid; grid-template-columns: 5fr 7fr; gap: clamp(32px, 6vw, 100px); align-items: start; }
.presenta .ph { aspect-ratio: 4 / 5; border-radius: 4px; }
.presenta .ph img { width: 100%; height: 100%; object-fit: cover; }
.presenta h2 { font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); margin: 18px 0 28px; }
.presenta .big { font: 400 clamp(1.25rem, 1.1rem + .7vw, 1.7rem)/1.45 var(--serif); color: var(--ink); }
.presenta p { color: var(--ink-2); max-width: 58ch; }
.facts { list-style: none; margin: 32px 0; padding: 0; border-top: 1px solid var(--line); max-width: 560px; }
.facts li { display: grid; grid-template-columns: 170px 1fr; gap: 16px; padding: 13px 0; border-bottom: 1px solid var(--line); font-size: .98rem; }
.facts li span:first-child { color: var(--ink-3); font-size: .88rem; }

.frasi { background: var(--paper-2); padding: clamp(80px, 11vw, 150px) 0; overflow: hidden; }
.sec-h { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: end; margin-bottom: clamp(40px, 5vw, 64px); }
.sec-h h2 { font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); margin-top: 16px; }
.sec-h p { color: var(--ink-2); margin: 0; }
.frasi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fr { background: var(--paper); border: 1px solid var(--line); border-radius: 6px; padding: 28px 28px 26px; margin: 0; display: flex; flex-direction: column; justify-content: space-between; gap: 28px; min-height: 200px; }
.fr q { quotes: "«" "»"; font: 400 clamp(1.25rem, 1.1rem + .5vw, 1.5rem)/1.35 var(--serif); }
.fr q::before, .fr q::after { color: var(--red); }
.frasi .note { margin-top: 28px; color: var(--ink-3); max-width: 64ch; }

.mappa { padding: clamp(80px, 11vw, 150px) 0; }
.mappa .wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 80px); align-items: center; }
.mappa h2 { font-size: clamp(2rem, 1.3rem + 2.4vw, 3.4rem); margin: 16px 0 22px; }
.mappa .lead { color: var(--ink-2); max-width: 42ch; margin-bottom: 32px; }
.mapbox { background: var(--paper-2); border-radius: 6px; padding: clamp(16px, 3vw, 36px); }
.mapsvg { width: 100%; height: auto; overflow: visible; }
.mapsvg .grid line { stroke: var(--paper-3); stroke-width: 1; }
.mapsvg .route { fill: none; stroke: var(--red); stroke-width: 2; stroke-linecap: round; }
.mapsvg .route-bg { fill: none; stroke: var(--paper-3); stroke-width: 2; stroke-dasharray: 2 7; stroke-linecap: round; }
.mapsvg .pt circle.o { fill: var(--paper); stroke: var(--red); stroke-width: 1.5; }
.mapsvg .pt circle.i { fill: var(--red); }
.mapsvg .pt text { font: 400 40px var(--serif); fill: var(--ink); }
.mapsvg .pt .s { font: 500 12px var(--sans); fill: var(--ink-3); letter-spacing: .1em; text-transform: uppercase; }
.mapsvg .dist { font: italic 400 20px var(--serif); fill: var(--ink-2); }
.mapsvg .coord { font: 500 11px var(--sans); fill: var(--ink-3); letter-spacing: .08em; }
.sedi { border-top: 1px solid var(--ink); }
.sede-row { display: grid; grid-template-columns: 130px 1fr auto; gap: 20px; align-items: center; padding: 20px 0; border-bottom: 1px solid var(--line); text-decoration: none; }
.sede-row .c { font: 400 1.7rem/1 var(--serif); }
.sede-row address { font-style: normal; color: var(--ink-2); font-size: .96rem; }
.sede-row .go { width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--ink); display: grid; place-items: center; transition: background-color .3s var(--ease), color .3s var(--ease); }
.sede-row .go svg { width: 16px; height: 16px; }
@media (hover: hover) { .sede-row:hover .go { background: var(--ink); color: var(--cream); } }

.passi { background: var(--paper-2); padding: clamp(80px, 11vw, 150px) 0; }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.step { background: var(--paper); border-radius: 6px; overflow: hidden; border: 1px solid var(--line); display: flex; flex-direction: column; }
.step .ph { aspect-ratio: 16 / 10; }
.step .ph img { width: 100%; height: 100%; object-fit: cover; }
.step .body { padding: 26px 28px 30px; }
.step .when { font: italic 400 1.1rem/1 var(--serif); color: var(--red); margin-bottom: 10px; }
.step h3 { font-size: 1.6rem; margin-bottom: 14px; }
.step p, .step li { color: var(--ink-2); font-size: 1rem; }
.step ul { padding-left: 1.1em; margin: 0 0 1em; }
.step li { margin-bottom: .4em; }
.step li::marker { color: var(--red); }

.info { padding: clamp(80px, 11vw, 150px) 0; }
.info .cols { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.info .cols > div { padding: 30px 30px 0 0; }
.info .cols > div + div { padding-left: 30px; border-left: 1px solid var(--line); }
.info .ico { width: 30px; height: 30px; color: var(--red); margin-bottom: 18px; }
.info h3 { font-size: 1.55rem; margin-bottom: 12px; }
.info p { color: var(--ink-2); }

.chiudi { background: var(--night); color: var(--cream); padding: clamp(80px, 11vw, 140px) 0; }
.chiudi .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.chiudi .lbl { color: var(--red-2); }
.chiudi .lbl.dot::before { background: var(--red-2); }
.chiudi h2 { font-size: clamp(2.2rem, 1.3rem + 3vw, 4rem); margin: 16px 0 18px; color: var(--cream); }
.chiudi h2 em { color: var(--red-2); }
.chiudi p { color: var(--cream-2); max-width: 44ch; }
.chiudi .tel { display: block; font: 400 clamp(2.4rem, 1rem + 5vw, 5.2rem)/1 var(--serif); text-decoration: none; color: var(--cream); margin-bottom: 26px; transition: color .25s var(--ease); }
@media (hover: hover) { .chiudi .tel:hover { color: var(--red-2); } }
.chiudi .acts { display: flex; gap: 12px; flex-wrap: wrap; }

/* ================= PAGINE INTERNE ================= */
.phead { display: grid; grid-template-columns: 1fr 1fr; min-height: 62svh; border-bottom: 1px solid var(--line); }
.phead .txt { display: flex; flex-direction: column; justify-content: center; padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 80px) clamp(40px, 6vw, 80px) max(var(--g), calc((100vw - 1280px) / 2 + var(--g))); }
.phead .crumbs { font-size: .85rem; color: var(--ink-3); margin-bottom: 18px; }
.phead .crumbs a { color: var(--ink-3); }
.phead h1 { font-size: clamp(2.6rem, 1.3rem + 3.8vw, 4.8rem); margin-bottom: 22px; }
.phead p { font-size: 1.1rem; color: var(--ink-2); max-width: 42ch; margin: 0; }
.phead .pic { margin: 0; }
.phead .pic img { width: 100%; height: 100%; object-fit: cover; }

.sec { padding: clamp(80px, 11vw, 140px) 0; }
.faq { background: var(--paper-2); }
.faq .list { max-width: 900px; }
.faq details { border-bottom: 1px solid var(--line); }
.faq details:first-of-type { border-top: 1px solid var(--ink); }
.faq summary { list-style: none; cursor: pointer; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; padding: 24px 0; min-height: 44px; font: 400 clamp(1.25rem, 1.1rem + .6vw, 1.6rem)/1.25 var(--serif); transition: color .25s var(--ease); }
.faq summary::-webkit-details-marker { display: none; }
.faq summary i { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--ink); position: relative; transition: background-color .3s var(--ease), rotate .4s var(--ease); }
.faq summary i::before, .faq summary i::after { content: ""; position: absolute; left: 50%; top: 50%; width: 13px; height: 1.5px; background: var(--ink); translate: -50% -50%; transition: background-color .3s var(--ease); }
.faq summary i::after { rotate: 90deg; }
.faq details[open] summary i { rotate: 45deg; background: var(--ink); }
.faq details[open] summary i::before, .faq details[open] summary i::after { background: var(--cream); }
@media (hover: hover) { .faq summary:hover { color: var(--red); } }
.faq details p { color: var(--ink-2); max-width: 64ch; padding-bottom: 24px; margin: 0; }
@supports (interpolate-size: allow-keywords) {
  .faq { interpolate-size: allow-keywords; }
  .faq details::details-content { height: 0; overflow: clip; transition: height .45s var(--ease), content-visibility .45s allow-discrete; }
  .faq details[open]::details-content { height: auto; }
}

.studio { padding: clamp(72px, 10vw, 130px) 0; border-bottom: 1px solid var(--line); }
.studio .wrap { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(32px, 6vw, 96px); align-items: center; }
.studio.alt .pic { order: 2; }
.studio .pic { aspect-ratio: 4 / 5; border-radius: 4px; }
.studio .pic img { width: 100%; height: 100%; object-fit: cover; }
.studio .city { font-size: clamp(2.8rem, 1.6rem + 4vw, 5rem); margin: 16px 0 20px; }
.studio address { font: 400 1.35rem/1.4 var(--serif); font-style: normal; }
.studio .acts { display: flex; gap: 12px; flex-wrap: wrap; }
.osm { position: relative; margin-top: 28px; aspect-ratio: 16 / 10; overflow: hidden; border-radius: 6px; background: var(--paper-2); border: 1px solid var(--line); }
.osm button { position: absolute; inset: 0; width: 100%; border: 0; background: transparent; cursor: pointer; color: var(--ink); font: 500 .95rem var(--sans); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; }
.osm button small { font-size: .84rem; color: var(--ink-3); font-weight: 400; max-width: 32ch; text-align: center; }
.osm button svg { width: 28px; height: 28px; color: var(--red); }
.osm iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.recap { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.recap > div { padding: 26px 26px 30px 0; }
.recap > div + div { padding-left: 26px; border-left: 1px solid var(--line); }
.recap .lbl { margin-bottom: 12px; }
.recap .v { font: 400 clamp(1.4rem, 1.2rem + .8vw, 2rem)/1.2 var(--serif); margin: 0; }
.recap .v a { text-decoration: none; }
@media (hover: hover) { .recap .v a:hover { color: var(--red); } }

.scrivi { background: var(--paper-2); }
.comp { display: grid; grid-template-columns: 6fr 6fr; gap: clamp(32px, 6vw, 96px); align-items: start; }
.q { border: 0; margin: 0; padding: 20px 0 24px; border-top: 1px solid var(--line); }
.q legend { float: left; width: 100%; font-size: .88rem; color: var(--ink-3); padding: 0; margin-bottom: 14px; }
.chips { clear: both; display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; }
.chip input { position: absolute; inset: 0; opacity: 0; margin: 0; cursor: pointer; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); background: var(--paper); color: var(--ink-2); font-size: .98rem; transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), scale .15s var(--ease); }
.chip input:checked + span { background: var(--ink); color: var(--cream); border-color: var(--ink); }
.chip input:focus-visible + span { outline: 2px solid var(--red); outline-offset: 3px; }
.chip input:active + span { scale: .97; }
@media (hover: hover) { .chip input:not(:checked):hover + span { border-color: var(--ink-3); color: var(--ink); } }
.foglio { position: sticky; top: 100px; }
.carta { background: #FFFDF9; border: 1px solid var(--line); border-radius: 4px; padding: clamp(26px, 4vw, 42px); rotate: -.8deg; box-shadow: 0 1px 0 var(--paper-3), 0 28px 56px -36px rgba(42, 36, 32, .45); }
.carta .to { display: flex; justify-content: space-between; gap: 12px; font-size: .85rem; color: var(--ink-3); margin-bottom: 18px; }
.carta .msg { font: 400 clamp(1.2rem, 1.05rem + .6vw, 1.5rem)/1.5 var(--serif); min-height: 7.5em; margin: 0; transition: filter .25s var(--ease), opacity .25s var(--ease); }
.carta .msg.swap { filter: blur(3px); opacity: .4; }
.carta .sign { margin: 18px 0 0; padding-top: 14px; border-top: 1px dashed var(--line); font-size: .85rem; color: var(--ink-3); }
.foglio .acts { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.foglio .hint { margin-top: 16px; color: var(--ink-3); font-size: .95rem; }

.legal { max-width: 740px; }
.legal h2 { font-size: 1.7rem; margin: 2em 0 .5em; }
.legal p, .legal li { color: var(--ink-2); }

/* ---------- footer ---------- */
.foot { background: var(--night); color: var(--cream-2); padding: clamp(64px, 8vw, 100px) 0 36px; }
.foot .cols { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 48px; border-bottom: 1px solid var(--night-line); }
.foot .word { font: 400 clamp(2rem, 1.4rem + 2vw, 3rem)/1.05 var(--serif); color: var(--cream); margin: 0 0 12px; }
.foot .word em { color: var(--red-2); }
.foot .lbl { color: #A3958A; margin-bottom: 14px; }
.foot p, .foot address { font-style: normal; margin: 0 0 .45em; }
.foot a { color: var(--cream); text-decoration: none; }
@media (hover: hover) { .foot a:hover { color: var(--red-2); } }
.foot .legalrow { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px 24px; padding-top: 22px; font-size: .85rem; color: #A3958A; }
.foot .legalrow a { color: var(--cream-2); }

.dock { display: none; }

/* ================= responsive ================= */
@media (max-width: 1100px) { .frasi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 960px) {
  .nav, .top .tel { display: none; }
  .burger { display: inline-flex; align-items: center; }
  .phead { grid-template-columns: 1fr; min-height: 0; }
  .phead .txt { padding: 36px var(--g) 40px; }
  .phead .pic { order: -1; aspect-ratio: 4 / 3; }
  .hero .wrap { grid-template-columns: 1fr; min-height: 0; }
  .hero .visual { order: -1; gap: 12px; }
  .city.c2 { margin-top: 40px; }
  .city .pic { aspect-ratio: 3 / 3.8; }
  .presenta .wrap, .sec-h, .mappa .wrap, .studio .wrap, .comp, .chiudi .wrap { grid-template-columns: 1fr; }
  .presenta .ph { aspect-ratio: 4 / 3; }
  .steps { grid-template-columns: 1fr; }
  .studio.alt .pic { order: 0; }
  .studio .pic { aspect-ratio: 4 / 3; }
  .info .cols, .recap { grid-template-columns: 1fr; }
  .info .cols > div, .info .cols > div + div { padding: 26px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .recap > div, .recap > div + div { padding: 22px 0; border-left: 0; border-bottom: 1px solid var(--line); }
  .foglio { position: static; }
  .foot .cols { grid-template-columns: 1fr 1fr; }
  .foot .cols > div:first-child { grid-column: 1 / -1; }
}
@media (max-width: 700px) {
  body { font-size: 1rem; }
  .top .wrap { min-height: 64px; }
  .menu { inset: 64px 0 0 0; }
  .brand small { display: none; }
  .city .cap { font-size: .8rem; }
  .city .cap::after { display: none; }
  .hero { padding-top: 12px; }
  .hero .meta { flex-direction: column; gap: 4px; }
  .hero .meta span + span::before { content: none; }
  .hero .cta .btn, .acts .btn, .studio .acts .btn { flex: 1 1 100%; }
  .frasi-grid { grid-template-columns: 1fr; }
  .fr { min-height: 0; }
  .facts li { grid-template-columns: 1fr; gap: 2px; }
  .sede-row { grid-template-columns: 1fr auto; row-gap: 4px; }
  .sede-row address { grid-column: 1; grid-row: 2; }
  .sede-row .go { grid-column: 2; grid-row: 1 / 3; }
  .carta { rotate: 0deg; }
  .foot .cols { grid-template-columns: 1fr; }
  .foot { padding-bottom: 120px; }
  .dock { display: flex; position: fixed; left: 12px; right: 12px; bottom: calc(12px + env(safe-area-inset-bottom)); z-index: 70; gap: 6px; padding: 6px; border-radius: 999px; background: rgba(43, 33, 28, .95); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); translate: 0 150%; transition: translate .5s var(--ease); }
  .dock.show { translate: 0 0; }
  .dock a { flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; min-height: 48px; border-radius: 999px; color: var(--cream); text-decoration: none; font: 500 .95rem var(--sans); }
  .dock a:first-child { background: var(--red); }
  .dock a:active { scale: .97; }
  .dock svg { width: 18px; height: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .lm > span { transform: none; }
  .fade { opacity: 1; translate: none; }
  .veil img { clip-path: none; scale: 1; }
}
