@import url("assets/fonts/fonts.css");

/* ---------- tokens ---------- */
:root {
  --cream: #F5F0E6;
  --paper: #FBF8F2;
  --sand: #E4DAC6;
  --ink: #1C261F;
  --ink-2: #4A5A50;
  --forest: #2B5F5A;
  --forest-2: #397670;
  --moss: #A4C8C2;
  --clay: #C4452C;
  --clay-2: #A9391F;
  --ink-deep: #1F2A25;   /* fondo hero e velature */
  --cream-70: #D9E2DD;   /* testo secondario su fondi scuri */
  --cream-50: #B9C3BC;
  --line-dark: #3A463F;  /* righe su fondo ink */
  --sand-warm: #E7C9A6;  /* macchia dietro la foto percorsi */

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans: "Instrument Sans", "Helvetica Neue", Arial, sans-serif;

  --gutter: clamp(1.25rem, 5vw, 5rem);
  --ease: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: var(--forest); text-decoration-color: var(--moss); text-underline-offset: .2em; text-decoration-thickness: 1px; }
a:hover { color: var(--forest-2); text-decoration-color: currentColor; }
::selection { background: var(--forest); color: var(--cream); }
:focus-visible { outline: 2px solid var(--clay); outline-offset: 3px; border-radius: 2px; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; margin: 0; text-wrap: balance; }
h2 { font-size: clamp(2.25rem, 4.5vw, 3.75rem); line-height: 1.05; letter-spacing: -.015em; font-variation-settings: "opsz" 144; }
h3 { font-size: 1.5rem; line-height: 1.2; letter-spacing: -.01em; font-variation-settings: "opsz" 48; }
p { margin: 0; }
p + p { margin-top: 1em; }
section { padding-inline: var(--gutter); }

.skip { position: absolute; left: -999px; top: 8px; background: var(--ink); color: var(--cream); padding: .5rem 1rem; z-index: 100; }
.skip:focus { left: 8px; }
.placeholder { color: var(--clay-2); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .7rem 1.25rem; border-radius: 999px;
  font-weight: 500; font-size: .95rem; line-height: 1; text-decoration: none; white-space: nowrap;
  border: 1px solid transparent;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.btn--lg { padding: 1rem 1.6rem; font-size: 1rem; }
.btn--solid { background: var(--forest); color: var(--cream); box-shadow: 0 10px 24px -14px rgba(43, 95, 90, .7); }
.btn--solid:hover { background: var(--forest-2); color: #fff; transform: translateY(-1px); box-shadow: 0 14px 28px -14px rgba(43, 95, 90, .8); }
.btn--ghost { border-color: var(--ink); color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); }
.btn:active { transform: translateY(0); }

/* ---------- nav ---------- */
.nav {
  position: sticky; top: .75rem; z-index: 50;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  margin: .75rem clamp(.75rem, 2.5vw, 2rem) 0; padding: .6rem .75rem .6rem 1.1rem;
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(28, 38, 31, .06); border-radius: 999px;
  box-shadow: 0 10px 30px -18px rgba(28, 38, 31, .25);
  transition: box-shadow .3s;
}
.nav--scrolled { box-shadow: 0 18px 40px -20px rgba(28, 38, 31, .4); }
.brand { display: flex; align-items: center; gap: .75rem; text-decoration: none; color: var(--ink); }
.brand__text { display: flex; flex-direction: column; line-height: 1.1; }
.brand__text strong { font-family: var(--serif); font-weight: 500; font-size: 1.2rem; letter-spacing: -.01em; }
.brand__text small { font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-2); margin-top: .15rem; white-space: nowrap; }
@media (max-width: 400px) { .brand__text small { font-size: .6rem; } .brand__text strong { font-size: 1.05rem; } }
.nav__menu { display: flex; align-items: center; gap: 1.75rem; }
.nav__menu > .btn { margin-left: .25rem; }
.nav__menu > a:not(.btn) { color: var(--ink); text-decoration: none; font-size: .95rem; font-weight: 500; position: relative; }
.nav__menu > a:not(.btn)::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -.35em; height: 1px; background: var(--forest); transition: right .3s var(--ease); }
.nav__menu > a:not(.btn):hover::after { right: 0; }
.nav__toggle { display: none; }

