/* ==========================================================================
   Chef Nando Santoro — style.css
   Design system: espresso + oro, serif display + sans body.
   ========================================================================== */

/* --------------------------------------------------------------- FONT */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/cormorant-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* --------------------------------------------------------- DESIGN TOKENS */
:root {
  /* palette brand */
  --espresso-900: #140C07;
  --espresso-800: #1C120B;
  --espresso-700: #291A11;
  --espresso-600: #3A2517;
  --espresso-500: #4C3421;

  --gold: #C9A227;
  --gold-400: #DDBB5A;
  --gold-300: #EBD79B;
  --gold-soft: rgba(201, 162, 39, .16);

  --tricolore-green: #2F7D4F;
  --tricolore-red: #B3372C;

  --cream: #FBF8F3;
  --cream-100: #F5EFE4;
  --cream-200: #EDE3D3;

  --ink: #221710;
  --text: #57493F;
  --muted: #8B7A6B;
  --line: #E3D8C8;
  --line-dark: rgba(235, 215, 155, .18);

  /* tipografia */
  --font-display: 'Cormorant Garamond', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* sistema */
  --shadow-sm: 0 2px 10px rgba(30, 18, 10, .06);
  --shadow-md: 0 14px 40px rgba(30, 18, 10, .10);
  --shadow-lg: 0 30px 80px rgba(20, 12, 7, .28);
  --radius: 14px;
  --radius-lg: 24px;
  --container: 1240px;
  --nav-h: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

/* ------------------------------------------------------------ RESET/BASE */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
  overflow-x: clip;
}
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.menu-open { overflow: hidden; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 600;
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.5rem); letter-spacing: -.02em; }
h2 { font-size: clamp(2.1rem, 4.2vw, 3.3rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
h4 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }

::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 3px; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-alt { background: var(--cream-100); }
.section-dark { background: var(--espresso-800); color: rgba(247, 240, 228, .82); }
.section-dark h2, .section-dark h3, .section-dark h4 { color: var(--cream); }

.section-head { max-width: 720px; margin-bottom: clamp(2.5rem, 4vw, 3.75rem); }
.section-head.is-center { margin-inline: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.075rem; }
.section-dark .section-head p { color: rgba(240, 230, 214, .72); }

/* ------------------------------------------------------------- ELEMENTI */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-family: var(--font-body);
  font-size: .765rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 1.15rem;
}
.eyebrow::before {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  opacity: .75;
}
.section-head.is-center .eyebrow::after {
  content: "";
  width: 36px; height: 1px;
  background: currentColor;
  opacity: .75;
}

.lead {
  font-size: clamp(1.075rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text);
}
.section-dark .lead { color: rgba(243, 235, 222, .8); }

.gold { color: var(--gold); }
.display-italic { font-style: italic; color: var(--gold-400); }

/* bottoni */
.btn {
  --btn-bg: var(--gold);
  --btn-fg: #23160D;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font-size: .935rem;
  font-weight: 600;
  letter-spacing: .015em;
  text-decoration: none;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background-color .3s ease, color .3s ease, border-color .3s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { box-shadow: 0 12px 30px rgba(201, 162, 39, .28); }
.btn-primary:hover { background: var(--gold-400); transform: translateY(-2px); box-shadow: 0 18px 38px rgba(201, 162, 39, .34); }
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: rgba(60, 40, 25, .28);
}
.btn-outline:hover { border-color: var(--gold); color: var(--ink); background: rgba(201, 162, 39, .1); transform: translateY(-2px); }
.section-dark .btn-outline, .hero .btn-outline, .cta-banner .btn-outline {
  color: var(--cream);
  border-color: rgba(235, 215, 155, .38);
}
.section-dark .btn-outline:hover, .hero .btn-outline:hover, .cta-banner .btn-outline:hover {
  background: rgba(235, 215, 155, .12);
  border-color: var(--gold-300);
}
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: .02em;
}
.link-arrow::after {
  content: "→";
  transition: transform .3s var(--ease);
}
.link-arrow:hover::after { transform: translateX(5px); }
.link-arrow.is-prev::after { content: none; }
.link-arrow.is-prev::before {
  content: "←";
  transition: transform .3s var(--ease);
}
.link-arrow.is-prev:hover::before { transform: translateX(-5px); }

