/* ============================================================
   Gar.Meats — Brand Identity Rebuild
   Palette & typography extracted from brand catalog (03-2026)
   ============================================================ */

@font-face {
  font-family: 'Bourbon';
  src: url('../fonts/Bourbon-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bourbon';
  src: url('../fonts/Bourbon-Oblique.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Bourbon Rough';
  src: url('../fonts/Bourbon-Rough.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Bourbon Lines';
  src: url('../fonts/Bourbon-Lines.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Core */
  --bg: #0a0a0a;
  --bg-2: #0f0f0f;
  --bg-3: #141414;
  --surface: #171717;
  --surface-2: #1c1c1c;
  --border: rgba(255, 255, 255, 0.07);
  --border-strong: rgba(255, 255, 255, 0.14);

  /* Brand colors (from catalog) */
  --yellow: #F4B63B;         /* brand mustard */
  --yellow-2: #E8A620;       /* deeper */
  --yellow-dim: rgba(244, 182, 59, 0.15);
  --magenta: #CE2E5E;        /* Slovera accent */
  --ocher: #B8923B;          /* Croasa accent */
  --blood: #8B1A1A;          /* meat red subtle accent */

  /* Text */
  --text: #FAFAFA;
  --text-soft: #D4D4D4;
  --text-muted: #A3A3A3;
  --text-dim: #707070;

  --r-sm: 4px;
  --r-md: 10px;
  --r-lg: 20px;

  --ease-out: cubic-bezier(.22, 1, .36, 1);
  --ease-in-out: cubic-bezier(.65, 0, .35, 1);

  --maxw: 1400px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: clip; max-width: 100%; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  color: var(--text-soft);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
  font-synthesis: none;
}

/* Grain overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: .04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .25s var(--ease-out); }
button { font-family: inherit; cursor: none; }

/* Display — Bourbon */
h1, h2, h3, .display {
  font-family: 'Bourbon', 'Oswald', sans-serif;
  font-weight: 400;
  color: var(--text);
  line-height: 0.98;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

/* Italic serif for pull quotes */
.quote-serif {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text);
}

.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 36px;
}

/* Yellow text utility */
.yellow { color: var(--yellow); }

/* Eyebrow */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--yellow);
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--yellow);
}

/* Stencil dot logo mark (approx of catalog bullet) */
.logo-dot {
  display: inline-block;
  width: 0.85em;
  height: 0.85em;
  border-radius: 50%;
  background: var(--yellow);
  vertical-align: middle;
  margin: 0 .12em;
  position: relative;
}

/* =====================================================
   CURSOR
   ===================================================== */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  mix-blend-mode: difference;
}
.cursor-dot {
  width: 6px; height: 6px;
  background: #fff;
  transform: translate(-50%, -50%);
  transition: transform .15s var(--ease-out), opacity .2s;
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,.45);
  transform: translate(-50%, -50%);
  transition: width .3s var(--ease-out), height .3s var(--ease-out), border-color .3s, opacity .2s;
}
.cursor-ring.hover {
  width: 80px; height: 80px;
  border-color: var(--yellow);
}
.cursor-dot.hover { transform: translate(-50%, -50%) scale(0); }
@media (hover: none), (max-width: 860px) {
  body, button, a { cursor: auto; }
  a, button { cursor: pointer; }
  .cursor-dot, .cursor-ring { display: none; }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  transition: transform .3s var(--ease-out), background .3s, color .3s;
  will-change: transform;
}
.btn i, .btn svg { transition: transform .3s var(--ease-out); }
.btn:hover i, .btn:hover svg { transform: translateX(6px); }

.btn-primary {
  background: var(--yellow);
  color: #0a0a0a;
}
.btn-primary:hover {
  background: var(--text);
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}
.btn-outline:hover {
  background: var(--yellow);
  color: #0a0a0a;
  border-color: var(--yellow);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  padding: 12px 0;
  position: relative;
}
.btn-ghost::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(.4);
  transform-origin: left;
  transition: transform .4s var(--ease-out);
}
.btn-ghost:hover::after { transform: scaleX(1); }

