/* ==========================================================
   BUFFET FRANCESCHINI v2 — Editorial Italian Restaurant
   Palette: #141A1C (scuro) · #FFA803 (oro) · #FAF5EB (crema)
   ========================================================== */

:root {
  --c-ink: #141A1C;
  --c-ink-deep: #0A0F10;
  --c-ink-warm: #1C2325;
  --c-gold: #FFA803;
  --c-gold-soft: #E89402;
  --c-cream: #FAF5EB;
  --c-cream-soft: #F2EBDD;
  --c-line: rgba(255, 168, 3, 0.18);
  --c-line-subtle: rgba(255, 255, 255, 0.08);
  --c-text: rgba(255, 255, 255, 0.78);
  --c-text-dim: rgba(255, 255, 255, 0.45);

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: 4.5rem;
  --space-7: 7rem;
  --space-8: 10rem;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--f-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-text);
  background: var(--c-ink);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 10px; background: var(--c-ink-deep); }
::-webkit-scrollbar-thumb { background: var(--c-gold-soft); border-radius: 10px; }

/* ===== SELECTION ===== */
::selection { background: var(--c-gold); color: var(--c-ink); }

/* ===== LAYOUT ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 var(--space-4); }
.container-narrow { max-width: 980px; margin: 0 auto; padding: 0 var(--space-4); }

/* ===== NAVBAR ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: var(--space-3) 0;
  background: rgba(20, 26, 28, 0);
  transition: background 0.4s var(--ease-out), padding 0.4s var(--ease-out), backdrop-filter 0.4s;
}
.nav.scrolled {
  background: rgba(20, 26, 28, 0.92);
  backdrop-filter: blur(20px) saturate(180%);
  padding: var(--space-2) 0;
  border-bottom: 1px solid var(--c-line-subtle);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-4);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img { height: 48px; width: auto; transition: transform 0.4s var(--ease-out); }
.nav-logo:hover img { transform: scale(1.05); }
.nav-menu {
  display: flex;
  list-style: none;
  gap: var(--space-5);
  align-items: center;
}
.nav-menu a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.4s var(--ease-out);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--c-gold); }
.nav-menu a.active::after, .nav-menu a:hover::after { width: 100%; }

.nav-cta {
  background: var(--c-gold);
  color: var(--c-ink);
  padding: 11px 22px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 168, 3, 0.3);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav-burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--c-cream);
  border-radius: 2px;
  transition: transform 0.4s, opacity 0.3s;
}
.nav-burger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.active span:nth-child(2) { opacity: 0; }
.nav-burger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-ink-deep);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}
.mobile-menu.active {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu a {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--c-cream);
  font-style: italic;
}
.mobile-menu a:hover { color: var(--c-gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  border: 1.5px solid transparent;
}
.btn-primary {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
}
.btn-primary:hover {
  background: transparent;
  color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255, 168, 3, 0.25);
}
.btn-ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: rgba(255, 255, 255, 0.2);
}
.btn-ghost:hover {
  border-color: var(--c-gold);
  color: var(--c-gold);
  transform: translateY(-3px);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px var(--space-4) var(--space-7);
  background: var(--c-ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  animation: kenBurns 20s ease-in-out infinite alternate;
  opacity: 0.35;
  filter: saturate(0.9);
}
@keyframes kenBurns {
  0% { transform: scale(1.1) translate(0, 0); }
  100% { transform: scale(1.2) translate(-2%, -2%); }
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, transparent, var(--c-ink) 70%),
    linear-gradient(180deg, var(--c-ink) 0%, transparent 30%, transparent 70%, var(--c-ink) 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 0 var(--space-4);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-4);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.2s forwards;
}
.hero-eyebrow::before {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--c-gold);
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--c-cream);
  margin-bottom: var(--space-4);
  max-width: 900px;
}
.hero h1 .italic {
  font-style: italic;
  color: var(--c-gold);
  font-weight: 400;
}
.hero h1 .line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s var(--ease-out) forwards;
}
.hero h1 .line:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .line:nth-child(2) { animation-delay: 0.45s; }
.hero h1 .line:nth-child(3) { animation-delay: 0.6s; }

.hero-lead {
  font-size: clamp(1rem, 1.3vw, 1.15rem);
  max-width: 560px;
  color: var(--c-text);
  margin-bottom: var(--space-5);
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.75s forwards;
}
.hero-ctas {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 0.9s forwards;
}
.hero-meta {
  position: absolute;
  bottom: var(--space-5);
  left: var(--space-4);
  right: var(--space-4);
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 3;
  opacity: 0;
  animation: fadeUp 1s var(--ease-out) 1.1s forwards;
}
.hero-meta-item {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
}
.hero-meta-item strong {
  display: block;
  color: var(--c-cream);
  font-family: var(--f-display);
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  margin-top: 4px;
  letter-spacing: normal;
  text-transform: none;
}

/* ===== SECTIONS ===== */
section { padding: var(--space-7) 0; position: relative; }
.section-head { margin-bottom: var(--space-6); max-width: 800px; }
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-3);
}
.section-eyebrow::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--c-gold);
}
.section-title {
  font-family: var(--f-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}
.section-title .italic { font-style: italic; color: var(--c-gold); }
.section-lead {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--c-text);
  max-width: 620px;
}