/* filo tricolore decorativo */
.tricolore {
  display: flex;
  width: 54px; height: 3px;
  border-radius: 3px;
  overflow: hidden;
}
.tricolore span { flex: 1; }
.tricolore span:nth-child(1) { background: var(--tricolore-green); }
.tricolore span:nth-child(2) { background: #F3EDE2; }
.tricolore span:nth-child(3) { background: var(--tricolore-red); }

/* -------------------------------------------------------------- HEADER */
.topbar {
  background: var(--espresso-900);
  color: rgba(240, 230, 214, .68);
  font-size: .82rem;
  border-bottom: 1px solid rgba(235, 215, 155, .1);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 42px;
  padding-block: .35rem;
}
.topbar a { color: inherit; text-decoration: none; transition: color .25s ease; }
.topbar a:hover { color: var(--gold-300); }
.topbar-contacts { display: flex; gap: 1.6rem; flex-wrap: wrap; }
.topbar-contacts span { display: inline-flex; align-items: center; gap: .45rem; }
.topbar-contacts svg { width: 14px; height: 14px; color: var(--gold); flex: none; }
.topbar-tag { display: inline-flex; align-items: center; gap: .5rem; letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(20, 12, 7, .92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(235, 215, 155, .12);
  transition: box-shadow .35s ease, background-color .35s ease;
}
.site-header.scrolled { box-shadow: 0 12px 40px rgba(15, 9, 5, .45); background: rgba(18, 11, 6, .97); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--nav-h);
}
.nav-brand { display: inline-flex; align-items: center; flex: none; }
.nav-brand img { width: 218px; height: auto; }

.nav { margin-left: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: .35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links > li > a {
  display: inline-block;
  padding: .6rem .82rem;
  font-size: .9rem;
  font-weight: 500;
  color: rgba(245, 238, 226, .85);
  text-decoration: none;
  border-radius: 999px;
  transition: color .25s ease, background-color .25s ease;
}
.nav-links > li > a:hover { color: var(--gold-300); }
.nav-links > li > a[aria-current="page"] { color: var(--gold); }
.nav-links .nav-cta {
  margin-left: .6rem;
  padding: .72rem 1.4rem;
  color: #23160D;
}
.nav-links .nav-cta:hover,
.nav-links .nav-cta[aria-current="page"] { color: #23160D; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid rgba(235, 215, 155, .28);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 20px; height: 1.6px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .35s var(--ease), opacity .25s ease;
}
.nav-toggle span:nth-child(1) { top: 16px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 28px; }
.nav-toggle.is-open span:nth-child(1) { transform: translateX(-50%) translateY(6px) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { transform: translateX(-50%) translateY(-6px) rotate(-45deg); }

/* ---------------------------------------------------------------- HERO */
.hero {
  position: relative;
  background: var(--espresso-900);
  color: rgba(246, 239, 227, .82);
  overflow: hidden;
  padding: clamp(3.5rem, 7vw, 6.5rem) 0 clamp(3.5rem, 6vw, 5.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 12% 8%, rgba(201, 162, 39, .16), transparent 55%),
    radial-gradient(80% 70% at 100% 100%, rgba(140, 88, 34, .22), transparent 60%);
  pointer-events: none;
}
.hero > .container { position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.hero h1 { color: var(--cream); margin-bottom: .55rem; }
.hero h1 .display-italic { display: block; }
.hero .lead { max-width: 33rem; color: rgba(243, 235, 222, .78); }
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin: 2.1rem 0 2.6rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(1.4rem, 3vw, 2.8rem);
  padding-top: 1.9rem;
  border-top: 1px solid var(--line-dark);
}
.hero-stats .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.hero-stats .stat-label {
  display: block;
  margin-top: .4rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240, 230, 214, .6);
}

/* composizione immagini hero */
.hero-media { position: relative; }
.hero-media-main {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(235, 215, 155, .26);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3.35;
}
.hero-media-main img { width: 100%; height: 100%; object-fit: cover; }
.hero-media-sub {
  position: absolute;
  left: -2.2rem;
  bottom: -2.2rem;
  width: 43%;
  border-radius: 18px;
  overflow: hidden;
  border: 5px solid var(--espresso-900);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 3;
}
.hero-media-sub img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  right: -1.1rem;
  top: -1.4rem;
  display: grid;
  place-items: center;
  gap: 0;
  width: 118px; height: 118px;
  border-radius: 50%;
  background: var(--gold);
  color: #23160D;
  text-align: center;
  box-shadow: 0 18px 44px rgba(201, 162, 39, .35);
  padding: .5rem;
}
.hero-badge b {
  font-family: var(--font-display);
  font-size: 2.1rem;
  line-height: 1;
  display: block;
}
.hero-badge span {
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .11em;
  text-transform: uppercase;
  line-height: 1.25;
  display: block;
  margin-top: .15rem;
}

/* --------------------------------------------------------- PAGE HERO */
.page-hero {
  position: relative;
  background: var(--espresso-800);
  color: rgba(246, 239, 227, .8);
  padding: clamp(3.2rem, 6vw, 5rem) 0 clamp(2.6rem, 5vw, 4rem);
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(90% 120% at 85% 0%, rgba(201, 162, 39, .17), transparent 58%);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: var(--cream); }
.page-hero .lead { max-width: 46rem; }

.breadcrumb {
  font-size: .82rem;
  color: rgba(240, 230, 214, .58);
  margin-bottom: 1.4rem;
}
.breadcrumb ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; }
.breadcrumb li::after { content: "/"; margin-left: .5rem; opacity: .45; }
.breadcrumb li:last-child::after { content: none; }
.breadcrumb a { color: inherit; text-decoration: none; }
.breadcrumb a:hover { color: var(--gold-300); }
.breadcrumb [aria-current="page"] { color: var(--gold-300); }

