/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --beige: #FFFFFF;
  --beige-dark: #FAFAFA;
  --beige-mid: #EAEAEA;
  --green: #9D1019;
  --green-mid: #7F0D14;
  --green-light: #B5121C;
  --gold: #C8A96E;
  --gold-light: #D4B87A;
  --red: #9D1019;
  --white: #FFFFFF;
  --text: #1F1F1F;
  --text-dark: #1F1F1F;
  --text-muted: #6B6B6B;
  --border: #EAEAEA;
  --shadow: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--beige);
  color: var(--text);
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; line-height: 1.15; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* Offset anchor scroll for fixed nav */
section[id], div[id] { scroll-margin-top: 68px; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #FFFFFF;
  box-shadow: 0 1px 0 #EAEAEA;
  transform: translateZ(0);
  will-change: transform;
}
.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 44px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: visible;
}
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 40px; list-style: none; }
.nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.5px; color: #6B6B6B; transition: color 0.2s; }
.nav-links a:hover { color: #1F1F1F; }
.nav-cta {
  background: #9D1019;
  color: #FFFFFF;
  padding: 10px 26px;
  border-radius: 6px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: background 0.2s;
}
.nav-links a.nav-cta { color: #FFFFFF; }
.nav-cta:hover { background: #7F0D14; }

/* ===== HERO ===== */
.hero {
  margin-top: 68px;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 28px 60px;
  gap: 48px;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
  min-height: 70vh;
}

/* Hero animations */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}
@keyframes grain {
  0%  { transform: translate(0,0); }
  10% { transform: translate(-3%,-4%); }
  20% { transform: translate(4%, 2%); }
  30% { transform: translate(-2%, 4%); }
  40% { transform: translate(3%,-2%); }
  50% { transform: translate(-4%, 3%); }
  60% { transform: translate(2%,-3%); }
  70% { transform: translate(4%, 4%); }
  80% { transform: translate(-3%, 2%); }
  90% { transform: translate(2%,-4%); }
  100%{ transform: translate(0,0); }
}

.hero-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  animation: slideInLeft 0.9s cubic-bezier(0.25,0.46,0.45,0.94) both;
}

.hero-intro-title {
  font-family: 'Abril Fatface', serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: -1px;
  text-align: left;
  background: linear-gradient(105deg, #F5C84C 30%, #fff8c0 50%, #F5C84C 70%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: slideInLeft 0.9s cubic-bezier(0.25,0.46,0.45,0.94) both,
             shimmer 4s linear 1s infinite;
}

.hero-image-wrap {
  flex: 0 0 58%;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
  animation: slideInRight 0.9s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s both;
}
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: -12px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  animation: grain 0.7s steps(1) infinite;
  border-radius: 24px;
  will-change: transform;
}
.hero-image {
  width: 100%;
  height: 460px;
  background-image: url('assets/hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transition: transform 0.4s ease-out;
  will-change: transform, background-position;
}

.hero-cta {
  display: inline-block;
  margin-top: 16px;
  background: #9D1019;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 50px;
  transition: background 0.2s, color 0.2s;
  font-family: 'Inter', sans-serif;
  align-self: center;
}
.hero-cta:hover { background: #7F0D14; }


/* ===== SHARED ===== */
.container { max-width: 1300px; margin: 0 auto; padding: 0 44px; }
.section-label { font-size: 10px; font-weight: 700; letter-spacing: 5px; text-transform: uppercase; color: #9D1019; margin-bottom: 16px; display: block; }
.section-title { font-size: clamp(32px, 3.5vw, 48px); font-weight: 600; color: var(--text-dark); margin-bottom: 20px; line-height: 1.15; }
.section-sub { font-size: 15px; color: var(--text-muted); max-width: 520px; line-height: 1.8; }

/* ===== PASTA FORMATS VISUAL ===== */
.pasta-formats { background: #FAFAFA; }
.pasta-formats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 380px;
}
.pf-card {
  position: relative;
  overflow: hidden;
  cursor: default;
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.6s ease, transform 0.6s ease,
              box-shadow 0.4s ease;
}
.pf-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.pf-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  z-index: 1;
}
.pf-card:hover .pf-img {
  transform: scale(1.08);
}
.pf-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
}
.pf-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,20,10,0.92) 0%, rgba(10,20,10,0.3) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px 28px;
  transition: background 0.4s;
}
.pf-card:hover .pf-overlay {
  background: linear-gradient(to top, rgba(10,20,10,0.97) 0%, rgba(10,20,10,0.55) 65%, rgba(10,20,10,0.1) 100%);
}
.pf-num { display: none; }
.pf-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0;
  transition: transform 0.35s ease;
}
.pf-card:hover .pf-name {
  transform: translateY(-6px);
}
.pf-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.35s ease 0.05s, transform 0.35s ease 0.05s;
}
.pf-card:hover .pf-details {
  opacity: 1;
  transform: translateY(0);
}
.pf-detail {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.75);
}
.pf-detail:first-child {
  color: #F5C84C;
  font-weight: 600;
}

