/*
Theme Name: Nuovaconfezione
Theme URI: 
Author: Techfly.it
Version: 1.0
*/

@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
}

/* ─── TOP NAV ─────────────────────────────────────── */
.topnav {
  background-color: #38291e; /* marrone scuro */
  width: 100%;
}

.topnav__menu {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 10px;
  gap: 0;
}

.topnav__menu li {
  display: flex;
  align-items: center;
}

/* Separatori | tra le voci */
.topnav__menu li + li::before {
  content: "|";
  color: #7a6a5a;
  padding: 0 8px;
}

.topnav__menu li a {
  display: block;
  padding: 10px 20px;
  color: #c8b89a;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 2px;
  font-weight: 200;
  text-transform: uppercase;
  transition: color 0.2s;
}

.topnav__menu li a:hover {
  color: #ffffff;
}

/* ─── SITE HEADER ──────────────────────────────────── */
.site-header {
  background-color: #baab9b; /* beige/taupe */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 30px 40px;
}

.site-header__logo {
  text-align: center;
}

.site-header__logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.site-header__logo img {
  max-height: 60px;
  width: auto;
}

.site-header__claim {
  display: block;
  color: #4a3728;
  font-size: 11px;
  letter-spacing: 4px;
  margin-top: 6px;
}

/* ─── LANGUAGE SWITCHER ────────────────────────────── */
.site-header__lang {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 6px;
}

.lang-switch {
  color: #4a3728;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: 1px;
}

.lang-switch + .lang-switch::before {
  content: "|";
  margin-right: 6px;
  color: #4a3728;
}

.lang-switch.lang--active {
  font-weight: bold;
  text-decoration: underline;
}

.lang-switch:hover {
  color: #2b1f18;
}

.topnav__menu .current-menu-item a {
  color: #ffffff;
}

/* ─── MOBILE HEADER BAR ─────────────────────────────── */
.mobile-header {
  display: none; /* nascosto su desktop */
  background-color: #baab9b;
  padding: 30px 20px;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

.mobile-header__logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.mobile-header__logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-header__logo img {
  height: 36px;
  width: auto;
}

.mobile-header__claim {
  font-size: 9px;
  letter-spacing: 3px;
  color: #4a3728;
  margin-top: 4px;
}

/* ─── LANGUAGE SWITCHER MOBILE ──────────────────────── */
.mobile-header__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  z-index: 1;
}

.mobile-header__lang .lang-switch {
  color: #4a3728;
  font-size: 12px;
  font-weight: bold;
  text-decoration: none;
  letter-spacing: 1px;
}

.mobile-header__lang .lang-switch.lang--active {
  text-decoration: underline;
}

.lang-sep {
  color: #4a3728;
  font-size: 12px;
}

/* ─── HAMBURGER BUTTON ──────────────────────────────── */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1;
}

.hamburger__line {
  display: block;
  width: 26px;
  height: 2px;
  background-color: #4a3728;
  border-radius: 2px;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
  transform-origin: center;
}

.hamburger.is-active > .hamburger__line {
  background-color: #ffffff;
}

/* Animazione hamburger → X */
.hamburger.is-active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.is-active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hamburger {
  z-index: 10000; /* sopra il drawer che è 9999 */
  position: relative;
}

/* ─── MOBILE DRAWER ─────────────────────────────────── */
.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2e2118;
  z-index: 9999;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

.mobile-drawer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 30px;
  height: 100%;
  box-sizing: border-box;
}

/* Logo nel drawer */
.mobile-drawer__logo {
  margin-bottom: 50px;
}

.mobile-drawer__logo a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.mobile-drawer__logo img {
  width: 200px;
  height: auto;
}

.mobile-drawer__claim {
  color: #aaaaaa;
  font-size: 10px;
  letter-spacing: 4px;
  margin-top: 6px;
}

/* Voci menu nel drawer */
.mobile-drawer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 300px;
  text-align: center;
}

.mobile-drawer__menu li {
  border-bottom: none; /* rimuovi il border precedente */
  position: relative;
}

.mobile-drawer__menu li:first-child {
  border-top: none;
}