/* ---------------------------------------------------------------- CARD */
.grid { display: grid; gap: 1.6rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.15rem 1.9rem;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, .45); }
.card h3 { margin-bottom: .55rem; }
.card p { color: var(--text); font-size: .98rem; margin-bottom: 1.1rem; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  border-radius: 16px;
  background: linear-gradient(150deg, rgba(201, 162, 39, .18), rgba(201, 162, 39, .06));
  border: 1px solid rgba(201, 162, 39, .3);
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 26px; height: 26px; }
.card-num {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--gold);
  border: 1px solid rgba(201, 162, 39, .4);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  margin-bottom: 1.2rem;
}
.section-dark .card {
  background: rgba(255, 255, 255, .035);
  border-color: rgba(235, 215, 155, .16);
  box-shadow: none;
}
.section-dark .card p { color: rgba(240, 230, 214, .72); }
.section-dark .card:hover { border-color: rgba(201, 162, 39, .5); background: rgba(255, 255, 255, .06); }

/* --------------------------------------------------------------- SPLIT */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
  align-items: center;
}
.split-media { position: relative; }
.split-media img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.split-media.is-tall img { aspect-ratio: 3 / 3.6; }
.split-media::after {
  content: "";
  position: absolute;
  inset: 14px -14px -14px 14px;
  border: 1px solid rgba(201, 162, 39, .5);
  border-radius: var(--radius-lg);
  z-index: -1;
}
.split-badge {
  position: absolute;
  right: -1.2rem; bottom: -1.4rem;
  background: var(--espresso-800);
  color: var(--cream);
  border: 1px solid rgba(235, 215, 155, .22);
  border-radius: 18px;
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-lg);
  max-width: 230px;
}
.split-badge b { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--gold-400); line-height: 1; }
.split-badge span { font-size: .78rem; letter-spacing: .07em; text-transform: uppercase; color: rgba(240, 230, 214, .7); }