/* ---------- hero ---------- */
.hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: grid; align-items: end;
  min-height: calc(100svh - 1.5rem); margin-top: -4.75rem;
  padding: 8rem var(--gutter) clamp(3rem, 7vh, 5rem);
  color: var(--cream);
  background: var(--ink-deep);
}
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 50%; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(20, 32, 28, .88) 0%, rgba(20, 32, 28, .72) 32%, rgba(20, 32, 28, .28) 62%, rgba(20, 32, 28, .1) 100%),
    linear-gradient(180deg, rgba(20, 32, 28, .35) 0%, rgba(20, 32, 28, 0) 30%, rgba(20, 32, 28, .55) 100%);
}
.hero__copy { max-width: 40rem; }
.hero__title {
  font-size: clamp(3rem, 7.6vw, 5.6rem); line-height: .96; letter-spacing: -.025em;
  font-variation-settings: "opsz" 144; font-weight: 500; color: var(--cream);
}
.hero__title span { display: block; }
.hero__title em { font-style: italic; color: var(--moss); font-weight: 500; }
.hero__sub { font-family: var(--sans); font-size: clamp(1rem, 1.3vw, 1.15rem); font-weight: 500; letter-spacing: .02em; text-transform: uppercase; color: var(--moss); margin-top: 1.1rem; line-height: 1.3; letter-spacing: .08em; }
.hero__lead { max-width: 34rem; font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; color: var(--cream-70); margin-top: 1.5rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }
.btn--light { background: var(--cream); color: var(--ink); box-shadow: 0 12px 28px -14px rgba(0, 0, 0, .6); }
.btn--light:hover { background: #fff; color: var(--ink); transform: translateY(-1px); }
.btn--outline { border-color: rgba(245, 240, 230, .7); color: var(--cream); }
.btn--outline:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.hero__checks { list-style: none; margin: 1.75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem; font-size: .92rem; color: var(--cream-70); }
.hero__checks li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__checks svg { color: var(--moss); flex: none; }
.hero__checks a { color: var(--cream); text-decoration-color: rgba(245, 240, 230, .5); }
.hero ::selection { background: var(--cream); color: var(--ink); }

.chips { list-style: none; margin: 0; padding: 0; position: absolute; right: var(--gutter); bottom: clamp(3rem, 7vh, 5rem); display: grid; gap: .6rem; justify-items: end; }
.chip {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .55rem .95rem .55rem .55rem; border-radius: 999px;
  background: rgba(251, 248, 242, .92); color: var(--ink); font-weight: 500; font-size: .9rem; white-space: nowrap;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px -14px rgba(0, 0, 0, .6);
}
.chip__ico { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--forest); color: var(--cream); }
.chip--3 .chip__ico { background: var(--clay); }

/* hero entrance: the one authored moment */
@media (prefers-reduced-motion: no-preference) {
  .hero__title span, .hero__lead, .hero__actions, .hero__checks { animation: rise 1.1s var(--ease) both; }
  .hero__title span:nth-child(2) { animation-delay: .08s; }
  .hero__lead { animation-delay: .2s; }
  .hero__actions { animation-delay: .3s; }
  .hero__checks { animation-delay: .38s; }
  .hero__bg img { animation: settle 2.4s var(--ease) both; }
  .chip { animation: rise 1s var(--ease) both; }
  .chip--1 { animation-delay: .7s; } .chip--2 { animation-delay: .85s; } .chip--3 { animation-delay: 1s; }
  .js .reveal { opacity: 0; transform: translateY(24px); filter: blur(6px); transition: opacity .9s var(--ease), transform .9s var(--ease), filter .9s var(--ease); }
  .js .reveal.in { opacity: 1; transform: none; filter: none; }
}
@keyframes settle { from { transform: scale(1.06); } to { transform: none; } }
@keyframes rise {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to { opacity: 1; transform: none; filter: none; }
}

