/* =========================================================
   OLIVIVO CUSTOM CSS
   Palette aggiornata sul logo
   ========================================================= */

/* =========================
   1. TOKENS
   ========================= */
:root {
  --ol-color-primary: #55561C;
  --ol-color-primary-dark: #444515;
  --ol-color-secondary: #8B734B;
  --ol-color-secondary-dark: #735F3F;

  --ol-color-text: #17160F;
  --ol-color-text-soft: #5E5748;

  --ol-color-bg: #F7F5EF;
  --ol-color-bg-alt: #EFEBE2;
  --ol-color-white: #FFFDF9;
  --ol-color-border: #D8D1C2;

  --ol-radius-sm: 14px;
  --ol-radius-md: 22px;
  --ol-radius-lg: 26px;
  --ol-radius-xl: 32px;

  --ol-shadow-sm: 0 12px 30px rgba(23, 22, 15, 0.05);
  --ol-shadow-md: 0 18px 45px rgba(23, 22, 15, 0.08);
  --ol-shadow-lg: 0 20px 48px rgba(23, 22, 15, 0.10);
  --ol-shadow-xl: 0 26px 60px rgba(23, 22, 15, 0.14);

  --ol-max-content: 1200px;
  --ol-max-text: 760px;

  --ol-space-section: 100px;
  --ol-space-section-mobile: 70px;

  --ol-transition: 0.25s ease;
}

/* =========================
   2. BASE
   ========================= */
body {
  color: var(--ol-color-text);
  background: var(--ol-color-bg);
}

.olivivo-kicker {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ol-color-secondary);
}

.olivivo-kicker--light {
  color: #fff;
  background: rgba(139, 115, 75, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.22);
  padding: 8px 14px;
  border-radius: 999px;
}

.olivivo-accent {
  color: var(--ol-color-secondary);
}

.olivivo-btn {
  display: inline-block;
  text-decoration: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: all var(--ol-transition);
}

.olivivo-btn--primary {
  background: var(--ol-color-primary);
  color: #fff !important;
}

.olivivo-btn--primary:hover {
  background: var(--ol-color-primary-dark);
  color: #fff !important;
}

.olivivo-btn--ghost {
  background: rgba(255, 255, 255);
  color: #fff;
  border: 1px solid rgba(255, 255, 255);
}

.olivivo-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.olivivo-btn--light {
  background: #fff;
  color: var(--ol-color-primary);
}

.olivivo-btn--light:hover {
  background: #F4F0E8;
  color: var(--ol-color-primary-dark);
}

.olivivo-btn--outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.olivivo-btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.10);
  color: #fff;
}

.olivivo-btn--secondary {
  background: transparent;
  color: var(--ol-color-text);
  border: 1px solid var(--ol-color-border);
}

.olivivo-btn--secondary:hover {
  background: #F1EDE4;
  color: var(--ol-color-primary-dark);
  border-color: rgba(85, 86, 28, 0.18);
}

/* Utility WPBakery */
.olivivo-header-row,
.olivivo-footer-row {
  margin-bottom: 0 !important;
}

.olivivo-header-box,
.olivivo-footer-box {
  margin-bottom: 0 !important;
}

.olivivo-header-box p,
.olivivo-footer-box p {
  margin-bottom: 0;
}

/* =========================
   3. HEADER
   ========================= */
.olivivo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  max-width: var(--ol-max-content);
  margin: 0 auto;
  padding: 18px 20px;
}

.olivivo-header__logo,
.olivivo-footer__logo {
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 24px;
  color: var(--ol-color-primary);
}

.olivivo-header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.olivivo-header__nav a {
  text-decoration: none;
  color: var(--ol-color-text);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--ol-transition);
}

.olivivo-header__nav a:hover {
  color: var(--ol-color-secondary);
}

/* =========================
   4. HOME - HERO
   ========================= */
.olivivo-hero {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}

.olivivo-hero__inner {
  max-width: 920px;
  margin: 0 auto;
}

.olivivo-hero__inner h1 {
  margin: 18px 0 22px;
  font-size: clamp(38px, 6vw, 68px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.olivivo-hero__inner p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.olivivo-hero__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 34px;
}

/* =========================
   5. HOME - PROGETTO
   ========================= */
.olivivo-section-copy h2 {
  margin: 16px 0 22px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-section-copy p {
  margin-bottom: 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-rounded-media img {
  border-radius: var(--ol-radius-md);
  overflow: hidden;
  box-shadow: var(--ol-shadow-md);
}

/* =========================
   6. HOME - VALORI
   ========================= */
.olivivo-values-v2 {
  max-width: var(--ol-max-content);
  margin: 0 auto;
}

.olivivo-values-v2__head {
  max-width: var(--ol-max-text);
  margin: 0 auto 42px;
  text-align: center;
}

.olivivo-values-v2__head h2 {
  margin: 16px 0 18px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-values-v2__head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-values-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 22px;
  align-items: stretch;
}

.olivivo-values-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 240px;
  padding: 30px 28px;
  border-radius: 24px;
  background: var(--ol-color-white);
  border: 1px solid #DDD5C6;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
  overflow: hidden;
}

.olivivo-values-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(23, 22, 15, 0.09);
  border-color: rgba(85, 86, 28, 0.18);
}

.olivivo-values-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(139, 115, 75, 0.12) 0%, rgba(139, 115, 75, 0) 70%);
  pointer-events: none;
}