/* =====================================================
   HEADER
   ===================================================== */
.top-bar {
  background: #000;
  color: var(--text);
  font-size: 12px;
  padding: 9px 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 90;
  letter-spacing: 0.02em;
}
.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.top-bar .contact-info { display: flex; gap: 28px; flex-wrap: wrap; }
.top-bar .contact-info span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text);
  transition: color .25s;
}
.top-bar .contact-info span:hover { color: var(--yellow); }
.top-bar .contact-info i { color: var(--yellow); font-size: 10px; }
.top-bar .tb-social { display: flex; gap: 14px; }
.top-bar .tb-social a { color: var(--text); transition: color .25s, transform .25s; }
.top-bar .tb-social a:hover { color: var(--yellow); transform: translateY(-2px); }

header.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(16px) saturate(150%);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid var(--border);
  transition: background .3s, border-color .3s;
}
header.site-header.scrolled {
  background: rgba(10,10,10,0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 36px;
}

/* Brand logo — official image */
.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  flex-shrink: 0;
  transition: opacity .3s var(--ease-out);
}
.brand-mark img {
  height: 44px;
  width: auto;
  display: block;
}
.brand-mark:hover { opacity: .82; }
@media (max-width: 860px) {
  .brand-mark img { height: 30px; }
}
@media (max-width: 420px) {
  .brand-mark img { height: 26px; }
}

nav.main-nav { flex: 1; }
nav.main-nav > ul {
  list-style: none;
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
nav.main-nav > ul > li { position: relative; }
nav.main-nav > ul > li > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text);
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 16px;
  transition: color .25s;
}
nav.main-nav > ul > li > a:hover,
nav.main-nav > ul > li.active > a { color: var(--yellow); }
nav.main-nav > ul > li.active > a::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background: var(--yellow);
}

nav.main-nav .submenu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 240px;
  background: rgba(15,15,15,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-strong);
  padding: 10px;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: all .3s var(--ease-out);
}
nav.main-nav > ul > li:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
nav.main-nav .submenu li a {
  display: block;
  padding: 10px 16px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all .25s;
}
nav.main-nav .submenu li a:hover {
  background: var(--yellow-dim);
  color: var(--yellow);
  padding-left: 22px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-actions .cta-mini {
  padding: 12px 22px;
  font-size: 14px;
}
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-strong);
  color: var(--text);
  width: 46px;
  height: 46px;
  font-size: 18px;
  align-items: center;
  justify-content: center;
}

/* =====================================================
   HERO — brutal meat cover
   ===================================================== */
.hero {
  position: relative;
  min-height: 95vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  background: var(--bg);
}
.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.hero-visual .slides {
  position: absolute;
  inset: 0;
}
.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity 1.6s var(--ease-in-out), transform 8s linear;
  will-change: opacity, transform;
}
.hero-slide.active { opacity: 1; transform: scale(1); }
.slide-tbone    { background-image: url('../img/hero/hero-tbone.jpg'); }
.slide-tomahawk { background-image: url('../img/hero/hero-tomahawk.jpg'); }
.slide-ribeye   { background-image: url('../img/section/ribeye-cleaver.jpg'); }
@media (max-width: 860px) {
  .slide-tbone    { background-image: url('../img/hero/hero-tbone-mobile.jpg'); }
  .slide-tomahawk { background-image: url('../img/hero/hero-tomahawk-mobile.jpg'); }
  .slide-ribeye   { background-image: url('../img/section/ribeye-cleaver-mobile.jpg'); }
}
.hero-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(270deg, transparent 50%, rgba(10,10,10,0.85) 100%),
    radial-gradient(ellipse at 40% 50%, transparent 0%, rgba(10,10,10,0.3) 100%);
  z-index: 1;
}

.hero-container { padding: 0 60px 0 36px; }
.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0;
  position: relative;
  z-index: 2;
}
@media (max-width: 860px) {
  .hero-container { padding: 0 22px; }
}
.hero-copy .hero-eyebrow {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  letter-spacing: 4px;
  color: var(--yellow);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .1s forwards;
}
.hero-copy h1 {
  font-size: clamp(3rem, 9vw, 8rem);
  font-weight: 800;
  line-height: 0.88;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}
