.category-shell {
  width: min(100% - 32px, 1180px);
  margin: 0 auto;
  padding: 16px 0 40px;
}

.category-main {
  display: grid;
  gap: 20px;
}

/* HERO FOOD */
.food-page .category-hero {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.78) 0%,
      rgba(22,18,15,0.72) 18%,
      rgba(22,18,15,0.58) 34%,
      rgba(22,18,15,0.28) 52%,
      rgba(22,18,15,0.10) 68%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/3_food.jpg");
  background-repeat: no-repeat;
  background-position: center center, right center;
  background-size: cover, cover;
}

.food-page .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.06) 38%,
    rgba(0,0,0,0.20) 100%
  );
  pointer-events: none;
}

.food-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.food-page .category-hero__content {
  max-width: 560px;
  padding: 28px 34px;
  background: rgba(18,18,18,0.32);
  border: 1px solid rgba(255,255,255,0.10);
}

.food-page .category-kicker,
.food-page .category-title,
.food-page .category-intro,
.food-page .category-intro p {
  position: relative;
  z-index: 3;
}

.food-page .category-kicker {
  color: #dfdfdf;
}

.food-page .category-title,
.food-page .category-intro,
.food-page .category-intro p {
  color: #ffffff;
}

.food-page .category-nav-label,
.food-page .category-section__title {
  color: #8f2f23;
}

@media screen and (max-width: 900px) {
  .food-page .category-hero {
    background-position: center center, 62% center;
  }

  .food-page .category-hero__content {
    max-width: 100%;
    padding: 22px 22px;
    background: rgba(18,18,18,0.40);
  }
}

@media screen and (max-width: 640px) {
  .food-page .category-hero {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/3_food.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .food-page .category-hero__content {
    padding: 18px 16px;
  }
}

/* HERO BEVERAGE – allineato al FOOD */
.beverage-page .category-hero {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg, 
      rgba(22,18,15,0.78) 0%,
      rgba(22,18,15,0.72) 18%,
      rgba(22,18,15,0.58) 34%,
      rgba(22,18,15,0.28) 52%,
      rgba(22,18,15,0.10) 68%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/4_beverage.jpg");
  background-repeat: no-repeat;
  background-position: center center, right center;
  background-size: cover, cover;
}

.beverage-page .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.06) 38%,
    rgba(0,0,0,0.20) 100%
  );
  pointer-events: none;
}

.beverage-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.beverage-page .category-hero__content {
  max-width: 560px;
  padding: 28px 34px;
  background: rgba(18,18,18,0.32);
  border: 1px solid rgba(255,255,255,0.10);
}

.beverage-page .category-kicker,
.beverage-page .category-title,
.beverage-page .category-intro,
.beverage-page .category-intro p {
  position: relative;
  z-index: 3;
}

.beverage-page .category-kicker {
  color: #dfdfdf;
}

.beverage-page .category-title,
.beverage-page .category-intro,
.beverage-page .category-intro p {
  color: #ffffff;
}

/* BASE HERO neutra per tutte le categorie */
.category-hero {
  position: relative;
  overflow: hidden;
  border: 1px solid #ddd8d2;
  border-radius: 24px;
  padding: 24px 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.12) 0%,
    rgba(0, 0, 0, 0.05) 40%,
    rgba(0, 0, 0, 0.16) 100%
  );
  pointer-events: none;
}

.category-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.category-hero__content {
  width: 100%;
  max-width: 560px;
  padding: 0;
}

.category-kicker {
  color: #eadfdf;
}

.category-title {
  color: #ffffff;
}

.category-intro {
  max-width: 62ch;
  color: #f3f3f3;
}

.category-intro:last-child {
  margin-bottom: 0;
}

.category-nav-wrap {
  background: #ffffff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.category-nav-label {
  margin-bottom: 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8f1d21;
}

.category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.category-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 10px 14px;
  border: 1px solid #ddd8d2;
  border-radius: 999px;
  background: #f8f5f2;
  color: #1f2933;
  font-weight: 500;
}

.category-nav a:hover,
.category-nav a:focus {
  background: #f1e9e4;
  color: #8f1d21;
  text-decoration: none;
}

.category-section {
  background: #ffffff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.05);
}

.category-section__head {
  margin-bottom: 18px;
}