.checklist { list-style: none; margin: 1.6rem 0 2rem; padding: 0; display: grid; gap: .8rem; }
.checklist li { position: relative; padding-left: 2.1rem; font-size: .99rem; }
.checklist li::before {
  content: "";
  position: absolute;
  left: 0; top: .42em;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, .45);
}
.checklist li::after {
  content: "";
  position: absolute;
  left: 6.5px; top: .72em;
  width: 7px; height: 4px;
  border-left: 1.7px solid var(--gold);
  border-bottom: 1.7px solid var(--gold);
  transform: rotate(-45deg);
}

.signature {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-top: 1.6rem;
}
.section-dark .signature { color: var(--cream); }

/* ------------------------------------------------------------- NUMBERS */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  text-align: center;
}
.stats-band .stat { padding: 1.4rem .8rem; border-right: 1px solid var(--line-dark); }
.stats-band .stat:last-child { border-right: 0; }
.stats-band .stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 600;
  color: var(--gold-400);
  line-height: 1;
}
.stats-band .stat-label {
  display: block;
  margin-top: .6rem;
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(240, 230, 214, .62);
}

/* ------------------------------------------------------------- GALLERY */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: 2.2rem;
}
.filter-btn {
  padding: .58rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: .85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--ink); }
.filter-btn.is-active { background: var(--espresso-800); border-color: var(--espresso-800); color: var(--cream); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.gallery-grid.is-preview { grid-template-columns: repeat(4, 1fr); }
.gallery-item {
  position: relative;
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--espresso-700);
  aspect-ratio: 1 / 1;
  border: 0;
  padding: 0;
  display: block;
  width: 100%;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), filter .5s ease;
}
.gallery-item figcaption,
.gallery-item .gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 2.2rem .95rem .9rem;
  background: linear-gradient(to top, rgba(20, 12, 7, .88), transparent);
  color: var(--cream);
  font-size: .85rem;
  font-weight: 500;
  text-align: left;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .4s ease, transform .4s var(--ease);
}
.gallery-item:hover img, .gallery-item:focus-visible img { transform: scale(1.07); }
.gallery-item:hover figcaption, .gallery-item:focus-visible figcaption,
.gallery-item:hover .gallery-caption, .gallery-item:focus-visible .gallery-caption { opacity: 1; transform: none; }
.gallery-item.is-hidden { display: none; }

/* lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  background: rgba(15, 9, 5, .94);
  padding: 1.5rem;
}
.lightbox.is-open { display: grid; }
.lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.lightbox-caption {
  margin-top: 1rem;
  color: rgba(245, 238, 226, .82);
  font-size: .92rem;
  text-align: center;
}
.lightbox-close, .lightbox-nav {
  position: absolute;
  border: 1px solid rgba(235, 215, 155, .3);
  background: rgba(255, 255, 255, .06);
  color: var(--cream);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 1.3rem;
  transition: background-color .3s ease, border-color .3s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(201, 162, 39, .25); border-color: var(--gold); }
.lightbox-close { top: 1.4rem; right: 1.4rem; }
.lightbox-nav.prev { left: 1.4rem; top: 50%; transform: translateY(-50%); }
.lightbox-nav.next { right: 1.4rem; top: 50%; transform: translateY(-50%); }

/* ------------------------------------------------------------- ZODIACO */
.zodiac-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
}
.zodiac-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(235, 215, 155, .16);
  text-decoration: none;
  color: inherit;
  transition: transform .45s var(--ease), border-color .4s ease, background-color .4s ease;
}
.zodiac-card:hover { transform: translateY(-6px); border-color: rgba(201, 162, 39, .55); background: rgba(255, 255, 255, .07); }
.zodiac-card .zodiac-media { aspect-ratio: 16 / 10; overflow: hidden; }
.zodiac-card .zodiac-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.zodiac-card:hover .zodiac-media img { transform: scale(1.06); }
.zodiac-body { padding: 1.25rem 1.3rem 1.45rem; }
.zodiac-body h3 { font-size: 1.35rem; margin-bottom: .2rem; color: var(--cream); }
.zodiac-dates {
  display: block;
  font-size: .74rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.zodiac-dish { font-size: .92rem; color: rgba(240, 230, 214, .72); margin: 0; }

.zodiac-strip {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 2rem;
}
.zodiac-chip {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(235, 215, 155, .25);
  color: rgba(245, 238, 226, .85);
  text-decoration: none;
  font-size: .86rem;
  transition: all .3s ease;
}
.zodiac-chip:hover { background: var(--gold); border-color: var(--gold); color: #23160D; }

/* ---------------------------------------------------------------- BLOG */
.post-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .4s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, .45); }
.post-card .post-media { aspect-ratio: 16 / 10; overflow: hidden; }
.post-card .post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.post-card:hover .post-media img { transform: scale(1.06); }
.post-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-meta {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .7rem;
}
.post-body h3 { font-size: 1.42rem; margin-bottom: .5rem; }
.post-body p { font-size: .95rem; color: var(--muted); margin-bottom: 1.2rem; }
.post-body .link-arrow { margin-top: auto; }

/* articolo */
.article { max-width: 760px; margin-inline: auto; }
.article > img { border-radius: var(--radius-lg); margin: 2rem 0; box-shadow: var(--shadow-md); }
.article h2 { margin-top: 2.6rem; font-size: clamp(1.7rem, 3vw, 2.2rem); }
.article h3 { margin-top: 2rem; }
.article ul, .article ol { padding-left: 1.3rem; margin: 0 0 1.3rem; }
.article li { margin-bottom: .55rem; }
.article blockquote {
  margin: 2rem 0;
  padding: 1.4rem 1.7rem;
  border-left: 3px solid var(--gold);
  background: var(--cream-100);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--ink);
}
.article blockquote p { margin: 0; }
.accostamenti {
  list-style: none;
  margin: 1.8rem 0;
  padding: 0;
  display: grid;
  gap: .9rem;
}
.accostamenti li {
  position: relative;
  padding: 1.1rem 1.3rem 1.1rem 1.4rem;
  background: var(--cream-100);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: .98rem;
  margin: 0;
}
.accostamenti strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin-right: .2rem;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  font-size: .82rem;
  color: var(--muted);
  padding-bottom: 1.6rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 2rem;
}

/* -------------------------------------------------------------- QUOTE */
.quote-band {
  text-align: center;
  max-width: 900px;
  margin-inline: auto;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  font-style: italic;
  color: var(--cream);
  margin: 0 0 1.5rem;
}
.quote-band cite {
  font-style: normal;
  font-size: .8rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: .6;
  color: var(--gold);
  opacity: .5;
  display: block;
  margin-bottom: .5rem;
}

/* ---------------------------------------------------------- CTA BANNER */
.cta-banner {
  position: relative;
  background: var(--espresso-800);
  color: rgba(246, 239, 227, .82);
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(80% 130% at 15% 0%, rgba(201, 162, 39, .2), transparent 60%);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.5rem;
  padding: clamp(3rem, 6vw, 4.6rem) 0;
}
.cta-inner h2 { color: var(--cream); margin-bottom: .6rem; }
.cta-inner p { max-width: 32rem; color: rgba(243, 235, 222, .76); margin: 0; }
.cta-actions { display: flex; flex-wrap: wrap; gap: .85rem; flex: none; }