.mobile-drawer__menu li::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #4a3a2e;
  width: 0%; /* parte da 0 */
  transition: width 0.6s ease;
}

/* Linea sopra il primo elemento */
.mobile-drawer__menu li:first-child::before {
  content: "";
  display: block;
  height: 1px;
  background-color: #4a3a2e;
  width: 0%;
  transition: width 0.6s ease;
}

/* Quando il drawer è aperto le linee si espandono */
.mobile-drawer.is-open .mobile-drawer__menu li::after,
.mobile-drawer.is-open .mobile-drawer__menu li:first-child::before {
  width: 100%;
}

/* Ritardo progressivo su ogni voce */
.mobile-drawer.is-open .mobile-drawer__menu li:nth-child(1)::after {
  transition-delay: 0.1s;
}
.mobile-drawer.is-open .mobile-drawer__menu li:nth-child(2)::after {
  transition-delay: 0.2s;
}
.mobile-drawer.is-open .mobile-drawer__menu li:nth-child(3)::after {
  transition-delay: 0.3s;
}
.mobile-drawer.is-open .mobile-drawer__menu li:nth-child(4)::after {
  transition-delay: 0.4s;
}
.mobile-drawer.is-open .mobile-drawer__menu li:nth-child(5)::after {
  transition-delay: 0.5s;
}

/* Linea sopra primo elemento */
.mobile-drawer.is-open .mobile-drawer__menu li:first-child::before {
  transition-delay: 0.1s;
}

.mobile-drawer__menu li a {
  display: block;
  padding: 20px 0;
  color: #d4c4b0;
  text-decoration: none;
  font-size: 15px;
  font-weight: 200;
  letter-spacing: 3px;
  transition: color 0.2s;
  text-transform: uppercase;
}

.mobile-drawer__menu li a:hover,
.mobile-drawer__menu .current-menu-item a {
  color: #ffffff;
}

/* Social nel drawer */
.mobile-drawer__social {
  margin-top: auto;
  padding-top: 50px;
  text-align: center;
}

.mobile-drawer__social-title {
  color: #ffffff;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-weight: 200;
}

.mobile-drawer__social-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.mobile-drawer__social-icons a img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

/* ─── OVERLAY ────────────────────────────────────────── */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.mobile-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 768px) {
  /* Mostra mobile header */
  .mobile-header {
    display: flex;
  }

  /* Nascondi desktop nav e header */
  .topnav,
  .site-header {
    display: none;
  }
}

/* ─── FOOTER DESKTOP ────────────────────────────────── */
.site-footer {
  background-color: #404040;
  padding: 60px 40px;
  color: #cccccc;
}

.site-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
}

.site-footer__col {
  display: flex;
  flex-direction: column;
}

/* Logo */
.site-footer__col--logo {
  min-width: 180px;
}