/* ===== ABOUT (benvenuti) ===== */
.about {
  padding: var(--space-8) 0;
  background: linear-gradient(180deg, var(--c-ink) 0%, var(--c-ink-warm) 100%);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-7);
  align-items: center;
}
.about-copy p {
  margin-bottom: var(--space-3);
  font-size: 1.05rem;
  line-height: 1.8;
}
.about-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: var(--space-4) 0;
}
.about-chip {
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-cream);
  background: rgba(255, 168, 3, 0.04);
  transition: all 0.3s;
}
.about-chip:hover {
  background: var(--c-gold);
  color: var(--c-ink);
  transform: translateY(-2px);
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 4px;
  overflow: hidden;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.about-image:hover img { transform: scale(1.05); }
.about-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--c-line);
  pointer-events: none;
}
.about-image-badge {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  background: rgba(20, 26, 28, 0.85);
  backdrop-filter: blur(20px);
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-gold);
  font-size: 1rem;
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--c-line-subtle);
}
.about-stat strong {
  display: block;
  font-family: var(--f-display);
  font-size: 3rem;
  font-weight: 400;
  color: var(--c-gold);
  line-height: 1;
  font-style: italic;
}
.about-stat span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--c-text-dim);
  margin-top: 6px;
  display: block;
}

/* ===== SERVICES ===== */
.services {
  background: var(--c-ink-deep);
  padding: var(--space-8) 0;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--c-line-subtle);
  border: 1px solid var(--c-line-subtle);
}
.service {
  background: var(--c-ink-deep);
  padding: var(--space-5);
  position: relative;
  transition: background 0.5s var(--ease-out);
  overflow: hidden;
}
.service::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(255, 168, 3, 0.08), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
}
.service:hover { background: var(--c-ink-warm); }
.service:hover::before { opacity: 1; }
.service-number {
  font-family: var(--f-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--c-gold);
  margin-bottom: var(--space-4);
  letter-spacing: 0.1em;
}
.service-title {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--c-cream);
  margin-bottom: var(--space-2);
  line-height: 1.1;
}
.service-title .italic { font-style: italic; color: var(--c-gold); }
.service-desc {
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--c-text);
  margin-bottom: var(--space-4);
  max-width: 460px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
  transition: gap 0.3s;
}
.service-link:hover { gap: 14px; }
.service-link::after { content: '→'; font-size: 1rem; }
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: var(--space-3);
}
.service-tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  padding: 4px 10px;
  border: 1px solid var(--c-line-subtle);
  border-radius: 999px;
}

/* ===== GALLERY ===== */
.gallery {
  padding: var(--space-8) 0;
  background: var(--c-ink);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 12px;
  grid-auto-flow: dense;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease-out);
}
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(20, 26, 28, 0.65));
  opacity: 0.6;
  transition: opacity 0.4s;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover::after { opacity: 0.9; }
.gallery-caption {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  color: var(--c-cream);
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-style: italic;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s, transform 0.5s var(--ease-out);
}
.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

