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

:root {
  --beige: #ece2d2;
  --beige-dark: #e0d4c0;
  --white: #ffffff;
  --ink: #1c1c1c;
  --ink-light: #6b6b6b;
  --gold: #c9a84c;
  --gold-dark: #855f2b;
  --serif: 'Old Standard TT', Georgia, serif;
  --sans: 'Mulish', system-ui, sans-serif;
  --nav-h: 72px;
  --lavanda: #e2a9f1;
  --blu1: #003C64;
  --grigio1: #F1F1F1;
  --colBase: #1a1a1a;
  --font-size-50: clamp(2.1rem, 4vw, 50px);
--font-size-48: clamp(2rem, 3.8vw, 48px);
--font-size-46: clamp(1.9rem, 3.6vw, 46px);
--font-size-44: clamp(1.8rem, 3.4vw, 44px);
--font-size-42: clamp(1.7rem, 3.2vw, 42px);
--font-size-40: clamp(1.6rem, 3vw, 40px);
--font-size-38: clamp(1.5rem, 2.8vw, 38px);
--font-size-36: clamp(1.4rem, 2.6vw, 36px);
--font-size-34: clamp(1.35rem, 2.4vw, 34px);
--font-size-32: clamp(1.3rem, 2.2vw, 32px);
--font-size-30: clamp(1.25rem, 2vw, 30px);
--font-size-28: clamp(1.2rem, 1.9vw, 28px);
--font-size-26: clamp(1.15rem, 1.8vw, 26px);
--font-size-24: clamp(1.1rem, 1.7vw, 24px);
--font-size-22: clamp(1.05rem, 1.6vw, 22px);
--font-size-20: clamp(1rem, 1.5vw, 20px);
--font-size-18: clamp(0.95rem, 1.4vw, 18px);
--font-size-16: clamp(0.9rem, 1.3vw, 16px);
--font-size-14: clamp(0.85rem, 1.2vw, 14px);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}
h1,h2,h3,h4,h5,h6 {
  margin: 0px;
  padding: 0px;
  font-size: inherit;
  font-weight: inherit;
  display: inherit;
  margin-block-start: 0px;margin-block-end: 0px;}
.main,.main2{position: relative;width:100vw;overflow-x: hidden; margin:0;padding:0;}

.marginTopHeader{padding-top: var(--nav-h, 72px)!important;}

section {
  position: relative;
  display: block;
  width: 100%;
}

section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5vw;
  width: 1px;
  height: 100%;
  border-left: 1px solid var(--bs-white);
  z-index: 100;
}

section:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5vw;
  width: 1px;
  height: 100%;
  border-left: 1px solid var(--bs-white);
  z-index: 100;
}

section:first-of-type::before {
  top: 72px;
  height: calc(100% - 72px);
}

section.beige{background: var(--beige);}
section.white{background: var(--white);}
section.white:before {
  border-left: 1px solid var(--beige);
}

section.white:after {
  border-left: 1px solid var(--beige);
}

section.lavanda{background: var(--lavanda);}
section.lavanda:before {
  border-left: 1px solid var(--white);
}

section.lavanda:after {
  border-left: 1px solid var(--white);
}

header.beige:before, header.lavanda:before, header.white:before {
  content: "";
  position: absolute;
  top: 0;
  left: 5vw;
  width: 1px;
  height: 100%;
  border-left: 1px solid var(--bs-white);
  z-index: 100;
}

header.beige:after, header.lavanda:after, header.white:after {
  content: "";
  position: absolute;
  top: 0;
  right: 5vw;
  width: 1px;
  height: 100%;
  border-left: 1px solid var(--bs-white);
  z-index: 100;
}
header:first-of-type::before {
  top: 72px;
  height: calc(100% - 72px);
}
header.beige{background: var(--beige);}
header.white{background: var(--white);}
header.white:before {
  border-left: 1px solid var(--beige);
}
header.white:after {
  border-left: 1px solid var(--beige);
}

header.lavanda{background: var(--lavanda);}
header.beige:before, header.lavanda:before {
  border-left: 1px solid var(--white);
}

header.beige:after, header.lavanda:after {
  border-left: 1px solid var(--white);
}