.site-footer__col--logo a {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.footer-logo {
  width: 160px;
  height: auto;
}

.footer-claim {
  color: #aaaaaa;
  font-size: 10px;
  letter-spacing: 4px;
  margin-top: 6px;
}

/* Contatti */
.site-footer__col--contacts p {
  margin: 2px 0;
  font-size: 13px;
  color: #cccccc;
  line-height: 1.7;
  font-weight: 100;
}

.site-footer__col--contacts a {
  color: #cccccc;
  text-decoration: underline;
}

.site-footer__col--contacts a:hover {
  color: #ffffff;
}

/* Menu footer */
.footer-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu li {
  margin: 4px 0;
}

.footer-menu li a {
  color: #cccccc;
  text-decoration: none;
  font-size: 13px;
  letter-spacing: 1.5px;
  transition: color 0.2s;
  font-weight: 100;
  text-transform: uppercase;
}

.footer-menu li a:hover,
.footer-menu .current-menu-item a {
  color: #ffffff;
}

/* Legal */
.site-footer__col--legal p {
  margin: 2px 0;
  font-size: 13px;
  color: #cccccc;
  line-height: 1.7;
  font-weight: 100;
}

.legal-menu {
  list-style: none;
  margin: 10px 0 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}

.legal-menu li a {
  color: #cccccc;
  text-decoration: underline;
  font-size: 12px;
  transition: color 0.2s;
}

.legal-menu li a:hover {
  color: #ffffff;
}

.legal-menu li + li::before {
  content: " / ";
  color: #aaaaaa;
  padding: 0 2px;
}

/* Social */
.site-footer__col--social {
  min-width: 120px;
}

.footer-social__title {
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 15px;
  font-weight: 200;
}

.footer-social__icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.social-icon img {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: opacity 0.2s;
}

.social-icon:hover img {
  opacity: 0.8;
}

/* ─── FOOTER MOBILE ─────────────────────────────────── */
@media (max-width: 768px) {
  .site-footer {
    padding: 50px 30px;
  }

  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
  }

  /* Nasconde colonne non necessarie su mobile */
  .desktop-only {
    display: none;
  }

  /* Logo */
  .site-footer__col--logo {
    min-width: unset;
  }

  .footer-logo {
    width: 200px;
  }

  /* Contatti */
  .site-footer__col--contacts p {
    font-size: 14px;
    line-height: 1.9;
  }

  /* Legal */
  .site-footer__col--legal {
    align-items: center;
  }

  .site-footer__col--legal p {
    font-size: 14px;
  }

  .legal-menu {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 4px;
  }

  /* Su mobile i separatori / su riga singola */
  .legal-menu li + li::before {
    content: none;
  }

  .legal-menu li a {
    font-size: 13px;
  }
}

/* ─── Pagina Home ────────────────────────── */

/* ─── HERO ──────────────────────────────────────────── */
.hero {
  width: 100%;
  height: 80vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: flex-end;
  align-content: space-around;
  flex-wrap: wrap;
  justify-content: space-around;
}

.hero__testo {
  color: #ffffff;
  font-size: clamp(36px, 6vw, 80px);
  width: 30%;
  text-align: center;
  font-weight: 100;
  line-height: 1.1;
  letter-spacing: 2px;
  padding: 0 0 60px 60px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

/* ─── INTRO ─────────────────────────────────────────── */
.intro {
  padding: 80px 40px;
}

.beige_scuro {
  background-color: #dcd5cd;
}

.intro__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.intro__immagine {
  flex: 0 0 40%;
}

.intro__immagine img {
  width: 100%;
  height: auto;
  display: block;
}

.intro__contenuto {
  flex: 1;
}

.intro__label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  color: black;
  margin-bottom: 16px;

  /* necessario per il ::after */
  display: inline-block;
  position: relative;
}

.intro__label::after {
  content: "";
  position: absolute;
  bottom: -8px; /* distanza dal testo */
  left: -20px; /* quanto sborda a sinistra */
  width: calc(100% + 20px); /* larghezza testo + lo sbordo */
  height: 1px;
  background-color: black;
}

.intro__titolo {
  font-size: clamp(22px, 3vw, 36px);
  color: #2b1f18;
  font-weight: 200;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: 1px;
}

.intro__testo {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── SERVIZI ────────────────────────────────────────── */
.servizi {
  background-color: #c4b49a;
  padding: 80px 40px;
}

.servizi__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.servizi__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}

.servizi__img-wrap {
  width: 280px;
  height: 280px;
  overflow: hidden;
  margin-bottom: 24px;
}

.servizi__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.servizi__titolo {
  font-size: 13px;
  letter-spacing: 3px;
  color: #2b1f18;
  font-weight: 600;
  margin-bottom: 12px;
}

.servizi__testo {
  font-size: 13px;
  color: #3d3020;
  line-height: 1.7;
  margin-bottom: 24px;
}

.servizi__btn {
  display: inline-block;
  padding: 8px 24px;
  border: 1px solid #2b1f18;
  color: #2b1f18;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 2px;
  transition:
    background-color 0.2s,
    color 0.2s;
}

.servizi__btn:hover {
  background-color: #2b1f18;
  color: #ffffff;
}

