/* ==========================================================================
   Kairos Daily Ritual Cafe — Orosei
   Design system modern-rustic · Royaletiger
   ========================================================================== */

/* ---- Font self-hosted (GDPR: nessuna richiesta a terzi) ---- */
@font-face {
  font-family: 'DM Serif Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-v17-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Serif Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/dm-serif-display-v17-latin-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/inter-v20-latin-700.woff2') format('woff2');
}

/* ---- Design system ---- */
:root {
  /* palette: bianco + nero come core, oro solo come accent puntuale */
  --brand: #0a0a0a;
  --brand-dark: #000;
  --accent: #c08a3e;
  --accent-soft: #d9b374;
  --ink: #0a0a0a;
  --text: #2a2a2a;
  --muted: #6b6b6b;
  --bg: #fafafa;
  --bg-alt: #f0efec;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --line: #e5e3de;
  --line-dark: rgba(245, 242, 234, .12);
  --cream: #f5f2ea;
  /* tipografia */
  --font-display: 'DM Serif Display', 'Georgia', serif;
  --font-body: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  /* sistema */
  --shadow-sm: 0 1px 2px rgba(34, 26, 19, .05), 0 4px 14px rgba(34, 26, 19, .06);
  --shadow-md: 0 2px 6px rgba(34, 26, 19, .06), 0 14px 38px rgba(34, 26, 19, .12);
  --shadow-lg: 0 8px 20px rgba(34, 26, 19, .12), 0 32px 70px rgba(34, 26, 19, .22);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-btn: 0;
  --radius-chip: 0;
  --radius-pill: 999px;
  --container: 1240px;
  --nav-h: 80px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-dark); }
ul, ol { list-style: none; }
strong { color: var(--ink); }
::selection { background: var(--accent); color: #fff; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.06;
  color: var(--ink);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.8rem, 7vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: 1.35rem; line-height: 1.25; }
h1 em, h2 em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-soft) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---- Utility ---- */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section { padding: clamp(76px, 10vw, 140px) 0; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); }
.section-dark h2, .section-dark h3 { color: var(--cream); }
.section-dark p { color: rgba(244, 236, 221, .8); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 7px 16px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--accent);
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 22px;
}
.eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 138, 62, .2);
}
.section-dark .eyebrow, .hero .eyebrow, .page-hero .eyebrow {
  color: var(--ink);
  border-color: var(--cream);
  background: var(--accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 3px 3px 0 var(--cream);
}
.eyebrow::before { background: var(--ink); box-shadow: none; }
.section-dark .eyebrow::before, .hero .eyebrow::before, .page-hero .eyebrow::before { background: var(--ink); }

.section-head { max-width: 760px; margin: 0 auto 64px; text-align: center; }
.section-head p { margin-top: 18px; color: var(--muted); font-size: 1.12rem; }
.section-dark .section-head p { color: rgba(244, 236, 221, .65); }

.lead { font-size: clamp(1.12rem, 2vw, 1.32rem); line-height: 1.65; }

/* ---- Bottoni ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 0;
  border: 2px solid var(--ink);
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s, color .2s;
}
.btn svg { width: 15px; height: 15px; flex: none; transition: transform .25s var(--ease); }
.btn:hover { transform: translate(3px, 3px); box-shadow: 2px 2px 0 var(--ink); }
.btn:hover svg { transform: translateX(3px); }
.btn:active { transform: translate(5px, 5px); box-shadow: 0 0 0 var(--ink); }

.btn-primary {
  background: var(--accent);
  color: var(--ink);
}
.btn-primary:hover { background: var(--accent-soft); color: var(--ink); }

.btn-outline {
  background: var(--bg);
  color: var(--ink);
}
.btn-outline:hover { background: var(--cream); color: var(--ink); }

.btn-light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
  box-shadow: 5px 5px 0 var(--accent);
}
.btn-light:hover { background: #fff; box-shadow: 2px 2px 0 var(--accent); }
.btn-light:active { box-shadow: 0 0 0 var(--accent); }

.btn-outline-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
  box-shadow: 5px 5px 0 var(--accent);
}
.btn-outline-light:hover { background: var(--cream); color: var(--ink); box-shadow: 2px 2px 0 var(--accent); }
.btn-outline-light:active { box-shadow: 0 0 0 var(--accent); }

.hero .btn-primary, .cta-banner .btn-primary, .section-dark .btn-primary, .page-hero .btn-primary,
.footer-cta .btn-primary {
  border-color: var(--ink);
  box-shadow: 5px 5px 0 var(--cream);
}
.hero .btn-primary:hover, .cta-banner .btn-primary:hover, .section-dark .btn-primary:hover,
.page-hero .btn-primary:hover, .footer-cta .btn-primary:hover { box-shadow: 2px 2px 0 var(--cream); }

/* ---- Topbar ---- */
.topbar {
  background: var(--dark);
  color: rgba(244, 236, 221, .8);
  font-size: .82rem;
  letter-spacing: .03em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  min-height: 40px;
  padding-top: 7px;
  padding-bottom: 7px;
}
.topbar a { color: var(--accent-soft); font-weight: 500; }
.topbar a:hover { color: var(--cream); }
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 13px; height: 13px; color: var(--accent); flex: none; }