/* ───────────────────────────────────────────
   NAVBAR
─────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width:100vw;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0px;
  background: transparent;
  transition: background .4s, box-shadow .4s;
  border-bottom: 1px solid var(--beige);
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .07);
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -.02em;
  width: 100px;
  margin-left: 40px;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background .4s;
}

.nav-logo img {
  width: 100%;
  height: auto;
}

.inverse.nav-logo{ filter: grayscale(1) invert(1) brightness(5);}

.site-nav.scrolled .nav-logo {
  background-color: transparent;
}

.site-nav.scrolled .inverse.nav-logo{    filter: initial;}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  position: fixed;
  top: 0;
  left: 101vw;
  width: 100vw;
  height: 100vh;
  background-color: #e2a9f1;
  justify-content: center;
  align-items: center;
  transition: left 0.4s ease-in-out;z-index: 100;
}

.nav-links.open {
  left: 0;
}

.nav-links a {
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  transition: opacity .25s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  transition: width .3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  opacity: .6;
}

.nav-burger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  padding: 0;
  width: 5vw;
  height: 71px;
  background-color: #fff;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0px;
  right: 0;z-index: 200;
}

.nav-burger span {
  display: block;
  width: 30px;
  height: 1px;
  background: var(--ink);
  transition: .3s;
}

.nav-burger span:nth-child(1) {
  transform: translateX(6.5px);
}
.nav-lang{
  position: absolute;
  top: 0;
  right: calc(5vw + 2px);
  width: 70px;
  height: 71px;
  background-color: var(--lavanda);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  color: #fff;
  z-index: 120;
}

.nav-lang-current{
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  letter-spacing: 0.04em;
}

.nav-lang-dropdown{
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  min-width: 70px;
  background-color: var(--lavanda);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.nav-lang.open .nav-lang-dropdown{
  display: block;
}

.nav-lang-item{
  padding: 10px 0;
  text-align: center;
  cursor: pointer;
  color: #fff;
  transition: background-color 0.2s ease, color 0.2s ease;
  position: relative;
  display: block;
  text-decoration: none;
}

.nav-lang-item:hover,
.nav-lang-item.active{
  background-color: var(--blu1, #1e2a4a);
  color: #fff;
}

/* ───────────────────────────────────────────
   HERO SLIDER
─────────────────────────────────────────── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--beige);
}

.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--beige);
  z-index: 0;
}

.slide::after {
  content: '';
  position: absolute;
  inset: 0;
  top:0;
  right:0;
  width:5vw;
  height:100%;
  background: rgba(255,255,255,0.5);
  z-index: 100;
  left: auto;
  -webkit-backdrop-filter: blur(10px) saturate(150%);
  backdrop-filter: blur(10px) saturate(150%);
}

.slide-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  opacity: 0;
  transition: opacity .9s cubic-bezier(.4, 0, .2, 1), transform 1.2s cubic-bezier(.4, 0, .2, 1);
  transform: scale(1.06);
  z-index: 1;
}

.swiper-slide-active .slide-img {
  opacity: 1;
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 40%,
      rgba(236, 226, 210, .55) 75%,
      rgba(236, 226, 210, .85) 100%);
  z-index: 2;
}

.slide-caption {
  position: absolute;
  bottom: 2vw;
  right: 5vw;
  z-index: 3;
  padding: 0 60px 56px 0;
  margin-left: auto;
  text-align: right;
}

.slide-category {
  display: inline-block;
  font-family: var(--sans);
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--beige);
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s .3s, transform .7s .3s;
}

.slide-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  font-weight: 400;
  line-height: 1.1;
  color: var(--ink);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s .45s, transform .8s .45s;
}

.swiper-slide-active .slide-category,
.swiper-slide-active .slide-title {
  opacity: 1;
  transform: translateY(0);
}

.slider-arrows {
  position: absolute;
  left: calc(5vw - 52px);
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.slider-arrow {
  width: 52px;
  height: 52px;
  background: var(--white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
  outline: none;
}

.slider-arrow:hover {
  background: var(--ink);
  color: var(--white);
}

.slider-arrow svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--ink);
  transition: color .25s;
}

.slider-arrow:hover svg {
  color: var(--white);
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 7vw;
  z-index: 10;
  display: flex;
  gap: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-light);
  opacity: .35;
  cursor: pointer;
  transition: opacity .3s, transform .3s;
  border: 0;
}

.dot.is-active {
  opacity: 1;
  transform: scale(1.4);
  background: var(--ink);
  border: 0;
}

.deco-sphere {
  position: absolute;
  border-radius: 50%;
  z-index: 4;
  pointer-events: none;
  will-change: transform;
}

.deco-sphere.s1 {
  width: 20px;
  height: 20px;
  background-image: url(../images/ombretto-blu_.png);
  top: 26%;
  left: 18%;
  animation: float1 6s ease-in-out infinite;
  background-size: cover;
  background-position: center;
}

.deco-sphere.s2 {
  width: 50px;
  height: 50px;
  top: 39%;
  left: 14%;
  animation: float2 8s ease-in-out infinite;
  background-image: url(../images/ombretto-lavanda_.png);
  background-size: cover;
}

.deco-sphere.s3 {
  width: 150px;
  height: 150px;
  top: 22%;
  left: 8%;
  animation: float3 10s ease-in-out infinite;
  background-image: url(../images/ombretto-crema.png);
  background-size: cover;
}

@keyframes float1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(5deg); }
}

@keyframes float2 {
  0%, 100% { transform: translateY(0px); }
  40% { transform: translateY(-18px) translateX(6px); }
  70% { transform: translateY(-8px) translateX(-4px); }
}

@keyframes float3 {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-22px) translateX(8px); }
}

.deco-sphere {
  transition: transform .1s linear;
}

.slide-counter {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .18em;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

.slide-counter .cur {
  color: var(--ink);
  font-weight: 700;
}

.slide-counter .sep {
  display: block;
  width: 1px;
  height: 40px;
  background: var(--ink-light);
  opacity: .4;
}

/* ───────────────────────────────────────────
   SEZIONE ABOUT
─────────────────────────────────────────── */
#about {
  padding: 120px 0 100px;
  background: var(--white);
}

