/* =============================================================
   APRIRSI ALLA VITA — Stylesheet v2
   ============================================================= */

/* --- VARIABILI --- */
:root {
  --green-deep:  #1A3326;
  --green:       #2D5A3D;
  --green-mid:   #3A7050;
  --green-pale:  #EBF2EC;
  --gold:        #A07840;
  --gold-light:  #C09858;
  --gold-pale:   #F5EEE3;
  --sage:        #7A9E85;
  --cream:       #F8F5F0;
  --cream-warm:  #F0EAE0;
  --white:       #FFFFFF;
  --text:        #181818;
  --text-mid:    #4A4A4A;
  --text-light:  #888880;
  --border:      #DDD8CE;
  --border-dark: #C0BAB0;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Lato', system-ui, sans-serif;

  --max-w:      1180px;
  --pad-h:      40px;
  --section-v:  110px;
  --radius:     2px;
  --transition: 0.4s cubic-bezier(0.25, 0, 0.1, 1);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text);
  background: var(--cream);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* --- LAYOUT --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
}

.section { padding: var(--section-v) 0; }
.section--white  { background: var(--white); }
.section--cream  { background: var(--cream); }
.section--warm   { background: var(--cream-warm); }
.section--green  { background: var(--green-deep); }

/* --- TIPOGRAFIA --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--green-deep);
}

h1 { font-size: clamp(2.8rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 0.95rem; letter-spacing: 0.04em; }

.eyebrow {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.section-title {
  margin-bottom: 20px;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 600px;
  line-height: 1.9;
}

.ornament {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 24px 0;
}

.ornament--center { margin: 24px auto; }

/* --- BOTTONI --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 15px 40px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn--dark {
  background: var(--green-deep);
  color: var(--white);
  border-color: var(--green-deep);
}
.btn--dark:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn--outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}

.btn--outline-dark {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--outline-dark:hover {
  background: var(--green-deep);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition), color var(--transition);
}
.link-arrow::after {
  content: '→';
  font-size: 1rem;
  transition: transform var(--transition);
}
.link-arrow:hover { gap: 16px; color: var(--green); }
.link-arrow:hover::after { transform: translateX(4px); }

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background var(--transition), box-shadow var(--transition);
}

.navbar__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-h);
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.navbar__logo img { height: 64px; width: auto; display: block; }

.navbar__logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.navbar__logo-text strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--white);
  transition: color var(--transition);
  line-height: 1.2;
}

.navbar__logo-text small {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 40px;
}

.navbar__links a:not(.btn) {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.82);
  transition: color var(--transition);
  position: relative;
}

.navbar__links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 1px;
  background: var(--gold-light);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: left;
}

.navbar__links a:not(.btn):hover,
.navbar__links a:not(.btn).active {
  color: var(--white);
}

.navbar__links a:not(.btn):hover::after,
.navbar__links a:not(.btn).active::after {
  transform: scaleX(1);
}

/* Scrolled state */
.navbar.scrolled {
  background: var(--white);
  box-shadow: 0 1px 0 var(--border);
}

.navbar.scrolled .navbar__logo-text strong { color: var(--green-deep); }
.navbar.scrolled .navbar__logo-text small  { color: var(--text-light); }
.navbar.scrolled .navbar__links a:not(.btn) { color: var(--text-mid); }
.navbar.scrolled .navbar__links a:not(.btn):hover,
.navbar.scrolled .navbar__links a:not(.btn).active { color: var(--green-deep); }
.navbar.scrolled .navbar__links a:not(.btn)::after { background: var(--gold); }
.navbar.scrolled .hamburger span { background: var(--green-deep); }
.navbar.scrolled .btn--outline { color: var(--green-deep); border-color: var(--green-deep); }
.navbar.scrolled .btn--outline:hover { background: var(--green-deep); color: var(--white); }

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all var(--transition);
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--green-deep);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

.mobile-nav__close {
  position: absolute;
  top: 28px; right: var(--pad-h);
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--text-mid);
  cursor: pointer;
  line-height: 1;
}