.category-section__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.2;
  color: #8f2f23; /* rosso come Food */
}

.category-grid {
  display: grid;
  gap: 16px;
}

.category-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 16px;
  background: #f8f5f2;
  border: 1px solid #e3ddd7;
  border-radius: 18px;
}

.category-card__image-link {
  display: inline-block;
  width: fit-content;
}

.category-card__image {
  width: 100%;
  max-width: 140px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.category-card__title {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.2;
}

.category-card__title a {
  color: #1f2933;
}

.category-card__title a:hover,
.category-card__title a:focus {
  color: #8f1d21;
  text-decoration: none;
}

.category-card__text {
  margin: 0;
  color: #4a5560;
}

@media (min-width: 768px) {
  .category-shell {
    width: min(100% - 48px, 1180px);
    padding: 24px 0 56px;
  }

  .category-hero {
    padding: 34px 28px;
    background-position: left top, 82% center;
  }

  .category-hero__content {
    max-width: 560px;
  }

  .category-title {
    font-size: 42px;
  }

  .category-nav-wrap,
  .category-section {
    padding: 24px;
  }

  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .category-card {
    grid-template-columns: 120px 1fr;
    align-items: start;
  }

  .category-card__image {
    max-width: 120px;
  }
}

@media (min-width: 992px) {
  .category-hero {
    padding: 40px 34px;
    background-position: left top, right center;
  }

  .category-hero__content {
    max-width: 560px;
  }

  .category-title {
    max-width: 25ch;
  }

  .category-section__title {
    font-size: 28px;
  }

  .category-card__title {
    font-size: 24px;
  }
}

.category-nav-select {
  display: block;
}

.category-select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid #ddd8d2;
  border-radius: 14px;
  background: #f8f5f2;
  color: #1f2933;
  font: inherit;
}

/* Nav desktop */
.category-nav {
  display: none;
}

@media (min-width: 768px) {
  .category-nav-select {
    display: none;
  }

  .category-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
}

.category-card__body {
  display: grid;
  align-content: start;
  gap: 8px;
}

/* =========================================================
   INFO PAGE
   ========================================================= */

/* SFONDO GENERALE */
.info-page {
  background: #f6f3ee;
}

/* HERO INFO (stessa logica di Food/Beverage, immagine dedicata) */
.info-page .category-hero {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.80) 0%,
      rgba(22,18,15,0.72) 18%,
      rgba(22,18,15,0.58) 34%,
      rgba(22,18,15,0.28) 52%,
      rgba(22,18,15,0.10) 68%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/info_hero.jpg");
  background-repeat: no-repeat;
  background-position: center center, right center;
  background-size: cover, cover;
}

.info-page .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.06) 38%,
    rgba(0,0,0,0.20) 100%
  );
  pointer-events: none;
}

.info-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.info-page .category-hero__content {
  max-width: 560px;
  padding: 28px 34px;
  background: rgba(18,18,18,0.32);
  border: 1px solid rgba(255,255,255,0.10);
}

.info-page .category-kicker,
.info-page .category-title,
.info-page .category-intro,
.info-page .category-intro p {
  position: relative;
  z-index: 3;
}

.info-page .category-kicker {
  color: #dfdfdf;
}

.info-page .category-title,
.info-page .category-intro,
.info-page .category-intro p {
  color: #ffffff;
}

/* CONTENITORE CENTRALE */
.info-content-shell {
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
  padding: 28px 0 56px;
}

.info-main {
  display: grid;
  gap: 28px;
}

/* CARD BIANCHE */
.info-introbox,
.info-grid,
.info-privacy,
.info-mapbox {
  background: #fff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(33, 27, 21, 0.06);
}

/* INTROBOX */
.info-introbox {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.info-kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8178;
}

.info-title {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
  color: #2d2a26;
}

.info-lead {
  margin: 0;
  max-width: 68ch;
  color: #5d5650;
  line-height: 1.7;
}

/* BLOCCO PRODOTTO RICHIESTO */
.info-product {
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 120px 1fr;
  padding: 18px;
  background: #faf8f5;
  border: 1px solid #e7e1da;
  border-radius: 18px;
}

.info-product img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 14px;
  background: #fff;
  border: 1px solid #e2ddd7;
}