.about-label {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
  display: flex;
  align-items: center;
  gap: 14px;
}

.about-label::before {
  content: '';
  display: block;
  width: 1px;
  height: 50px;
  background: var(--ink-light);
  opacity: .4;
}

.about-heading {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 30px;
}

.about-text {
  font-size: .95rem;
  line-height: 1.85;
  color: var(--ink-light);
  max-width: 520px;
  margin-bottom: 40px;
}

.btn-outline-ink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid var(--ink);
  padding: 14px 28px;
  text-decoration: none;
  transition: background .28s, color .28s;
}

.btn-outline-ink:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-outline-ink svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  transition: transform .28s;
}

.btn-outline-ink:hover svg {
  transform: translateX(4px);
}

/* ───────────────────────────────────────────
   SEZIONE PORTFOLIO GRID
─────────────────────────────────────────── */
#portfolio {
  padding: 80px 0 120px;
  background: var(--beige);
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-light);
  margin-bottom: 18px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3.5vw, 2.9rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 60px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.portfolio-item:hover img {
  transform: scale(1.05);
}

.portfolio-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 28, 28, .0);
  display: flex;
  align-items: flex-end;
  padding: 28px;
  transition: background .4s;
}

.portfolio-item:hover .portfolio-item-overlay {
  background: rgba(28, 28, 28, .45);
}

.portfolio-item-info {
  transform: translateY(10px);
  opacity: 0;
  transition: opacity .35s, transform .35s;
}

.portfolio-item:hover .portfolio-item-info {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-item-cat {
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 4px;
}

.portfolio-item-name {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--white);
  font-weight: 400;
}

.portfolio-tall {
  height: 520px;
}

.portfolio-short {
  height: 320px;
}

.portfolio-wide {
  height: 420px;
}

/* ───────────────────────────────────────────
   SEZIONE SERVICES
─────────────────────────────────────────── */
#services {
  padding: 120px 0;
  background: var(--beige);
}

.service-card {
  border-top: 1px solid rgba(28, 28, 28, .12);
  padding: 40px 0 36px;
  display: flex;
  align-items: flex-start;
  gap: 28px;
  transition: opacity .3s;
}

.service-card:hover {
  opacity: .7;
}

.service-num {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--lavanda);
  min-width: 36px;
  padding-top: 0px;
  line-height: 1.3;
}
.service-title {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  margin-bottom: 10px;
  color: var(--blu1);
}

.service-desc {
  font-size: .88rem;
  line-height: 1.75;
  color: var(--ink-light);
}

.service-arrow {
  margin-left: auto;
  width: 38px;
  height: 38px;
  border: 1px solid var(--lavanda);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: center;
  transition: background .25s, border-color .25s;
  background-color: var(--lavanda);
}