/* ---- Header ---- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250, 247, 241, .78);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom: 1px solid rgba(231, 221, 202, .6);
  transition: box-shadow .3s, background .3s;
}
.site-header.is-scrolled {
  background: rgba(250, 247, 241, .92);
  box-shadow: 0 12px 40px rgba(34, 26, 19, .08);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: var(--nav-h);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand-mark { width: 30px; height: auto; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.55rem;
  letter-spacing: .12em;
  line-height: 1;
}
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .57rem;
  font-weight: 700;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--brand);
  margin-top: 4px;
}
.main-nav ul { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  font-size: .92rem;
  font-weight: 500;
  letter-spacing: .02em;
  color: var(--text);
  padding: 9px 16px;
  border-radius: var(--radius-chip);
  transition: color .2s, background .2s;
}
.main-nav a:hover { color: var(--ink); background: rgba(34, 26, 19, .06); }
.main-nav a[aria-current="page"] { color: #fff; font-weight: 600; background: var(--ink); }
.header-cta { flex: none; }
.header-cta .btn { padding: 12px 22px; font-size: .82rem; }

/* hamburger — brutalist */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ink);
  cursor: pointer;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
}
.nav-toggle:hover, .nav-toggle.is-open { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s;
}
.nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Hero home ---- */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-media, .hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-media img {
  object-fit: cover;
  object-position: center 38%;
  opacity: .58;
  animation: hero-zoom 18s var(--ease) forwards;
}
@keyframes hero-zoom {
  from { transform: scale(1.12); }
  to { transform: scale(1); }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 20% 30%, rgba(29, 22, 16, 0) 0%, rgba(29, 22, 16, .5) 100%),
    linear-gradient(180deg, rgba(29, 22, 16, .3) 0%, rgba(29, 22, 16, .35) 55%, rgba(29, 22, 16, .92) 100%);
}
.hero-frame { display: none; }
.hero .container { position: relative; z-index: 3; padding-top: 90px; padding-bottom: 110px; }
.hero-inner { max-width: 820px; }
.hero h1 { color: var(--cream); text-wrap: balance; }
.hero .lead { color: rgba(244, 236, 221, .88); margin: 26px 0 38px; max-width: 640px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 38px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  border: 2px solid var(--cream);
  border-radius: 0;
  color: var(--cream);
  font-size: .88rem;
  font-weight: 600;
  background: transparent;
  box-shadow: 4px 4px 0 var(--accent);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}
.hero-badge .stars { color: var(--accent-soft); letter-spacing: .12em; font-size: .95rem; }

/* ---- Marquee ---- */
/* Info band statica — brutalist */
.info-band {
  background: var(--dark);
  padding: 28px 0;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
}
.info-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}
.info-band-grid li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 20px;
  border-right: 2px solid rgba(244, 236, 221, .12);
  color: var(--cream);
  text-align: center;
}
.info-band-grid li:last-child { border-right: 0; }
.info-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--accent);
  color: var(--accent);
  flex: none;
  background: transparent;
}
.info-icon svg { width: 20px; height: 20px; }
.info-label {
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
  text-align: left;
}
@media (max-width: 900px) {
  .info-band-grid { grid-template-columns: repeat(2, 1fr); }
  .info-band-grid li:nth-child(2) { border-right: 0; }
  .info-band-grid li:nth-child(1), .info-band-grid li:nth-child(2) {
    border-bottom: 2px solid rgba(244, 236, 221, .12);
    padding-bottom: 20px;
  }
  .info-band-grid li:nth-child(3), .info-band-grid li:nth-child(4) {
    padding-top: 20px;
  }
}
@media (max-width: 560px) {
  .info-band-grid { grid-template-columns: 1fr; }
  .info-band-grid li { border-right: 0 !important; border-bottom: 2px solid rgba(244, 236, 221, .12); padding: 14px 0 !important; }
  .info-band-grid li:last-child { border-bottom: 0; }
}