/* --- HERO (home, full-height) --- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--green-deep);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 70% at 50% 0%, rgba(45,90,61,0.9) 0%, transparent 65%),
    linear-gradient(160deg, #1A3326 0%, #2D5A3D 40%, #1F4232 70%, #141F18 100%);
}

.hero__noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
}

.hero__bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(transparent, var(--cream));
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 var(--pad-h);
  padding-top: 140px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 32px;
  padding: 8px 20px;
  border: 1px solid rgba(192,152,88,0.4);
}

.hero__title {
  color: var(--white);
  margin-bottom: 8px;
  font-weight: 400;
}

.hero__title em {
  display: block;
  font-style: italic;
  color: var(--gold-light);
  font-size: 1.15em;
}

.hero__ornament {
  display: block;
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
}

.hero__sub {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 52px;
}

.hero__cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 52px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.4);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollLine 2.2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50%       { opacity: 0.3; transform: scaleY(0.5) translateY(8px); }
}

/* --- INNER PAGE HERO --- */
.page-hero {
  position: relative;
  background: var(--green-deep);
  padding: 180px 0 90px;
  text-align: center;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #111C15 0%, #1A3326 50%, #243D2E 100%);
  opacity: 0.95;
}

.page-hero__ornament-top,
.page-hero__ornament-bottom {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: rgba(192,152,88,0.3);
}
.page-hero__ornament-top { top: 0; height: 60px; }
.page-hero__ornament-bottom { bottom: 0; height: 60px; }

.page-hero__content { position: relative; z-index: 1; }

.page-hero__eyebrow {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.page-hero__title {
  color: var(--white);
  font-weight: 400;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
}

.page-hero__ornament {
  display: block;
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 28px auto 24px;
}

.page-hero__sub {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* --- BREADCRUMB --- */
.breadcrumb {
  padding: 20px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.breadcrumb__list a { color: var(--green); }
.breadcrumb__list a:hover { color: var(--gold); }
.breadcrumb__sep { color: var(--border-dark); }
.breadcrumb__current { color: var(--text-mid); }

/* --- HOME: INTRO BAND --- */
.intro-band {
  padding: 80px 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.intro-band__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}

.intro-band__item {
  padding: 40px 48px;
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}
.intro-band__item:last-child { border-right: none; }
.intro-band__item:hover { background: var(--green-pale); }

.intro-band__num {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 400;
  color: var(--gold);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 16px;
}

.intro-band__item h3 { margin-bottom: 12px; font-size: 1.1rem; color: var(--green-deep); }
.intro-band__item p  { font-size: 0.92rem; color: var(--text-mid); line-height: 1.8; }

/* --- HOME: ABOUT PREVIEW --- */
.about-preview {
  padding: var(--section-v) 0;
  background: var(--cream);
}

.about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  align-items: center;
}

.about-preview__visual {
  position: relative;
}

.about-preview__frame {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-preview__frame img { max-width: 260px; margin: 0 auto; }

.about-preview__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--gold);
  color: var(--white);
  padding: 24px 28px;
  text-align: center;
}

.about-preview__badge strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1;
}

.about-preview__badge span {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-preview__text .eyebrow { margin-bottom: 14px; }
.about-preview__text h2 { margin-bottom: 20px; }
.about-preview__text p { color: var(--text-mid); margin-bottom: 20px; }

.about-preview__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}

.tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-pale);
  padding: 6px 14px;
  border: 1px solid rgba(45,90,61,0.15);
}

/* --- HOME: SERVICES PREVIEW --- */
.services-preview {
  padding: var(--section-v) 0;
  background: var(--white);
}

.services-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
}

.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.service-tile {
  background: var(--white);
  padding: 48px 40px;
  transition: background var(--transition);
  cursor: pointer;
}

.service-tile:hover { background: var(--green-pale); }

.service-tile__num {
  font-family: var(--font-serif);
  font-size: 0.8rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  opacity: 0.7;
}

.service-tile h3 {
  font-size: 1.25rem;
  margin-bottom: 16px;
  color: var(--green-deep);
}

.service-tile p {
  font-size: 0.92rem;
  color: var(--text-mid);
  margin-bottom: 28px;
  line-height: 1.8;
}

/* --- HOME: QUOTE SECTION --- */
.quote-section {
  padding: var(--section-v) 0;
  background: var(--green-deep);
  text-align: center;
}

.quote-section__mark {
  font-family: var(--font-serif);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.25;
  line-height: 0.6;
  margin-bottom: 32px;
}

.quote-section__text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-section__author {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 32px;
}

/* --- HOME: BLOG PREVIEW --- */
.blog-preview {
  padding: var(--section-v) 0;
  background: var(--cream);
}

.blog-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
}

.blog-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

/* --- ARTICLE CARD --- */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}

