/* PERSONALIZZAZIONE RAPIDA: palette, font e misure principali */
:root {
  --ink: #0a0a09;
  --ink-soft: #151411;
  --cream: #eee7da;
  --paper: #f6f0e5;
  --sand: #c8bba5;
  --line-light: rgba(238, 231, 218, 0.22);
  --line-dark: rgba(10, 10, 9, 0.2);
  --hero-image: url("./assets/hero.jpg");
  --studio-image: url("./assets/studio.jpg");
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
  --page: min(1440px, calc(100% - 2.5rem));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--ink); color: var(--cream); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
::selection { background: var(--sand); color: var(--ink); }

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 1.25rem;
  width: calc(100% - 2.5rem);
  height: 82px;
  transform: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line-light);
  transition: background .3s ease, width .3s ease, padding .3s ease;
}

.site-header.scrolled { left: 0; width: 100%; padding-inline: 1.25rem; background: rgba(10, 10, 9, .93); }
.brand { display: grid; position: relative; z-index: 2; gap: 2px; }
.brand strong { font-size: 1.4rem; line-height: 1; letter-spacing: .19em; }
.brand-logo-image { width: auto; height: 29px; max-width: 175px; object-fit: contain; object-position: left center; }
.brand small { font-size: .5rem; letter-spacing: .18em; text-transform: uppercase; opacity: .7; }
.nav-book { display: none; }
.menu-toggle { position: relative; z-index: 2; width: 42px; height: 42px; border: 1px solid var(--line-light); background: transparent; display: grid; place-content: center; gap: 6px; cursor: pointer; }
.menu-toggle span { width: 18px; height: 1px; background: currentColor; transition: transform .25s ease; }
.menu-toggle.active span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.active span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.nav-links { position: fixed; inset: 0; background: var(--ink); display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.8rem; font-family: var(--serif); font-size: 2.4rem; opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
.nav-links.open { opacity: 1; visibility: visible; }

.hero {
  min-height: 100svh;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-content: end;
  padding: 9.5rem max(1.25rem, calc((100vw - 1440px) / 2)) 1.7rem;
  background: #11100e;
}
.hero::before { content: ""; position: absolute; inset: 0; z-index: -2; background: var(--hero-image) 62% center / cover no-repeat; filter: grayscale(1) contrast(1.07); }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(0deg, rgba(6,6,5,.92) 0%, rgba(6,6,5,.35) 56%, rgba(6,6,5,.4) 100%), linear-gradient(90deg, rgba(6,6,5,.6), transparent); }
.hero-copy { width: 100%; max-width: 1000px; }
.eyebrow, .section-kicker { margin: 0 0 1.25rem; text-transform: uppercase; letter-spacing: .22em; font-size: .62rem; font-weight: 600; }
.hero h1 { max-width: 1060px; margin: 0; font-size: clamp(3.65rem, 17vw, 6rem); line-height: .84; letter-spacing: -.068em; text-transform: uppercase; font-weight: 700; }
.hero h1 em, h2 em { font-family: var(--serif); font-weight: 400; text-transform: none; }
.hero-intro { max-width: 510px; margin: 1.8rem 0 0; font-size: .94rem; line-height: 1.65; color: rgba(238,231,218,.82); }
.hero-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 1.2rem; margin-top: 1.8rem; }
.button { display: inline-flex; align-items: center; justify-content: space-between; min-width: 172px; padding: 1.05rem 1.15rem; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .14em; font-size: .67rem; font-weight: 600; transition: background .2s ease, color .2s ease, transform .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-light { background: var(--cream); color: var(--ink); }
.button-dark { background: var(--ink); color: var(--cream); }
.button-outline-dark { border-color: var(--ink); color: var(--ink); }
.text-link { display: inline-block; padding-bottom: .28rem; border-bottom: 1px solid currentColor; font-size: .72rem; letter-spacing: .1em; }
.hero-foot { display: flex; justify-content: space-between; margin-top: 3.6rem; padding-top: 1.1rem; border-top: 1px solid var(--line-light); text-transform: uppercase; letter-spacing: .14em; font-size: .54rem; color: rgba(238,231,218,.72); }
.hero-foot span:last-child { display: none; }

.section { background: var(--paper); color: var(--ink); padding: 6rem max(1.25rem, calc((100vw - 1440px) / 2)); }
.section-dark { background: var(--ink); color: var(--cream); }
.section h2, .section-dark h2 { margin: 0; font-size: clamp(3.1rem, 14vw, 5.6rem); line-height: .89; letter-spacing: -.06em; text-transform: uppercase; }
.section-heading > p:last-child { max-width: 450px; margin: 1.8rem 0 0; font-size: .95rem; line-height: 1.7; color: rgba(10,10,9,.66); }

.service-list { margin-top: 3.5rem; border-top: 1px solid var(--line-dark); }
.service-row { display: grid; grid-template-columns: 28px 1fr auto; column-gap: .65rem; row-gap: .65rem; align-items: start; padding: 1.25rem 0; border-bottom: 1px solid var(--line-dark); }
.service-number, .service-time { color: rgba(10,10,9,.48); font-size: .58rem; letter-spacing: .1em; }
.service-row h3 { margin: 0; font-family: var(--serif); font-size: 1.25rem; font-weight: 400; }
.service-row p { margin: .35rem 0 0; color: rgba(10,10,9,.55); font-size: .7rem; }
.service-row strong { grid-column: 3; grid-row: 1; font-size: .88rem; }
.service-time { grid-column: 2; }
.price-note { margin: 1rem 0 0; color: rgba(10,10,9,.5); font-size: .62rem; }

.about { display: grid; padding: 1.25rem; }
.about-image { min-height: 62vh; background: var(--studio-image) center / cover no-repeat; filter: grayscale(1); }
.about-copy { padding: 5rem 0 5.5rem; }
.about-copy .lead { margin: 2.2rem 0 1.25rem; font-family: var(--serif); font-size: 1.35rem; line-height: 1.45; }
.about-copy > p:not(.section-kicker):not(.lead) { color: rgba(238,231,218,.65); font-size: .9rem; line-height: 1.75; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line-light); }
.stats div { display: grid; gap: .5rem; }
.stats strong { font-family: var(--serif); font-size: 1.9rem; font-weight: 400; }
.stats span { font-size: .55rem; line-height: 1.4; text-transform: uppercase; letter-spacing: .1em; color: rgba(238,231,218,.52); }

