/* RESET E VARIABILI */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* FONT */

/* PP Editorial New */
@font-face {
  font-family: 'PP Editorial New';
  src: url('fonts/PPEditorial New Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'PP Editorial New';
  src: url('fonts/PPEditorial New Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* Haas Grot Disp */
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 45 Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 46 Light Italic.woff2') format('woff2');
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 55 Roman.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 56 Italic.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 65 Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Haas Grot';
  src: url('fonts/Haas Grot Disp 66 Medium Italic.woff2') format('woff2');
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

/* BLOCCO VARIABILI */
:root {
  /* Colori */
  --cream:       #EAEAE3;
  --cream-light: #F3F3EC;
  --cream-dark:  #DDDDD4;
  --taupe:       #8B7B72;
  --taupe-dark:  #74665E;
  --green:       #3D4D3B;
  --green-dark:  #334031;
  --green-light: #475945;

  /* Derivati */
  --white: #ffffff;
  --text: var(--green-dark);
  --text-muted: var(--taupe);
  --text-light: var(--taupe-dark);
  --border: var(--cream-dark);
  --radius: 6px;
  --radius-pill: 999px;
  --transition: 0.28s ease;
  
  /* FONT AGGIORNATI LOCALI */
  --serif: 'PP Editorial New', Georgia, serif;
  --sans: 'Haas Grot', Helvetica, Arial, sans-serif;
}

html { scroll-behavior: smooth; } /* La pagina scrolla dolcemente invece di saltare di scatto */

body {
  font-family: var(--sans);
  font-weight: 400; 
  color: var(--text);
  background: var(--cream);
  line-height: 1.3;
  font-size: 17px; 
  -webkit-font-smoothing: antialiased; /* Rende i font più puliti su Mac/iPhone */
}

strong, b {
  font-weight: 500; /* Richiama il Haas Grot 65 Medium */
}

img { display: block; max-width: 100%; }
a   { color: inherit; text-decoration: none; }
ul  { list-style: none; }
button { font-family: inherit; }

/* ETICHETTA SEZIONE */
.section-label {
  display: block;
  font-size: 16px; 
  font-weight: 500;
  letter-spacing: 0.5px; /* Kerning diminuito da 1.5px */
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 18px;
}
.section-label--light { color: rgba(255,255,255,0.55); }

h2 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5vw, 4.5rem); /* Dimensione fluida e responsive */
  font-weight: 400;
  line-height: 1.3;
  color: var(--taupe);
  letter-spacing: -1px;
}
h2 em { font-style: italic; font-weight: 400; }
h2.light, h2.light em { color: var(--white); } /* cambia il colore in bianco (per le sezioni scure) */

h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 10px 32px; 
  font-family: var(--sans);
  font-size: 13px; 
  font-weight: 400; 
  letter-spacing: 0; 
  text-transform: uppercase;
  cursor: pointer;
  border-radius: var(--radius-pill);
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-outline-light {
  background: rgba(255,255,255,0.08);
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
  backdrop-filter: blur(3px);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,0.3);
}

.btn-outline-dark {
  background: transparent;
  color: var(--text);
  border-color: var(--taupe);
}
.btn-outline-dark:hover {
  background: var(--taupe);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(138,115,85,0.3);
}

.btn-filled {
  background: var(--taupe);
  color: var(--white);
  border-color: var(--taupe);
}
.btn-filled:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(138,115,85,0.35);
}

.btn-green-light {
  background: var(--green-light);
  color: var(--white);
  border-color: var(--green-light);
}
.btn-green-light:hover {
  background: var(--dark-green);
  border-color: var(--dark-green);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,51,38,0.4);
}

/* LAYOUT */
.container {
  max-width: 1200px; /* Aumentato da 1000px per restringere i margini laterali */
  margin: 0 auto;
  padding: 0 24px; /* Diminuito da 32px per avere meno margine anche su schermi più piccoli */
}

section { overflow: hidden; }
.center-x { text-align: center; }