.olivivo-values-card--featured {
  grid-row: span 2;
  min-height: 100%;
  background: linear-gradient(180deg, #FFFDF9 0%, #F3ECDD 100%);
  border-color: rgba(139, 115, 75, 0.20);
  box-shadow: 0 18px 45px rgba(23, 22, 15, 0.07);
}

.olivivo-values-card__icon {
  width: 62px;
  height: 62px;
  border-radius: 18px;
  background: rgba(85, 86, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.olivivo-values-card__icon img {
 width: 50%;
}

.olivivo-values-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-values-card__icon .vc_icon_element-icon,
.olivivo-values-card__icon .vc_icon_element-inner,
.olivivo-values-card__icon .vc_icon_element-outer {
  line-height: 1 !important;
}

.olivivo-values-card__eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ol-color-secondary);
}

.olivivo-values-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-values-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-values-card--featured h3 {
  font-size: 30px;
}

.olivivo-values-card--featured p {
  font-size: 17px;
  line-height: 1.85;
}

/* =========================
   7. HOME - TERRITORIO
   ========================= */
.olivivo-territory-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 50px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-territory-text {
  max-width: var(--ol-max-text);
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-territory-col .wpb_single_image {
  margin-bottom: 0 !important;
}

.olivivo-territory-media {
  margin-bottom: 18px !important;
}

.olivivo-territory-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--ol-shadow-md);
}

.olivivo-territory-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: transform 0.45s ease;
}

.olivivo-territory-col:hover .olivivo-territory-media img {
  transform: scale(1.04);
}

.olivivo-territory-card-title {
  margin-bottom: 8px !important;
}

.olivivo-territory-card-title h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-territory-card-text {
  margin-bottom: 0 !important;
}

.olivivo-territory-card-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

/* =========================
   8. HOME - TEAM
   ========================= */
.olivivo-team-media {
  margin-bottom: 0 !important;
}

.olivivo-team-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: var(--ol-radius-lg);
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-team-media img {
  width: 100%;
  display: block;
  border-radius: var(--ol-radius-lg);
}

.olivivo-team-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-team-text {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
  max-width: 620px;
}

.olivivo-team-cta {
  margin-top: 28px;
}

.olivivo-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ol-color-secondary);
  font-weight: 800;
  font-size: 16px;
  transition: gap var(--ol-transition), color var(--ol-transition);
}

.olivivo-link-arrow:hover {
  gap: 14px;
  color: var(--ol-color-primary-dark);
}

.olivivo-link-arrow__icon {
  line-height: 1;
}

/* =========================
   9. HOME - CTA SHOP
   ========================= */
.olivivo-shop-cta {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #55561C 0%, #8B734B 100%);
  border-radius: var(--ol-radius-xl);
  padding: 70px 50px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--ol-shadow-xl);
}

.olivivo-shop-cta::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -80px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.olivivo-shop-cta::after {
  content: "";
  position: absolute;
  bottom: -70px;
  left: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0) 70%);
  pointer-events: none;
}

.olivivo-shop-cta__inner {
  position: relative;
  z-index: 2;
  max-width: var(--ol-max-text);
  margin: 0 auto;
  text-align: center;
}

.olivivo-shop-cta__inner h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.olivivo-shop-cta__inner p {
  margin: 0 auto;
  max-width: 700px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
}

.olivivo-shop-cta__buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* =========================
   10. FOOTER
   ========================= */
.olivivo-footer {
  background: #F1EBDD;
  border-top: 1px solid var(--ol-color-border);
  padding: 70px 20px 25px;
}

.olivivo-footer__top {
  max-width: var(--ol-max-content);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.olivivo-footer__brand p {
  margin-top: 18px;
  color: var(--ol-color-text-soft);
  line-height: 1.7;
  font-size: 15px;
  max-width: 340px;
}

.olivivo-footer__col h4 {
  margin: 0 0 18px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ol-color-text);
}

.olivivo-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.olivivo-footer__col li {
  margin-bottom: 12px;
}

.olivivo-footer__col a {
  text-decoration: none;
  color: var(--ol-color-text-soft);
  font-size: 15px;
  transition: color var(--ol-transition);
}

.olivivo-footer__col a:hover {
  color: var(--ol-color-secondary);
}

.olivivo-footer__bottom {
  max-width: var(--ol-max-content);
  margin: 35px auto 0;
  padding-top: 22px;
  border-top: 1px solid var(--ol-color-border);
}

.olivivo-footer__bottom p {
  color: #7A7365;
  font-size: 13px;
}

/* =========================
   11. ABOUT PAGE
   ========================= */
.vc_custom_olivivo_about_hero {
  width: 100vw !important;
  max-width: 100vw !important;
}

.olivivo-about-hero--wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.olivivo-about-hero {
  color: #fff;
}

.olivivo-about-hero h1 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #fff;
}

.olivivo-about-hero p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.olivivo-about-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-about-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-about-media,
.olivivo-about-media .wpb_single_image,
.olivivo-about-media figure {
  margin-bottom: 0 !important;
}

.olivivo-about-media figure {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-about-media img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.olivivo-about-section-head {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.olivivo-about-section-head--left {
  max-width: 760px;
  margin: 0;
  text-align: left;
}

.olivivo-about-section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-about-section-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-service-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
}

.olivivo-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ol-shadow-md);
  border-color: rgba(85, 86, 28, 0.18);
}

.olivivo-service-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(85, 86, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.olivivo-service-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-service-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-service-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-work-card {
  height: 100%;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition);
}

.olivivo-work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ol-shadow-md);
}