/* ===== ABOUT ===== */
.about {
  background: #FFFFFF;
  padding: 20px 0;
}
.about .container {
  display: block;
  gap: 100px;
  align-items: start;
}
.about-header {
  padding-bottom: 20px;
  border-bottom: 1px solid #EAEAEA;
  margin-bottom: 0;
}
.about-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 0 0 10px;
}
.at-1, .at-2 {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.at-1 { transform: translateX(-22px); }
.at-2 { transform: translateX(22px); transition-delay: 0.12s; }
.about-header.visible .at-1,
.about-header.visible .at-2 { opacity: 1; transform: translateX(0); }
.about-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 56px;
  align-items: center;
  padding: 20px 0;
  border-top: 1px solid #EAEAEA;
  opacity: 0;
  transform: translateX(-44px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.about-row--reverse {
  grid-template-columns: 1fr 260px;
  transform: translateX(44px);
}
.about-row.visible { opacity: 1; transform: translateX(0); }
.about-row--reverse .about-video-wrap {
  order: 2;
}
.about-row--reverse .about-row-text {
  order: 1;
}
.about-quality-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.about-quality-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.about-quality-item.visible { opacity: 1; transform: translateX(0); }
.about-quality-item:first-child {
  border-top: 1px solid rgba(0,0,0,0.07);
}
.about-quality-item h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 4px;
}
.about-quality-item p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.about-video-wrap {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  aspect-ratio: 3/4;
  position: relative;
}
.av-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.about-video-wrap:hover .av-overlay { opacity: 1; }
.av-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #9D1019;
  transition: transform 0.2s, background 0.2s;
}
.av-btn:hover { transform: scale(1.1); background: #fff; }
.av-btn svg { width: 22px; height: 22px; }
.about-video-wrap video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.about-right {
  position: relative;
  padding-top: 48px;
}
.about-location {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 600;
  color: var(--beige-mid);
  line-height: 0.9;
  letter-spacing: -2px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  pointer-events: none;
  user-select: none;
}
.about-facts {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}
.about-fact {
  display: flex;
  justify-content: space-between;
  border-bottom-color: #EAEAEA !important;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid var(--beige-mid);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.about-fact.visible { opacity: 1; transform: translateY(0); }
.about-fact:first-child { border-top: 1px solid var(--beige-mid); }
.about-fact-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.about-fact-value {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--green);
}

/* ===== PRODUCTS ===== */
.products {
  background: var(--beige);
  padding: 48px 0;
}
.products-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 64px;
  align-items: center;
}
.products-left { display: flex; flex-direction: column; }
.products .section-header {
  margin-bottom: 24px;
}
.products-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  max-height: 480px;
}
.products-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.products .section-title { color: var(--text-dark); }
.products .section-sub { color: var(--text-muted); }