/* FADE ANIMATION */
.fade-in {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* NAVBAR – on cream background */
#navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--cream);
  transition: background var(--transition), box-shadow var(--transition);
  padding: 0 32px;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(234, 234, 227, 0.75); 

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px); /* Fondamentale per farlo funzionare su Safari/iPhone */
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  
}

.nav-inner {
  max-width: 1200px; /* Deve essere identico al max-width di .container */
  margin: 0 auto;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}

/* Ricordati di aggiornare anche il menu mobile, altrimenti si crea uno stacco */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; 
  left: 0; right: 0;
  background: var(--cream);
  padding: 28px 32px 36px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  transition: opacity var(--transition);
}
.nav-logo:hover { opacity: 0.75; }

.nav-logo .logo-img {
  height: 34px;
  width: auto;
  flex-shrink: 0;
  transform: translateY(-2px); 
}

.nav-logo span {
  font-family: var(--serif); 
  font-size: 1.3rem; 
  font-weight: 400; 
  letter-spacing: 0; 
  color: var(--text);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 42px;
  position: absolute; 
  left: 50%;          
  transform: translateX(-50%); 
}

.nav-links a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0; /* Kerning zero nella navbar */
  text-transform: uppercase;
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1.5px;
  background: var(--green-light);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--green-light); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* Nav CTA */
.nav-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0; 
  text-transform: uppercase;
  color: var(--white);
  background: var(--taupe);
  padding: 11px 28px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--taupe);
  transition: background var(--transition), transform var(--transition),
              box-shadow var(--transition);
}
.nav-cta:hover {
  background: var(--taupe-dark);
  border-color: var(--taupe-dark);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(138,115,85,0.35);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px; height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: var(--cream);
  padding: 28px 32px 36px;
  flex-direction: column;
  gap: 20px;
  z-index: 999;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0; 
  text-transform: uppercase;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  transition: color var(--transition);
}
.nav-mobile a:hover { color: var(--cream); }
.nav-mobile .btn { align-self: flex-start; margin-top: 8px;  padding: 12px 28px;}

/* HERO */
#hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-image: url('images/sfondo.jpg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 50% at 50% 20%, rgba(255,255,255,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 70% at 20% 80%, rgba(40,60,30,0.4) 0%, transparent 70%),
    radial-gradient(ellipse 50% 60% at 80% 85%, rgba(30,45,20,0.5) 0%, transparent 70%);
  z-index: 1;
}
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(51, 64, 49, 0.5); 
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 1200px; /* Deve essere identico al max-width di .container */
}

.hero-label {
  display: block;
  font-size: 20px; 
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 22px;
  opacity: 0.95;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6vw, 6rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 26px;
  letter-spacing: -1px;
  white-space: nowrap; 
}
.hero-subtitle {
  max-width: 680px; /* Allargato da 520px per dare respiro al testo più grande */
  margin: 0 auto 42px;
  font-size: 22px; /* Ingrandito da 16px */
  font-weight: 400;
  line-height: 1.3; /* Ridotto leggermente (era 1.75) per bilanciare la nuova grandezza */
  color: rgba(255,255,255,0.88);
}

/*IL METODO */
#il-metodo {
  background: var(--white);
  padding: 110px 0 120px;
}
.metodo-header {
  margin-bottom: 56px;
}

.metodo-list {
  display: block; /* Rimuove la griglia */
  column-count: 2; /* Crea due colonne verticali e indipendenti */
  column-gap: 50px;
}

.metodo-item {
  display: inline-block; /* Previene che un blocco si spezzi a metà tra le due colonne */
  width: 100%;
  border-top: 1px solid var(--border);
  transition: border-color var(--transition);
}

.metodo-item:last-child {
  width: 100%;
  margin: 0;
  border-bottom: 1px solid var(--border);
}

.metodo-item:hover { border-top-color: var(--green-light-light); }

.metodo-toggle {
  width: 100%;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 30px 6px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--green-light);
  transition: color var(--transition);
}
.metodo-toggle:hover { color: var(--dark-green); }

