:root {
  --ink: #171717;
  --muted: #66645f;
  --paper: #f7f5ef;
  --white: #ffffff;
  --brand: #6c3a21;
  --brand-dark: #482414;
  --accent: #e5b91c;
  --accent-soft: #fff4bd;
  --line: rgba(23, 23, 23, 0.13);
  --shadow-sm: 0 10px 28px rgba(24, 20, 16, 0.09);
  --shadow-lg: 0 28px 70px rgba(24, 20, 16, 0.16);
  --radius-sm: 14px;
  --radius: 24px;
  --header-height: 88px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: fixed;
  z-index: 9999;
  left: 16px;
  top: -80px;
  padding: 10px 15px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.narrow { width: min(calc(100% - 40px), 850px); margin-inline: auto; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  color: var(--brand);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 3px; border-radius: 99px; background: var(--accent); }
.section-title {
  max-width: 900px;
  margin: 0 0 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -.03em;
}
.section-copy { max-width: 850px; color: #383633; font-size: 1.04rem; }
.section { padding: clamp(72px, 9vw, 125px) 0; }
.section--white { background: var(--white); }
.section--dark { color: white; background: var(--ink); }
.section--compact { padding: 58px 0; }

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto 0;
  height: var(--header-height);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: rgba(17,17,17,.88);
  backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, background .25s ease;
}
.site-header.scrolled { background: rgba(17,17,17,.96); box-shadow: 0 14px 35px rgba(0,0,0,.18); }
.header-inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 0; text-decoration: none; }
.brand img { width: min(330px, 36vw); height: 54px; object-fit: contain; object-position: left center; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.nav-list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-list a {
  position: relative;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--accent);
  transition: right .25s ease;
}
.nav-list a:hover::after, .nav-list a[aria-current="page"]::after { right: 0; }
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 999px;
  color: #fff;
  font-size: .88rem;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.header-call:hover { color: var(--ink); background: var(--accent); border-color: var(--accent); }
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 14px;
  color: white;
  background: transparent;
}
.menu-toggle span, .menu-toggle::before, .menu-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.page-main { padding-top: var(--header-height); }
.hero {
  position: relative;
  min-height: min(760px, calc(100vh - 24px));
  display: grid;
  align-items: end;
  overflow: hidden;
  color: white;
  background: #151515;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(9,9,9,.92) 0%, rgba(9,9,9,.55) 54%, rgba(9,9,9,.22) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.035);
  animation: heroIn 1.2s ease both;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(transparent, rgba(0,0,0,.48));
}
.hero--inner { min-height: 580px; }
.hero-content { position: relative; z-index: 1; max-width: 850px; padding: 90px 0 92px; }
.hero-kicker { margin: 0 0 16px; color: var(--accent); font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: .98;
  letter-spacing: -.045em;
}
.hero--inner h1 { font-size: clamp(2.7rem, 6vw, 5.5rem); }
.hero-address { margin: 25px 0 0; font-size: clamp(1.1rem, 2vw, 1.5rem); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 32px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--accent { color: #171717; background: var(--accent); box-shadow: 0 12px 24px rgba(229,185,28,.22); }
.btn--accent:hover { background: #f2ca34; }
.btn--brand { color: white; background: var(--brand); box-shadow: 0 12px 24px rgba(108,58,33,.18); }
.btn--brand:hover { background: var(--brand-dark); }
.btn--outline { color: white; border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.05); }
.btn--outline:hover { background: rgba(255,255,255,.13); }
.btn--ghost { color: var(--brand); border-color: rgba(108,58,33,.3); background: transparent; }

.intro-grid, .split-section, .contact-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(34px, 7vw, 90px); align-items: center; }
.split-section:nth-child(even) .split-media { order: 2; }
.split-media { position: relative; }
.split-media::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: -18px;
  bottom: -18px;
  width: 70%;
  height: 70%;
  border-radius: var(--radius);
  background: var(--accent-soft);
}
.split-media img { position: relative; z-index: 1; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.split-content .btn { margin-top: 18px; }

.feature-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 38px; }
.feature-card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: rgba(255,255,255,.65); box-shadow: var(--shadow-sm); }
.feature-card strong { display: block; margin-bottom: 7px; color: var(--brand); font-size: 1.08rem; }

.gallery-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 32px; }
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery-grid--shop { grid-template-columns: repeat(5, 1fr); }
.gallery-item {
  position: relative;
  min-height: 285px;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #ddd;
  box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; min-height: 285px; object-fit: cover; transition: transform .55s cubic-bezier(.2,.7,.2,1); }
.gallery-item::after { content: "Ingrandisci"; position: absolute; inset: auto 12px 12px auto; padding: 7px 11px; border-radius: 999px; color: white; background: rgba(0,0,0,.65); font-size: .75rem; font-weight: 800; opacity: 0; transform: translateY(8px); transition: .25s ease; }
.gallery-item:hover img { transform: scale(1.055); }
.gallery-item:hover::after { opacity: 1; transform: none; }