/* Products reveal */
@keyframes badgePop {
  0%   { opacity: 0; transform: scale(0.6) translateY(8px); }
  70%  { transform: scale(1.1) translateY(-2px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.products-reveal-left,
.products-reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.products-reveal-left  { transform: translateX(-40px); }
.products-reveal-right { transform: translateX(40px); }
.products-reveal-left.visible,
.products-reveal-right.visible { opacity: 1; transform: translateX(0); }

.cert-badges-img,
.cert-vegan-img { opacity: 0; }
.cert-badges-img.badge-visible { animation: badgePop 0.5s cubic-bezier(0.34,1.56,0.64,1) forwards; }
.cert-vegan-img.badge-visible  { animation: badgePop 0.5s cubic-bezier(0.34,1.56,0.64,1) 0.15s forwards; }

/* Image tint per line */
.products-img-wrap {
  position: relative;
}
.products-img-tint {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  pointer-events: none;
  transition: background 0.5s ease;
}
[data-active="classic"]   .products-img-tint { background: rgba(184,96,26,0.07); }
[data-active="organic"]   .products-img-tint { background: rgba(61,107,61,0.12); }
[data-active="glutenfree"].products-img-tint { background: rgba(26,92,92,0.12); }

.product-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 0 48px;
  border-top: 1px solid #EAEAEA;
  padding: 14px 0;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s;
}
.product-row:last-child { border-bottom: 1px solid #EAEAEA; }
.product-row::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 3px; height: 60%;
  background: #9D1019;
  border-radius: 2px;
  transform: translateY(-50%) scaleY(0);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.product-row.active::before { transform: translateY(-50%) scaleY(1); }
.product-row:hover { border-color: #9D1019; }
.product-row.active { border-color: #9D1019; }

.product-row-index {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 600;
  color: #9D1019;
  opacity: 0.25;
  line-height: 1;
  transition: opacity 0.25s, color 0.25s;
  padding-top: 4px;
}
.product-row:hover .product-row-index,
.product-row.active .product-row-index { opacity: 1; }

.product-row-body {
  display: flex;
  flex-direction: column;
}
.product-row-top { display: flex; flex-direction: column; }

/* Specs slide-down */
.product-row-specs {
  display: flex;
  flex-direction: column;
  gap: 3px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease, margin 0.3s ease;
}
.product-row.active .product-row-specs {
  max-height: 72px;
  opacity: 1;
  margin-top: 8px;
}
.product-row-specs span {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  color: #6B6B6B;
}
.product-row-specs .prs-main {
  color: #1F1F1F;
  font-weight: 500;
}
.product-row-top h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.product-shapes-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
}
.product-shapes-list {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
}

.pl-note {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  padding-top: 8px;
}

/* ===== IMPACT ===== */
.impact {
  background: #9D1019;
  display: grid;
  grid-template-columns: 30% 1fr;
  min-height: 0;
}
.impact-photo {
  position: relative;
  overflow: hidden;
}
.impact-photo img {
  width: 100%;
  height: 110%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(0.88);
  will-change: transform;
  transition: transform 0.1s linear;
}
.impact-content {
  padding: 24px 40px;
  overflow-y: auto;
}
.impact-header {
  max-width: 720px;
  margin-bottom: 16px;
}
.impact-header .section-label {
  color: rgba(255,255,255,0.5);
}
.impact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 500;
  color: #fff;
  line-height: 1.1;
  margin: 12px 0 20px;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s cubic-bezier(0.25,0.46,0.45,0.94) 0.15s;
}
.impact-header.visible .impact-title { clip-path: inset(0 0% 0 0); }
.impact-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 620px;
}
.impact-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 20px;
}
.impact-stat {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px 20px;
  border-right: 1px solid rgba(255,255,255,0.1);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.impact-stat:last-child { border-right: none; }
.impact-stat.visible { opacity: 1; transform: translateY(0); }
.impact-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  font-weight: 400;
  color: #F5C84C;
  line-height: 1;
}
.impact-plus {
  font-size: 20px;
}
.impact-label {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  max-width: 160px;
}
.impact-body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}
.impact-block {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.impact-block.visible { opacity: 1; transform: translateY(0); }
.impact-block h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 12px;
}
.impact-block p {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  margin: 0;
}