.service-card:hover .service-arrow {
  background: var(--blu1);
  border-color: var(--blu1);
}

.service-arrow svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
  fill: none;
  stroke-width: 1.8;
  transition: stroke .25s, transform .25s;
}

.service-card:hover .service-arrow svg {
  stroke: var(--white);
  transform: translateX(2px);
}

/* ───────────────────────────────────────────
   FOOTER
─────────────────────────────────────────── */
footer {
  background: var(--blu1);
  color: var(--white);
  padding: 70px 0 40px;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 36px;
  width: auto;
  filter: invert(1) brightness(5);
}

.footer-tagline {
  font-size: .85rem;
  color: rgba(255, 255, 255, .55);
  max-width: 300px;
  line-height: 1.7;
}

.footer-label {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links .text {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .25s;
}

.footer-links li+li {
  margin-top: 10px;
}

.footer-links a {
  font-size: .88rem;
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  transition: color .25s;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-divider {
  border-color: rgba(255, 255, 255, .1);
  margin: 50px 0 24px;
}

.footer-copy {
  font-size: .72rem;
  color: rgba(255, 255, 255, .35);
  position: relative;display: flex;justify-content: space-between;align-items: center;
}
.footer-copy .privacy {
  position: relative;display: flex;justify-content: flex-end;align-items: center;gap: 10px;
}
.footer-copy .privacy a {
  color: rgba(255, 255, 255, .35);text-decoration: none;
}
.footer-copy .privacy a:hover {
  color: var(--lavanda)
}
.iubenda-white {
  display: inline !important;
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 !important;
  font-size: inherit !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  color: rgba(255, 255, 255, .35) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer !important;
}
.iubenda-white:hover,
.iubenda-white:focus {
  background: none !important;
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--lavanda) !important;
  text-decoration: none !important;
}
/* ───────────────────────────────────────────
   SEZIONE SERVIZI DETTAGLIO (icone 3x2)
─────────────────────────────────────────── */
#servizi-dettaglio {
  padding: 100px 0 110px;
  text-align: center;
}

#servizi-dettaglio .section-intro-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 70px;
  line-height: 1.2;
}

.servizio-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 20px 36px;
  position: relative;
}

.servizio-col:nth-child(3n) .servizio-card::after,
.servizio-col:last-child .servizio-card::after {
  display: none;
}

.servizio-icon {
  width: 70%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 28px;
  transition: transform .5s cubic-bezier(.4, 0, .2, 1);
}

.servizio-card:hover .servizio-icon {
  transform: translateY(-8px);
}

.servizio-title {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.4;
  margin-bottom: 16px;
  min-height: 2.8em;
  display: flex;
  align-items: center;
}

.servizio-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  text-decoration: none;
  transition: gap .25s, opacity .25s;
}

.servizio-link:hover {
  gap: 12px;
  opacity: .75;
}

.servizio-link svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.servizi-row-divider {
  border: none;
  border-top: 1px solid rgba(28, 28, 28, .08);
  margin: 30px 0 20px;
}

/* ───────────────────────────────────────────
   SEZIONE PERCHÉ PLAN|B
─────────────────────────────────────────── */
#perche-planb {
  padding: 80px 0 120px;
  background: var(--white);
}

.goal .intro {
  padding: 40px 0 50px;
}

.goal .intro-eyebrow {
  font-family: var(--sans);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.goal .title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.6vw, 2.3rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
  margin-bottom: 20px;
}

.goal .lead {
  font-family: var(--sans);
  font-size: .95rem;
  color: var(--ink-light);
  line-height: 1.7;
}

.goal .item {
  cursor: default;
  margin-bottom: 50px;
}

.goal .img-wrap {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.goal .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
  display: block;
}

.goal .item:hover .img-wrap img {
  transform: scale(1.05);
}

.goal .caption {
  padding: 18px 0 10px;
}

.goal .cat {
  font-family: var(--sans);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}

.goal .name {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  color: var(--ink);
  margin-bottom: 10px;
}

.goal .desc {
  font-size: .85rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.goal .secondary {
  font-family: var(--serif);
  font-style: italic;
  font-size: .93rem;
  color: var(--ink);
  margin-bottom: 14px;
}

.goal .link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: color .25s;
}

.goal .link svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
}

.goal .link:hover {
  color: var(--gold);
}