/* ---- Feature card ---- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.feature-card {
  position: relative;
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 44px 32px 36px;
  box-shadow: 6px 6px 0 var(--ink);
  overflow: hidden;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  counter-increment: feature;
}
.feature-card::before {
  content: counter(feature, decimal-leading-zero);
  position: absolute;
  top: 26px;
  right: 32px;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--accent);
  opacity: .18;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
  pointer-events: none;
}
.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(160deg, rgba(192,138,62,.55), rgba(192,138,62,0) 45%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s var(--ease);
  pointer-events: none;
}
.feature-card:hover {
  transform: translate(3px, 3px);
  box-shadow: 3px 3px 0 var(--ink);
}
.feature-card:hover::before { opacity: .38; transform: translateY(-4px); }
.feature-card:hover::after { opacity: 1; }
.features-grid { counter-reset: feature; }
.feature-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff, var(--bg-alt));
  border: 1px solid var(--line);
  border-radius: 22px;
  margin-bottom: 30px;
  color: var(--brand);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 6px 18px -10px rgba(156, 95, 46, .5);
  transition: transform .4s var(--ease), background .35s;
}
.feature-card:hover .feature-icon {
  transform: scale(1.08) rotate(-4deg);
  background: linear-gradient(135deg, var(--accent), var(--brand));
  color: #fff;
}
.feature-icon svg { width: 30px; height: 30px; }
.feature-card h3 { margin-bottom: 14px; font-size: 1.5rem; position: relative; }
.feature-card p { color: var(--muted); font-size: .99rem; position: relative; }

/* ---- Split (chi siamo) ---- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.split-media::before {
  content: '';
  position: absolute;
  inset: auto -18px -18px auto;
  width: 60%;
  height: 60%;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(192, 138, 62, .25), rgba(192, 138, 62, 0));
  z-index: -1;
}
.split-body h2 { margin-bottom: 22px; }
.split-body p + p { margin-top: 16px; }
.split-body .btn { margin-top: 30px; }
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: .02em;
  margin-top: 28px;
}
.arrow-link svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border: 1px solid rgba(156, 95, 46, .35);
  border-radius: 50%;
  transition: transform .3s var(--ease), background .3s, color .3s;
}
.arrow-link:hover svg { transform: translateX(5px); background: var(--brand); color: #fff; border-color: var(--brand); }

/* ---- La giornata (4 momenti) ---- */
.day-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.day-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 440px;
  display: flex;
  align-items: flex-end;
  background: var(--dark-2);
  box-shadow: var(--shadow-md);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.day-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.day-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.day-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(29, 22, 16, .05) 25%, rgba(29, 22, 16, .92) 100%);
}
.day-card:hover img { transform: scale(1.06); }
.day-body { position: relative; z-index: 2; padding: 28px 26px; }
.day-time {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--accent);
  padding: 6px 12px;
  margin-bottom: 16px;
  box-shadow: 3px 3px 0 var(--cream);
}
.day-body h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.5rem; }
.day-body p { color: rgba(244, 236, 221, .82); font-size: .92rem; line-height: 1.55; }

/* ---- Menu preview: bento ---- */
.menu-preview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 20px;
}
.menu-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.menu-tile:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.menu-tile:first-child { grid-column: span 2; grid-row: span 2; }
.menu-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.menu-tile:hover img { transform: scale(1.07); }
.menu-tile figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 9px 18px;
  border-radius: var(--radius-chip);
  background: rgba(29, 22, 16, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(244, 236, 221, .18);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
}