/* ---------- manifesto ---------- */
.manifesto {
  background: var(--forest); color: var(--cream);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.manifesto blockquote { margin: 0 auto; max-width: 52rem; text-align: center; }
.manifesto p {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: clamp(1.6rem, 3.4vw, 2.75rem); line-height: 1.25; letter-spacing: -.01em;
  font-variation-settings: "opsz" 144;
}
.manifesto cite { display: block; margin-top: 1.75rem; font-style: normal; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(245, 240, 230, .8); }
.manifesto ::selection { background: var(--cream); color: var(--forest); }

/* ---------- metodo ---------- */
.metodo {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.metodo__intro { position: sticky; top: 6.5rem; align-self: start; }
.metodo__intro p { margin-top: 1.5rem; max-width: 30rem; font-size: 1.1rem; color: var(--ink-2); }
.steps { list-style: none; margin: 0; padding: 0; }
.steps li {
  display: grid; grid-template-columns: 4.5rem 1fr; gap: 1rem;
  padding-block: 2.25rem; border-top: 1px solid var(--sand);
}
.steps li:last-child { border-bottom: 1px solid var(--sand); }
.steps__n {
  font-family: var(--serif); font-variation-settings: "opsz" 144; font-weight: 300; font-style: italic;
  font-size: 3.25rem; line-height: .8; color: var(--clay);
}
.steps h3 { margin-bottom: .6rem; }
.steps p { color: var(--ink-2); max-width: 36rem; }

/* ---------- percorsi ---------- */
.percorsi {
  display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: clamp(2rem, 6vw, 6rem); align-items: center;
  padding-block: 0 clamp(4rem, 9vw, 8rem);
}
.percorsi__copy > p:first-of-type { margin-top: 1.5rem; max-width: 34rem; font-size: 1.1rem; color: var(--ink-2); }
.checks { list-style: none; margin: 1.75rem 0 0; padding: 0; display: grid; gap: .7rem; }
.checks li { display: flex; align-items: flex-start; gap: .65rem; }
.checks svg { flex: none; margin-top: .2rem; color: var(--forest-2); }
.percorsi__label { margin-top: 2.25rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.pills { list-style: none; margin: .75rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem; }
.pills li { padding: .5rem .95rem; border-radius: 999px; border: 1px solid var(--sand); background: var(--paper); font-size: .92rem; color: var(--ink); }
.percorsi__figure { margin: 0; padding: 4% 6% 6% 2%; }
.percorsi__figure img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; object-position: 50% 40%; border-radius: 28px; box-shadow: 0 30px 60px -36px rgba(28, 38, 31, .5); }

/* ---------- blob masks ---------- */
.blob { position: relative; isolation: isolate; }
.blob img, .blob::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 2c9 0 14 6 22 8s17 1 22 9-1 16 1 24 8 16 3 24-14 8-20 14-8 15-18 16-15-7-23-9-18 0-23-8 1-16-1-24S4 40 9 32s14-8 20-14S37 3 50 2z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cpath d='M50 2c9 0 14 6 22 8s17 1 22 9-1 16 1 24 8 16 3 24-14 8-20 14-8 15-18 16-15-7-23-9-18 0-23-8 1-16-1-24S4 40 9 32s14-8 20-14S37 3 50 2z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.blob img { aspect-ratio: 1 !important; border-radius: 0 !important; box-shadow: none !important; }
.blob::before { content: ""; position: absolute; inset: 0; z-index: -1; transform: translate(-5%, 6%) rotate(-12deg); }
.blob--moss::before { background: var(--moss); }
.blob--sand::before { background: var(--sand-warm); }

/* ---------- bio ---------- */
.bio {
  background: var(--paper);
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 7rem); align-items: center;
  padding-block: clamp(4rem, 9vw, 8rem);
}
.bio__figure { padding: 4% 4% 8% 6%; }
.bio__figure img { border-radius: 16px; aspect-ratio: 1; object-fit: cover; object-position: 50% 40%; box-shadow: 0 30px 50px -36px rgba(28, 38, 31, .5); }
.bio__copy { max-width: 40rem; }
.bio__copy h2 { margin-bottom: 1.25rem; }
.bio__intro { font-weight: 500; color: var(--forest); margin-bottom: 1.25rem; }
.bio__open { font-family: var(--serif); font-size: clamp(1.35rem, 2vw, 1.65rem); line-height: 1.35; font-variation-settings: "opsz" 48; }
.bio__copy p + p { margin-top: 1.25em; }
.bio__copy > p:not(.bio__open):not(.bio__sign) { color: var(--ink-2); }
.bio__sign { font-family: var(--serif); font-style: italic; font-size: 1.35rem; color: var(--forest); margin-top: 2rem !important; }
.formazione { margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid var(--sand); }
.formazione h3 { margin-bottom: 1rem; }
.formazione .checks { margin-top: 0; }
.checks--2col { grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr)); gap: .7rem 2rem; }