.gi-tall { grid-column: span 4; aspect-ratio: 3/4; }
.gi-wide { grid-column: span 8; aspect-ratio: 16/9; }
.gi-med { grid-column: span 6; aspect-ratio: 4/3; }
.gi-sq { grid-column: span 4; aspect-ratio: 1/1; }

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 15, 16, 0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(20px);
}
.lightbox.active { display: flex; animation: fadeIn 0.4s; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 6px;
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  color: var(--c-cream);
  font-size: 24px;
  transition: all 0.3s;
}
.lightbox-close:hover { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  color: var(--c-cream);
  font-size: 24px;
  transition: all 0.3s;
}
.lightbox-prev { left: var(--space-4); }
.lightbox-next { right: var(--space-4); }
.lightbox-nav:hover { background: var(--c-gold); color: var(--c-ink); border-color: var(--c-gold); }

/* ===== HOURS ===== */
.hours {
  padding: var(--space-7) 0;
  background: linear-gradient(180deg, var(--c-ink-warm), var(--c-ink));
}
.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  align-items: start;
}
.hours-list { display: flex; flex-direction: column; gap: 1px; background: var(--c-line-subtle); }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) var(--space-4);
  background: var(--c-ink);
  transition: background 0.3s;
}
.hours-row:hover { background: var(--c-ink-warm); }
.hours-row.highlight { background: rgba(255, 168, 3, 0.06); border-left: 3px solid var(--c-gold); }
.hours-day {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--c-cream);
}
.hours-time {
  font-family: var(--f-display);
  font-style: italic;
  color: var(--c-gold);
  font-size: 1.1rem;
}
.hours-time.closed { color: var(--c-text-dim); font-style: normal; font-size: 13px; letter-spacing: 0.1em; text-transform: uppercase; font-family: var(--f-body); }

/* ===== CONTACT ===== */
.contact {
  padding: var(--space-7) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--space-6);
  align-items: start;
}
.contact-item {
  display: flex;
  gap: var(--space-2);
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--c-line-subtle);
  transition: padding 0.3s;
}
.contact-item:hover { padding-left: 8px; }
.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 168, 3, 0.12);
  color: var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-text-dim);
  margin-bottom: 4px;
}
.contact-value {
  font-family: var(--f-display);
  font-size: 1.25rem;
  color: var(--c-cream);
  font-style: italic;
}
.contact-value a:hover { color: var(--c-gold); }
.contact-map {
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid var(--c-line);
  aspect-ratio: 4/3;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
}
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.1); }

/* ===== FORM ===== */
.form-section {
  padding: var(--space-7) 0;
  background: var(--c-ink-warm);
}
.form {
  display: grid;
  gap: var(--space-3);
  max-width: 640px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-gold);
  font-weight: 600;
}
.form input, .form textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--c-line-subtle);
  padding: 14px 0;
  font-family: var(--f-body);
  font-size: 1rem;
  color: var(--c-cream);
  transition: border-color 0.3s;
}
.form input:focus, .form textarea:focus {
  outline: none;
  border-bottom-color: var(--c-gold);
}
.form textarea { resize: vertical; min-height: 120px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: var(--space-7) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--c-ink-deep);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 168, 3, 0.12), transparent 60%);
}
.cta-banner-inner { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; padding: 0 var(--space-4); }
.cta-banner .section-title { margin-bottom: var(--space-3); }

/* ===== FOOTER ===== */
.footer {
  background: var(--c-ink-deep);
  padding: var(--space-6) 0 var(--space-3);
  border-top: 1px solid var(--c-line-subtle);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-4);
  padding-bottom: var(--space-5);
  border-bottom: 1px solid var(--c-line-subtle);
}
.footer-brand img { height: 52px; margin-bottom: var(--space-2); }
.footer-brand p { font-size: 0.9rem; color: var(--c-text-dim); max-width: 320px; line-height: 1.7; }
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-2);
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 0.9rem;
  color: var(--c-text);
  transition: color 0.3s;
}
.footer ul a:hover { color: var(--c-gold); }
.footer-bottom {
  padding-top: var(--space-3);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: 0.8rem;
  color: var(--c-text-dim);
}
.footer-bottom a:hover { color: var(--c-gold); }