/* ---- Testimonianze bento moderno ---- */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.quote-card {
  position: relative;
  background: linear-gradient(160deg, rgba(244, 236, 221, .08) 0%, rgba(244, 236, 221, .025) 100%);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-lg);
  padding: 42px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  overflow: hidden;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: transform .4s var(--ease), border-color .4s, background .4s;
}
.quote-card::before {
  content: '"';
  position: absolute;
  top: -30px;
  right: -8px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14rem;
  line-height: 1;
  color: var(--accent);
  opacity: .12;
  pointer-events: none;
  transition: opacity .4s var(--ease), transform .5s var(--ease);
}
.quote-card::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(140deg, rgba(217, 179, 116, .5), rgba(217, 179, 116, 0) 60%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  padding: 1px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.quote-card:hover {
  transform: translateY(-8px);
  background: linear-gradient(160deg, rgba(244, 236, 221, .12) 0%, rgba(244, 236, 221, .04) 100%);
  border-color: transparent;
}
.quote-card:hover::before { opacity: .22; transform: translateY(-6px) rotate(-4deg); }
.quote-card:hover::after { opacity: 1; }
.quote-card.is-featured {
  grid-column: span 1;
  background: linear-gradient(160deg, rgba(192, 138, 62, .16) 0%, rgba(192, 138, 62, .05) 100%);
  border-color: rgba(217, 179, 116, .3);
}
.quote-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 6px 12px 6px 8px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream);
  background: transparent;
  border: 2px solid var(--cream);
  border-radius: 0;
  box-shadow: 3px 3px 0 var(--accent);
  position: relative;
  z-index: 1;
}
.quote-badge svg { width: 14px; height: 14px; flex: none; }
.quote-stars {
  color: var(--accent);
  letter-spacing: .16em;
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}
.quote-card blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--cream);
  flex: 1;
  position: relative;
  z-index: 1;
}
.quote-card figcaption {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid rgba(244, 236, 221, .1);
  position: relative;
  z-index: 1;
}
.quote-avatar {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--dark);
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  box-shadow: 0 0 0 2px rgba(29, 22, 16, 1), 0 0 0 3px rgba(217, 179, 116, .45);
}
.quote-meta { display: flex; flex-direction: column; gap: 2px; font-size: .82rem; color: rgba(244, 236, 221, .55); }
.quote-meta strong { color: var(--cream); font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }

@media (max-width: 900px) {
  .quotes-grid { grid-template-columns: 1fr; }
  .quote-card::before { font-size: 10rem; }
}

/* ---- Numeri ---- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400;
  color: var(--brand);
  line-height: 1;
}
.stat-label { font-size: .86rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 10px; }

/* ---- Blog card ---- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--bg);
  border: 2px solid var(--ink);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 6px 6px 0 var(--ink);
  transition: transform .15s var(--ease), box-shadow .15s var(--ease);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translate(3px, 3px); box-shadow: 3px 3px 0 var(--ink); }
.blog-card-media { aspect-ratio: 16 / 9; overflow: hidden; }
.blog-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.blog-card:hover .blog-card-media img { transform: scale(1.06); }
.blog-card-body { padding: 30px 30px 32px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.blog-card-meta {
  align-self: flex-start;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--accent);
  border: 2px solid var(--ink);
  border-radius: 0;
  padding: 4px 12px;
  box-shadow: 3px 3px 0 var(--ink);
}
.blog-card h3 { font-size: 1.35rem; }
.blog-card h3 a { color: var(--ink); }
.blog-card h3 a:hover { color: var(--brand); }
.blog-card p { color: var(--muted); font-size: .95rem; flex: 1; }

/* ---- CTA banner ---- */
.cta-banner {
  position: relative;
  background: var(--dark);
  overflow: hidden;
  text-align: center;
}
.cta-banner-media, .cta-banner-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta-banner-media img { object-fit: cover; opacity: .32; }
.cta-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(29, 22, 16, .5), rgba(29, 22, 16, .9));
}
.cta-banner .container { position: relative; z-index: 2; max-width: 780px; }
.cta-banner h2 { color: var(--cream); margin-bottom: 18px; }
.cta-banner p { color: rgba(244, 236, 221, .85); margin-bottom: 34px; font-size: 1.12rem; }
.cta-banner .hero-actions { justify-content: center; margin-bottom: 0; }