.article-card:hover {
  border-color: var(--sage);
  box-shadow: 0 8px 40px rgba(45,90,61,0.10);
  transform: translateY(-4px);
}

.article-card__image {
  aspect-ratio: 16/9;
  background: var(--green-pale);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__image-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--green-pale) 0%, var(--cream-warm) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.article-card__image-placeholder svg {
  width: 56px;
  height: 56px;
  opacity: 0.25;
  color: var(--green);
}

.article-card__body { padding: 32px; flex: 1; display: flex; flex-direction: column; }

.article-card__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.article-card__cat {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}

.article-card__date {
  font-size: 0.75rem;
  color: var(--text-light);
}

.article-card h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.4;
  color: var(--green-deep);
}

.article-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
}

/* --- HOME: CTA BAND --- */
.cta-band {
  padding: 100px 0;
  background: var(--gold-pale);
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cta-band h2 { color: var(--green-deep); margin-bottom: 16px; }
.cta-band p  { color: var(--text-mid); max-width: 520px; margin: 0 auto 44px; font-size: 1.05rem; }

/* --- CHI SIAMO --- */
.about-story {
  padding: var(--section-v) 0;
  background: var(--white);
}

.about-story__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 80px;
  align-items: start;
}

.about-story__text h2 { margin-bottom: 24px; }
.about-story__text p  { color: var(--text-mid); margin-bottom: 20px; }

.about-story__pullquote {
  margin: 40px 0;
  padding: 32px 0 32px 32px;
  border-left: 2px solid var(--gold);
}

.about-story__pullquote p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--green-deep);
  line-height: 1.7;
  margin: 0;
}

.about-story__visual {
  position: sticky;
  top: 100px;
}

.about-story__logo-wrap {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.about-story__logo-wrap img { max-width: 240px; margin: 0 auto; }

.about-story__info {
  border: 1px solid var(--border);
  background: var(--white);
  padding: 28px;
}

.about-story__info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}

.about-story__info-row:last-child { border-bottom: none; }
.about-story__info-row span:first-child { color: var(--text-light); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; }
.about-story__info-row span:last-child  { color: var(--green-deep); font-weight: 700; }

/* Formation */
.formation {
  padding: var(--section-v) 0;
  background: var(--cream-warm);
}

.formation__grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.formation__intro { position: sticky; top: 100px; }
.formation__intro h2 { margin-bottom: 20px; }
.formation__intro p  { color: var(--text-mid); font-size: 0.95rem; }

.formation__list { padding-top: 8px; }

.formation__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 36px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.formation__item:first-child { border-top: 1px solid var(--border); }

.formation__year {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--gold);
  padding-top: 4px;
}

.formation__item h4 { font-size: 1rem; margin-bottom: 6px; color: var(--green-deep); }
.formation__item p  { font-size: 0.88rem; color: var(--text-mid); }

/* Values */
.values {
  padding: var(--section-v) 0;
  background: var(--green-deep);
}

.values__header { text-align: center; margin-bottom: 72px; }
.values__header .eyebrow { color: var(--gold-light); }
.values__header h2 { color: var(--white); }

.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.08);
}

.values__item {
  background: var(--green-deep);
  padding: 52px 40px;
  transition: background var(--transition);
}
.values__item:hover { background: rgba(45,90,61,0.6); }

.values__icon {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0.8;
}

.values__item h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 14px; }
.values__item p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.8; }

/* --- SERVIZI --- */
.services-list {
  padding: var(--section-v) 0;
  background: var(--white);
}

.service-entry {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 80px;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.service-entry:first-child { border-top: 1px solid var(--border); }

.service-entry__aside { position: sticky; top: 100px; }

.service-entry__num {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 20px;
}

.service-entry__tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(160,120,64,0.35);
  padding: 5px 14px;
}

.service-entry__main h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 20px;
}

.service-entry__main p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 0.97rem;
}

.service-entry__benefits {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.benefit {
  padding: 20px 24px;
  background: var(--cream);
  border-left: 2px solid var(--gold);
}

.benefit strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 4px;
}

.benefit span { font-size: 0.88rem; color: var(--text-mid); }

/* --- METODO --- */
.metodo-intro {
  padding: var(--section-v) 0;
  background: var(--white);
}

.metodo-intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metodo-intro__text h2 { margin-bottom: 20px; }
.metodo-intro__text p  { color: var(--text-mid); margin-bottom: 20px; }