/* ─── BANNER ─────────────────────────────────────────── */
.banner {
  width: 100%;
  height: 70vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ─── RESPONSIVE HOME ────────────────────────────────── */
@media (max-width: 768px) {
  .hero {
    height: 60vh;
  }

  .hero__testo {
    padding: 0 0 40px 30px;
  }

  .intro {
    padding: 50px 20px;
  }

  .intro__inner {
    flex-direction: column;
    gap: 30px;
  }

  .intro__immagine {
    flex: unset;
    width: 100%;
  }

  .servizi {
    padding: 50px 20px;
  }

  .servizi__inner {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }

  .servizi__item {
    max-width: 100%;
  }

  .banner {
    height: 50vh;
  }
}

/* ─── TIMELINE SECTION ─────────────────────────────── */
.timeline-section {
  padding: 80px 40px;
  background-color: #f5f0e8;
}

.timeline-header {
  text-align: center;
  margin-bottom: 60px;
}

.timeline-title {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #2b1f18;
  margin: 0 0 8px;
  font-weight: 200;
}

.timeline-subtitle {
  font-size: 1rem;
  letter-spacing: 0.08em;
  color: #4a3728;
  margin: 0;
  font-weight: 200;
}

/* ─── TRACK ─────────────────────────────────────────── */
.timeline-track {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 300px;
  max-width: 1100px;
  margin: 0 auto;
}

/* linea orizzontale al centro */
.timeline-line {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: #2b1f18;
  transform: translateY(-50%);
  z-index: 0;
}

/* ─── ITEM ───────────────────────────────────────────── */
.timeline-item {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

/* dot SEMPRE al 50% = sulla linea */
.timeline-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #2b1f18;
  z-index: 2;
  flex-shrink: 0;
}

.timeline-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1px solid #2b1f18;
  z-index: 2;
  flex-shrink: 0;
}

/* contenuto posizionato in assoluto sopra o sotto la linea */
.timeline-item__content {
  position: absolute;
  left: 0;
  right: 0;
  padding: 0 8px;
  text-align: center;
}

/* TOP → contenuto nella metà superiore, ancorato dal basso */
.timeline-item--top .timeline-item__content {
  bottom: calc(50% + 18px); /* 18px = distanza dal dot */
}

/* BOTTOM → contenuto nella metà inferiore, ancorato dall'alto */
.timeline-item--bottom .timeline-item__content {
  top: calc(50% + 18px);
}

.timeline-anno {
  display: block;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #2b1f18;
  margin-bottom: 6px;
}

.timeline-testo {
  font-size: 0.78rem;
  color: #4a3728;
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
}

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 24px;
  }

  .timeline-track {
    flex-direction: column;
    min-height: unset;
    padding-left: 32px;
  }

  .timeline-line {
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 1px;
    height: 100%;
    transform: none;
  }

  .timeline-item {
    min-height: 80px;
    padding: 16px 0 16px 24px;
  }

  .timeline-dot {
    top: 50%;
    left: -28px;
    transform: translateY(-50%);
  }

  .timeline-circle {
    top: 50%;
    left: -31.5px;
    transform: translateY(-50%);
  }

  .timeline-item--top .timeline-item__content,
  .timeline-item--bottom .timeline-item__content {
    position: static;
    text-align: left;
    padding: 0;
  }
}

/* ─── CAROUSEL SECTION ──────────────────────────────── */
.carousel-section {
  padding: 0 0 60px;
}

.carousel-beige {
  background-color: #f5f0e8;
}

.carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  user-select: none;
}

/* ─── TRACK ─────────────────────────────────────────── */
.carousel-track-wrapper {
  overflow: hidden;
  border-radius: 2px;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  flex-shrink: 0;
}

.carousel-slide img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}

/* ─── FRECCE ─────────────────────────────────────────── */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(calc(-50% - 24px)); /* sale sopra gli indicatori */
  background: none;
  border: none;
  cursor: pointer;
  color: #f5f0e8;
  font-size: 1.4rem;
  padding: 12px 16px;
  z-index: 10;
  opacity: 0.85;
  transition: opacity 0.2s ease;
  line-height: 1;
}

.carousel-btn:hover {
  opacity: 1;
}

.carousel-btn--prev {
  left: 12px;
}
.carousel-btn--next {
  right: 12px;
}