/* ---- Galleria ---- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-item {
  border: 0;
  padding: 0;
  background: none;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.gallery-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.gallery-item::after {
  content: '+';
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(29, 22, 16, .5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(244, 236, 221, .25);
  color: var(--cream);
  font-size: 1.3rem;
  font-weight: 400;
  opacity: 0;
  transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3; transition: transform .6s var(--ease); }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item.is-tall img { aspect-ratio: 3 / 4; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(18, 13, 9, .94);
  padding: 30px;
}
.lightbox.is-open { display: flex; }
.lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--cream);
  font-size: .92rem;
  text-align: center;
  max-width: 80vw;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: absolute;
  background: rgba(244, 236, 221, .08);
  border: 1px solid rgba(244, 236, 221, .28);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: var(--cream);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background .2s, transform .2s;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover { background: rgba(244, 236, 221, .22); transform: scale(1.06); }
.lightbox-close { top: 22px; right: 22px; }
.lightbox-prev { left: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 22px; top: 50%; transform: translateY(-50%); }
.lightbox-prev:hover { transform: translateY(-50%) scale(1.06); }
.lightbox-next:hover { transform: translateY(-50%) scale(1.06); }

/* ---- Hero pagine interne ---- */
.page-hero {
  position: relative;
  background: var(--dark);
  padding: clamp(84px, 11vw, 150px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.page-hero-media, .page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; }
.page-hero-media img { object-fit: cover; opacity: .3; }
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(110% 100% at 15% 20%, rgba(29, 22, 16, 0) 0%, rgba(29, 22, 16, .45) 100%),
    linear-gradient(180deg, rgba(29, 22, 16, .4), rgba(29, 22, 16, .85));
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); }
.page-hero .lead { color: rgba(244, 236, 221, .85); max-width: 660px; margin-top: 20px; }
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: .84rem;
  color: rgba(244, 236, 221, .6);
  margin-bottom: 26px;
}
.breadcrumb a { color: var(--accent-soft); }
.breadcrumb a:hover { color: var(--cream); }
.breadcrumb li:not(:last-child)::after { content: '›'; margin-left: 8px; opacity: .6; }

/* ---- Menu page ---- */
.menu-note {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 26px;
  font-size: .96rem;
  color: var(--text);
  margin: 0 auto 60px;
  max-width: 740px;
  box-shadow: var(--shadow-sm);
}
.menu-section { margin-bottom: 68px; }
.menu-section-head {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.menu-section-head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); white-space: nowrap; }
.menu-section-head::after { content: ''; flex: 1; height: 1px; background: var(--line); }
.menu-section-head .menu-ico {
  color: var(--brand);
  width: 54px;
  height: 54px;
  padding: 13px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  flex: none;
}
.menu-section > p { max-width: 740px; }
.menu-split { display: grid; grid-template-columns: 1.4fr 1fr; gap: 44px; align-items: center; }
.menu-split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.info-box {
  background: var(--dark);
  border-radius: var(--radius-lg);
  padding: 46px;
  color: var(--cream);
  box-shadow: var(--shadow-md);
}
.info-box h3 { color: var(--cream); margin-bottom: 20px; font-size: 1.5rem; }
.info-box ul { display: grid; grid-template-columns: 1fr 1fr; gap: 13px 30px; }
.info-box li { display: flex; gap: 11px; align-items: baseline; font-size: .96rem; color: rgba(244, 236, 221, .85); }
.info-box li::before { content: '✦'; color: var(--accent); font-size: .8rem; }