/* ===== SCROLL HINT ===== */
.scroll-hint {
  position: absolute;
  bottom: var(--space-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--c-text-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
  animation: bounce 2.5s ease-in-out infinite;
}
.scroll-hint::after {
  content: '';
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--c-gold), transparent);
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}
.reveal-stagger.visible > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.65s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.75s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.85s; }
.reveal-stagger.visible > *:nth-child(10) { transition-delay: 0.95s; }

/* ===== PAGE HEADERS (subpages) ===== */
.page-head {
  padding: 180px var(--space-4) var(--space-7);
  background: linear-gradient(180deg, var(--c-ink-deep), var(--c-ink));
  text-align: center;
  border-bottom: 1px solid var(--c-line-subtle);
  position: relative;
  overflow: hidden;
}
.page-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(255, 168, 3, 0.08), transparent 60%);
}
.page-head .breadcrumb {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--space-3);
  position: relative;
}
.page-head h1 {
  font-family: var(--f-display);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 1;
  color: var(--c-cream);
  letter-spacing: -0.02em;
  position: relative;
}
.page-head h1 .italic { font-style: italic; color: var(--c-gold); }
.page-head .lead {
  margin: var(--space-3) auto 0;
  max-width: 620px;
  font-size: 1.1rem;
  color: var(--c-text);
  position: relative;
}

/* ==========================================================
   CAROUSEL (edge-to-edge scroller with snap)
   ========================================================== */
.carousel {
  padding: 0;
  background: var(--c-ink);
  overflow: hidden;
  position: relative;
}
.carousel-head {
  max-width: 1280px;
  margin: 0 auto;
  padding: var(--space-6) var(--space-4) var(--space-4);
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.carousel-head .section-title { margin-bottom: 0; }
.carousel-controls { display: flex; gap: 8px; }
.carousel-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid var(--c-line);
  color: var(--c-cream);
  font-size: 20px;
  transition: all 0.3s var(--ease-out);
  display: flex;
  align-items: center;
  justify-content: center;
}
.carousel-btn:hover {
  background: var(--c-gold);
  color: var(--c-ink);
  border-color: var(--c-gold);
  transform: scale(1.05);
}
.carousel-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.carousel-track {
  display: flex;
  gap: var(--space-2);
  padding: 0 var(--space-4) var(--space-6);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-slide {
  flex: 0 0 auto;
  width: clamp(280px, 45vw, 560px);
  aspect-ratio: 4/5;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  scroll-snap-align: center;
  transition: transform 0.6s var(--ease-out);
}
.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.carousel-slide:hover img { transform: scale(1.06); }
.carousel-slide::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 26, 28, 0.7));
}
.carousel-caption {
  position: absolute;
  bottom: var(--space-3);
  left: var(--space-3);
  right: var(--space-3);
  z-index: 2;
  color: var(--c-cream);
}
.carousel-caption small {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  display: block;
  margin-bottom: 4px;
}
.carousel-caption h4 {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.1;
}
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--c-gold);
  width: 0;
  transition: width 0.3s;
  pointer-events: none;
}

/* ==========================================================
   FLOATING CALL WIDGET
   ========================================================== */
.call-widget {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.call-fab {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45), 0 0 0 0 rgba(34, 197, 94, 0.5);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s, background 0.3s;
  animation: callPulse 2.4s ease-out infinite;
  position: relative;
  border: 2px solid rgba(255, 255, 255, 0.15);
}
.call-fab svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  animation: phoneShake 3s ease-in-out infinite;
  transform-origin: center;
}
@keyframes phoneShake {
  0%, 80%, 100% { transform: rotate(0deg); }
  83% { transform: rotate(-14deg); }
  87% { transform: rotate(14deg); }
  91% { transform: rotate(-10deg); }
  95% { transform: rotate(6deg); }
}
.call-fab:hover {
  transform: scale(1.1);
  background: #16a34a;
  animation-play-state: paused;
}
.call-fab:hover svg { animation-play-state: paused; }
@keyframes callPulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45), 0 0 0 0 rgba(34, 197, 94, 0.55); }
  50% { box-shadow: 0 12px 32px rgba(34, 197, 94, 0.45), 0 0 0 18px rgba(34, 197, 94, 0); }
}
.call-label {
  background: rgba(20, 26, 28, 0.92);
  backdrop-filter: blur(20px);
  color: var(--c-cream);
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--c-line);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s;
  opacity: 0;
  transform: translateX(20px);
}
.call-widget:hover .call-label {
  opacity: 1;
  transform: translateX(0);
}
.call-label strong { color: var(--c-gold); }
.call-label-icon {
  width: 6px;
  height: 6px;
  background: #22c55e;
  border-radius: 50%;
  box-shadow: 0 0 8px #22c55e;
}