/* ===== QUALITY ===== */
.quality-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--gold);
  opacity: 0.25;
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
/* ===== CONTACT ===== */
.contact { background: #fff; }
.contact-inner {
  display: block;
  min-height: unset;
  max-width: 1300px;
  margin: 0 auto;
  padding: 64px 44px;
}
.contact-left {
  background: transparent;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 80px;
}
.contact-left-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left-meta {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-left .section-label { color: var(--green); }
.contact-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  color: var(--text);
  line-height: 1.05;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.contact-detail:first-child { border-top: 1px solid var(--border); }
.contact-detail-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--green);
  opacity: 0.8;
}
.contact-detail-value {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
/* ── Contact animations ── */
.contact-label-reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.contact-label-reveal.visible { opacity: 1; transform: translateY(0); }

.ct-1, .ct-2, .ct-3 {
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.85s cubic-bezier(0.16,1,0.3,1);
}
.ct-2 { transition-delay: 0.1s; }
.ct-3 { transition-delay: 0.2s; }
.contact-title.visible .ct-1,
.contact-title.visible .ct-2,
.contact-title.visible .ct-3 { clip-path: inset(0 0% 0 0); }

.contact-connector {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 32px 0 40px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.contact-connector.visible { opacity: 1; transform: translateY(0); }

.connector-node {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.connector-node--right { flex-direction: row-reverse; }
.connector-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,169,110,0.2);
  flex-shrink: 0;
}
.connector-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.connector-info--right { align-items: flex-end; }
.connector-city {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
}
.connector-coord {
  font-family: 'DM Mono', monospace;
  font-size: 9px;
  color: var(--text-muted);
}
.connector-line {
  flex: 1;
  padding: 0 8px;
  overflow: hidden;
}
.connector-line svg { width: 100%; display: block; }
.connector-path {
  stroke-dashoffset: 200;
  animation: none;
}
.contact-connector.visible .connector-path {
  animation: connectorDraw 1.2s 0.3s ease forwards;
}
@keyframes connectorDraw {
  to { stroke-dashoffset: 0; }
}

.contact-details {
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.contact-details.visible { opacity: 1; transform: translateY(0); }

/* ── Persona card ── */
.contact-persona {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--beige-dark);
  border: 1px solid var(--border);
  border-radius: 4px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.contact-persona.visible { opacity: 1; transform: translateY(0); }
.persona-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}
.persona-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.persona-name {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
}
.persona-role {
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.persona-btns {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.persona-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 18px;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  flex: 1;
  justify-content: center;
}
.persona-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.persona-btn--wa {
  background: #25D366;
  color: #fff;
  border: 1px solid #25D366;
}
.persona-btn--wa:hover {
  background: #1ebe5a;
  border-color: #1ebe5a;
}
.persona-btn--mail {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}
.persona-btn--mail:hover {
  background: var(--beige-dark);
  border-color: var(--text-muted);
}

/* ===== FOOTER ===== */
footer {
  background: #0C1510;
  padding: 64px 0 48px;
}
.footer-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 44px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 32px;
}
.footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--white);
  margin-bottom: 8px;
}
.footer-tagline {
  font-size: 10px;
  color: rgba(255,255,255,0.25);
  letter-spacing: 2px;
  text-transform: uppercase;
}
.footer-links {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  padding-top: 6px;
}
.footer-links a {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-location {
  font-size: 11px;
  color: rgba(255,255,255,0.18);
  letter-spacing: 1px;
}

/* ===== CERT + VIDEO ===== */
.cert-strip {
  background: #FAFAFA;
  padding: 24px 0;
  border-top: 3px solid #9D1019;
}
.cert-strip-header {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 44px;
  padding-bottom: 0;
  border-bottom: none;
}
.cert-strip-header .pl-inline-list {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  position: relative;
  padding-left: 16px;
}
.cert-strip-header .pl-inline-list::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, #9D1019, rgba(157,16,25,0.2));
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 1s cubic-bezier(0.25,0.46,0.45,0.94);
}
.cert-strip-header .pl-inline-list.line-visible::before {
  transform: scaleY(1);
}
.cert-strip-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 500;
  color: var(--text-dark);
  line-height: 1.1;
  margin: 8px 0 12px;
}
/* Title split */
.pl-t1, .pl-t2 {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pl-t1 { transform: translateX(-22px); }
.pl-t2 { transform: translateX(22px); transition-delay: 0.12s; }
.cert-strip.visible .pl-t1,
.cert-strip.visible .pl-t2 { opacity: 1; transform: translateX(0); }
.cert-strip-sub {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.pl-inline-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pl-inline-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  opacity: 0;
  transform: translateX(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.2s;
  cursor: default;
}
.pl-inline-list li:first-child { border-top: 1px solid var(--border); }
.pl-inline-list li.visible { opacity: 1; transform: translateX(0); }
.pl-inline-list li:hover { border-color: #9D1019; }
.pl-inline-list li:hover .pl-inline-num { opacity: 1; transform: scale(1.15); }
.pl-inline-list li:hover h3 { color: #9D1019; }
.pl-inline-list li h3 {
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}
.pl-inline-list li h3::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: #9D1019;
  transition: width 0.3s ease;
}
.pl-inline-list li:hover h3::after { width: 100%; }

.pl-inline-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 600;
  color: #9D1019;
  opacity: 0.5;
  line-height: 1.2;
  min-width: 28px;
  padding-top: 1px;
  transition: opacity 0.2s, transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.pl-inline-list li div {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.pl-inline-list li h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
  line-height: 1.2;
}
.pl-inline-list li p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.pl-footnote {
  font-size: 13px;
  font-style: italic;
  color: var(--text-muted);
  margin: 12px 0 0;
  line-height: 1.6;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.cert-badges {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cert-badges-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.cert-badges-row { display: flex; align-items: center; gap: 4px; margin-top: -8px; margin-left: 24px; }
.cert-badges-img { width: auto; height: 90px; }
.cert-vegan-img { width: auto; height: 80px; }

.product-shapes-global {
  margin-top: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 960px) {
  .cert-strip { padding: 56px 0; }
}

/* ===== FLOUR ===== */
.flour {
  background: #FFFFFF;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 44px;
}
.flour-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 340px 340px;
}
.flour-content-col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
  padding: 52px 44px 52px 0;
  background: #FFFFFF;
}
.flour-img-cell {
  overflow: hidden;
}
.flour-img-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.flour-video-col {
  overflow: hidden;
  position: relative;
  background: #111;
}
.flour-video-col .flour-video-wrap {
  position: absolute;
  inset: 0;
  margin: 0;
  border-radius: 0;
  box-shadow: none;
}
.flour-video-col .flour-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.flour-cards-col {
  display: flex;
  align-items: stretch;
  padding: 16px 20px;
  background: #FAFAFA;
  overflow: hidden;
}
.flour-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flour-header .section-title {
  font-size: 40px;
  color: var(--text);
}
.flour-pkg-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  width: fit-content;
  padding: 6px 12px;
  border: 1px solid #EAEAEA;
  border-radius: 100px;
  background: #FAFAFA;
}
.flour-pkg-tag span {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-transform: uppercase;
}
.flour-pkg-div {
  width: 1px;
  height: 10px;
  background: #EAEAEA;
  display: block;
}
.flour .section-label { color: #9D1019; }
.flour .section-sub { color: var(--text-muted); }
.flour-product-img {
  border-radius: 6px;
  overflow: hidden;
}
.flour-product-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.flour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
  width: 100%;
  height: 100%;
}
.flour-card {
  background: #FFFFFF;
  border: 1px solid #EAEAEA;
  border-radius: 3px;
  padding: 16px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.25s;
}
.flour-card.visible {
  opacity: 1;
  transform: translateY(0);
}
.flour-card.visible:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.flour-card-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 8px;
  color: #9D1019;
  line-height: 1;
  transition: transform 0.4s cubic-bezier(0.34,1.56,0.64,1), color 0.3s;
}
.flour-card.visible:hover .flour-card-icon {
  transform: scale(1.25) rotate(12deg);
  color: #F5C84C;
}
.flour-card-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
/* SVG draw-in on entry */
.flour-card-icon svg path,
.flour-card-icon svg circle,
.flour-card-icon svg rect,
.flour-card-icon svg ellipse {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 0.9s ease;
}
.flour-card.visible .flour-card-icon svg path,
.flour-card.visible .flour-card-icon svg circle,
.flour-card.visible .flour-card-icon svg rect,
.flour-card.visible .flour-card-icon svg ellipse {
  stroke-dashoffset: 0;
}

/* Flour title split */
.flour-t1, .flour-t2 {
  display: inline-block;
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.flour-t1 { transform: translateX(-20px); }
.flour-t2 { transform: translateX(20px); transition-delay: 0.12s; }
.flour-header.visible .flour-t1,
.flour-header.visible .flour-t2 { opacity: 1; transform: translateX(0); }

/* Video cinématique */
.flour-video-wrap {
  position: relative;
  overflow: hidden;
}
.flour-video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.12);
  opacity: 0;
  transition: opacity 0.3s;
}
.flour-video-wrap:hover .flour-video-overlay { opacity: 1; }
.flour-video-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9D1019;
  transition: transform 0.2s, background 0.2s;
}
.flour-video-btn:hover { transform: scale(1.1); background: #fff; }
.flour-video-btn svg { width: 22px; height: 22px; }
.fv-pause { display: none; }
.flour-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 12px;
}
.flour-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
}
.flour-video-wrap video {
  width: 100%;
  display: block;
  max-height: 400px;
  object-fit: cover;
}
/* ===== FOOTER — contact row ===== */
.footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}
.footer-sep {
  color: rgba(255,255,255,0.15);
}