/* ---- Contatti ---- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(40px, 5vw, 76px); align-items: start; }
.contact-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-item .feature-icon { width: 52px; height: 52px; margin: 0; flex: none; border-radius: 16px; }
.contact-item .feature-icon svg { width: 23px; height: 23px; }
.contact-item h3 { font-size: 1.08rem; margin-bottom: 4px; }
.contact-item p { font-size: .96rem; color: var(--muted); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 10px; }
.hours-table td { padding: 11px 4px; border-bottom: 1px solid var(--line); font-size: .96rem; }
.hours-table td:last-child { text-align: right; font-weight: 700; color: var(--ink); }
.hours-table tr.is-closed td:last-child { color: var(--brand); }

.contact-form {
  background: #fff;
  border: 1px solid rgba(231, 221, 202, .7);
  border-radius: var(--radius-lg);
  padding: clamp(30px, 4vw, 48px);
  box-shadow: var(--shadow-md);
}
.contact-form h2 { font-size: 1.8rem; margin-bottom: 8px; }
.contact-form > p { color: var(--muted); font-size: .95rem; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .84rem; font-weight: 700; color: var(--ink); margin-bottom: 7px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 18px;
  font: inherit;
  font-size: .96rem;
  color: var(--ink);
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  background: #fff;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(192, 138, 62, .15);
}
.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: .85rem; color: var(--muted); margin: 18px 0 24px; }
.form-consent input { margin-top: 4px; accent-color: var(--brand); }
.form-status { margin-top: 16px; font-size: .92rem; font-weight: 500; }
.form-status.is-ok { color: #2e7d32; }
.form-status.is-error { color: #b3261e; }

.map-link {
  display: block;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 42px;
}
.map-link img { width: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.map-link:hover img { transform: scale(1.04); }
.map-link-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(29, 22, 16, .42);
  transition: background .3s;
}
.map-link:hover .map-link-overlay { background: rgba(29, 22, 16, .58); }

/* ---- Articoli blog ---- */
.article { max-width: 780px; margin: 0 auto; padding: 0 24px; }
.article > p, .article ul, .article ol { margin-bottom: 20px; }
.article h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 48px 0 18px; }
.article h3 { margin: 32px 0 12px; }
.article img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin: 34px 0; }
.article ul li { position: relative; padding-left: 24px; margin-bottom: 9px; }
.article ul li::before { content: '✦'; position: absolute; left: 0; color: var(--accent); font-size: .8rem; }
.article blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--ink);
  border-left: 3px solid var(--accent);
  padding: 6px 0 6px 26px;
  margin: 30px 0;
}
.article-meta { font-size: .85rem; color: var(--muted); margin-bottom: 8px; }
.article-cta {
  background: #fff;
  border: 1px solid rgba(231, 221, 202, .7);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 36px;
  margin-top: 52px;
  text-align: center;
}
.article-cta p { margin-bottom: 20px; }

/* FAQ accordion */
.faq { border-top: 1px solid var(--line); margin-top: 10px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 4px;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}
.faq-q::after { content: '+'; font-size: 1.5rem; color: var(--brand); transition: transform .3s var(--ease); flex: none; }
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a p { padding: 0 4px 22px; color: var(--muted); }

/* ---- Pagine legali / 404 ---- */
.legal h2 { font-size: 1.5rem; margin: 40px 0 14px; }
.legal p, .legal ul { margin-bottom: 16px; }
.legal ul li { position: relative; padding-left: 20px; margin-bottom: 6px; }
.legal ul li::before { content: '—'; position: absolute; left: 0; color: var(--accent); }
.error-page { text-align: center; padding: clamp(90px, 15vw, 170px) 24px; }
.error-code {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(5.5rem, 17vw, 10rem);
  background: linear-gradient(120deg, var(--line), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.error-page h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin: 12px 0 16px; }
.error-page p { color: var(--muted); max-width: 480px; margin: 0 auto 32px; }

/* ---- Footer ---- */
.site-footer { background: var(--dark); color: rgba(244, 236, 221, .75); position: relative; overflow: hidden; }
.footer-main {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: clamp(32px, 4vw, 64px);
  padding: clamp(64px, 9vw, 110px) 0 56px;
  position: relative;
}
.footer-brand img { width: 180px; height: auto; margin-bottom: 24px; opacity: .95; }
.footer-brand p { font-size: .96rem; line-height: 1.7; max-width: 42ch; color: rgba(244, 236, 221, .7); }
.footer-brand .claim {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--cream);
  margin-top: 22px;
  max-width: 24ch;
  text-wrap: balance;
}
.footer-brand .claim em { color: var(--accent-soft); font-style: italic; }
.site-footer h4 {
  color: var(--accent-soft);
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 26px;
}
.site-footer h4::after { display: none; }
.footer-nav li { margin-bottom: 12px; }
.site-footer a { color: rgba(244, 236, 221, .78); font-size: .96rem; transition: color .2s, transform .25s var(--ease); display: inline-block; }
.site-footer .footer-nav a { position: relative; padding-left: 0; }
.site-footer .footer-nav a::before {
  content: '→';
  display: inline-block;
  width: 0;
  margin-right: 0;
  opacity: 0;
  color: var(--accent);
  transition: width .25s var(--ease), margin-right .25s var(--ease), opacity .2s;
  overflow: hidden;
}
.site-footer .footer-nav a:hover { color: var(--cream); }
.site-footer .footer-nav a:hover::before { width: 16px; margin-right: 8px; opacity: 1; }
.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact li { display: flex; gap: 12px; font-size: .96rem; align-items: flex-start; margin-bottom: 0; line-height: 1.55; }
.footer-contact svg { width: 15px; height: 15px; color: var(--accent); flex: none; margin-top: 6px; }
.footer-contact li strong { display: block; color: var(--cream); font-size: .72rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 2px; }