.info-product__eyebrow {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8178;
}

.info-product__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
  color: #2d2a26;
}

/* GRIGLIA CONTATTI + FORM */
.info-grid {
  padding: 28px;
  display: grid;
  gap: 28px;
}

/* TESTI CONTATTI */
.info-cardtitle {
  margin: 0 0 14px;
  font-size: 24px;
  color: #2d2a26;
}

.info-cardtext,
.info-cardtext p {
  margin: 0 0 12px;
  color: #5d5650;
  line-height: 1.7;
}

/* CONTATTI STRUTTURATI */
.info-contactlist {
  display: grid;
  gap: 14px;
  margin: 18px 0 0;
}

.info-contactitem {
  padding: 14px 16px;
  background: #faf8f5;
  border: 1px solid #e7e1da;
  border-radius: 16px;
}

.info-contactlabel {
  display: block;
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8178;
}

.info-contactvalue,
.info-contactvalue a {
  color: #2d2a26;
  text-decoration: none;
  font-weight: 600;
}

/* SOCIAL */
.info-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.info-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  background: #fff;
  color: #2d2a26;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.info-socials a:hover,
.info-socials a:focus {
  background: #f3ece6;
  border-color: #cfc6bc;
  color: #2d2a26;
}

/* FORM */
.info-formbox {
  display: grid;
  gap: 0;
}

.info-formintro {
  margin: 0 0 18px;
  color: #5d5650;
  line-height: 1.7;
}

.info-notehint {
  margin: 0 0 22px;
  padding: 16px 18px;
  border-left: 4px solid #ab1917;
  background: #fcf4f0;
  border-radius: 14px;
  color: #5b4b43;
  line-height: 1.7;
}

.info-formgrid {
  display: grid;
  gap: 16px;
}

.info-field {
  display: grid;
  gap: 8px;
}

.info-field label {
  font-weight: 600;
  color: #2d2a26;
}

.info-required {
  color: #ab1917;
}

.info-field input,
.info-field select,
.info-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #d7d1ca;
  border-radius: 14px;
  background: #fff;
  color: #2d2a26;
  font: inherit;
}

.info-field textarea {
  min-height: 150px;
  resize: vertical;
}

.info-field input:focus,
.info-field select:focus,
.info-field textarea:focus {
  outline: none;
  border-color: #ab1917;
  box-shadow: 0 0 0 4px rgba(171, 25, 23, 0.08);
}

/* PRIVACY */
.info-privacy {
  padding: 22px 28px;
}

.info-privacy p {
  margin: 0 0 12px;
  color: #5d5650;
  line-height: 1.7;
}

.info-checkbox {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-top: 14px;
  color: #2d2a26;
}

.info-checkbox input {
  margin-top: 4px;
}

/* AZIONI FORM */
.info-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
}

.info-btn--primary {
  background: #ab1917;
  color: #fff;
}

.info-btn--primary:hover,
.info-btn--primary:focus {
  background: #921311;
  color: #fff;
}

.info-btn--secondary {
  background: #fff;
  border-color: #d7d1ca;
  color: #2d2a26;
}

.info-btn--secondary:hover,
.info-btn--secondary:focus {
  background: #f7f2ed;
  color: #2d2a26;
}

.info-small {
  font-size: 14px;
  color: #7a736c;
}

.info-hidden {
  display: none;
}

/* MAPPA */
.info-mapbox {
  padding: 28px;
  display: grid;
  gap: 18px;
}

.info-mapframe {
  overflow: hidden;
  border: 1px solid #e7e1da;
  border-radius: 18px;
  background: #faf8f5;
}

.info-mapframe iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

.info-mapactions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* RESPONSIVE */
@media (min-width: 900px) {
  .info-grid {
    grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
    column-gap: 44px;
    row-gap: 28px;
    align-items: start;
  }

  .info-formgrid--two {
    grid-template-columns: 1fr 1fr;
  }

  .info-field--full {
    grid-column: 1 / -1;
  }
}