.callout {
  position: relative;
  overflow: hidden;
  padding: clamp(42px, 7vw, 72px);
  border-radius: 30px;
  color: white;
  background: linear-gradient(120deg, var(--brand-dark), var(--brand));
  box-shadow: var(--shadow-lg);
}
.callout::after { content: ""; position: absolute; width: 290px; height: 290px; right: -90px; top: -120px; border: 52px solid rgba(229,185,28,.18); border-radius: 50%; }
.callout h2 { position: relative; z-index: 1; max-width: 760px; margin: 0 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2rem, 4vw, 3.4rem); line-height: 1.08; }
.callout .btn { position: relative; z-index: 1; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.review-card { display: flex; flex-direction: column; min-height: 100%; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow-sm); }
.review-stars { color: #dcae00; letter-spacing: .12em; }
.review-text { flex: 1; margin: 18px 0 24px; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; line-height: 1.55; }
.review-user { display: grid; grid-template-columns: 1fr auto; align-items: end; gap: 12px; }
.review-user strong { display: block; }
.review-source { display: inline-flex; align-items: center; gap: 6px; color: var(--muted); font-size: .83rem; }
.review-source img { width: 18px; height: 18px; }

.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.product-list, .brand-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px 20px; }
.product-list li, .brand-list li { position: relative; padding-left: 24px; }
.product-list li::before, .brand-list li::before { content: ""; position: absolute; left: 0; top: .72em; width: 9px; height: 9px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(229,185,28,.18); }
.brand-panel { padding: 35px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-sm); }
.brand-panel h2 { margin-top: 0; }

.contact-overview { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: -70px; position: relative; z-index: 2; }
.info-card { padding: 28px; border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg); }
.info-icon { display: grid; place-items: center; width: 46px; height: 46px; margin-bottom: 18px; border-radius: 14px; color: var(--brand); background: var(--accent-soft); }
.info-card h2 { margin: 0 0 10px; font-size: 1.22rem; }
.info-card p, .info-card dl { margin: 0; }
.hours-list { display: grid; gap: 9px; }
.hours-row { display: grid; grid-template-columns: 92px 1fr; gap: 15px; }
.hours-row dt { font-weight: 800; }
.hours-row dd { margin: 0; }