/* Signature band: big wordmark tipografico */
.footer-signature {
  position: relative;
  padding: 24px 0 8px;
  margin-top: 24px;
  border-top: 1px solid rgba(244, 236, 221, .1);
  overflow: hidden;
}
.footer-signature-word {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(4rem, 16vw, 13rem);
  line-height: .9;
  letter-spacing: -.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(244, 236, 221, .28);
  text-align: center;
  user-select: none;
  white-space: nowrap;
}

.footer-bottom { border-top: 1px solid rgba(244, 236, 221, .1); }
.footer-bottom .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px 24px;
  padding-top: 24px;
  padding-bottom: 24px;
  font-size: .82rem;
  color: rgba(244, 236, 221, .5);
}
.footer-bottom a { font-size: .82rem; color: rgba(244, 236, 221, .62); }
.footer-bottom a:hover { color: var(--accent-soft); }
.footer-legal { display: flex; flex-wrap: wrap; gap: 20px; }
@media (max-width: 900px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .footer-main { grid-template-columns: 1fr; gap: 36px; }
}

/* ---- Reveal ---- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .day-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-preview { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .footer-main { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    height: 100dvh;
    width: min(340px, 86vw);
    background: rgba(250, 247, 241, .92);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border-left: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    padding: 120px 36px 40px;
    z-index: 150;
    overflow-y: auto;
  }
  .main-nav.is-open { transform: none; }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 8px; }
  .main-nav a { display: block; font-size: 1.15rem; padding: 12px 18px; width: 100%; border-radius: 16px; }
  .main-nav a[aria-current="page"] { background: var(--ink); color: #fff; }
  .nav-toggle { display: flex; z-index: 210; }
  .header-cta { display: none; }
  .features-grid, .quotes-grid { grid-template-columns: 1fr; }
  .split, .menu-split, .contact-grid { grid-template-columns: 1fr; }
  .split-media { order: -1; }
  .blog-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px; }
  .info-box ul { grid-template-columns: 1fr; }
  body.nav-open { overflow: hidden; }
}
@media (max-width: 640px) {
  .topbar .topbar-address { display: none; }
  .day-grid { grid-template-columns: 1fr; }
  .day-card { min-height: 320px; }
  .menu-preview { grid-template-columns: 1fr 1fr; grid-auto-rows: 170px; gap: 12px; }
  .menu-tile:first-child { grid-column: span 2; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-main { grid-template-columns: 1fr; gap: 38px; }
  .menu-section-head h2 { white-space: normal; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .brand-name { font-size: 1.3rem; }
}

/* ---- Accessibilità ---- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
}
:focus-visible { outline: 2px solid var(--brand); outline-offset: 3px; }
.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  z-index: 999;
  background: var(--ink);
  color: var(--cream);
  padding: 10px 20px;
  border-radius: var(--radius-btn);
}
.skip-link:focus { left: 12px; color: var(--cream); }

/* ==========================================================================
   Modern pass — logo orizzontale, entrance, footer CTA, tabs, floating
   ========================================================================== */

/* logo header */
.brand-logo { height: 54px; width: auto; }
.site-header .brand:hover .brand-logo { filter: brightness(1.05); }