.olivivo-work-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(139, 115, 75, 0.12);
  flex: 0 0 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.olivivo-work-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-work-card__content h3 {
  margin: 2px 0 8px;
  font-size: 20px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-work-card__content p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-about-cta {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #F7F5EF 0%, #EEE7DA 100%);
  border: 1px solid var(--ol-color-border);
  border-radius: 30px;
  padding: 54px 36px;
  text-align: center;
}

.olivivo-about-cta__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-about-cta__inner p {
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

/* =========================
   12. SUSTAINABILITY PAGE
   ========================= */
.olivivo-page-intro--wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.olivivo-page-intro h1 {
  margin: 18px 0 20px;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-page-intro p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 19px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-sust-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-sust-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-sust-media,
.olivivo-sust-media .wpb_single_image,
.olivivo-sust-media figure {
  margin-bottom: 0 !important;
}

.olivivo-sust-media figure {
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-sust-media img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.olivivo-sust-head {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.olivivo-sust-head--left {
  margin: 0;
  text-align: left;
}

.olivivo-sust-head h2 {
  margin: 0 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-sust-head p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-sust-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
}

.olivivo-sust-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ol-shadow-md);
  border-color: rgba(85, 86, 28, 0.18);
}

.olivivo-sust-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(85, 86, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.olivivo-sust-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-sust-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-sust-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-mill-col .wpb_single_image {
  margin-bottom: 0 !important;
}

.olivivo-mill-media {
  margin-bottom: 18px !important;
}

.olivivo-mill-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--ol-shadow-md);
}

.olivivo-mill-media img {
  width: 100%;
  display: block;
  border-radius: 24px;
  transition: transform .45s ease;
}

.olivivo-mill-col:hover .olivivo-mill-media img {
  transform: scale(1.04);
}

.olivivo-mill-title {
  margin-bottom: 8px !important;
}

.olivivo-mill-title h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-mill-text {
  margin-bottom: 0 !important;
}

.olivivo-mill-text p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-governance-box {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 26px;
  padding: 30px 28px;
  box-shadow: var(--ol-shadow-sm);
}

.olivivo-governance-box__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.olivivo-governance-box__icon {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(139, 115, 75, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 56px;
}

.olivivo-governance-box__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-governance-box__head h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-governance-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.olivivo-governance-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 0;
  border-top: 1px solid var(--ol-color-border);
}

.olivivo-governance-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.olivivo-governance-list strong {
  font-size: 17px;
  line-height: 1.4;
  color: var(--ol-color-text);
}

.olivivo-governance-list span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ol-color-secondary);
}

.olivivo-governance-note {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: #F3ECDD;
  color: var(--ol-color-text-soft);
  font-size: 15px;
  line-height: 1.7;
  font-style: italic;
}

/* =========================
   13. SHOP PAGE
   ========================= */
.olivivo-shop-hero-wrap {
  max-width: 1200px;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
}

.olivivo-shop-hero-copy h1 {
  margin: 16px 0 20px;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-shop-hero-copy p {
  max-width: 620px;
  margin: 0;
  font-size: 19px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-shop-hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.olivivo-shop-hero-media,
.olivivo-shop-hero-media .wpb_single_image,
.olivivo-shop-hero-media figure {
  margin-bottom: 0 !important;
}

.olivivo-shop-hero-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-shop-hero-media img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.olivivo-usp-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
}

.olivivo-usp-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ol-shadow-md);
  border-color: rgba(85, 86, 28, 0.18);
}

.olivivo-usp-card__icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: rgba(85, 86, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.olivivo-usp-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-usp-card h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-usp-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-shop-section-head {
  max-width: 1200px;
  margin: 0 auto;
}

.olivivo-shop-section-head__top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
}

.olivivo-shop-section-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-shop-section-head p {
  margin: 0;
  max-width: 760px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

/* WooCommerce */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 22px;
  padding: 16px;
  box-shadow: var(--ol-shadow-sm);
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
}

.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--ol-shadow-md);
  border-color: rgba(85, 86, 28, 0.18);
}

.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
  border-radius: 18px;
  margin-bottom: 16px;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 20px;
  line-height: 1.25;
  font-weight: 800;
  color: var(--ol-color-text);
  margin-bottom: 10px;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
  color: var(--ol-color-secondary-dark);
  font-weight: 700;
  font-size: 18px;
}

.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  margin-top: 12px;
  border-radius: 999px;
  background: var(--ol-color-primary);
  color: #fff;
  font-weight: 700;
  padding: 11px 18px;
}

.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: var(--ol-color-primary-dark);
  color: #fff;
}

.olivivo-shop-story-media,
.olivivo-shop-story-media .wpb_single_image,
.olivivo-shop-story-media figure {
  margin-bottom: 0 !important;
}

.olivivo-shop-story-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-shop-story-media img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.olivivo-shop-story-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-shop-story-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-shop-newsletter {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #FFFDF9 0%, #F1EBDD 100%);
  border: 1px solid var(--ol-color-border);
  border-radius: 30px;
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--ol-shadow-sm);
}