/* ==========================================================
   COOKIE BANNER
   ========================================================== */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 95;
  max-width: 520px;
  background: rgba(10, 15, 16, 0.97);
  backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: var(--space-3) var(--space-3);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
  transform: translateY(200%);
  transition: transform 0.6s var(--ease-out);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-title {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-cream);
  margin-bottom: 6px;
}
.cookie-banner-title span { color: var(--c-gold); }
.cookie-banner p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--c-text);
  margin-bottom: var(--space-2);
}
.cookie-banner p a { color: var(--c-gold); text-decoration: underline; }
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all 0.3s;
  cursor: pointer;
  border: 1px solid transparent;
}
.cookie-btn.primary {
  background: var(--c-gold);
  color: var(--c-ink);
}
.cookie-btn.primary:hover { background: #e69500; }
.cookie-btn.ghost {
  background: transparent;
  color: var(--c-cream);
  border-color: var(--c-line-subtle);
}
.cookie-btn.ghost:hover { border-color: var(--c-gold); color: var(--c-gold); }

/* Hide everything when call widget hovered on mobile-tap-open */
@media (max-width: 560px) {
  .call-widget { right: 14px; bottom: 14px; }
  .call-fab { width: 58px; height: 58px; }
  .cookie-banner { left: 10px; right: 10px; bottom: 90px; padding: 16px; }
}

/* ===== NAV LOGO ROUND BG (subtle, for SEO/brand) ===== */
.nav-logo-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-ink-deep);
  border: 1.5px solid var(--c-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out);
}
.nav-logo-circle img { height: auto; width: 100%; object-fit: contain; }
.nav-logo:hover .nav-logo-circle { transform: rotate(-6deg) scale(1.05); }

/* ==========================================================
   PARTNERS / COLLABORATORI — marquee infinito
   ========================================================== */
.partners {
  padding: var(--space-7) 0 var(--space-7);
  background: var(--c-ink-deep);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--c-line-subtle);
  border-bottom: 1px solid var(--c-line-subtle);
}
.partners::before,
.partners::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 160px;
  z-index: 3;
  pointer-events: none;
}
.partners::before {
  left: 0;
  background: linear-gradient(to right, var(--c-ink-deep) 20%, transparent);
}
.partners::after {
  right: 0;
  background: linear-gradient(to left, var(--c-ink-deep) 20%, transparent);
}
.partners-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto var(--space-5);
  padding: 0 var(--space-4);
}
.partners-head .section-eyebrow {
  justify-content: center;
}
.partners-head .section-eyebrow::before,
.partners-head .section-eyebrow::after {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--c-gold);
}
.partners-head .section-title {
  margin-bottom: 12px;
}
.partners-head p {
  font-size: 1rem;
  color: var(--c-text-dim);
  line-height: 1.7;
}
.partners-marquee {
  display: flex;
  gap: 48px;
  width: max-content;
  animation: partnersScroll 28s linear infinite;
}
.partners:hover .partners-marquee {
  animation-play-state: paused;
}
.partner-logo {
  flex-shrink: 0;
  width: 200px;
  height: 120px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 28px;
  transition: all 0.5s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.partner-logo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(255, 168, 3, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.5s;
}
.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s var(--ease-out);
}
.partner-logo {
  background: rgba(255, 255, 255, 0.94);
}
.partner-logo:hover {
  border-color: rgba(255, 168, 3, 0.6);
  background: #fff;
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(255, 168, 3, 0.25);
}
.partner-logo:hover::before { opacity: 1; }
.partner-logo:hover img {
  transform: scale(1.1);
}
@keyframes partnersScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 24px)); }
}