@media (max-width: 767px) {
  .info-content-shell {
    width: min(100% - 16px, 1180px);
    padding: 18px 0 42px;
  }

  .info-introbox,
  .info-grid,
  .info-privacy,
  .info-mapbox {
    padding: 20px;
    border-radius: 18px;
  }

  .info-product {
    grid-template-columns: 1fr;
  }

  .info-product img {
    width: 100%;
    max-width: 150px;
    height: auto;
  }

  .info-actions,
  .info-mapactions {
    flex-direction: column;
  }

  .info-btn {
    width: 100%;
  }

  .info-mapframe iframe {
    height: 300px;
  }
}

@media (max-width: 640px) {
  .info-page .category-hero {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/info_hero.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .info-page .category-hero__content {
    padding: 18px 16px;
  }
}

/* AVVISO CAMPI OBBLIGATORI */
.info-requirednote {
  margin: 0 0 18px;
  padding: 14px 16px;
  border: 1px solid #ead7d4;
  border-radius: 14px;
  background: #fcf4f0;
  color: #5b4b43;
  line-height: 1.6;
}

/* ERRORI VISIVI CAMPI */
.info-field.is-error input,
.info-field.is-error select,
.info-field.is-error textarea {
  border-color: #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.10);
  background: #fffafa;
}

.info-field.is-error label {
  color: #a61b1b;
}

/* PRIVACY ERRORE */
.info-privacy-inline {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid #ddd8d2;
  border-radius: 16px;
  background: #faf8f5;
}

.info-privacy-inline.is-error {
  border-color: #c62828;
  box-shadow: 0 0 0 4px rgba(198, 40, 40, 0.08);
  background: #fff7f7;
}

.info-privacy-inline p {
  margin: 0 0 12px;
  color: #5d5650;
  line-height: 1.7;
}


/* =========================================================
   ABOUT PAGE / CHI SIAMO
   ========================================================= */

.about-page {
  background: #f6f3ee;
}

/* HERO */
.category-hero--about {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.82) 0%,
      rgba(22,18,15,0.74) 18%,
      rgba(22,18,15,0.56) 36%,
      rgba(22,18,15,0.26) 56%,
      rgba(22,18,15,0.10) 72%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/chisiamo.jpg");
  background-repeat: no-repeat;
  background-position: center center, center right;
  background-size: cover, cover;
}

.category-hero--about::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events: none;
}

.about-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.about-page .category-hero__content {
  max-width: 620px;
  padding: 30px 34px;
  background: rgba(18,18,18,0.30);
  border: 1px solid rgba(255,255,255,0.10);
}

.about-page .category-kicker {
  color: #dfdfdf;
}

.about-page .category-title,
.about-page .category-intro,
.about-page .category-intro p {
  color: #ffffff;
}

/* SPAZIATURE SEZIONI */
.about-intro,
.about-media,
.about-sectors,
.about-services,
.about-social,
.about-cta {
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
  padding: 0 0 28px;
}

.about-intro {
  padding-top: 28px;
}

/* HEADERS SEZIONE */
.about-sectionhead {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.about-sectionhead__kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8178;
}

.about-sectionhead__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  color: #2d2a26;
}

/* INTRO */
.about-intro__grid {
  display: grid;
  gap: 24px;
}

.about-intro__text,
.about-highlight,
.about-sectors__content,
.about-servicecard,
.about-social,
.about-cta__inner {
  background: #fff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(33, 27, 21, 0.06);
}

.about-intro__text {
  padding: 28px;
}

.about-intro__text p {
  margin: 0 0 16px;
  color: #5d5650;
  line-height: 1.75;
}

.about-intro__text p:last-child {
  margin-bottom: 0;
}