.reviews-head { display: grid; gap: 2.5rem; }
.google-score { display: grid; grid-template-columns: auto auto; justify-content: start; align-items: center; gap: .3rem .8rem; }
.google-g { grid-row: span 2; display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: #fff; color: #4285f4; font: 700 1.35rem Arial, sans-serif; box-shadow: 0 8px 28px rgba(0,0,0,.09); }
.google-score strong { font-family: var(--serif); font-size: 1.8rem; }
.stars { color: #aa7a2e; letter-spacing: .07em; font-size: .72rem; }
.google-score small { grid-column: 2; color: rgba(10,10,9,.5); font-size: .62rem; }
.review-grid { display: grid; gap: 1px; margin-top: 3.5rem; background: var(--line-dark); border: 1px solid var(--line-dark); }
.review-card { min-height: 285px; padding: 1.7rem; background: var(--paper); display: flex; flex-direction: column; justify-content: space-between; }
.review-card blockquote { margin: 1.6rem 0 2.4rem; font-family: var(--serif); font-size: 1.3rem; line-height: 1.42; }
.review-card footer { display: grid; gap: .25rem; }
.review-card footer strong { font-size: .7rem; text-transform: uppercase; letter-spacing: .11em; }
.review-card footer span { color: rgba(10,10,9,.46); font-size: .62rem; }

.gallery { padding: 6rem 1.25rem 1.25rem; }
.gallery-head { display: grid; gap: 2rem; margin-bottom: 3.5rem; }
.gallery-head .text-link { justify-self: start; }
.gallery-grid { display: grid; grid-template-columns: 1fr 1fr; grid-auto-rows: 220px; gap: .6rem; }
.gallery-item { margin: 0; overflow: hidden; background: var(--ink-soft); }
.gallery-item img { filter: grayscale(1); transition: transform .65s cubic-bezier(.2,.7,.2,1), filter .4s ease; }
.gallery-item:hover img { transform: scale(1.035); filter: grayscale(.25); }
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.visit-heading { margin-bottom: 3.7rem; }
.visit-grid { display: grid; gap: 4rem; }
.visit-grid h3 { margin: 0 0 1.5rem; text-transform: uppercase; letter-spacing: .15em; font-size: .65rem; }
.hours-row { display: flex; justify-content: space-between; gap: 1rem; padding: .8rem 0; border-bottom: 1px solid var(--line-dark); font-size: .75rem; }
.hours-row strong { font-weight: 500; }
.contact-block { display: flex; align-items: flex-start; flex-direction: column; }
.contact-block address { max-width: 250px; margin-bottom: 1.3rem; font-family: var(--serif); font-size: 1.4rem; font-style: normal; line-height: 1.35; }
.contact-block > a { margin-bottom: .55rem; padding-bottom: .18rem; border-bottom: 1px solid var(--line-dark); font-size: .78rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.map-wrap { position: relative; height: 420px; margin-top: 4.5rem; background: #d1cec7; overflow: hidden; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; filter: grayscale(1) contrast(.9); }
.map-label { position: absolute; left: 1rem; right: 1rem; bottom: 1rem; display: flex; justify-content: space-between; align-items: center; padding: 1rem; background: var(--ink); color: var(--cream); text-transform: uppercase; letter-spacing: .12em; font-size: .62rem; }

.final-cta { padding: 7rem 1.25rem; text-align: center; }
.final-cta h2 { margin: 0 auto 2.5rem; }
.final-cta .button { margin-inline: auto; }

.footer { padding: 3.5rem 1.25rem 6rem; background: var(--ink); color: var(--cream); border-top: 1px solid var(--line-light); }
.footer-brand { display: inline-grid; gap: .2rem; font-size: 2.7rem; font-weight: 700; letter-spacing: .14em; }
.footer-brand small { font-size: .53rem; text-transform: uppercase; letter-spacing: .2em; opacity: .55; }
.footer-links { display: flex; flex-wrap: wrap; gap: 1rem 1.5rem; margin: 2.5rem 0; font-size: .68rem; text-transform: uppercase; letter-spacing: .12em; }
.footer-meta { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; padding-top: 1rem; border-top: 1px solid var(--line-light); color: rgba(238,231,218,.45); font-size: .55rem; text-transform: uppercase; letter-spacing: .1em; }
.whatsapp-float { position: fixed; z-index: 40; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: .6rem; padding: .55rem .9rem .55rem .55rem; background: #e7dfd0; color: var(--ink); box-shadow: 0 10px 35px rgba(0,0,0,.3); border-radius: 99px; font-size: .63rem; text-transform: uppercase; letter-spacing: .1em; }
.whatsapp-float span { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: #1b1b18; color: var(--cream); font-size: .58rem; font-weight: 700; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.visible { opacity: 1; transform: none; }

@media (min-width: 760px) {
  :root { --page: min(1440px, calc(100% - 6rem)); }
  .site-header { left: 50%; width: var(--page); height: 96px; transform: translateX(-50%); }
  .site-header.scrolled { left: 50%; padding-inline: 3rem; backdrop-filter: blur(14px); }
  .brand strong { font-size: 1.65rem; }
  .nav-book { display: inline-block; padding: .8rem 1.05rem; border: 1px solid var(--cream); text-transform: uppercase; letter-spacing: .14em; font-size: .62rem; }
  .menu-toggle { display: none; }
  .nav-links { position: static; opacity: 1; visibility: visible; flex-direction: row; background: transparent; font-family: var(--sans); font-size: .64rem; text-transform: uppercase; letter-spacing: .15em; }
  .hero { padding-inline: max(3rem, calc((100vw - 1440px) / 2)); }
  .hero::after { background: linear-gradient(90deg, rgba(6,6,5,.9) 0%, rgba(6,6,5,.56) 48%, rgba(6,6,5,.12) 78%), linear-gradient(0deg, rgba(6,6,5,.75), transparent 52%); }
  .hero h1 { font-size: clamp(5rem, 10vw, 9.6rem); }
  .hero-actions { flex-direction: row; align-items: center; gap: 2rem; }
  .hero-foot span:last-child { display: inline; }
  .section { padding: 8rem max(3rem, calc((100vw - 1440px) / 2)); }
  .section h2, .section-dark h2 { font-size: clamp(4.5rem, 7.4vw, 7.4rem); }
  .section-heading { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; column-gap: 4rem; }
  .section-heading .section-kicker { grid-column: 1 / -1; }
  .section-heading > p:last-child { margin: 0 0 .5rem; }
  .service-row { grid-template-columns: 42px 1fr 110px 70px; align-items: center; padding: 1.45rem 0; }
  .service-row h3 { font-size: 1.5rem; }
  .service-row strong, .service-time { grid-column: auto; grid-row: auto; }
  .service-time { text-align: right; }
  .service-row strong { text-align: right; }
  .about { grid-template-columns: 1.05fr .95fr; padding: 1.5rem; min-height: 800px; }
  .about-copy { display: flex; flex-direction: column; justify-content: center; padding: 6rem max(4rem, 8vw); }
  .reviews-head { grid-template-columns: 1fr auto; align-items: end; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery { padding: 8rem 1.5rem 1.5rem; }
  .gallery-head { grid-template-columns: 1fr auto; align-items: end; padding-inline: max(1.5rem, calc((100vw - 1440px) / 2)); }
  .gallery-head .text-link { justify-self: end; }
  .gallery-grid { grid-template-columns: 1.15fr .85fr 1fr; grid-template-rows: 340px 340px; gap: .8rem; }
  .gallery-tall { grid-row: span 2; }
  .gallery-wide { grid-column: 2 / 4; }
  .visit-grid { grid-template-columns: 1fr 1fr; gap: 10vw; }
  .map-wrap { height: 560px; }
  .map-label { left: auto; width: 270px; }
  .final-cta { padding: 10rem 3rem; }
  .footer { padding: 5rem max(3rem, calc((100vw - 1440px) / 2)) 3rem; }
  .footer { display: grid; grid-template-columns: 1fr auto; align-items: start; }
  .footer-links { justify-content: flex-end; margin: .7rem 0 0; }
  .footer-meta { grid-column: 1 / -1; margin-top: 4rem; }
}

@media (min-width: 1100px) {
  .nav-links { gap: 2.2rem; }
  .services { display: grid; grid-template-columns: .82fr 1.18fr; gap: 7vw; }
  .section-heading { display: block; }
  .section-heading > p:last-child { margin-top: 2.4rem; }
  .service-list { margin-top: 0; }
}

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