/* ───────────────────────────────────────────
   RESPONSIVE
─────────────────────────────────────────── */

.nav-burger.is-open {
  background-color: var(--lavanda);
}

.nav-burger.is-open span:nth-child(1) {
  transform: translateY(2px) rotate(45deg);
}

.nav-burger.is-open span:nth-child(2) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ───────────────────────────────────────────
   SEZIONE PROCESSO OPERATIVO – step swiper
─────────────────────────────────────────── */
#processo-operativo {
  padding: 100px 0 0;
  background: var(--white);
}

.processo-intro {
  max-width: 720px;
  margin-bottom: 52px;
}

.processo-lead {
  font-size: .95rem;
  color: var(--ink-light);
  line-height: 1.85;
  margin-top: 20px;
}

/* Swiper – overflow visibile per mostrare slide successive */
.processo-swiper {
  overflow: visible;
  cursor: grab;
}

.processo-swiper:active {
  cursor: grabbing;
}

/* Singola slide: flex row — pannello testo 40% + immagine 60% */
.processo-slide {
  display: flex;
  flex-direction: row;
  height: 420px;
  /* larghezza gestita dai breakpoints Swiper */
}

/* Pannello di testo scuro – 40% */
.processo-text-panel {
  width: 40%;
  flex-shrink: 0;
  background: var(--bs-gray-800);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px 28px 32px;
  box-sizing: border-box;
  position: relative;
}

/* Numero step in alto a sinistra */
.processo-step-num {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 400;
  color: rgba(255,255,255,.45);
  letter-spacing: .06em;
  line-height: 1;
  display: block;
  margin-bottom: auto;
}

/* Linea decorativa verticale a sinistra, stile reference */
.processo-text-panel::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 66px;
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.3);
}

.processo-panel-body {
  margin-top: auto;
}

.processo-tag {
  font-family: var(--sans);
  font-size: .6rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(255,255,255,.55);
  margin-bottom: 14px;
  line-height: 1.5;
}

.processo-desc {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--bs-white);
  line-height: 1.55;
  margin: 0;
}

/* Immagine – 60% */
.processo-img-wrap {
  width: 60%;
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.processo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s cubic-bezier(.4, 0, .2, 1);
}

.processo-slide:hover .processo-img-wrap img {
  transform: scale(1.04);
}

/* Navigazione centrata sotto lo swiper */
.processo-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 40px 0 90px;
}

.processo-btn-prev,
.processo-btn-next {
  width: 44px;
  height: 44px;
  border: 1px solid var(--ink);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
  flex-shrink: 0;
}

.processo-btn-prev svg,
.processo-btn-next svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 1.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.processo-btn-prev:hover,
.processo-btn-next:hover {
  background: var(--ink);
  color: var(--white);
}

.processo-pagination {
  display: flex;
  gap: 8px;
  align-items: center;
}

.processo-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: var(--ink-light);
  opacity: .35;
  border-radius: 0;
  transition: opacity .3s, width .3s;
  cursor: pointer;
}

.processo-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  width: 22px;
  background: var(--ink);
}

@media (max-width: 991px) {
  .container{width:90vw;}
  .slide-caption {
    padding: 0 24px 48px 0;
  }

  .slide-counter {
    display: none;
  }

  .slider-arrows {
    left: 0;
  }

  .deco-sphere.s3 {
    width: 80px;
    height: 80px;
    right: 4%;
  }

  .portfolio-tall {
    height: 380px;
  }

  .portfolio-short {
    height: 260px;
  }
}

@media (max-width: 575px) {
  .site-nav {
    padding: 0 0px;
  }
  .nav-logo{margin-left:5vw}
  .nav-burger{width:72px;}
  .nav-lang{right:72px;}
  .nav-links{flex-direction: column;padding:0;margin:0;}

  .slide-caption {
    padding: 0 16px 40px 0;
  }

  .slider-dots {
    left: 66px;
  }

  .about-label {
    display: none;
  }

  .portfolio-tall,
  .portfolio-short,
  .portfolio-wide {
    height: 260px;
  }

  .goal .intro {
    padding: 20px 0 30px;
  }

  .processo-intro {
    margin-bottom: 40px;
  }

  .processo-slide {
    flex-direction: column;
    height: auto;
  }

  .processo-text-panel {
    width: 100%;
    min-height: 180px;
  }

  .processo-img-wrap {
    width: 100%;
    height: 220px;
  }
}