/* ------------------------------------------------------------- CONTATTI */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(2.5rem, 4vw, 3.5rem);
  align-items: start;
}
.contact-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.contact-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1.35rem; }
.contact-list li { display: flex; gap: 1rem; align-items: flex-start; }
.contact-list .ci {
  display: grid; place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: var(--gold-soft);
  border: 1px solid rgba(201, 162, 39, .3);
  color: var(--gold);
}
.contact-list .ci svg { width: 20px; height: 20px; }
.contact-list b { display: block; font-family: var(--font-body); font-size: .76rem; letter-spacing: .11em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: .15rem; }
.contact-list a { color: var(--ink); text-decoration: none; font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.field { display: flex; flex-direction: column; gap: .45rem; }
.field.is-full { grid-column: 1 / -1; }
.field label { font-size: .82rem; font-weight: 600; letter-spacing: .04em; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--cream);
  color: var(--ink);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .25s ease, box-shadow .25s ease, background-color .25s ease;
}
.field textarea { min-height: 148px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 162, 39, .16);
}
.field-check {
  grid-column: 1 / -1;
  display: flex;
  gap: .7rem;
  align-items: flex-start;
  font-size: .84rem;
  color: var(--muted);
}
.field-check input { width: 18px; height: 18px; margin-top: .18rem; flex: none; accent-color: var(--gold); }
.field-check a { color: var(--gold); }
.form-status { grid-column: 1 / -1; font-size: .9rem; color: var(--gold); min-height: 1.4em; }

.map-link {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.6rem;
  padding: 1rem 1.2rem;
  border: 1px dashed rgba(201, 162, 39, .5);
  border-radius: var(--radius);
  background: var(--gold-soft);
  color: var(--ink);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 500;
  transition: background-color .3s ease;
}
.map-link:hover { background: rgba(201, 162, 39, .22); }
.map-link svg { width: 22px; height: 22px; color: var(--gold); flex: none; }

/* ---------------------------------------------------------------- FAQ */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: .9rem; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); background: #fff; overflow: hidden; }
.faq-q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  background: none;
  border: 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.22rem;
  color: var(--ink);
  cursor: pointer;
}
.faq-q::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--gold);
  flex: none;
  transition: transform .35s var(--ease);
}
.faq-item.is-open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .45s var(--ease); }
.faq-a p { padding: 0 1.4rem 1.35rem; margin: 0; font-size: .96rem; color: var(--text); }

/* -------------------------------------------------------------- FOOTER */
.site-footer {
  background: var(--espresso-900);
  color: rgba(238, 228, 213, .68);
  padding-top: clamp(3.5rem, 6vw, 5rem);
  font-size: .93rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.footer-col h4 { color: var(--cream); font-size: .78rem; letter-spacing: .14em; margin-bottom: 1.15rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-col a { color: inherit; text-decoration: none; transition: color .25s ease; }
.footer-col a:hover { color: var(--gold-300); }
.footer-brand img { width: 230px; margin-bottom: 1.1rem; }
.footer-col p { font-size: .92rem; line-height: 1.7; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }
.footer-social a {
  display: grid; place-items: center;
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(235, 215, 155, .22);
  color: rgba(245, 238, 226, .85);
  transition: all .3s ease;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: #23160D; }
.footer-social svg { width: 19px; height: 19px; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 0 1.8rem;
  border-top: 1px solid rgba(235, 215, 155, .13);
  font-size: .82rem;
  color: rgba(238, 228, 213, .55);
}
.footer-bottom p { margin: 0; }
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--gold-300); }
.footer-credit a { color: var(--gold); }

/* --------------------------------------------------------- WHATSAPP FAB */
.wa-fab {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 80;
  display: grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .38);
  transition: transform .35s var(--ease);
}
.wa-fab:hover { transform: scale(1.07); }
.wa-fab svg { width: 28px; height: 28px; }