/* mobile */
@media (max-width: 680px) {
  .partners { padding: var(--space-5) 0; }
  .partners::before, .partners::after { width: 60px; }
  .partners-head { margin-bottom: var(--space-3); padding: 0 16px; }
  .partners-head p { font-size: 0.9rem; }
  .partners-marquee { gap: 20px; animation-duration: 22s; }
  .partner-logo {
    width: 140px;
    height: 80px;
    padding: 16px 20px;
    border-radius: 10px;
  }
}

/* ==========================================================
   SERVICE REVERSE (image LEFT, text RIGHT on desktop)
   ========================================================== */
@media (min-width: 961px) {
  .service-reverse .about-grid {
    grid-template-columns: 1fr 1fr;
  }
  .service-reverse .about-image {
    order: -1;
  }
}

/* ==========================================================
   PRO ANIMATIONS & EFFECTS
   ========================================================== */

/* Image reveal with clip-path */
.about-image {
  position: relative;
  overflow: hidden;
  clip-path: inset(0 0 0 0);
  transform: translateY(40px);
  opacity: 0;
  transition: transform 1.2s var(--ease-out), opacity 1.2s var(--ease-out);
}
.about-image.visible {
  transform: translateY(0);
  opacity: 1;
}
.about-image img {
  transform: scale(1.15);
  filter: brightness(0.85) saturate(0.95);
  transition: transform 2.4s var(--ease-out), filter 1.2s var(--ease-out);
}
.about-image.visible img {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}
.about-image:hover img {
  transform: scale(1.06);
  filter: brightness(1.05);
  transition: transform 0.9s var(--ease-out), filter 0.6s;
}

/* Golden frame on image hover */
.about-image::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px solid transparent;
  pointer-events: none;
  transition: all 0.6s var(--ease-out);
  opacity: 0;
}
.about-image:hover::after {
  inset: 16px;
  border-color: rgba(255, 168, 3, 0.5);
  opacity: 1;
}

/* Section title: word-by-word stagger via span */
.section-title .word {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible .section-title .word,
.visible .section-title .word {
  opacity: 1;
  transform: translateY(0);
}

/* Button magnetic ripple */
.btn { position: relative; overflow: hidden; }
.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  transform: translate(-50%, -50%);
  transition: width 0.8s var(--ease-out), height 0.8s var(--ease-out);
  pointer-events: none;
}
.btn:hover::before { width: 400px; height: 400px; }
.btn:active { transform: translateY(-1px) !important; }

/* Chip hover lift */
.about-chip {
  position: relative;
  overflow: hidden;
  transition: all 0.45s var(--ease-out);
}
.about-chip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--c-gold), var(--c-gold-soft));
  transform: translateY(100%);
  transition: transform 0.45s var(--ease-out);
  z-index: -1;
}
.about-chip:hover {
  color: var(--c-ink);
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(255, 168, 3, 0.25);
}
.about-chip:hover::before { transform: translateY(0); }

/* Service card tilt on hover */
.service {
  transition: background 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.service:hover { transform: translateY(-4px); }

/* Service number with line accent */
.service-number {
  position: relative;
  padding-left: 20px;
}
.service-number::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 0;
  height: 1px;
  background: var(--c-gold);
  transition: width 0.5s var(--ease-out);
}
.service:hover .service-number::before { width: 14px; }
.service:hover .service-number { padding-left: 34px; }

/* Badge floating animation */
.about-image-badge {
  animation: floatBadge 4s ease-in-out infinite;
  transition: all 0.3s;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* Page head: gold accent line appears */
.page-head::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--c-gold);
  animation: drawLine 1.8s var(--ease-out) 0.6s forwards;
}
@keyframes drawLine {
  to { width: 80px; }
}

/* Nav logo subtle breath */
.nav-logo img {
  transition: transform 0.6s var(--ease-out), filter 0.4s;
}

/* Enhanced scroll indicator */
.scroll-hint i { display: none; }