.hero-copy h1 .line span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: heroReveal 1s var(--ease-out) forwards;
}
.hero-copy h1 .line:nth-child(2) span { animation-delay: .18s; }
.hero-copy h1 .line:nth-child(3) span { animation-delay: .32s; }
@keyframes heroReveal { to { transform: translateY(0); opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

.hero-copy .hero-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  color: var(--text);
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 40px;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .55s forwards;
  max-width: 560px;
}
.hero-copy .hero-tag em { color: var(--yellow); font-style: italic; }
.hero-copy .hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .7s forwards;
}

.hero-meta {
  position: absolute;
  bottom: 30px;
  left: 36px;
  right: 36px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.hero-dots { display: flex; gap: 8px; }
.hero-dots button {
  width: 40px;
  height: 2px;
  background: rgba(255,255,255,.2);
  border: 0;
  transition: all .4s;
  position: relative;
  overflow: hidden;
}
.hero-dots button.active {
  background: rgba(255,255,255,.25);
  width: 70px;
}
.hero-dots button.active::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  animation: dotFill 6s linear forwards;
}
@keyframes dotFill { to { transform: scaleX(1); } }

.hero-scroll {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--text-muted);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* =====================================================
   SECTIONS
   ===================================================== */
section.section { padding: 140px 0; position: relative; }
section.section.alt { background: var(--bg-2); }
section.section.compact { padding: 100px 0; }

.section-heading { margin-bottom: 80px; max-width: 960px; }
.section-heading.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  margin: 24px 0 20px;
  line-height: 0.92;
}
.section-heading h2 .split { display: block; }
.section-heading p {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 700px;
  margin-top: 24px;
  line-height: 1.7;
}
.section-heading.center p { margin-left: auto; margin-right: auto; }

/* =====================================================
   REVEAL
   ===================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal.delay-1 { transition-delay: .1s; }
.reveal.delay-2 { transition-delay: .2s; }
.reveal.delay-3 { transition-delay: .3s; }
.reveal.reveal-left { transform: translateX(-60px); }
.reveal.reveal-left.in { transform: translateX(0); }
.reveal.reveal-right { transform: translateX(60px); }
.reveal.reveal-right.in { transform: translateX(0); }
.reveal.reveal-scale { transform: translateY(30px) scale(.96); }
.reveal.reveal-scale.in { transform: translateY(0) scale(1); }

/* =====================================================
   STATEMENT — "NON VENDIAMO CARNE. SELEZIONIAMO STANDARD."
   ===================================================== */
.statement {
  padding: 160px 0;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.statement h2 {
  font-size: clamp(2.8rem, 9vw, 7rem);
  color: var(--yellow);
  line-height: 0.92;
  letter-spacing: 0;
  max-width: 1100px;
}
.statement .body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 70px;
  max-width: 1100px;
}
.statement .body p {
  font-size: 1.05rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 18px;
}
.statement .body p strong { color: var(--text); font-weight: 600; }
.statement .quote-serif {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.3;
  margin-top: 70px;
  max-width: 820px;
  color: var(--text);
}
.statement .quote-serif em {
  color: var(--yellow);
  font-style: italic;
  font-weight: 600;
}

/* =====================================================
   FEATURE SPLIT (macello, allevamenti)
   ===================================================== */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse .feature-image { order: 2; }
.feature-split.narrow { grid-template-columns: 1.1fr 1fr; }

.feature-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}
.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.feature-image:hover img { transform: scale(1.06); }
.feature-image .corner-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 8px 14px;
  background: var(--yellow);
  color: #0a0a0a;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  z-index: 2;
}