.olivivo-shop-newsletter__inner h2 {
  margin: 16px 0 16px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-shop-newsletter__inner p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

/* =========================
   14. RESPONSIVE
   ========================= */
@media (max-width: 1024px) {
  .olivivo-values-grid {
    grid-template-columns: 1fr 1fr;
  }

  .olivivo-values-card--featured {
    grid-row: auto;
    grid-column: span 2;
  }
}

@media (max-width: 991px) {
  .olivivo-header {
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    gap: 18px;
  }

  .olivivo-header__nav {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px 22px;
  }

  .olivivo-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .olivivo-shop-section-head__top {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 767px) {
  :root {
    --ol-space-section: var(--ol-space-section-mobile);
  }

  .olivivo-header {
    padding: 16px 15px;
  }

  .olivivo-header__logo,
  .olivivo-footer__logo {
    font-size: 22px;
  }

  .olivivo-header__nav a {
    font-size: 14px;
  }

  .olivivo-hero__inner p,
  .olivivo-section-copy p,
  .olivivo-values-v2__head p,
  .olivivo-territory-text,
  .olivivo-team-text,
  .olivivo-shop-cta__inner p,
  .olivivo-about-hero p,
  .olivivo-about-text,
  .olivivo-about-section-head p,
  .olivivo-about-cta__inner p,
  .olivivo-page-intro p,
  .olivivo-sust-text,
  .olivivo-sust-head p,
  .olivivo-shop-hero-copy p,
  .olivivo-shop-section-head p,
  .olivivo-shop-story-text,
  .olivivo-shop-newsletter__inner p {
    font-size: 16px;
    line-height: 1.7;
  }

  .olivivo-values-v2__head {
    margin-bottom: 30px;
  }

  .olivivo-values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .olivivo-values-card,
  .olivivo-values-card--featured {
    grid-column: auto;
    min-height: auto;
    padding: 24px 22px;
  }

  .olivivo-values-card--featured h3 {
    font-size: 24px;
  }

  .olivivo-territory-card-title h3,
  .olivivo-governance-box__head h3,
  .olivivo-mill-title h3 {
    font-size: 22px;
  }

  .olivivo-team-title {
    margin-top: 14px;
  }

  .olivivo-team-cta {
    margin-top: 22px;
  }

  .olivivo-shop-cta {
    padding: 42px 24px;
    border-radius: 24px;
  }

  .olivivo-work-card {
    padding: 20px;
  }

  .olivivo-about-cta,
  .olivivo-shop-newsletter {
    padding: 36px 22px;
    border-radius: 22px;
  }

  .olivivo-governance-box {
    padding: 24px 22px;
  }

  .olivivo-footer {
    padding: 50px 15px 20px;
  }

  .olivivo-footer__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}


/* =========================
   FOOTER FIX - UN SOLO SFONDO
   ========================= */
.olivivo-footer-row,
.olivivo-footer-row > .wpb_column,
.olivivo-footer-row > .wpb_column > .vc_column-inner,
.olivivo-footer-box,
.olivivo-footer-box .wpb_wrapper {
  background: #F1EBDD !important;
}

.olivivo-footer-row {
  margin-bottom: 0 !important;
}

.olivivo-footer-row > .wpb_column > .vc_column-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.olivivo-footer-box {
  margin-bottom: 0 !important;
}

.olivivo-footer {
  background: #F1EBDD !important;
  margin: 0 !important;
}


/* =========================
   15. GENERIC INNER PAGES
   ========================= */
.olivivo-content-title {
  margin: 16px 0 20px;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-content-text {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-content-media,
.olivivo-content-media .wpb_single_image,
.olivivo-content-media figure {
  margin-bottom: 0 !important;
}

.olivivo-content-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-content-media img {
  width: 100%;
  display: block;
  border-radius: 26px;
}

.olivivo-info-card,
.olivivo-list-card,
.olivivo-people-card,
.olivivo-step-card {
  height: 100%;
  background: #fff;
  border: 1px solid var(--ol-color-border);
  border-radius: 24px;
  padding: 30px 26px;
  box-shadow: var(--ol-shadow-sm);
}

.olivivo-info-card h3,
.olivivo-step-card h3 {
  margin: 14px 0 12px;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-info-card p,
.olivivo-step-card p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-info-card p:last-child,
.olivivo-step-card p:last-child {
  margin-bottom: 0;
}

.olivivo-highlight-box {
  max-width: 980px;
  margin: 0 auto;
  background: linear-gradient(135deg, #f7f5ef 0%, #eee7da 100%);
  border: 1px solid var(--ol-color-border);
  border-radius: 30px;
  padding: 52px 36px;
  text-align: center;
  box-shadow: var(--ol-shadow-sm);
}

.olivivo-highlight-box--compact {
  padding: 32px 28px;
}

.olivivo-highlight-box h2 {
  margin: 16px 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-highlight-box p {
  max-width: 760px;
  margin: 0 auto 14px;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-highlight-box p:last-child {
  margin-bottom: 0;
}

.olivivo-section-head-left {
  max-width: 760px;
}

.olivivo-section-head-left h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-section-head-left p {
  margin: 0;
  font-size: 18px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.olivivo-bullet-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ol-color-text-soft);
}

.olivivo-bullet-list li:last-child {
  margin-bottom: 0;
}

.olivivo-bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--ol-color-secondary);
}

.olivivo-step-card h3 {
  margin: 0;
  font-size: 22px;
}

.olivivo-people-card {
  padding: 28px 24px;
}

.olivivo-people-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}

.olivivo-people-list li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--ol-color-border);
}

.olivivo-people-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.olivivo-people-list strong {
  font-size: 17px;
  line-height: 1.45;
  color: var(--ol-color-text);
}

.olivivo-people-list span {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ol-color-secondary);
}

@media (max-width: 767px) {
  .olivivo-content-text,
  .olivivo-highlight-box p,
  .olivivo-section-head-left p,
  .olivivo-bullet-list li {
    font-size: 16px;
    line-height: 1.7;
  }

  .olivivo-highlight-box {
    padding: 36px 22px;
    border-radius: 22px;
  }

  .olivivo-info-card,
  .olivivo-list-card,
  .olivivo-people-card,
  .olivivo-step-card {
    padding: 24px 22px;
  }
}

/* =========================
   16. FULL WIDTH BACKGROUND SYSTEM
   ========================= */
.olivivo-band--white {
  background: #FFFDF9 !important;
}

.olivivo-band--ivory {
  background: #F7F5EF !important;
}

.olivivo-band--sand {
  background: #F1EBDD !important;
}

.olivivo-band--soft {
  background: linear-gradient(180deg, #FFFDF9 0%, #F7F5EF 100%) !important;
}

.olivivo-band--soft-reverse {
  background: linear-gradient(180deg, #F7F5EF 0%, #FFFDF9 100%) !important;
}

.olivivo-band--olive {
  background: linear-gradient(135deg, #55561C 0%, #444515 100%) !important;
  color: #fff;
}

.olivivo-band--olive h1,
.olivivo-band--olive h2,
.olivivo-band--olive h3,
.olivivo-band--olive h4,
.olivivo-band--olive p,
.olivivo-band--olive li,
.olivivo-band--olive strong {
  color: #fff !important;
}

.olivivo-band--olive .olivivo-kicker {
  color: #D9C29A !important;
}

.olivivo-band--olive .olivivo-kicker--light {
  color: #fff !important;
}

.olivivo-band--divider-top {
  position: relative;
}

.olivivo-band--divider-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, calc(100% - 48px));
  height: 1px;
  background: rgba(23, 22, 15, 0.08);
  transform: translateX(-50%);
}

.olivivo-band--divider-bottom {
  position: relative;
}

.olivivo-band--divider-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1200px, calc(100% - 48px));
  height: 1px;
  background: rgba(23, 22, 15, 0.08);
  transform: translateX(-50%);
}