/* Smooth gallery image entrance */
.gallery-item {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-stagger.visible .gallery-item {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* Carousel slide subtle scale on focus */
.carousel-slide {
  transform: scale(0.96);
  opacity: 0.75;
  transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}
.carousel-slide:hover,
.carousel-slide.in-view {
  transform: scale(1);
  opacity: 1;
}

/* Hero text scramble on load — via CSS */
.hero h1 .italic {
  position: relative;
  display: inline-block;
}
.hero h1 .italic::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 8px;
  width: 100%;
  height: 3px;
  background: var(--c-gold);
  transform: scaleX(0);
  transform-origin: left;
  animation: underline 1.4s var(--ease-out) 1.4s forwards;
}
@keyframes underline {
  to { transform: scaleX(1); }
}

/* Hours row subtle entrance */
.hours-row {
  position: relative;
  overflow: hidden;
}
.hours-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, rgba(255, 168, 3, 0.08), transparent);
  transition: width 0.8s var(--ease-out);
}
.hours-row:hover::before { width: 100%; }

/* ==========================================================
   RESPONSIVE — MOBILE-FIRST AGGRESSIVE
   ========================================================== */

/* ===== Tablet (<= 960px) ===== */
@media (max-width: 960px) {
  .nav-menu { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .hero-meta { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .services-grid { grid-template-columns: 1fr; }
  .hours-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .contact-grid { grid-template-columns: 1fr; gap: var(--space-4); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-3); }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .gi-tall, .gi-wide, .gi-med, .gi-sq { grid-column: span 6; aspect-ratio: 4/3; }
}

/* ===== Mobile (<= 680px) — FORTE COMPATTAZIONE ===== */
@media (max-width: 680px) {
  :root {
    --space-5: 2rem;
    --space-6: 2.5rem;
    --space-7: 3rem;
    --space-8: 4rem;
  }

  /* Container padding */
  .container, .container-narrow { padding: 0 16px; }

  /* Sezioni: padding molto ridotto */
  section { padding: var(--space-5) 0; }
  .about, .services, .gallery, .hours, .contact, .form-section, .cta-banner { padding: var(--space-5) 0; }

  /* NAV — compatto */
  .nav { padding: 10px 0; }
  .nav.scrolled { padding: 8px 0; }
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 36px; }
  .nav-burger span { width: 22px; }
  .mobile-menu a { font-size: 1.8rem; }

  /* HERO — compatta ma bella */
  .hero {
    min-height: 88vh;
    padding: 90px 20px 60px;
  }
  .hero-inner { padding: 0 4px; }
  .hero h1 { font-size: 3rem; line-height: 1; margin-bottom: 16px; }
  .hero h1 .italic { display: inline; }
  .hero-eyebrow {
    font-size: 10px;
    margin-bottom: 16px;
    letter-spacing: 0.25em;
  }
  .hero-lead { font-size: 0.95rem; margin-bottom: 24px; }
  .hero-ctas { gap: 10px; }
  .hero-ctas .btn { padding: 12px 20px; font-size: 13px; width: auto; }
  .btn { padding: 13px 22px; font-size: 13px; }
  .scroll-hint { display: none; }

  /* SECTION TITLES — più piccoli */
  .section-title { font-size: 2rem; line-height: 1.05; margin-bottom: 10px; }
  .section-head { margin-bottom: var(--space-4); }
  .section-lead { font-size: 0.95rem; }
  .section-eyebrow { font-size: 10px; letter-spacing: 0.25em; margin-bottom: 10px; }

  /* PAGE HEAD (subpages) */
  .page-head {
    padding: 110px 20px 40px;
  }
  .page-head h1 { font-size: 2.5rem; }
  .page-head .breadcrumb { font-size: 10px; margin-bottom: 12px; }
  .page-head .lead { font-size: 0.95rem; margin-top: 12px; padding: 0 6px; }

  /* ABOUT — compatta */
  .about-copy p { font-size: 0.95rem; margin-bottom: 14px; line-height: 1.7; }
  .about-chips { margin: 16px 0; gap: 6px; }
  .about-chip { padding: 6px 14px; font-size: 11px; }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: var(--space-3);
    padding-top: var(--space-3);
  }
  .about-stat strong { font-size: 1.8rem; }
  .about-stat span { font-size: 10px; letter-spacing: 0.1em; }
  .about-image { aspect-ratio: 4/3; }
  .about-image-badge { bottom: 12px; left: 12px; padding: 8px 16px; font-size: 0.85rem; }

  /* SERVICES */
  .service { padding: var(--space-3) var(--space-3); }
  .service-number { margin-bottom: 16px; font-size: 0.85rem; }
  .service-title { font-size: 1.6rem; margin-bottom: 10px; }
  .service-desc { font-size: 0.9rem; margin-bottom: 14px; line-height: 1.6; }
  .service-tags { gap: 4px; margin-top: 12px; }
  .service-tag { font-size: 9px; padding: 3px 8px; }
  .service-link { font-size: 10px; letter-spacing: 0.1em; }

  /* CAROUSEL — mobile tighter */
  .carousel-head {
    padding: var(--space-4) 16px var(--space-2);
    gap: 16px;
  }
  .carousel-btn { width: 42px; height: 42px; font-size: 16px; }
  .carousel-track {
    gap: 10px;
    padding: 0 16px var(--space-4);
  }
  .carousel-slide {
    width: 78vw;
    max-width: 360px;
    aspect-ratio: 3/4;
  }
  .carousel-caption { bottom: 12px; left: 12px; right: 12px; }
  .carousel-caption h4 { font-size: 1.1rem; }
  .carousel-caption small { font-size: 9px; letter-spacing: 0.2em; }

  /* GALLERY */
  .gallery-grid { gap: 6px; }
  .gi-tall, .gi-wide, .gi-med, .gi-sq { grid-column: span 6; aspect-ratio: 1/1; }
  .gi-wide { grid-column: span 6; aspect-ratio: 4/3; }
  .gallery-caption { font-size: 0.85rem; bottom: 10px; left: 10px; right: 10px; }

  /* HOURS */
  .hours-row { padding: 12px 14px; }
  .hours-day { font-size: 13px; }
  .hours-time { font-size: 0.95rem; }
  .hours-time.closed { font-size: 11px; }

  /* CONTACT */
  .contact-item { padding: 14px 0; gap: 12px; }
  .contact-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .contact-label { font-size: 9px; letter-spacing: 0.15em; }
  .contact-value { font-size: 1.05rem; }
  .contact-map { aspect-ratio: 5/4; }

  /* FORM */
  .form { gap: 16px; }
  .form input, .form textarea { padding: 10px 0; font-size: 0.95rem; }
  .form label { font-size: 10px; letter-spacing: 0.15em; }

  /* CTA BANNER */
  .cta-banner { padding: var(--space-5) 16px; }
  .cta-banner-inner { padding: 0; }

  /* FOOTER */
  .footer { padding: var(--space-4) 0 20px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-3);
    padding-bottom: var(--space-3);
  }
  .footer-brand img { height: 42px; }
  .footer-brand p { font-size: 0.85rem; }
  .footer h4 { font-size: 10px; letter-spacing: 0.2em; }
  .footer ul { gap: 8px; }
  .footer ul a { font-size: 0.85rem; }
  .footer-bottom { font-size: 0.7rem; flex-direction: column; gap: 6px; padding-top: 16px; }

  /* CALL WIDGET — smaller */
  .call-widget { right: 12px; bottom: 12px; }
  .call-fab { width: 56px; height: 56px; }
  .call-label { display: none; }

  /* COOKIE BANNER */
  .cookie-banner {
    left: 10px; right: 10px; bottom: 80px;
    padding: 14px;
    max-width: none;
  }
  .cookie-banner-title { font-size: 1rem; }
  .cookie-banner p { font-size: 0.8rem; margin-bottom: 12px; }
  .cookie-btn { padding: 8px 14px; font-size: 11px; }
}

/* ===== Mobile piccolo (<= 420px) ===== */
@media (max-width: 420px) {
  .hero h1 { font-size: 2.5rem; }
  .section-title { font-size: 1.7rem; }
  .page-head h1 { font-size: 2.1rem; }
  .service-title { font-size: 1.4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .about-stats { grid-template-columns: 1fr; text-align: left; }
  .about-stats > * { display: flex; align-items: baseline; gap: 14px; }
  .about-stat strong { font-size: 1.5rem; }
  .about-stat span { margin-top: 0; }
}