.feature-text h2 {
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  margin-bottom: 30px;
  line-height: 0.95;
}
.feature-text p {
  margin-bottom: 20px;
  line-height: 1.8;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.feature-text p strong { color: var(--text); font-weight: 600; }
.feature-text .btn { margin-top: 20px; }

.feature-text .bullets {
  list-style: none;
  margin: 32px 0;
}
.feature-text .bullets li {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-weight: 500;
  font-size: .98rem;
}
.feature-text .bullets li:last-child { border-bottom: 1px solid var(--border); }
.feature-text .bullets li::before {
  content: '→';
  font-weight: 700;
  color: var(--yellow);
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text .bullets li strong { color: var(--text); font-weight: 600; margin-right: 4px; }

/* Serif pull-quote inline */
.pull-quote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
  color: var(--yellow);
  line-height: 1.3;
  padding: 30px 0 30px 30px;
  border-left: 2px solid var(--yellow);
  margin: 40px 0;
  font-weight: 500;
}

/* =====================================================
   STATS — anni / allevamenti / macello
   ===================================================== */
.stats {
  padding: 100px 0;
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  padding: 0 24px;
  border-left: 1px solid var(--border);
}
.stat-item:first-child { border-left: 0; padding-left: 0; }
.stat-item .num {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-weight: 800;
  font-size: clamp(3.4rem, 7vw, 6rem);
  line-height: 1;
  color: var(--yellow);
  letter-spacing: 0.01em;
  display: block;
}
.stat-item .label {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text);
  margin-top: 12px;
  display: block;
}
.stat-item .sub {
  color: var(--text-muted);
  font-size: .88rem;
  margin-top: 6px;
}

/* =====================================================
   PROCESS STEPS (filiera)
   ===================================================== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}
.process-step {
  background: var(--bg);
  padding: 44px 32px;
  transition: background .4s;
}
.process-step:hover { background: var(--bg-2); }
.process-step .step-n {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  color: var(--yellow);
  font-weight: 700;
  margin-bottom: 24px;
  display: block;
}
.process-step h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
  line-height: 1;
}
.process-step p {
  font-size: .92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* =====================================================
   BRAND CARDS — Slovera / Croasa
   ===================================================== */
.brand-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.brand-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--bg-2);
  transition: transform .6s var(--ease-out);
  isolation: isolate;
  border: 1px solid var(--border);
}
.brand-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.6) saturate(1.05);
  transition: filter .6s var(--ease-out), transform 1.2s var(--ease-out);
}
.brand-card:hover img { filter: brightness(.8); transform: scale(1.05); }
.brand-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.85) 80%, rgba(0,0,0,.98));
  z-index: 1;
}
.brand-card .bc-content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 40px;
}
.brand-card .brand-badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 12px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  font-weight: 700;
  background: rgba(0,0,0,.55);
  border: 1px solid var(--border-strong);
  backdrop-filter: blur(10px);
  color: var(--yellow);
}
.brand-card.slovera .brand-badge { color: var(--magenta); border-color: rgba(206,46,94,.5); }
.brand-card.croasa .brand-badge { color: var(--ocher); border-color: rgba(184,146,59,.5); }

.brand-card .bc-title {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text);
  line-height: .9;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.brand-card.slovera .bc-title .accent { color: var(--magenta); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }
.brand-card.croasa .bc-title .accent { color: var(--ocher); font-family: 'Playfair Display', serif; font-style: italic; font-weight: 400; }

.brand-card .bc-desc {
  color: var(--text-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 26px;
  max-width: 480px;
}
.brand-card .bc-meta {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 26px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 12.5px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.brand-card .bc-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.brand-card .bc-meta span::before {
  content: '•';
  color: var(--yellow);
}
.brand-card.slovera .bc-meta span::before { color: var(--magenta); }
.brand-card.croasa .bc-meta span::before { color: var(--ocher); }

.brand-card .bc-cta {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap .3s, color .3s;
  font-weight: 600;
}
.brand-card:hover .bc-cta { gap: 18px; color: var(--yellow); }
.brand-card.slovera:hover .bc-cta { color: var(--magenta); }
.brand-card.croasa:hover .bc-cta { color: var(--ocher); }

/* =====================================================
   MARQUEE
   ===================================================== */
.marquee {
  overflow: hidden;
  padding: 44px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 50px;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
  align-items: center;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text);
  text-transform: uppercase;
  line-height: 1;
}
.marquee-item .sep {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--yellow);
}
.marquee-item.outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--text-dim);
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* =====================================================
   WORLD GRID (selezioni dal mondo)
   ===================================================== */