/* =========================
   16. FULL WIDTH BACKGROUND SYSTEM
   ========================= */
.olivivo-band--white {
  background: #FFFDF9 !important;
}

.olivivo-band--ivory {
  background: #F7F5EF !important;
}

.olivivo-band--sand {
  background: #F1EBDD !important;
}

.olivivo-band--soft {
  background: linear-gradient(180deg, #FFFDF9 0%, #F7F5EF 100%) !important;
}

.olivivo-band--soft-reverse {
  background: linear-gradient(180deg, #F7F5EF 0%, #FFFDF9 100%) !important;
}

.olivivo-band--olive {
  background: linear-gradient(135deg, #55561C 0%, #444515 100%) !important;
  color: #fff;
}

.olivivo-band--olive h1,
.olivivo-band--olive h2,
.olivivo-band--olive h3,
.olivivo-band--olive h4,
.olivivo-band--olive p,
.olivivo-band--olive li,
.olivivo-band--olive strong {
  color: #fff !important;
}

.olivivo-band--olive .olivivo-kicker {
  color: #D9C29A !important;
}

.olivivo-band--olive .olivivo-kicker--light {
  color: #fff !important;
}

.olivivo-band--divider-top {
  position: relative;
}

.olivivo-band--divider-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: min(1200px, calc(100% - 48px));
  height: 1px;
  background: rgba(23, 22, 15, 0.08);
  transform: translateX(-50%);
}

.olivivo-band--divider-bottom {
  position: relative;
}

.olivivo-band--divider-bottom::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: min(1200px, calc(100% - 48px));
  height: 1px;
  background: rgba(23, 22, 15, 0.08);
  transform: translateX(-50%);
}
/* =========================
   18. FILIERA V2
   ========================= */
.olivivo-filiera-hero {
  max-width: 1200px;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}

.olivivo-filiera-hero__copy h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5vw, 66px);
  line-height: 1.03;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-filiera-hero__copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-lead {
  font-size: 21px !important;
  line-height: 1.65 !important;
  color: var(--ol-color-text) !important;
}

.olivivo-filiera-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.olivivo-mini-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.9);
  border: 1px solid var(--ol-color-border);
  box-shadow: var(--ol-shadow-sm);
}

.olivivo-mini-badge .vc_icon_element {
  margin: 0 !important;
}

.olivivo-mini-badge span {
  font-size: 13px;
  font-weight: 700;
  color: var(--ol-color-text);
}

.olivivo-filiera-hero__visual {
  position: relative;
  min-height: 520px;
}

.olivivo-filiera-hero__image,
.olivivo-filiera-media-main,
.olivivo-filiera-media-main .wpb_single_image,
.olivivo-filiera-media-main figure {
  margin-bottom: 0 !important;
}

.olivivo-filiera-media-main figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--ol-shadow-xl);
  position: relative;
  z-index: 2;
}

.olivivo-filiera-media-main img {
  width: 100%;
  display: block;
  border-radius: 30px;
}

.olivivo-drop {
  position: absolute;
  background: linear-gradient(180deg, rgba(139,115,75,.22) 0%, rgba(85,86,28,.16) 100%);
  filter: blur(0px);
  z-index: 1;
}

.olivivo-drop--one {
  width: 140px;
  height: 190px;
  top: -20px;
  right: 10px;
  border-radius: 55% 55% 70% 70% / 40% 40% 75% 75%;
  transform: rotate(18deg);
}

.olivivo-drop--two {
  width: 110px;
  height: 150px;
  bottom: 20px;
  left: -18px;
  border-radius: 55% 55% 70% 70% / 40% 40% 75% 75%;
  transform: rotate(-18deg);
}

.olivivo-floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255,253,249,.94);
  border: 1px solid rgba(216,209,194,.9);
  border-radius: 20px;
  padding: 14px 16px;
  box-shadow: var(--ol-shadow-md);
  max-width: 240px;
}

.olivivo-floating-card--top {
  top: 24px;
  left: -14px;
}

.olivivo-floating-card--bottom {
  right: -12px;
  bottom: 26px;
}

.olivivo-floating-card__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--ol-color-secondary);
}

.olivivo-floating-card strong {
  display: block;
  font-size: 16px;
  line-height: 1.45;
  color: var(--ol-color-text);
}

.olivivo-filiera-split {
  max-width: 1200px;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 42px;
  align-items: center;
}

.olivivo-filiera-split__copy h2 {
  margin: 16px 0 18px;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-filiera-split__copy p {
  margin: 0 0 16px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-editorial-media,
.olivivo-filiera-editorial-media .wpb_single_image,
.olivivo-filiera-editorial-media figure {
  margin-bottom: 0 !important;
}

.olivivo-filiera-editorial-media figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--ol-shadow-lg);
}