.about-highlight {
  padding: 24px;
  height: 100%;
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.about-highlight__logo {
  width: 140px;
  max-width: 100%;
}

.about-highlight__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.about-highlight__text {
  margin: 0;
  color: #4f4943;
  line-height: 1.7;
  font-weight: 600;
}

/* IMMAGINI */
.about-media__grid {
  display: grid;
  gap: 24px;
}

.about-media__card {
  margin: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(33, 27, 21, 0.06);
}

.about-media__card img {
  display: block;
  width: 100%;
  height: auto;
}

.about-media__grid--single-wide .about-media__card img {
  width: 100%;
}

/* SETTORI */
.about-sectors__content {
  padding: 28px;
  margin-bottom: 24px;
}

.about-sectors__content p {
  margin: 0 0 16px;
  color: #5d5650;
  line-height: 1.75;
}

.about-sectors__content p:last-child {
  margin-bottom: 0;
}

.about-sectors__content a {
  color: #ab1917;
  text-decoration: none;
  font-weight: 700;
}

.about-sectors__content a:hover,
.about-sectors__content a:focus {
  text-decoration: underline;
}

/* SERVIZI */
.about-services__grid {
  display: grid;
  gap: 20px;
  align-items: start;
}

.about-servicecard {
  width: 100%;
  height:100%;
  min-width: 0;
  padding: 24px;
  box-sizing: border-box;
}

.about-servicecard__content {
  min-width: 0;
}

.about-servicecard__content::after {
  content: "";
  display: block;
  clear: both;
}

.about-servicecard__icon {
  float: right;
  width: 112px;
  margin: 0 0 12px 18px;
  pointer-events: none;
}

.about-servicecard__icon img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.about-servicecard h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #2d2a26;
}

.about-servicecard p {
  margin: 0 0 12px;
  color: #5d5650;
  line-height: 1.75;
}

.about-servicecard p:last-child {
  margin-bottom: 0;
}

.about-servicecard a {
  color: #ab1917;
  text-decoration: none;
  font-weight: 700;
}

.about-servicecard a:hover,
.about-servicecard a:focus {
  text-decoration: underline;
}

@media (min-width: 768px) {
  .about-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1200px) {
  .about-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}


/* SOCIAL */
.about-social {
  padding: 28px;
}

.about-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.about-socials__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid #ddd8d2;
  background: #fff;
  text-decoration: none;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.about-socials__link:hover,
.about-socials__link:focus {
  background: #f3ece6;
  border-color: #cfc6bc;
  transform: translateY(-1px);
}

.about-socials__link img {
  display: block;
  width: 26px;
  height: 26px;
  object-fit: contain;
}

/* CTA */
.about-cta__inner {
  padding: 32px 28px;
  text-align: center;
}

.about-cta__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
  color: #2d2a26;
}

.about-cta__text {
  margin: 0 auto;
  max-width: 60ch;
  color: #5d5650;
  line-height: 1.75;
}

.about-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .about-media__grid--two {
    grid-template-columns: 1fr 1fr;
  }

  .about-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .about-intro__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
    gap: 34px;
    align-items: start;
  }

  .about-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .about-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* HERO USATO */
.used-page .category-hero {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.78) 0%,
      rgba(22,18,15,0.72) 18%,
      rgba(22,18,15,0.58) 34%,
      rgba(22,18,15,0.28) 52%,
      rgba(22,18,15,0.10) 68%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/usato.jpg");
  background-repeat: no-repeat;
  background-position: center center, right center;
  background-size: cover, cover;
}

.used-page .category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.14) 0%,
    rgba(0,0,0,0.06) 38%,
    rgba(0,0,0,0.20) 100%
  );
  pointer-events: none;
}

.used-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.used-page .category-hero__content {
  max-width: 560px;
  padding: 28px 34px;
  background: rgba(18,18,18,0.32);
  border: 1px solid rgba(255,255,255,0.10);
}

.used-page .category-kicker,
.used-page .category-title,
.used-page .category-intro,
.used-page .category-intro p {
  position: relative;
  z-index: 3;
}

.used-page .category-kicker {
  color: #dfdfdf;
}

.used-page .category-title,
.used-page .category-intro,
.used-page .category-intro p {
  color: #ffffff;
}

.used-page .category-nav-label,
.used-page .category-section__title {
  color: #8f2f23;
}

@media screen and (max-width: 900px) {
  .used-page .category-hero {
    background-position: center center, 62% center;
  }

  .used-page .category-hero__content {
    max-width: 100%;
    padding: 22px 22px;
    background: rgba(18,18,18,0.40);
  }
}

@media screen and (max-width: 640px) {
  .used-page .category-hero {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/consulenza.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .used-page .category-hero__content {
    padding: 18px 16px;
  }
}

/* =========================================================
   CONSULTING PAGE / CONSULENZA
   ========================================================= */

.consulting-page {
  background: #f6f3ee;
}

/* HERO */
.category-hero--consulting {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.82) 0%,
      rgba(22,18,15,0.74) 18%,
      rgba(22,18,15,0.56) 36%,
      rgba(22,18,15,0.26) 56%,
      rgba(22,18,15,0.10) 72%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/consulenza.jpg");
  background-repeat: no-repeat;
  background-position: center center, center right;
  background-size: cover, cover;
}