.metodo-intro__visual {
  background: var(--green-pale);
  border: 1px solid var(--border);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.metodo-intro__visual img { max-width: 240px; margin: 0 auto; }

.metodo-tools {
  padding: var(--section-v) 0;
  background: var(--cream-warm);
}

.metodo-tool {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 40px;
  padding: 56px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.metodo-tool:first-child { border-top: 1px solid var(--border); }

.metodo-tool__line {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 6px;
}

.metodo-tool__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.metodo-tool__connector {
  width: 1px;
  flex: 1;
  background: var(--border);
  margin-top: 12px;
  min-height: 60px;
}

.metodo-tool__body h3 { font-size: 1.35rem; margin-bottom: 16px; }
.metodo-tool__body p  { color: var(--text-mid); margin-bottom: 16px; font-size: 0.95rem; }

.metodo-tool__details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.detail-chip {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--white);
  border: 1px solid var(--border);
  padding: 6px 14px;
}

.metodo-process {
  padding: var(--section-v) 0;
  background: var(--white);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-top: 56px;
}

.process-step {
  background: var(--white);
  padding: 48px 36px;
  transition: background var(--transition);
}
.process-step:hover { background: var(--green-pale); }

.process-step__num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 20px;
}

.process-step h4 { margin-bottom: 12px; color: var(--green-deep); }
.process-step p  { font-size: 0.88rem; color: var(--text-mid); line-height: 1.8; }

/* --- BLOG --- */
.blog-main {
  padding: var(--section-v) 0;
  background: var(--white);
}

.blog-main__layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 72px;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.article-card--horizontal {
  background: var(--white);
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
  transition: background var(--transition);
}

.article-card--horizontal:hover { background: var(--cream); }

.article-card--horizontal .article-card__image {
  aspect-ratio: auto;
  height: 100%;
  min-height: 180px;
}

.article-card--horizontal .article-card__body {
  padding: 36px 40px;
}

.article-card--horizontal h3 { font-size: 1.2rem; margin-bottom: 12px; }

/* Blog sidebar */
.blog-sidebar { position: sticky; top: 100px; }

.sidebar-widget {
  border: 1px solid var(--border);
  background: var(--cream);
  margin-bottom: 28px;
}

.sidebar-widget__title {
  padding: 18px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: var(--white);
}

.sidebar-widget__body { padding: 24px; }

.sidebar-cat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color var(--transition);
  cursor: pointer;
}
.sidebar-cat:last-child { border-bottom: none; }
.sidebar-cat:hover { color: var(--green); }
.sidebar-cat span { font-size: 0.75rem; color: var(--text-light); }

.sidebar-recent { display: flex; flex-direction: column; gap: 16px; }

.sidebar-recent__item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.sidebar-recent__item:last-child { border-bottom: none; padding-bottom: 0; }

.sidebar-recent__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 7px;
}

.sidebar-recent__item a {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
  transition: color var(--transition);
}
.sidebar-recent__item a:hover { color: var(--green); }

/* --- BLOG ARTICLE PAGE --- */
.article-hero {
  position: relative;
  padding: 180px 0 80px;
  background: var(--green-deep);
  text-align: center;
  overflow: hidden;
}

.article-hero__content { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; padding: 0 var(--pad-h); }
.article-hero__cat {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.article-hero h1 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.25; }
.article-hero__meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 28px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em;
}

.article-body {
  padding: var(--section-v) 0;
  background: var(--white);
}

.article-body__layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 80px;
  align-items: start;
}

.article-content { max-width: 700px; }

.article-content h2 {
  font-size: 1.7rem;
  margin: 48px 0 20px;
  color: var(--green-deep);
}

.article-content h3 {
  font-size: 1.25rem;
  margin: 36px 0 16px;
  color: var(--green-deep);
}

.article-content p {
  color: var(--text-mid);
  margin-bottom: 20px;
  font-size: 1rem;
  line-height: 1.9;
}

.article-content blockquote {
  margin: 40px 0;
  padding: 28px 32px;
  border-left: 3px solid var(--gold);
  background: var(--gold-pale);
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--green-deep);
  line-height: 1.7;
}

.article-content ul {
  margin: 16px 0 24px 24px;
  list-style: disc;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.9;
}

/* --- CONTATTI --- */
.contacts-main {
  padding: var(--section-v) 0;
  background: var(--white);
}