.olivivo-filiera-editorial-media img {
  width: 100%;
  display: block;
  border-radius: 28px;
}

.olivivo-filiera-feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.olivivo-filiera-feature {
  position: relative;
  background: linear-gradient(180deg, #FFFDF9 0%, #F8F4EC 100%);
  border: 1px solid var(--ol-color-border);
  border-radius: 26px;
  padding: 28px 24px 26px;
  box-shadow: var(--ol-shadow-sm);
  overflow: hidden;
  transition: transform var(--ol-transition), box-shadow var(--ol-transition), border-color var(--ol-transition);
}

.olivivo-filiera-feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--ol-shadow-md);
  border-color: rgba(139,115,75,.22);
}

.olivivo-filiera-feature::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 84px;
  height: 120px;
  border-radius: 55% 55% 70% 70% / 40% 40% 75% 75%;
  background: radial-gradient(circle at 30% 30%, rgba(139,115,75,.16) 0%, rgba(139,115,75,0) 70%);
  transform: rotate(18deg);
}

.olivivo-filiera-feature__icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: rgba(85,86,28,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.olivivo-filiera-feature__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-filiera-feature h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-filiera-feature p {
  margin: 0;
  font-size: 15px;
  line-height: 1.75;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-process {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}

.olivivo-filiera-process__track {
  position: absolute;
  left: 24px;
  right: 24px;
  top: 84px;
  height: 1px;
  background: linear-gradient(90deg, rgba(139,115,75,.15) 0%, rgba(85,86,28,.28) 50%, rgba(139,115,75,.15) 100%);
}

.olivivo-filiera-process__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}

.olivivo-filiera-process-card {
  position: relative;
  padding: 32px 24px 24px;
  border-radius: 26px;
  background: #FFFDF9;
  border: 1px solid var(--ol-color-border);
  box-shadow: var(--ol-shadow-sm);
  min-height: 260px;
}

.olivivo-filiera-process-card__num {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ol-color-secondary);
}