/* entrance animations (partono al caricamento, sempre visibili) */
@keyframes rise {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: none; }
}
.hero .eyebrow { animation: rise .8s var(--ease) .05s backwards; }
.hero h1 { animation: rise .9s var(--ease) .18s backwards; }
.hero .lead { animation: rise .9s var(--ease) .34s backwards; }
.hero .hero-actions { animation: rise .9s var(--ease) .5s backwards; }
.hero .hero-badge { animation: rise .9s var(--ease) .66s backwards; }
.page-hero .breadcrumb { animation: rise .7s var(--ease) .05s backwards; }
.page-hero .eyebrow { animation: rise .7s var(--ease) .12s backwards; }
.page-hero h1 { animation: rise .8s var(--ease) .22s backwards; }
.page-hero .lead { animation: rise .8s var(--ease) .36s backwards; }

/* footer CTA band */
.footer-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: clamp(56px, 7vw, 84px);
  padding-bottom: clamp(44px, 6vw, 68px);
  border-bottom: 1px solid var(--line-dark);
}
.footer-cta-eyebrow {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: 14px;
}
.footer-cta-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.7rem, 3.4vw, 2.7rem);
  line-height: 1.16;
  color: var(--cream);
  letter-spacing: -.01em;
}
.footer-cta-title em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(105deg, var(--accent) 0%, var(--accent-soft) 60%, var(--accent) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.site-footer .footer-main { padding-top: clamp(44px, 6vw, 64px); }

/* menu tabs sticky */
.menu-tabs {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(250, 247, 241, .85);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border-bottom: 1px solid var(--line);
}
.menu-tabs-track {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 14px 24px;
  scrollbar-width: none;
  max-width: var(--container);
  margin: 0 auto;
}
.menu-tabs-track::-webkit-scrollbar { display: none; }
.menu-tabs-track a {
  flex: none;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 10px 18px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--bg);
  box-shadow: 3px 3px 0 var(--ink);
  transition: background .2s, color .2s, transform .15s var(--ease), box-shadow .15s var(--ease);
}
.menu-tabs-track a:hover { transform: translate(2px, 2px); box-shadow: 1px 1px 0 var(--ink); background: var(--cream); }
.menu-tabs-track a.is-active { background: var(--accent); color: var(--ink); transform: translate(3px, 3px); box-shadow: 0 0 0 var(--ink); }

/* floating WhatsApp */
/* WhatsApp float — brutalist, tinta unita oro */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 300;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--accent);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 0;
  box-shadow: 4px 4px 0 var(--ink);
  font: 700 .78rem/1 var(--font-body);
  letter-spacing: .12em;
  text-transform: uppercase;
  transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .2s;
}
.wa-float .wa-mark {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: var(--ink);
  flex: none;
}
.wa-float svg { width: 22px; height: 22px; }
.wa-float:hover { color: var(--ink); transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); background: var(--accent-soft); }
.wa-float:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
@media (max-width: 640px) {
  .wa-float { padding: 12px; }
  .wa-float .wa-label { display: none; }
  .wa-float .wa-mark { width: 24px; height: 24px; }
}

/* torna su — brutalist */
.to-top {
  position: fixed;
  left: 22px;
  bottom: 22px;
  z-index: 300;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 0;
  background: var(--cream);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .15s var(--ease), box-shadow .15s var(--ease);
}
body.show-top .to-top { opacity: 1; pointer-events: auto; transform: none; }
body.show-top .to-top:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }
body.show-top .to-top:active { transform: translate(4px, 4px); box-shadow: 0 0 0 var(--ink); }
.to-top svg { width: 16px; height: 16px; }

/* stats band */
.stats-band .stat-num em {
  font-style: italic;
  font-weight: 900;
  background: linear-gradient(105deg, var(--brand), var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@media (max-width: 640px) {
  .brand-logo { height: 44px; }
  .wa-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .to-top { left: 16px; bottom: 16px; }
  .footer-cta { padding-top: 48px; }
}

/* Language switcher — brutalist */
.lang-switch {
  display: inline-flex;
  gap: 0;
  padding: 0;
  border: 2px solid var(--cream);
  border-radius: 0;
  background: transparent;
}
.lang-switch a {
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cream);
  border-radius: 0;
  border-right: 2px solid var(--cream);
  transition: background .15s, color .15s;
}
.lang-switch a:last-child { border-right: 0; }
.lang-switch a:hover { background: rgba(244, 236, 221, .1); }
.lang-switch a.is-active { background: var(--accent); color: var(--ink); }
@media (max-width: 640px) {
  .topbar .container { flex-wrap: wrap; }
  .lang-switch { order: 3; }
}