.metodo-icon-wrap {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: transparent;
  border-radius: 4px;
}
.metodo-icon .metodo-icon {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.metodo-item:hover .metodo-icon { transform: scale(1.05); }

.metodo-term {
  font-family: var(--serif);
  font-size: 2.2rem; 
  font-weight: 400;
  line-height: 1.3;
  color: inherit;
}

.chevron {
  flex-shrink: 0;
  width: 16px; height: 16px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.35s ease;
  margin-right: 6px;
  margin-top: -4px;
}
.metodo-item.open .chevron,
.storia-card.open .chevron {
  transform: rotate(-135deg);
  margin-top: 4px;
}

.metodo-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.metodo-item.open .metodo-content {
  max-height: 800px;
  padding-bottom: 30px;
  opacity: 1;
}

.metodo-desc {
  font-size: 16px; 
  line-height: 1.3;
  color: var(--text); /* Green Dark su chiaro */
  padding: 0 6px 0 68px; 
}
.metodo-desc strong { color: var(--text); font-weight: 500; }

.metodo-cta {
  margin-top: 68px;
  text-align: center;
}

/* CHI SONO – Ti racconto di me */
#chi-sono-me {
  background: var(--green);
  padding: 110px 0;
}
.chisono-grid {
  display: grid;
  grid-template-columns: 1.2fr 380px; /* Foto ristretta da 440px a 380px */
  gap: 60px; /* Distanza ridotta da 80px a 60px */
  align-items: center;
}

.chisono-text h2 { margin-bottom: 32px; color: var(--white); }
.chisono-text h2 em { color: var(--white); }
.chisono-text .section-label { color: rgba(255,255,255,0.55); }
.chisono-text p {
  font-size: 18px; /* Grande per massima leggibilità editoriale */
  line-height: 1.3;
  color: rgba(255,255,255,0.95); /* Bianco su scuro */
  margin-bottom: 1.2rem;
}
.chisono-text p:last-child { margin-bottom: 0; }
.chisono-text p strong { color: var(--white); font-weight: 500; }

.chisono-photo {
  position: relative;
}
.chisono-photo img,
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.photo-placeholder {
  background: linear-gradient(145deg, #4a5c38, #2a3f22);
  display: flex;
  align-items: center;
  justify-content: center;
}
.photo-placeholder span {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 1px;
}

/* CHI SONO – La mia storia professionale (accordion cards) */
#chi-sono-storia {
  background: var(--cream-light);
  padding: 110px 0;
}

.full-width-section-hack {
  width: 100vw; /* Larghezza pari al 100% della finestra del browser */
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw; /* Sposta a sinistra di metà della larghezza del browser */
  margin-right: -50vw; /* Sposta a destra di metà della larghezza del browser */
  
  /* Se il tuo container ha già un padding verticale, puoi toglierlo da qui.
     Se no, usa un padding interno per dare aria ai contenuti */
  padding-top: 60px; 
  padding-bottom: 60px;
}

.storia-header { margin-bottom: 18px; }
.storia-intro {
  max-width: 700px; 
  font-size: 18px; 
  color: var(--text); 
  line-height: 1.3;
  margin-bottom: 56px;
}
.storia-intro strong { color: var(--text); font-weight: 500; }

.storia-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
  align-items: start;
}
.storia-card {
  background: var(--white);
  border-radius: 10px;
  padding: 26px 26px 8px;
  border: 1px solid rgba(0,0,0,0.04);
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  transition: transform var(--transition), box-shadow var(--transition);
}
.storia-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42,53,32,0.09);
}

.card-period {
  font-size: 13px; 
  font-weight: 500;
  letter-spacing: 0.5px; 
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 14px;
}

.card-toggle {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 0 0 20px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--text);
  transition: color var(--transition);
}
.card-toggle:hover { color: var(--green-light); }
.card-toggle .card-title {
  font-family: var(--sans); 
  font-size: 24px; 
  font-weight: 400; 
  line-height: 1.2;
  color: inherit;
  letter-spacing: -0.5px; 
}
.card-toggle .chevron {
  width: 12px; height: 12px;
  margin-top: 8px;
  border-width: 1.8px;
  color: var(--text-light);
}