.map-shell { position: relative; min-height: 500px; overflow: hidden; border-radius: var(--radius); background: #dedbd4; box-shadow: var(--shadow-lg); }
.map-shell iframe { width: 100%; height: 500px; border: 0; }
.map-consent { position: absolute; inset: 0; display: grid; place-content: center; justify-items: center; gap: 16px; padding: 35px; text-align: center; background: linear-gradient(135deg, #efece5, #ded7c8); }
.map-consent[hidden] { display: none; }
.map-consent p { max-width: 520px; margin: 0; }

.form-card { padding: clamp(28px, 5vw, 48px); border-radius: var(--radius); background: #fff; box-shadow: var(--shadow-lg); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.form-field { display: grid; gap: 7px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 800; }
.form-field input, .form-field textarea {
  width: 100%;
  border: 1px solid #c9c4b9;
  border-radius: 13px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fcfbf8;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-field input:focus, .form-field textarea:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(108,58,33,.12); }
.form-field textarea { min-height: 150px; resize: vertical; }
.checkbox-row { display: grid; grid-template-columns: auto 1fr; gap: 10px; align-items: start; font-size: .93rem; }
.checkbox-row input { margin-top: 5px; }
.form-note { color: var(--muted); font-size: .88rem; }
.form-status { display: none; margin-bottom: 18px; padding: 14px 16px; border-radius: 12px; font-weight: 700; }
.form-status.is-visible { display: block; }
.form-status--ok { color: #174f2b; background: #dff4e7; }
.form-status--error { color: #7a2020; background: #f9dddd; }
.honeypot { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.faq { display: grid; gap: 12px; margin-top: 32px; }
.faq details { border: 1px solid var(--line); border-radius: 16px; background: white; box-shadow: 0 7px 20px rgba(24,20,16,.05); }
.faq summary { list-style: none; position: relative; padding: 21px 58px 21px 22px; font-weight: 850; cursor: pointer; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 22px; top: 50%; transform: translateY(-50%); color: var(--brand); font-size: 1.7rem; line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq-answer { padding: 0 22px 22px; color: #44413d; }

.site-footer { color: #e8e3db; background: #111; }
.footer-main { display: grid; grid-template-columns: 1.25fr .75fr; gap: 60px; padding: 68px 0 42px; }
.footer-logo { width: min(430px, 100%); margin-bottom: 24px; }
.footer-details { display: grid; gap: 6px; }
.footer-details a { color: var(--accent); font-weight: 750; }
.footer-links { display: grid; align-content: start; gap: 12px; }
.footer-links a, .footer-links button { width: fit-content; padding: 0; border: 0; color: #e8e3db; background: none; text-align: left; text-decoration: underline; text-underline-offset: 4px; }
.external-footer { padding: 22px 0; border-top: 1px solid rgba(255,255,255,.13); color: #c8c1b8; font-size: .9rem; }
.external-footer-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 10px; text-align: center; }
.creator-link { color: #f0ebe3; font-weight: 760; text-decoration: none; text-underline-offset: 4px; transition: color .2s ease; }
.creator-link:hover, .creator-link:focus-visible { color: var(--accent); text-decoration: underline; }
.creator-separator { color: rgba(255,255,255,.38); }

.quick-actions { position: fixed; z-index: 800; right: 18px; bottom: 22px; display: grid; gap: 10px; }
.quick-action { display: grid; place-items: center; width: 52px; height: 52px; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; color: #fff; background: var(--brand); box-shadow: 0 12px 28px rgba(0,0,0,.22); text-decoration: none; transition: transform .2s ease, background .2s ease; }
.quick-action:hover { transform: translateY(-3px); background: var(--brand-dark); }
.quick-action svg { width: 23px; height: 23px; }

.cookie-banner { position: fixed; z-index: 2000; left: 18px; right: 18px; bottom: 18px; display: none; max-width: 1040px; margin: auto; padding: 20px; border: 1px solid rgba(255,255,255,.13); border-radius: 20px; color: white; background: rgba(17,17,17,.96); box-shadow: 0 28px 70px rgba(0,0,0,.34); backdrop-filter: blur(18px); }
.cookie-banner.is-visible { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 24px; animation: cookieIn .35s ease both; }
.cookie-banner p { margin: 0; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 9px; }
.cookie-actions button { min-height: 42px; padding: 9px 15px; border-radius: 999px; font-weight: 800; }
.cookie-accept { border: 1px solid var(--accent); background: var(--accent); color: #171717; }
.cookie-reject { border: 1px solid rgba(255,255,255,.35); background: transparent; color: white; }

.modal { width: min(calc(100% - 32px), 760px); max-height: min(86vh, 780px); padding: 0; border: 0; border-radius: 22px; color: var(--ink); background: white; box-shadow: var(--shadow-lg); }
.modal::backdrop { background: rgba(0,0,0,.72); backdrop-filter: blur(6px); }
.modal-inner { padding: 32px; }
.modal-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.modal-head h2 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: 2rem; }
.modal-close { display: grid; place-items: center; flex: 0 0 auto; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: #f7f5ef; font-size: 1.4rem; }
.modal-body h3 { margin-top: 26px; }
.lightbox { width: min(calc(100% - 24px), 1100px); padding: 0; border: 0; background: transparent; }
.lightbox::backdrop { background: rgba(0,0,0,.88); }
.lightbox img { max-height: 84vh; margin: auto; border-radius: 16px; box-shadow: 0 30px 80px rgba(0,0,0,.4); }
.lightbox-close { position: fixed; top: 18px; right: 18px; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: white; background: rgba(0,0,0,.55); font-size: 1.5rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

@keyframes heroIn { from { opacity: .55; transform: scale(1.09); } to { opacity: 1; transform: scale(1.035); } }
@keyframes cookieIn { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .brand img { width: min(290px, 56vw); height: 46px; }
  .menu-toggle { display: block; }
  .site-nav { position: fixed; inset: var(--header-height) 0 auto 0; display: none; padding: 26px 20px 32px; background: rgba(17,17,17,.98); border-top: 1px solid rgba(255,255,255,.1); box-shadow: 0 22px 45px rgba(0,0,0,.28); }
  .site-nav.is-open { display: grid; gap: 24px; }
  .nav-list { display: grid; gap: 20px; }
  .nav-list a { font-size: 1.1rem; }
  .header-call { width: fit-content; }
  .intro-grid, .split-section, .contact-grid, .service-layout { grid-template-columns: 1fr; }
  .split-section:nth-child(even) .split-media { order: initial; }
  .feature-band, .reviews-grid, .contact-overview { grid-template-columns: 1fr; }
  .contact-overview { margin-top: -40px; }
  .gallery-grid, .gallery-grid--shop { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 650px) {
  .container, .narrow { width: min(calc(100% - 28px), var(--container)); }
  .hero { min-height: 670px; }
  .hero::before { background-image: linear-gradient(180deg, rgba(9,9,9,.65), rgba(9,9,9,.9)), var(--hero-image); background-position: 55% center; }
  .hero-content { padding: 78px 0 62px; }
  .hero-actions .btn { width: 100%; }
  .section { padding: 70px 0; }
  .feature-band { gap: 12px; }
  .gallery-head { display: block; }
  .gallery-grid, .gallery-grid--shop { grid-template-columns: 1fr 1fr; gap: 9px; }
  .gallery-item, .gallery-item img { min-height: 220px; }
  .reviews-grid { gap: 13px; }
  .product-list, .brand-list { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field--full { grid-column: auto; }
  .map-shell, .map-shell iframe { min-height: 420px; height: 420px; }
  .cookie-banner.is-visible { grid-template-columns: 1fr; gap: 16px; }
  .cookie-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .quick-actions { right: 12px; bottom: 12px; }
  .quick-action { width: 48px; height: 48px; }
  .external-footer { font-size: .82rem; }
  .external-footer-inner { flex-direction: row; gap: 8px; }
}

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

.btn svg,
.header-call svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}