.contacts-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contacts-info h2 { margin-bottom: 20px; }
.contacts-info > p { color: var(--text-mid); margin-bottom: 48px; }

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
}

.contact-row {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.contact-row:last-child { border-bottom: none; }

a.contact-row:hover { background: var(--green-pale); }

.contact-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-pale);
  border-right: 1px solid var(--border);
  color: var(--green);
}

.contact-row__icon svg { width: 18px; height: 18px; }

.contact-row__body {
  padding: 20px 24px;
}

.contact-row__label {
  display: block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 4px;
}

.contact-row__value {
  font-size: 0.95rem;
  color: var(--green-deep);
  font-weight: 400;
  line-height: 1.5;
}

/* FORM */
.form-box {
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 52px 48px;
}

.form-box h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}

.form-box > p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green);
}

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

.form-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 16px;
  text-align: center;
}

/* --- FOOTER --- */
.footer {
  background: #0F1912;
  color: rgba(255,255,255,0.6);
  padding: 80px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer__brand { display: flex; flex-direction: column; gap: 20px; }

.footer__logo { display: flex; align-items: center; gap: 14px; }
.footer__logo img { height: 44px; width: auto; }
.footer__logo-name {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.footer__logo-sub {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
}

.footer__brand p { font-size: 0.85rem; line-height: 1.8; max-width: 280px; }

.footer__col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 24px;
}

.footer__col ul { display: flex; flex-direction: column; gap: 12px; }

.footer__col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
}

/* --- ANIMAZIONI --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  :root { --section-v: 80px; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .intro-band__inner { grid-template-columns: 1fr; }
  .intro-band__item { border-right: none; border-bottom: 1px solid var(--border); }
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
  .blog-preview__grid { grid-template-columns: 1fr 1fr; }
  .blog-preview__grid .article-card:last-child { display: none; }
  .about-preview__grid { gap: 56px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .blog-main__layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
  .services-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; }
}

@media (max-width: 768px) {
  :root { --section-v: 60px; --pad-h: 20px; }

  .navbar__links { display: none; }
  .hamburger { display: flex; }

  .hero__title { font-size: 2.4rem; }
  .hero__cta { flex-direction: column; align-items: center; }

  .about-preview__grid { grid-template-columns: 1fr; }
  .about-preview__badge { position: static; margin-top: 16px; display: inline-flex; gap: 12px; align-items: center; }

  .services-preview__grid { grid-template-columns: 1fr; }
  .blog-preview__grid { grid-template-columns: 1fr; }

  .contacts-main__grid { grid-template-columns: 1fr; }
  .metodo-intro__grid { grid-template-columns: 1fr; }
  .about-story__grid { grid-template-columns: 1fr; }
  .formation__grid { grid-template-columns: 1fr; }
  .values__grid { grid-template-columns: 1fr; }

  .service-entry { grid-template-columns: 1fr; gap: 24px; }
  .service-entry__aside { position: static; }
  .service-entry__benefits { grid-template-columns: 1fr; }

  .article-card--horizontal { grid-template-columns: 1fr; }
  .article-body__layout { grid-template-columns: 1fr; }
  .blog-sidebar { grid-template-columns: 1fr; }
  .article-hero h1 { font-size: 1.8rem; }

  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .form-row { grid-template-columns: 1fr; }
  .form-box { padding: 32px 24px; }

  .process-steps { grid-template-columns: 1fr; }
}

/* =============================================================
   IMMAGINI & HERO IMAGE
   ============================================================= */
.hero--image .hero__bg {
  background-image: url('https://images.unsplash.com/photo-1448375240586-882707db888b?auto=format&fit=crop&w=1920&q=80');
  background-size: cover;
  background-position: center 40%;
}

.hero--image .hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15,28,18,0.82) 0%, rgba(26,50,38,0.75) 50%, rgba(20,40,28,0.88) 100%);
}

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

.service-entry__img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--green-pale);
  margin-bottom: 32px;
}

.service-entry__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-entry:hover .service-entry__img img {
  transform: scale(1.03);
}

/* =============================================================
   TRUST BAR
   ============================================================= */
.trust-bar {
  background: var(--green-deep);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
}

.trust-bar__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
}

.trust-bar__item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-bar__item strong {
  color: rgba(255,255,255,0.9);
}

/* =============================================================
   PAIN SECTION
   ============================================================= */
.pain-section {
  padding: var(--section-v) 0;
  background: var(--white);
}