.card-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, padding 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}
.storia-card.open .card-content {
  max-height: 600px;
  padding-bottom: 22px;
  opacity: 1;
}
.card-body {
  font-size: 15px; 
  color: var(--text); /* Green Dark su chiaro */
  line-height: 1.3;
}
.card-body strong { color: var(--text); font-weight: 500; }
.card-body em { color: var(--green-light); font-style: italic; }

.storia-cta { text-align: center; }

/* COME LAVORO – Il percorso */
#come-lavoro-percorso {
  background: var(--white);
  padding: 110px 0;
}
.percorso-header { margin-bottom: 16px; }
.percorso-intro {
  max-width: 700px; 
  font-size: 18px; 
  color: var(--text); 
  line-height: 1.3;
  margin-bottom: 56px;
}

.percorso-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  margin-bottom: 56px;
}
.percorso-card {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(0,0,0,0.04);
  border-radius: 10px;
  padding: 34px 34px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.025);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.percorso-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(42,53,32,0.09);
}

.percorso-shape {
  position: absolute;
  top: 50%;
  right: -20px;
  transform: translateY(-50%);
  width: 200px;
  height: auto;
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}
.percorso-card > *:not(.percorso-shape) { position: relative; z-index: 1; }
.percorso-card-label {
  font-size: 13px; 
  font-weight: 500;
  letter-spacing: 0.5px; 
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.percorso-card h3 { 
  font-family: var(--sans); 
  color: var(--text); 
  margin-bottom: 24px;
  font-size: 26px; 
  font-weight: 400;
  letter-spacing: -0.5px;
}
.percorso-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.percorso-card ul li {
  position: relative;
  padding-left: 18px;
  font-size: 16px; 
  color: var(--text); 
  line-height: 1.3;
}
.percorso-card ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--green-light-light);
  font-weight: 500;
}
.percorso-card .card-note {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.08);
  font-size: 14px; 
  color: var(--text); 
  font-style: italic;
  line-height: 1.3;
}

.percorso-cta { text-align: center; }

/* COME LAVORO – Inizia il tuo percorso  */
#contatti {
  background: var(--green);
  padding: 110px 0;
}
.contatti-header { margin-bottom: 52px; }

.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--sans);
  font-size: 16px; 
  color: var(--white);
  outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--green-light-light);
  background: rgba(255,255,255,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }

.form-feedback {
  display: none;
  font-size: 15px; 
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: var(--radius);
}
.form-feedback.success {
  background: rgba(107,125,82,0.2);
  color: #c5dba0;
  border: 1px solid rgba(107,125,82,0.4);
}
.form-feedback.error {
  background: rgba(180,60,60,0.15);
  color: #f0a0a0;
  border: 1px solid rgba(180,60,60,0.3);
}