/* ─── INDICATORI A LINEA ─────────────────────────────── */
.carousel-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-indicator {
  display: block;
  width: 32px;
  height: 1px;
  background-color: #b0a090;
  border: none;
  padding: 0;
  cursor: pointer;
  transition:
    background-color 0.3s ease,
    width 0.3s ease;
  position: relative;
}

/* linea attiva: più lunga e scura */
.carousel-indicator.is-active {
  width: 52px;
  background-color: #2b1f18;
}

/* ─── MOBILE ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .carousel-section {
    padding: 0 0 40px;
  }

  .carousel {
    max-width: 100%;
    margin: 0;
  }

  .carousel-slide {
    width: 100% !important;
  }

  .carousel-track-wrapper {
    border-radius: 0;
  }

  .carousel-slide img {
    height: 260px;
    width: 100%;
  }

  .carousel-btn {
    font-size: 1.1rem;
    padding: 8px 10px;
  }

  .carousel-indicator {
    width: 20px;
  }

  .carousel-indicator.is-active {
    width: 36px;
  }
}

/* ─── SERVIZI CENTER ─────────────────────────────────── */
.servizi-center {
  padding: 40px 40px 80px 40px;
  background-color: #fff;
}

.servizi-center__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.servizi-center__label {
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 3px;
  color: black;
  margin-bottom: 24px;
  display: inline-block;
  position: relative;
}

.servizi-center__label::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: black;
}

.servizi-center__titolo {
  font-size: clamp(22px, 3vw, 36px);
  color: #2b1f18;
  font-weight: 200;
  line-height: 1.2;
  letter-spacing: 2px;
  margin-top: 24px;
  margin-bottom: 32px;
}

.servizi-center__testo {
  font-size: 15px;
  color: #555555;
  line-height: 1.8;
  font-weight: 300;
}

/* ─── MAP SECTION ──────────────────────────────── */
.map-section {
  padding: 80px 40px;
}

.map-beige {
  background-color: #f5f0e8;
}

.map {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  user-select: none;
}

.mapIframe {
  width: 100%;
  height: 550px;
}

/* ─── CONTACT FORM 7 ─────────────────────────────────── */

.wpcf7-form p {
  margin-bottom: 20px;
}

.wpcf7-form label {
  display: block;
  font-size: 14px;
  font-weight: 300;
  color: #2b1f18;
  margin-bottom: 6px;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form textarea {
  width: 100%;
  border: 1px solid #cccccc;
  border-radius: 0;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 300;
  color: #333;
  background-color: #fff;
  outline: none;
  transition: border-color 0.2s ease;
  box-sizing: border-box;
  appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form textarea:focus {
  border-color: #2b1f18;
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 130px;
}

/* Checkbox */
.wpcf7-form .wpcf7-acceptance {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 14px;
  height: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #2b1f18;
}

.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-list-item label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: #555;
  cursor: pointer;
}

.wpcf7-form .wpcf7-list-item-label a {
  color: #555;
}

/* Submit */
.wpcf7-form input[type="submit"] {
  display: block;
  margin: 32px auto 0;
  background-color: #2b1f18;
  color: #fff;
  border: none;
  padding: 14px 48px;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.wpcf7-form input[type="submit"]:hover {
  background-color: #4a3728;
}

.wpcf7-form input[type="submit"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* Spinner */
.wpcf7-spinner {
  display: none;
}

/* Messaggi validazione */
.wpcf7-not-valid-tip {
  font-size: 12px;
  color: #c0392b;
  margin-top: 4px;
  display: block;
}

.wpcf7-response-output {
  margin-top: 16px;
  font-size: 13px;
  font-weight: 300;
  border: none !important;
  padding: 0 !important;
  color: #555;
}

/* ─── DOVE SIAMO ─────────────────────────────────── */

.contatti__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 100px;
}

.contatti__immagine {
  flex: 0 0 50%;
}

@media (max-width: 768px) {
  .contatti__inner {
    flex-direction: column;
    gap: 30px;
  }

  .contatti__immagine {
    flex: unset;
    width: 100%;
  }
}

.pt-60 {
  padding-top: 60px;
}