.pain-section__header { text-align: center; margin-bottom: 56px; }
.pain-section__header h2 { margin-bottom: 12px; }
.pain-section__header p { color: var(--text-mid); max-width: 520px; margin: 0 auto; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 56px;
}

.pain-item {
  background: var(--white);
  padding: 36px 32px;
  transition: background var(--transition);
}
.pain-item:hover { background: var(--gold-pale); }

.pain-item__check {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(160,120,64,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 0.85rem;
}

.pain-item p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.pain-section__cta {
  text-align: center;
}

.pain-section__cta p {
  color: var(--text-light);
  font-size: 0.88rem;
  margin-top: 16px;
}

/* =============================================================
   TESTIMONIALS
   ============================================================= */
.testimonials {
  padding: var(--section-v) 0;
  background: var(--cream-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.testimonials__header {
  text-align: center;
  margin-bottom: 56px;
}

.testimonials__header h2 { margin-bottom: 8px; }
.testimonials__header p  { color: var(--text-light); font-size: 0.85rem; }

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

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
}

.testimonial-card__stars {
  display: flex;
  gap: 4px;
  color: var(--gold);
  font-size: 0.85rem;
}

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--green-deep);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__mark {
  position: absolute;
  top: 24px;
  right: 28px;
  font-family: var(--font-serif);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.1;
  line-height: 1;
  pointer-events: none;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-pale);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--green);
  flex-shrink: 0;
}

.testimonial-card__name {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  display: block;
}

.testimonial-card__service {
  font-size: 0.75rem;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

@media (max-width: 768px) {
  .testimonials__grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .trust-bar__inner { gap: 20px; }
}

/* =============================================================
   FAQ
   ============================================================= */
.faq-section {
  padding: var(--section-v) 0;
  background: var(--white);
}

.faq-section__header {
  max-width: 560px;
  margin-bottom: 56px;
}

.faq-list {
  max-width: 760px;
}

.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item__trigger {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  text-align: left;
  gap: 24px;
}

.faq-item__trigger h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green-deep);
  font-weight: 400;
  line-height: 1.4;
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 1.1rem;
  transition: transform var(--transition), background var(--transition);
}

.faq-item.open .faq-item__icon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

.faq-item__body {
  display: none;
  padding: 0 0 24px;
}
.faq-item.open .faq-item__body { display: block; }

.faq-item__body p {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.85;
}

/* =============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================= */
.floating-wa {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.floating-wa__btn {
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: transform var(--transition), box-shadow var(--transition);
  color: white;
}

.floating-wa__btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}

.floating-wa__btn svg {
  width: 30px;
  height: 30px;
}

.floating-wa__label {
  background: var(--white);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 100px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
  white-space: nowrap;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition), transform var(--transition);
  pointer-events: none;
}

.floating-wa:hover .floating-wa__label {
  opacity: 1;
  transform: translateX(0);
}

@media (max-width: 768px) {
  .floating-wa { bottom: 20px; right: 20px; }
  .floating-wa__btn { width: 52px; height: 52px; }
}

/* =============================================================
   URGENCY / SOCIAL PROOF BADGE
   ============================================================= */
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 28px;
}

.hero__badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ADE80;
  animation: pulse-green 2s ease-in-out infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(74,222,128,0.4); }
  50%       { opacity: 0.8; box-shadow: 0 0 0 6px rgba(74,222,128,0); }
}

/* =============================================================
   ABOUT WITH IMAGE
   ============================================================= */
.about-preview__frame--image {
  padding: 0;
  overflow: hidden;
}

.about-preview__frame--image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* =============================================================
   SERVICE TILE IMAGE
   ============================================================= */
.service-tile__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  margin: -48px -40px 32px;
}

.service-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-tile:hover .service-tile__img img { transform: scale(1.05); }

/* =============================================================
   ARTICLE CARD REAL IMAGE
   ============================================================= */
.article-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-card__image img { transform: scale(1.04); }

.article-card--horizontal .article-card__image img {
  height: 100%;
  min-height: 180px;
}

/* =============================================================
   CHI SIAMO IMAGE
   ============================================================= */
.about-story__photo {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--green-pale);
}

.about-story__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================================
   PROMO STRIP
   ============================================================= */
.promo-strip {
  background: var(--gold);
  padding: 10px 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

.promo-strip p {
  font-size: 0.82rem;
  color: var(--white);
  letter-spacing: 0.04em;
}

.promo-strip a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