/* Contact info */
.contatti-info { padding-top: 4px; }
.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.contact-label {
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: 0; 
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.contact-value {
  font-size: 18px; /* Grande su scuro */
  color: rgba(255,255,255,0.88);
  line-height: 1.3;
  transition: color var(--transition);
}
a.contact-value:hover { color: var(--white); }

/* FOOTER */
footer {
  background: #1a2416;
  padding: 60px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo .logo-img-footer { 
  height: 28px; 
  width: auto; 
  flex-shrink: 0;
}
.footer-logo span {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--white);
  font-weight: 400;
}
.footer-tagline {
  font-size: 14px; 
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
  max-width: 260px;
}

.footer-col h4 {
  font-size: 11px; 
  font-weight: 500;
  letter-spacing: 0; 
  text-transform: uppercase;
  color: var(--green-light-light);
  margin-bottom: 16px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a,
.footer-col p,
.footer-col a {
  font-size: 15px; 
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
  line-height: 1.3;
}
.footer-col ul li a:hover,
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 13px; 
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-socials { display: flex; gap: 14px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition), background var(--transition);
}
.footer-socials a:hover {
  border-color: var(--green-light-light);
  background: rgba(107,125,82,0.15);
}
.footer-socials svg {
  width: 15px; height: 15px;
  fill: rgba(255,255,255,0.55);
  transition: fill var(--transition);
}
.footer-socials a:hover svg { fill: var(--white); }

/* RESPONSIVE */

/* ─── Tablet grande (≤ 900px) ─── */
@media (max-width: 900px) {
  #il-metodo,
  #chi-sono-me,
  #chi-sono-storia,
  #come-lavoro-percorso,
  #contatti           { padding: 88px 0; }
  .chisono-grid       { grid-template-columns: 1fr; gap: 52px; }
  .chisono-photo      { max-width: 420px; margin: 0 auto; }
  .storia-cards       { grid-template-columns: 1fr 1fr; }
  .percorso-cards     { grid-template-columns: 1fr; }
  .contatti-grid      { grid-template-columns: 1fr; gap: 52px; }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 36px; }
  .metodo-list        { column-count: 1; }
  .metodo-item:last-child { width: 100%; }
  .hero-title         { white-space: normal; }
}

/* ─── Mobile (≤ 680px) ─── */
@media (max-width: 680px) {
  #navbar             { padding: 0 20px; }
  .container          { padding: 0 20px; }
  #il-metodo,
  #chi-sono-me,
  #chi-sono-storia,
  #come-lavoro-percorso,
  #contatti           { padding: 68px 0; }
  footer              { padding: 48px 0 20px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger          { display: flex; }
  .storia-cards       { grid-template-columns: 1fr; }
  .form-row           { grid-template-columns: 1fr; }
  .footer-grid        { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom      { flex-direction: column; align-items: flex-start; }
  .metodo-term        { font-size: 1.8rem; }
  .metodo-toggle      { grid-template-columns: 36px 1fr auto; gap: 14px; padding: 24px 0; }
  .metodo-icon-wrap   { width: 36px; height: 36px; }
  .metodo-desc        { padding: 0 6px 0 50px; }
  .percorso-shape     { width: 140px; right: -30px; opacity: 0.4; }
  h2                  { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-title         { font-size: clamp(2.2rem, 9vw, 3.2rem); }
  .hero-subtitle      { font-size: 17px; margin-bottom: 32px; }
  .hero-label         { font-size: 13px; margin-bottom: 16px; }
  .percorso-card      { padding: 26px 24px; }
  .percorso-card h3   { font-size: 22px; }
  .chisono-photo      { max-width: 100%; }
}

/* ─── Effetto immagine "a vivo" nella sezione Chi Sono (solo Desktop) ─── */
@media (min-width: 901px) {
  
  /* 1. Facciamo in modo che la colonna di destra sia alta esattamente quanto il testo */
  .chisono-grid {
    align-items: stretch; 
  }
  
  /* 2. Manteniamo il testo centrato verticalmente nella sua colonna */
  .chisono-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  /* 3. Diamo un punto di riferimento alla foto */
  .chisono-photo {
    position: relative; 
  }

  /* 4. Estraiamo l'immagine dai bordi */
  .chisono-photo img {
    position: absolute;
    top: -110px;      /* Compensa e scavalca il padding superiore della sezione verde */
    bottom: -110px;   /* Compensa e scavalca il padding inferiore */
    left: 0;          /* Rimane perfettamente allineata a sinistra con la griglia */
    
    width: 50vw;      /* Si allarga a dismisura verso destra fino a uscire dallo schermo */
    max-width: none;  /* Forza l'immagine a ignorare i blocchi del container */
    height: calc(100% + 220px); /* Copre l'altezza del testo + i due padding da 110px */
    
    object-fit: cover;
    border-radius: 0; /* Rimuove gli angoli arrotondati per un taglio netto sui bordi */
  }
}