/* ------------------------------------------------------------- 404 */
.error-page { text-align: center; padding: clamp(5rem, 12vw, 9rem) 0; }
.error-code {
  font-family: var(--font-display);
  font-size: clamp(6rem, 18vw, 12rem);
  line-height: .9;
  color: var(--gold);
  margin: 0;
}

/* ------------------------------------------------------------ ANIMAZIONI */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }
.reveal[data-delay="4"] { transition-delay: .4s; }

/* ------------------------------------------------------------ RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .hero-media { max-width: 560px; margin-inline: auto; width: 100%; }
  .hero-media-sub { left: -1rem; bottom: -1.4rem; }
  .hero-badge { right: -.5rem; top: -1rem; width: 104px; height: 104px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .zodiac-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid, .gallery-grid.is-preview { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.2rem; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  :root { --nav-h: 72px; }
  .nav-toggle { display: block; }
  .nav { position: static; }
  /* niente backdrop-filter su mobile: creerebbe un containing block
     che intrappola il drawer position:fixed dentro l'header */
  .site-header { backdrop-filter: none; -webkit-backdrop-filter: none; background: rgba(18, 11, 6, .97); }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(340px, 84vw);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: .2rem;
    padding: 6.5rem 1.6rem 2rem;
    background: var(--espresso-900);
    border-left: 1px solid rgba(235, 215, 155, .15);
    box-shadow: -20px 0 60px rgba(10, 6, 3, .5);
    transform: translateX(105%);
    visibility: hidden;
    transition: transform .45s var(--ease), visibility 0s linear .45s;
    overflow-y: auto;
  }
  .nav-links.is-open {
    transform: none;
    visibility: visible;
    transition: transform .45s var(--ease), visibility 0s linear 0s;
  }
  .nav-links > li > a { display: block; padding: .9rem .4rem; font-size: 1.02rem; border-bottom: 1px solid rgba(235, 215, 155, .09); border-radius: 0; }
  .nav-links .nav-cta { margin: 1.4rem 0 0; text-align: center; border-radius: 999px; border-bottom: 0; }
  .split { grid-template-columns: 1fr; gap: 2.5rem; }
  .split-media.is-tall img { aspect-ratio: 4 / 3; }
  .split-media::after { inset: 12px -10px -12px 12px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band .stat:nth-child(2n) { border-right: 0; }
  .cta-inner { flex-direction: column; align-items: flex-start; text-align: left; }
  .topbar-tag { display: none; }
}

@media (max-width: 768px) {
  body { font-size: 1rem; }
  .section { padding: 4rem 0; }
  .zodiac-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid, .gallery-grid.is-preview { grid-template-columns: repeat(2, 1fr); }
  .grid-2 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .topbar-contacts { gap: 1rem; font-size: .78rem; }
  .nav-brand img { width: 178px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem 2rem; }
  .split-badge { position: static; margin-top: 1.3rem; max-width: none; }
  .hero-media-sub { width: 46%; left: -.4rem; bottom: -1rem; }
  .hero-badge { width: 92px; height: 92px; right: -.2rem; }
  .hero-badge b { font-size: 1.6rem; }
  .lightbox-nav { width: 42px; height: 42px; }
  .lightbox-nav.prev { left: .5rem; }
  .lightbox-nav.next { right: .5rem; }
}

@media (max-width: 480px) {
  .container { width: min(100% - 1.75rem, var(--container)); }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
  .gallery-grid, .gallery-grid.is-preview { grid-template-columns: repeat(2, 1fr); gap: .7rem; }
  .card { padding: 1.7rem 1.4rem; }
  .topbar-contacts span:nth-child(2) { display: none; }
}

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

@media print {
  .site-header, .topbar, .site-footer, .wa-fab, .cta-banner { display: none; }
  body { color: #000; background: #fff; }
}