.world-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.world-card {
  position: relative;
  padding: 50px 44px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color .4s, transform .4s var(--ease-out);
}
.world-card:hover {
  border-color: var(--yellow);
  transform: translateY(-4px);
}
.world-card .region {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--yellow);
  margin-bottom: 24px;
}
.world-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 18px;
  line-height: 0.95;
}
.world-card p {
  color: var(--text-soft);
  font-size: .98rem;
  line-height: 1.7;
  margin-bottom: 22px;
}
.world-card .tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.world-card .tag {
  padding: 6px 12px;
  background: transparent;
  border: 1px solid var(--border-strong);
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 11.5px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: all .3s;
}
.world-card:hover .tag {
  border-color: var(--yellow);
  color: var(--yellow);
}

/* =====================================================
   RARE QUALITY BANNER
   ===================================================== */
.rare-banner {
  position: relative;
  min-height: 60vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 120px 0;
}
.rare-banner-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(.5);
  z-index: 0;
}
.rare-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 0%, rgba(10,10,10,0.6) 70%);
  z-index: 1;
}
.rare-banner-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 36px;
}
.rare-banner .rare-logo {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: clamp(4rem, 14vw, 11rem);
  font-weight: 800;
  color: var(--yellow);
  line-height: 0.92;
  letter-spacing: 0.03em;
}
.rare-banner .rare-sub {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: clamp(1rem, 2vw, 1.4rem);
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--text);
  margin-top: 14px;
}
.rare-banner .rare-tag {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: clamp(1.1rem, 1.6vw, 1.3rem);
  color: var(--text-soft);
  margin-top: 30px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}

/* =====================================================
   CTA STRIP
   ===================================================== */
.cta-strip {
  padding: 120px 0;
  background: var(--yellow);
  color: #0a0a0a;
  position: relative;
  overflow: hidden;
}
.cta-strip-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
  align-items: center;
}
.cta-strip h2 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.92;
  color: #0a0a0a;
}
.cta-strip p {
  font-size: 1.08rem;
  margin: 22px 0 34px;
  color: rgba(10,10,10,.75);
  max-width: 520px;
}
.cta-strip .btn-primary {
  background: #0a0a0a;
  color: var(--yellow);
}
.cta-strip .btn-primary:hover {
  background: var(--text);
  color: #0a0a0a;
}
.cta-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-info .info-item {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px;
  background: rgba(0,0,0,.08);
  border: 1px solid rgba(0,0,0,.15);
  transition: background .3s;
  color: #0a0a0a;
}
.cta-info .info-item:hover { background: rgba(0,0,0,.14); }
.cta-info .info-item i {
  font-size: 22px;
  color: #0a0a0a;
  flex-shrink: 0;
}
.cta-info .info-item strong {
  display: block;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 2px;
}

/* =====================================================
   FOOTER
   ===================================================== */
footer.site-footer {
  background: #050505;
  padding: 100px 0 0;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.footer-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 80px;
  user-select: none;
  opacity: .95;
}
.footer-mark img {
  width: clamp(240px, 50vw, 600px);
  height: auto;
  display: block;
  opacity: .95;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: 60px;
  padding-bottom: 70px;
}
.footer-col h4 {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  color: var(--yellow);
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-weight: 600;
}
.footer-col p { font-size: .92rem; line-height: 1.8; margin-bottom: 22px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 14px; font-size: .94rem; }
.footer-col ul li a {
  color: var(--text);
  transition: all .25s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 14px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
}
.footer-col ul li a:hover { color: var(--yellow); gap: 14px; }