/* ===== NAV BURGER + MOBILE NAV ===== */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: #1F1F1F;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
body.menu-open .nav-burger span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
body.menu-open .nav-burger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
body.menu-open .nav-burger span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: #fff;
  padding: 88px 32px 48px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
body.menu-open .mobile-nav {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-links li { border-bottom: 1px solid #EAEAEA; }
.mobile-nav-links li:first-child { border-top: 1px solid #EAEAEA; }
.mobile-nav-links a {
  display: block;
  padding: 20px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 500;
  color: #1F1F1F;
  line-height: 1.1;
  transition: color 0.2s;
}
.mobile-nav-links a:active { color: #9D1019; }
.mobile-nav-cta {
  display: inline-flex;
  align-self: flex-start;
  margin-top: 36px;
  background: #9D1019;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  transition: background 0.2s;
}
.mobile-nav-cta:active { background: #7F0D14; }

/* ===== MOBILE ===== */
@media (max-width: 900px) {
  /* NAV */
  .nav-inner { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-logo img { height: 44px; }
  .nav-burger { display: flex; }

  /* HERO */
  .hero {
    flex-direction: column;
    padding: 24px 20px 40px;
    gap: 24px;
    min-height: unset;
  }
  .hero-left { width: 100%; }
  .hero-image-wrap { flex: none; width: 100%; border-radius: 16px; }
  .hero-image { height: 240px; }
  .hero-intro-title { font-size: clamp(26px, 8vw, 38px); }
  .hero-cta { align-self: flex-start; }

  /* PASTA FORMATS */
  .pasta-formats-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .pf-card { height: 220px; }
  .pf-details { opacity: 1; transform: translateY(0); }
  .pf-card .pf-name { transform: translateY(0); }

  /* PRODUCTS */
  .products { padding: 40px 0; }
  .products-layout { grid-template-columns: 1fr; gap: 32px; }
  .products-img-wrap { max-height: 260px; }
  .product-row { grid-template-columns: 48px 1fr; gap: 0 16px; }
  .product-row-index { font-size: 28px; }

  /* FLOUR */
  .flour { padding: 0; }
  .flour-split { grid-template-columns: 1fr; grid-template-rows: auto 240px 260px auto; }
  .flour-content-col { padding: 36px 20px; }
  .flour-img-cell { height: 240px; }
  .flour-video-col { height: 260px; position: relative; }
  .flour-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .flour-header .section-title { font-size: 34px; }

  /* CERT STRIP */
  .cert-strip { padding: 32px 0; }
  .cert-strip-header { padding: 0 20px; }
  .cert-badges-row { margin-left: 0; }

  /* VIDEO CONTROLS — always visible on mobile (no hover) */
  .av-overlay { opacity: 1; background: rgba(0,0,0,0.08); }
  .flour-video-overlay { opacity: 1; }

  /* ABOUT */
  .about { padding: 40px 0; }
  .container { padding: 0 20px; }
  .about-location { display: none; }
  .about-facts { margin-top: 0; }
  .about-fact { flex-direction: column; gap: 2px; align-items: flex-start; }
  .about-fact-value { font-size: 18px; }
  .about-row { grid-template-columns: 1fr; gap: 24px; }
  .about-row--reverse { grid-template-columns: 1fr; }
  .about-row--reverse .about-video-wrap { order: 0; }
  .about-row--reverse .about-row-text { order: 0; }
  .about-video-wrap { aspect-ratio: 16/9; }

  /* IMPACT */
  .impact { grid-template-columns: 1fr; }
  .impact-photo { height: 240px; }
  .impact-photo img { object-position: center center; height: 100%; }
  .impact-content { padding: 32px 20px; }
  .impact-body { grid-template-columns: 1fr; gap: 20px; }
  .impact-stats { grid-template-columns: repeat(2, 1fr); }

  /* CONTACT */
  .contact-inner { padding: 40px 20px; }
  .contact-left { grid-template-columns: 1fr; gap: 32px; }
  .persona-btns { flex-direction: column; }

  /* FOOTER */
  .footer-inner { padding: 0 20px; }
  .footer-top { flex-direction: column; gap: 24px; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .footer-bottom { flex-direction: column; gap: 8px; align-items: flex-start; }
  .footer-contact-row { flex-direction: column; gap: 4px; }
  .footer-sep { display: none; }
}

/* ═══════════════════════════════════════════
   DRONE ABOUT — Cinematic Factory Block
═══════════════════════════════════════════ */
.drone-about {
  position: relative;
  width: 100%;
  height: 82vh;
  min-height: 520px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.drone-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 10s ease;
  will-change: transform;
}
.drone-about.visible .drone-video {
  transform: scale(1);
}

.drone-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 40%,
    rgba(0,0,0,0.18) 75%,
    transparent 100%
  );
  pointer-events: none;
}

.drone-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 64px 80px;
  color: #fff;
}

/* ── label ── */
.drone-label {
  font-family: 'DM Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.drone-label.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── title ── */
.drone-title {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0 0 28px;
}
.drone-t1, .drone-t2 {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 400;
  line-height: 1.08;
  color: #fff;
  display: block;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.9s cubic-bezier(0.16,1,0.3,1);
}
.drone-t2 {
  font-style: italic;
  color: var(--gold);
  transition-delay: 0.18s;
}
.drone-title.visible .drone-t1,
.drone-title.visible .drone-t2 {
  clip-path: inset(0 0% 0 0);
}

/* ── scroll hint ── */
.drone-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.drone-scroll-hint span {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: droneScrollLine 2s ease-in-out infinite;
}
@keyframes droneScrollLine {
  0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
  40% { transform: scaleY(1); transform-origin: top; opacity: 1; }
  80% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── mobile ── */
@media (max-width: 768px) {
  .drone-content { padding: 0 24px 64px; }
}

/* ===== UTILITY ===== */
.av-pause-hidden { display: none; }
.section-label--mb { margin-bottom: 16px; }
.section-label--white-50 { color: rgba(255,255,255,0.5); }