.category-hero--consulting-bev {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.82) 0%,
      rgba(22,18,15,0.74) 18%,
      rgba(22,18,15,0.56) 36%,
      rgba(22,18,15,0.26) 56%,
      rgba(22,18,15,0.10) 72%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/consu_beverage.jpg");
  background-repeat: no-repeat;
  background-position: center center, center right;
  background-size: cover, cover;
}

.category-hero--consulting-fod {
  position: relative;
  overflow: hidden;
  background-color: #241f1b;
  background-image:
    linear-gradient(90deg,
      rgba(22,18,15,0.82) 0%,
      rgba(22,18,15,0.74) 18%,
      rgba(22,18,15,0.56) 36%,
      rgba(22,18,15,0.26) 56%,
      rgba(22,18,15,0.10) 72%,
      rgba(22,18,15,0.18) 100%
    ),
    url("../img/consu_food.jpg");
  background-repeat: no-repeat;
  background-position: center center, center right;
  background-size: cover, cover;
}

.category-hero--consulting::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0.12) 0%,
    rgba(0,0,0,0.05) 40%,
    rgba(0,0,0,0.18) 100%
  );
  pointer-events: none;
}

.consulting-page .category-hero__inner {
  position: relative;
  z-index: 2;
}

.consulting-page .category-hero__content {
  max-width: 620px;
  padding: 30px 34px;
  background: rgba(18,18,18,0.30);
  border: 1px solid rgba(255,255,255,0.10);
}

.consulting-page .category-kicker {
  color: #dfdfdf;
}

.consulting-page .category-title,
.consulting-page .category-intro,
.consulting-page .category-intro p {
  color: #ffffff;
}

/* SEZIONI */
.consulting-intro,
.consulting-areas,
.consulting-method,
.consulting-cta {
  width: min(100% - 24px, 1180px);
  margin: 0 auto;
  padding: 0 0 28px;
}

.consulting-intro {
  padding-top: 28px;
}

/* HEADERS */
.consulting-sectionhead {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.consulting-sectionhead__kicker {
  margin: 0;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a8178;
}

.consulting-sectionhead__title {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  color: #2d2a26;
}

/* BOX BASE */
.consulting-intro__text,
.consulting-highlight,
.consulting-areas__content,
.consulting-servicecard,
.consulting-method__content,
.consulting-cta__inner {
  background: #fff;
  border: 1px solid #ddd8d2;
  border-radius: 22px;
  box-shadow: 0 16px 40px rgba(33, 27, 21, 0.06);
}

/* INTRO */
.consulting-intro__grid {
  display: grid;
  gap: 24px;
}

.consulting-intro__text {
  padding: 28px;
}

.consulting-intro__text p {
  margin: 0 0 16px;
  color: #5d5650;
  line-height: 1.75;
}

.consulting-intro__text p:last-child {
  margin-bottom: 0;
}

.consulting-highlight {
  padding: 24px;
  display: grid;
  gap: 18px;
  align-content: start;
  background: linear-gradient(180deg, #fff 0%, #faf7f2 100%);
}

.consulting-highlight__icon {
  width: 120px;
  max-width: 100%;
}

.consulting-highlight__icon img {
  display: block;
  width: 100%;
  height: auto;
}

.consulting-highlight__text {
  margin: 0;
  color: #4f4943;
  line-height: 1.7;
  font-weight: 600;
}

/* AREE */
.consulting-areas__content {
  padding: 28px;
  margin-bottom: 24px;
}

.consulting-areas__content p {
  margin: 0 0 16px;
  color: #5d5650;
  line-height: 1.75;
}

.consulting-areas__content p:last-child {
  margin-bottom: 0;
}

.consulting-areas__content a,
.consulting-servicecard a,
.consulting-method__content a {
  color: #ab1917;
  text-decoration: none;
  font-weight: 700;
}

.consulting-areas__content a:hover,
.consulting-areas__content a:focus,
.consulting-servicecard a:hover,
.consulting-servicecard a:focus,
.consulting-method__content a:hover,
.consulting-method__content a:focus {
  text-decoration: underline;
}

/* CARD SERVIZI */




.consulting-servicecard__content {
  min-width: 0;
}

.consulting-servicecard__content::after {
  content: "";
  display: block;
  clear: both;
}

.consulting-servicecard__icon {
  float: right;
  width: 112px;
  margin: 0 0 12px 18px;
  pointer-events: none;
}

.consulting-servicecard__icon img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 96px;
  object-fit: contain;
}

.consulting-servicecard h3 {
  margin: 0 0 12px;
  font-size: 22px;
  line-height: 1.2;
  color: #2d2a26;
}

.consulting-servicecard p {
  margin: 0 0 12px;
  color: #5d5650;
  line-height: 1.75;
}

.consulting-servicecard p:last-child {
  margin-bottom: 0;
}

/* METODO */
.consulting-method__content {
  padding: 28px;
}

.consulting-method__content p {
  margin: 0 0 16px;
  color: #5d5650;
  line-height: 1.75;
}

.consulting-method__content p:last-child {
  margin-bottom: 0;
}

/* CTA */
.consulting-cta__inner {
  padding: 32px 28px;
  text-align: center;
}

.consulting-cta__title {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.5vw, 40px);
  line-height: 1.08;
  color: #2d2a26;
}