.foot-contact .contact-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: .92rem;
  color: var(--text);
}
.foot-contact .contact-row i { color: var(--yellow); width: 18px; padding-top: 3px; flex-shrink: 0; }
.foot-contact .contact-row a { color: var(--text); transition: color .25s; }
.foot-contact .contact-row a:hover { color: var(--yellow); }

.footer-newsletter {
  display: flex;
  margin-top: 16px;
  border: 1px solid var(--border-strong);
  overflow: hidden;
}
.footer-newsletter input {
  flex: 1;
  padding: 14px 18px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: inherit;
  font-size: .9rem;
  min-width: 0;
}
.footer-newsletter input:focus { outline: none; }
.footer-newsletter input::placeholder { color: var(--text-dim); }
.footer-newsletter button {
  background: var(--yellow);
  color: #0a0a0a;
  border: 0;
  padding: 0 20px;
  font-weight: 700;
  transition: background .3s;
}
.footer-newsletter button:hover { background: var(--text); }

.social-links { display: flex; gap: 10px; margin-top: 24px; }
.social-links a {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-strong);
  display: grid;
  place-items: center;
  color: var(--text);
  font-size: 14px;
  transition: all .3s var(--ease-out);
}
.social-links a:hover {
  background: var(--yellow);
  border-color: var(--yellow);
  color: #0a0a0a;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
  color: var(--text);
  flex-wrap: wrap;
  gap: 18px;
}
.footer-bottom a { color: var(--text); }
.footer-bottom a:hover { color: var(--yellow); }

/* =====================================================
   PAGE HEADER (subpages)
   ===================================================== */
.page-header {
  position: relative;
  padding: 180px 0 130px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,.6), rgba(10,10,10,.88));
}
.page-header .container { position: relative; z-index: 2; }
.page-header .breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 13px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 26px;
  font-weight: 500;
}
.page-header .breadcrumb a { color: var(--yellow); }
.page-header h1 {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.9;
  color: var(--text);
}
.page-header h1 .line { display: block; }
.page-header .intro-text {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  color: var(--text-soft);
  max-width: 680px;
  font-size: 1.2rem;
  line-height: 1.55;
  margin-top: 30px;
}

/* =====================================================
   CONTENT WRAP
   ===================================================== */
.content-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 36px;
}
.content-wrap .lead {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1.5;
  color: var(--text);
  margin-bottom: 50px;
  max-width: 860px;
  font-weight: 500;
}
.content-wrap h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  margin: 70px 0 26px;
}
.content-wrap h3 {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  font-size: 1.35rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin: 40px 0 18px;
  color: var(--yellow);
}
.content-wrap p {
  margin-bottom: 22px;
  line-height: 1.85;
  color: var(--text-soft);
  font-size: 1.02rem;
}
.content-wrap p strong { color: var(--text); font-weight: 600; }
.content-wrap ul {
  margin: 30px 0;
  list-style: none;
}
.content-wrap ul li {
  position: relative;
  padding: 18px 0 18px 40px;
  border-bottom: 1px solid var(--border);
  line-height: 1.7;
  font-size: .98rem;
}
.content-wrap ul li::before {
  content: '→';
  position: absolute;
  left: 0;
  top: 18px;
  color: var(--yellow);
  font-weight: 700;
  font-size: 18px;
}
.content-wrap ul li:first-child { border-top: 1px solid var(--border); }
.content-wrap ul li strong { color: var(--text); font-weight: 600; }