.olivivo-filiera-process-card__icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: rgba(139,115,75,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.olivivo-filiera-process-card__icon .vc_icon_element {
  margin: 0 !important;
}

.olivivo-filiera-process-card h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-filiera-process-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-mosaic {
  max-width: 1200px;
  margin: 0 auto !important;
  padding-left: 24px;
  padding-right: 24px;
  display: grid;
  grid-template-columns: .9fr 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.olivivo-filiera-mosaic__img,
.olivivo-filiera-mosaic__img .wpb_single_image,
.olivivo-filiera-mosaic__img figure {
  margin-bottom: 0 !important;
}

.olivivo-filiera-mosaic__img figure {
  margin: 0 !important;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--ol-shadow-md);
}

.olivivo-filiera-mosaic__img img {
  width: 100%;
  display: block;
  border-radius: 24px;
}

.olivivo-filiera-mosaic__img--small {
  transform: translateY(36px);
}

.olivivo-filiera-side-note h2 {
  margin: 16px 0 16px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  font-weight: 800;
  color: var(--ol-color-text);
}

.olivivo-filiera-side-note p {
  margin: 0;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-final {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  padding-left: 24px;
  padding-right: 24px;
}

.olivivo-filiera-final h2 {
  margin: 18px 0 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  font-weight: 800;
  color: #fff;
}

.olivivo-filiera-final p {
  margin: 0 auto;
  max-width: 760px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,.90);
}

.olivivo-drop--final-left,
.olivivo-drop--final-right {
  background: linear-gradient(180deg, rgba(255,255,255,.10) 0%, rgba(255,255,255,.03) 100%);
}

.olivivo-drop--final-left {
  width: 120px;
  height: 170px;
  left: 20px;
  top: -10px;
  border-radius: 55% 55% 70% 70% / 40% 40% 75% 75%;
  transform: rotate(-18deg);
}

.olivivo-drop--final-right {
  width: 150px;
  height: 210px;
  right: 12px;
  bottom: -30px;
  border-radius: 55% 55% 70% 70% / 40% 40% 75% 75%;
  transform: rotate(16deg);
}

@media (max-width: 991px) {
  .olivivo-filiera-hero,
  .olivivo-filiera-split,
  .olivivo-filiera-mosaic {
    grid-template-columns: 1fr;
  }

  .olivivo-filiera-feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .olivivo-filiera-process__track {
    display: none;
  }

  .olivivo-filiera-process__items {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .olivivo-filiera-process-card {
    min-width: 290px;
    flex: 0 0 290px;
    scroll-snap-align: start;
  }

  .olivivo-filiera-mosaic__img--small {
    transform: none;
  }
}

@media (max-width: 767px) {
  .olivivo-filiera-hero,
  .olivivo-filiera-split,
  .olivivo-filiera-process,
  .olivivo-filiera-mosaic {
    padding-left: 18px;
    padding-right: 18px;
  }

  .olivivo-filiera-hero__copy p,
  .olivivo-filiera-split__copy p,
  .olivivo-filiera-side-note p,
  .olivivo-filiera-final p {
    font-size: 16px;
    line-height: 1.7;
  }

  .olivivo-filiera-lead {
    font-size: 18px !important;
  }

  .olivivo-floating-card {
    position: static;
    margin-top: 14px;
    max-width: none;
  }

  .olivivo-filiera-hero__visual {
    min-height: auto;
  }

  .olivivo-filiera-feature-grid {
    grid-template-columns: 1fr;
  }

  .olivivo-filiera-final {
    padding-left: 18px;
    padding-right: 18px;
  }

  .olivivo-drop--final-left,
  .olivivo-drop--final-right {
    display: none;
  }
}
/* FILIERA HERO - SOLO TESTO */
.olivivo-filiera-hero-row {
  position: relative;
  overflow: hidden;
}

.olivivo-filiera-hero-row::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 8%;
  width: 220px;
  height: 320px;
  background: radial-gradient(circle at 50% 30%, rgba(139,115,75,.18) 0%, rgba(139,115,75,.08) 38%, rgba(139,115,75,0) 72%);
  border-radius: 55% 55% 60% 60% / 38% 38% 70% 70%;
  transform: rotate(18deg);
  pointer-events: none;
}

.olivivo-filiera-hero-row::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 6%;
  width: 180px;
  height: 260px;
  background: radial-gradient(circle at 50% 30%, rgba(85,86,28,.12) 0%, rgba(85,86,28,.06) 40%, rgba(85,86,28,0) 74%);
  border-radius: 55% 55% 60% 60% / 38% 38% 70% 70%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.olivivo-filiera-hero {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.olivivo-filiera-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-filiera-hero p {
  max-width: 860px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-hero__lead {
  font-size: 21px !important;
  line-height: 1.65 !important;
  color: var(--ol-color-text) !important;
}

@media (max-width: 767px) {
  .olivivo-filiera-hero-row::before {
    width: 140px;
    height: 210px;
    top: -40px;
    right: -10px;
  }

  .olivivo-filiera-hero-row::after {
    width: 120px;
    height: 170px;
    bottom: -70px;
    left: -10px;
  }

  .olivivo-filiera-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .olivivo-filiera-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .olivivo-filiera-hero__lead {
    font-size: 18px !important;
  }
}
/* =========================
   FILIERA HERO FIXED
   ========================= */
.olivivo-filiera-hero-row {
  position: relative;
  overflow: hidden;
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
}

/* reset wrapper Uncode/WPBakery */
.olivivo-filiera-hero-row > .wpb_column,
.olivivo-filiera-hero-row > .wpb_column > .vc_column-inner,
.olivivo-filiera-hero-row > .wpb_column > .vc_column-inner > .wpb_wrapper,
.olivivo-filiera-hero-row .vc_column_container,
.olivivo-filiera-hero-row .vc_column-inner,
.olivivo-filiera-hero-row .wpb_wrapper {
  width: 100% !important;
  max-width: 100% !important;
}

.olivivo-filiera-hero-row .vc_column-inner {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.olivivo-filiera-hero-row .wpb_text_column,
.olivivo-filiera-hero-row .wpb_text_column .wpb_wrapper {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

/* decori ispirati alla goccia */
.olivivo-filiera-hero-row::before {
  content: "";
  position: absolute;
  top: -90px;
  right: 8%;
  width: 220px;
  height: 320px;
  background: radial-gradient(circle at 50% 30%, rgba(139,115,75,.18) 0%, rgba(139,115,75,.08) 38%, rgba(139,115,75,0) 72%);
  border-radius: 55% 55% 60% 60% / 38% 38% 70% 70%;
  transform: rotate(18deg);
  pointer-events: none;
}

.olivivo-filiera-hero-row::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: 6%;
  width: 180px;
  height: 260px;
  background: radial-gradient(circle at 50% 30%, rgba(85,86,28,.12) 0%, rgba(85,86,28,.06) 40%, rgba(85,86,28,0) 74%);
  border-radius: 55% 55% 60% 60% / 38% 38% 70% 70%;
  transform: rotate(-12deg);
  pointer-events: none;
}

.olivivo-filiera-hero {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  text-align: center;
}

.olivivo-filiera-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(40px, 5.4vw, 66px);
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-filiera-hero p {
  max-width: 860px;
  margin: 0 auto 16px;
  font-size: 18px;
  line-height: 1.8;
  color: var(--ol-color-text-soft);
}

.olivivo-filiera-hero__lead {
  font-size: 21px !important;
  line-height: 1.65 !important;
  color: var(--ol-color-text) !important;
}

/* se Uncode limita ancora il contenitore pagina */
.page .olivivo-filiera-hero-row,
.single .olivivo-filiera-hero-row {
  left: auto !important;
  right: auto !important;
}

@media (max-width: 767px) {
  .olivivo-filiera-hero-row::before {
    width: 140px;
    height: 210px;
    top: -40px;
    right: -10px;
  }

  .olivivo-filiera-hero-row::after {
    width: 120px;
    height: 170px;
    bottom: -70px;
    left: -10px;
  }

  .olivivo-filiera-hero {
    padding-left: 18px;
    padding-right: 18px;
  }

  .olivivo-filiera-hero p {
    font-size: 16px;
    line-height: 1.7;
  }

  .olivivo-filiera-hero__lead {
    font-size: 18px !important;
  }
}
.olivivo-filiera-hero,
.olivivo-filiera-hero-row,
.olivivo-filiera-hero-row .wpb_wrapper,
.olivivo-filiera-hero-row .wpb_text_column,
.olivivo-filiera-hero-row .wpb_text_column .wpb_wrapper {
  display: block !important;
}
/* =========================
   18. CONTACT PAGE
   ========================= */
.olivivo-contact-block {
  margin-top: 18px;
}

.olivivo-contact-block h2,
.olivivo-contact-form-wrap h2 {
  margin: 12px 0 12px;
  font-size: clamp(26px, 3.2vw, 36px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ol-color-text);
}

.olivivo-contact-block p,
.olivivo-contact-info__item p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: var(--ol-color-text-soft);
}

.olivivo-contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.olivivo-contact-info__item {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: start;
  column-gap: 18px;
  row-gap: 0;
  padding: 0 0 12px;
  border-bottom: 1px solid rgba(23,22,15,.08);
}

.olivivo-contact-info__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.olivivo-contact-info__item .olivivo-kicker {
  margin-top: 4px;
}

.olivivo-contact-info__item p {
  margin: 0;
}

.olivivo-contact-info__item a {
  color: var(--ol-color-text);
  text-decoration: none;
  transition: color var(--ol-transition);
}

.olivivo-contact-info__item a:hover {
  color: var(--ol-color-secondary);
}

.olivivo-contact-form-wrap {
  padding: 22px 22px 18px;
  background: linear-gradient(180deg, #FFFDF9 0%, #FBF8F2 100%);
  border: 1px solid var(--ol-color-border);
  border-radius: 20px;
  box-shadow: var(--ol-shadow-sm);
}

/* CF7 styling */
.olivivo-contact-form-wrap .wpcf7-form {
  margin-top: 12px;
}

.olivivo-contact-form-wrap .wpcf7-form p {
  margin-bottom: 10px;
}

.olivivo-contact-form-wrap label {
  display: block;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ol-color-text);
}

.olivivo-contact-form-wrap input[type="text"],
.olivivo-contact-form-wrap input[type="email"],
.olivivo-contact-form-wrap input[type="tel"],
.olivivo-contact-form-wrap textarea,
.olivivo-contact-form-wrap select {
  width: 100%;
  border: 1px solid var(--ol-color-border);
  background: #fff;
  color: var(--ol-color-text);
  border-radius: 12px;
  padding: 11px 13px;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: none;
  margin-top: 6px;
}

.olivivo-contact-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.olivivo-contact-form-wrap input:focus,
.olivivo-contact-form-wrap textarea:focus,
.olivivo-contact-form-wrap select:focus {
  outline: none;
  border-color: rgba(85,86,28,.35);
  box-shadow: 0 0 0 3px rgba(85,86,28,.08);
}

.olivivo-contact-form-wrap .wpcf7-submit {
  display: inline-block;
  margin-top: 6px;
  padding: 11px 20px;
  border: 0;
  border-radius: 999px;
  background: var(--ol-color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  transition: all var(--ol-transition);
  cursor: pointer;
}

.olivivo-contact-form-wrap .wpcf7-submit:hover {
  background: var(--ol-color-primary-dark);
  color: #fff;
}

.olivivo-contact-form-wrap .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 5px;
}

.olivivo-contact-form-wrap .wpcf7 form .wpcf7-response-output {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
}

@media (max-width: 767px) {
  .olivivo-contact-block h2,
  .olivivo-contact-form-wrap h2 {
    margin-top: 10px;
    margin-bottom: 10px;
  }

  .olivivo-contact-block p,
  .olivivo-contact-info__item p {
    font-size: 15px;
    line-height: 1.65;
  }

  .olivivo-contact-info__item {
    grid-template-columns: 1fr;
    row-gap: 6px;
    padding-bottom: 10px;
  }

  .olivivo-contact-form-wrap {
    padding: 18px 16px 16px;
    border-radius: 18px;
  }

  .olivivo-contact-form-wrap textarea {
    min-height: 110px;
  }
}


.chisiamo-card .olivivo-service-card{
  min-height: 288px;
  text-align: justify;
}

.olivivo-method {
  padding: 80px 20px;
  background: #f8f7f4;
}

.olivivo-method .container {
  max-width: 1100px;
  margin: 0 auto;
}

.olivivo-header {
  margin-bottom: 50px;
}

.olivivo-header .eyebrow {
  font-size: 12px;
  letter-spacing: 2px;
  color: #8c6b3f;
  text-transform: uppercase;
}

.olivivo-header h2 {
  font-size: 42px;
  margin: 10px 0;
  color: #1d1d1b;
}

.olivivo-header .subtitle {
  font-size: 28px;
  color: #8c6b3f;
}

.olivivo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.olivivo-grid .item {
  background: white;
  padding: 25px 30px;
  border-radius: 14px;
  font-size: 16px;
  line-height: 1.4;
  border: 1px solid rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.olivivo-grid .item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Responsive */
@media (max-width: 900px) {
  .olivivo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .olivivo-grid {
    grid-template-columns: 1fr;
  }

  .olivivo-header h2 {
    font-size: 32px;
  }

  .olivivo-header .subtitle {
    font-size: 22px;
  }
}

#post-25 .olivivo-band--soft-reverse.vc_custom_sost_intro{
  background: #f7f5ef !important;
}

.post-123 .col-lg-6.single-internal-gutter .olivivo-governance-box{
  min-height: 605px !important;
}
.hover-bianco:hover {
  color: #55561c !important;

}

.menu-primary ul li a{ font-size: 16px !important;}

@media (max-width: 600px) {
  .vc_row.vc_custom_olivivo_section.row-container,
  .vc_row.vc_custom_olivivo_values_v2.row-container,
  .vc_row.vc_custom_olivivo_territory_intro.row-container,
  .vc_row.vc_custom_olivivo_about_identity.row-container,
  .vc_row.vc_custom_olivivo_about_services_intro.row-container,
  .vc_row.vc_custom_olivivo_about_work_intro.row-container,
    .vc_row.olivivo-band--soft-reverse.vc_custom_sost_intro.row-container,
  .vc_row.olivivo-band--ivory.vc_custom_sost_2.row-container,
  .vc_row.olivivo-band--white.vc_custom_sost_carousel.row-container,
  .vc_row.vc_custom_olivivo_sust_intro.row-container,
  .vc_row.vc_custom_olivivo_mills_intro.row-container,
  .vc_row.vc_custom_olivivo_governance_intro.row-container{
    padding-top: 50px !important;
    padding-bottom: 20px !important;
  }
  
}