/* ---------- quote ---------- */
.quote {
  position: relative; isolation: isolate; text-align: center; color: var(--cream);
  padding-block: clamp(6rem, 14vw, 11rem);
  background: linear-gradient(180deg, rgba(20, 32, 28, .62), rgba(20, 32, 28, .8)), #1F3A36 url("assets/img/quote-bg.jpg?v=1787935437") center / cover no-repeat;
}
@supports (background-image: url("a.webp")) { .quote { background-image: linear-gradient(180deg, rgba(20, 32, 28, .62), rgba(20, 32, 28, .8)), url("assets/img/quote-bg.webp?v=1787935437"); } }
.quote__inner { max-width: 46rem; margin-inline: auto; }
.quote p {
  font-family: var(--serif); font-variation-settings: "opsz" 144; font-weight: 300;
  font-size: clamp(1.75rem, 4vw, 3.4rem); line-height: 1.15; letter-spacing: -.015em; color: var(--cream); text-wrap: balance;
}
.quote span { display: inline-block; margin-top: 1.75rem; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; color: var(--moss); }
.quote ::selection { background: var(--cream); color: var(--forest); }

/* ---------- studi ---------- */
.studi {
  background: var(--ink); color: var(--cream);
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.studi h2 { color: var(--cream); }
.studi__head p { margin-top: 1.5rem; max-width: 30rem; font-size: 1.1rem; color: var(--cream-50); }
.studi__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1.5rem; margin-top: 2.25rem; }
.studi .btn--solid { background: var(--cream); color: var(--ink); box-shadow: none; }
.studi .btn--solid:hover { background: #fff; color: var(--ink); }
.studi__phone { display: inline-flex; align-items: center; gap: .5rem; color: var(--cream); text-decoration: none; font-size: 1.05rem; font-variant-numeric: tabular-nums; border-bottom: 1px solid var(--line-dark); }
.studi__phone:hover { color: #fff; border-bottom-color: var(--cream); }
.studi__list { display: grid; gap: 0; align-self: center; }
.studio { padding-block: 2rem; border-top: 1px solid var(--line-dark); }
.studio:last-child { border-bottom: 1px solid var(--line-dark); }
.studio h3 { color: var(--cream); display: flex; align-items: center; gap: .6rem; }
.studio--online h3 svg { color: var(--moss); }
.studio address, .studio__note { font-style: normal; margin-top: .75rem; color: var(--cream-50); line-height: 1.5; }
.studio a { display: inline-block; margin-top: 1rem; color: var(--moss); text-decoration-color: var(--line-dark); }
.studio a:hover { color: var(--cream); }
.studi ::selection { background: var(--cream); color: var(--ink); }

/* ---------- faq ---------- */
.faq {
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: clamp(2rem, 6vw, 7rem);
  padding-block: clamp(4rem, 9vw, 8rem);
}
.faq__head { position: sticky; top: 6.5rem; align-self: start; }
.faq__head p { margin-top: 1.25rem; max-width: 28rem; color: var(--ink-2); }
.faq__item { border-top: 1px solid var(--sand); }
.faq__item:last-child { border-bottom: 1px solid var(--sand); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; cursor: pointer; list-style: none;
  padding: 1.25rem 0; font-family: var(--serif); font-size: 1.3rem; line-height: 1.25; font-variation-settings: "opsz" 48;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary svg { flex: none; color: var(--forest); transition: transform .3s var(--ease); }
.faq__item[open] summary svg { transform: rotate(180deg); }
.faq__item p { padding: 0 0 1.5rem; max-width: 40rem; color: var(--ink-2); }

/* ---------- footer ---------- */
.footer {
  display: grid; grid-template-columns: 1fr auto; gap: 2rem 3rem; align-items: start;
  padding: 3rem var(--gutter) 2.5rem; border-top: 1px solid var(--sand);
  font-size: .9rem; color: var(--ink-2);
}
.footer__brand { display: flex; gap: 1rem; align-items: flex-start; line-height: 1.5; }
.footer__brand strong { color: var(--ink); }
.footer__links { display: flex; gap: 1.5rem; }
.footer__links a { color: var(--ink); text-decoration: none; }
.footer__links a:hover { color: var(--forest); }
.footer__credit { grid-column: 1 / -1; padding-top: 1.5rem; border-top: 1px solid var(--sand); }

/* ---------- sticky cta (mobile) ---------- */
.stickycta { display: none; }

/* ---------- responsive ---------- */
/* tablet e mobile: menu a tendina (5 voci + bottone non stanno in barra sotto i 1024px) */
@media (max-width: 1023px) {
  .nav__toggle {
    display: grid; gap: 5px; place-content: center;
    width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 0;
  }
  .nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease); }
  .nav__toggle[aria-expanded="true"] span:first-child { transform: translateY(3.25px) rotate(45deg); }
  .nav__toggle[aria-expanded="true"] span:last-child { transform: translateY(-3.25px) rotate(-45deg); }
  .nav__menu {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; align-items: flex-start; gap: 1.75rem;
    padding: calc(6rem + env(safe-area-inset-top)) var(--gutter) 3rem; background: var(--cream);
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s;
  }
  .nav__menu > a:not(.btn) { font-family: var(--serif); font-size: clamp(1.75rem, 4vw, 2.25rem); }
  .nav__menu > .btn { margin: .5rem 0 0; }
  /* backdrop-filter rende la nav contenitore dei fixed: va tolto mentre il pannello è aperto */
  .menu-open .nav { backdrop-filter: none; -webkit-backdrop-filter: none; background: var(--cream); }
  .menu-open .nav__menu { opacity: 1; visibility: visible; transform: none; }
  .menu-open { overflow: hidden; }
}
@media (max-width: 900px) {
  .metodo, .bio, .studi, .percorsi, .faq { grid-template-columns: 1fr; }
  .faq__head { position: static; }
  .percorsi__figure img { aspect-ratio: 4 / 3; }
  .chips { position: static; margin-top: 2rem; display: flex; flex-wrap: wrap; gap: .5rem; justify-items: start; }
  .metodo__intro { position: static; }
  .bio__figure { max-width: 320px; }
  .footer { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .steps li { grid-template-columns: 3.25rem 1fr; }
  .steps__n { font-size: 2.5rem; }
  .studi__actions { flex-direction: column; align-items: flex-start; }
  .hero { display: block; min-height: 0; padding: 0 var(--gutter) 2.5rem; }
  .hero::before { display: none; }
  .hero__bg { position: relative; display: block; height: 64svh; min-height: 420px; margin: 0 calc(-1 * var(--gutter)); z-index: 0; }
  .hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(31, 42, 37, .35) 0%, rgba(31, 42, 37, 0) 30%, rgba(31, 42, 37, 0) 70%, var(--ink-deep) 100%); }
  .hero__bg img { object-position: 50% 30%; }
  .hero__copy { margin-top: -1.5rem; position: relative; }
  .hero__title { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .chip { font-size: .8rem; padding: .4rem .75rem .4rem .4rem; } .chip__ico { width: 26px; height: 26px; }
  .stickycta {
    display: flex; gap: .6rem; position: fixed; left: .75rem; right: .75rem; bottom: max(.75rem, env(safe-area-inset-bottom)); z-index: 40;
    padding: .5rem; border-radius: 999px; background: color-mix(in srgb, var(--paper) 94%, transparent);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); box-shadow: 0 18px 40px -18px rgba(28, 38, 31, .5);
  }
  .stickycta .btn { flex: 1; justify-content: center; padding: .9rem 1rem; }
  .stickycta__wa { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--ink); color: var(--ink); }
  .footer { padding-bottom: calc(6rem + env(safe-area-inset-bottom)); }
}

/* ---------- input e schermi ---------- */
@media (pointer: coarse) {
  .studio a, .footer__links a, .studi__phone, .hero__checks a { padding-block: .45rem; }
  .studio a, .footer__links a { display: inline-block; }
  .pills li { padding: .6rem 1.05rem; }
}
@media (hover: none) {
  .btn--solid:hover, .btn--light:hover { transform: none; }
}
@media (min-width: 1600px) {
  :root { --gutter: calc((100vw - 1440px) / 2); }
}