.consulting-cta__text {
  margin: 0 auto;
  
  color: #5d5650;
  line-height: 1.75;
}

.consulting-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 22px;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .consulting-services__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .consulting-intro__grid {
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
    gap: 34px;
    align-items: start;
  }

  .consulting-services__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .consulting-services__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .category-hero--consulting {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/consulenza.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .consulting-page .category-hero__content {
    padding: 18px 16px;
  }
}

@media (max-width: 640px) {
  .category-hero--consulting-bev {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/consu_beverage.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .consulting-page .category-hero__content {
    padding: 18px 16px;
  }
}

@media (max-width: 640px) {
  .category-hero--consulting-fod {
    background-image:
      linear-gradient(180deg,
        rgba(22,18,15,0.62) 0%,
        rgba(22,18,15,0.38) 45%,
        rgba(22,18,15,0.54) 100%
      ),
      url("../img/consu_food.jpg");
    background-position: center center, center center;
    background-size: cover, cover;
  }

  .consulting-page .category-hero__content {
    padding: 18px 16px;
  }
}

/* DUE BOX CENTRALI CONSULENZA */
.consulting-duobox {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  max-width: 980px;
  margin: 0 auto;
}

.consulting-duobox__item {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid #ddd8d2;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(33, 27, 21, 0.08);
  text-decoration: none;
  background-color: #241f1b;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  isolation: isolate;
}

.consulting-duobox__item--beverage {
  background-image: url("../img/consulenza-beverage.jpg");
}

.consulting-duobox__item--food {
  background-image: url("../img/consulenza-food.jpg");
}

.consulting-duobox__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg,
      rgba(20, 16, 13, 0.10) 0%,
      rgba(20, 16, 13, 0.18) 36%,
      rgba(20, 16, 13, 0.78) 100%
    );
  transition: background 0.25s ease;
}

.consulting-duobox__content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  max-width: 34ch;
}

.consulting-duobox__eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #e7ddd2;
}

.consulting-duobox__title {
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.05;
  font-weight: 700;
  color: #ffffff;
}

.consulting-duobox__text {
  display: block;
  color: rgba(255,255,255,0.92);
  line-height: 1.7;
}

.consulting-duobox__item:hover,
.consulting-duobox__item:focus {
  text-decoration: none;
  transform: translateY(-2px);
}

.consulting-duobox__item:hover .consulting-duobox__overlay,
.consulting-duobox__item:focus .consulting-duobox__overlay {
  background:
    linear-gradient(180deg,
      rgba(20, 16, 13, 0.08) 0%,
      rgba(20, 16, 13, 0.14) 34%,
      rgba(143, 29, 33, 0.72) 100%
    );
}

@media (min-width: 900px) {
  .consulting-duobox {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .consulting-duobox__item {
    min-height: 380px;
    padding: 34px;
  }
}

@media (max-width: 640px) {
  .consulting-duobox__item {
    min-height: 260px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .consulting-duobox__content {
    max-width: 100%;
  }
}