/* =====================================================
   CONTACT
   ===================================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  margin: 50px 0;
}
.contact-info-card {
  background: var(--bg-2);
  padding: 48px;
  border: 1px solid var(--border);
}
.contact-info-card h3 {
  font-size: 1.5rem;
  margin-bottom: 36px;
  color: var(--text);
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  letter-spacing: 1.5px;
}
.contact-info-card .info-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 26px;
}
.contact-info-card .info-item i {
  width: 44px;
  height: 44px;
  background: var(--yellow);
  color: #0a0a0a;
  display: grid;
  place-items: center;
  font-size: 14px;
  flex-shrink: 0;
}
.contact-info-card .info-item strong {
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  color: var(--text);
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
  letter-spacing: 1px;
  font-weight: 600;
  text-transform: uppercase;
}
.contact-info-card .info-item span,
.contact-info-card .info-item a {
  color: var(--text-soft);
  font-size: .96rem;
  line-height: 1.5;
}

.contact-form h3 {
  margin-bottom: 32px;
  font-size: 1.5rem;
  color: var(--text);
  font-family: 'Bourbon', 'Big Shoulders Stencil Display', sans-serif;
  letter-spacing: 1.5px;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 16px 22px;
  background: var(--bg-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: inherit;
  font-size: .96rem;
  margin-bottom: 16px;
  transition: all .3s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--yellow);
}
.contact-form textarea { min-height: 160px; resize: vertical; }
.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .85rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.contact-form .consent input { width: auto; margin: 4px 0 0; }

.map-card {
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-card iframe { display: block; width: 100%; height: 420px; border: 0; filter: grayscale(.4) brightness(.85); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1100px) {
  .stats-grid { grid-template-columns: 1fr 1fr; row-gap: 50px; }
  .stat-item:nth-child(3) { border-left: 0; padding-left: 0; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .world-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .cta-strip-inner { grid-template-columns: 1fr; gap: 40px; }
  .statement .body { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 860px) {
  .container { padding: 0 22px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-visual { min-height: 55vh; }
  .hero-visual::after { background: linear-gradient(180deg, transparent 30%, rgba(10,10,10,0.95) 100%); }
  .hero-copy { padding: 50px 22px 80px; }
  .hero-meta { position: static; margin: 40px 22px 0; padding: 20px 0; border-top: 1px solid var(--border); }
  .feature-split, .feature-split.reverse, .feature-split.narrow { grid-template-columns: 1fr; gap: 40px; }
  .feature-split.reverse .feature-image { order: 0; }
  .feature-image { aspect-ratio: 4/3; }
  .brand-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  nav.main-nav {
    position: fixed;
    top: 0; right: 0;
    width: min(400px, 90vw);
    height: 100vh;
    background: rgba(10,10,10,.98);
    backdrop-filter: blur(24px);
    padding: 100px 30px 30px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform .5s var(--ease-out);
    z-index: 70;
    border-left: 1px solid var(--border);
    visibility: hidden;
  }
  nav.main-nav.open { transform: translateX(0); visibility: visible; }
  nav.main-nav > ul { flex-direction: column; gap: 0; align-items: stretch; }
  nav.main-nav > ul > li { width: 100%; border-bottom: 1px solid var(--border); }
  nav.main-nav > ul > li > a {
    padding: 18px 0;
    font-size: 18px;
    justify-content: space-between;
  }
  nav.main-nav .submenu {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    border: 0;
    background: transparent;
    padding: 0 0 10px 16px;
    backdrop-filter: none;
    display: none;
    min-width: 0;
  }
  nav.main-nav > ul > li.open .submenu { display: block; }
  .mobile-toggle { display: grid; }
  .header-actions .cta-mini { display: none; }
  section.section { padding: 80px 0; }
  .statement { padding: 80px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form .form-row { grid-template-columns: 1fr; }
  .contact-info-card { padding: 32px; }
  .top-bar .contact-info { gap: 16px; font-size: 11px; }
  .top-bar .contact-info span:last-child { display: none; }
  .footer-mark { font-size: 5rem; gap: 15px; margin-bottom: 50px; }
}
@media (max-width: 860px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}
@media (max-width: 520px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item { border-left: 0; padding-left: 0; border-top: 1px solid var(--border); padding-top: 30px; }
  .stat-item:first-child { border-top: 0; padding-top: 0; }
  .hero-scroll { display: none; }
}

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

/* ==== Fix leggibilità etichette contatti (richiesta Gar.Meats 07/2026) ==== */
.contact-info-card .info-item strong,
.cta-info .info-item strong {
  font-family: "Oswald", sans-serif !important;
  letter-spacing: 1px !important;
  font-weight: 600 !important;
  font-size: 14px !important;
}
