/* ============================================================
   STUDIO LEGALE VISCONTI — style.css
   Foglio di stile unico per tutto il sito
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500&family=Lora:ital,wght@0,400;0,500;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --verde-oliva:   #6B7C2A;
  --verde-hover:   #8FA03A;
  --verde-scuro:   #4A5A1A;
  --oro:           #C9A84C;
  --nero:          #1A1A1A;
  --bianco-caldo:  #F8F6F0;
  --grigio:        #5A5A5A;
  --grigio-chiaro: #E8E4DC;
  --grigio-medio:  #9A9590;
  --bianco:        #FFFFFF;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Lora', Georgia, serif;
  --font-ui:       'Montserrat', Arial, sans-serif;

  --nav-h:         72px;
  --transition:    0.3s ease;
  --radius:        4px;
  --shadow:        0 4px 24px rgba(0,0,0,0.10);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.16);

  --max-w:         1200px;
  --section-pad:   80px 24px;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--nero);
  background: var(--bianco-caldo);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul { list-style: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad { padding: var(--section-pad); }

/* ── SCROLL REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s 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; }

/* ── TIPOGRAFIA BASE ──────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

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

.label {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-oliva);
}

.divider-oro {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--oro);
  margin: 16px 0 24px;
}

/* ── BOTTONI ──────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--verde-oliva);
  color: var(--bianco);
  border-color: var(--verde-oliva);
}
.btn-primary:hover {
  background: var(--verde-hover);
  border-color: var(--verde-hover);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--bianco);
  border-color: var(--bianco);
}
.btn-outline:hover {
  background: var(--bianco);
  color: var(--nero);
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--verde-oliva);
  border-color: var(--verde-oliva);
}
.btn-outline-dark:hover {
  background: var(--verde-oliva);
  color: var(--bianco);
  transform: translateY(-2px);
}

.btn-link {
  font-family: var(--font-ui);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: none;
}
.btn-link::after {
  content: '→';
  transition: transform var(--transition);
}
.btn-link:hover { color: var(--verde-hover); }
.btn-link:hover::after { transform: translateX(4px); }

/* ═══════════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: transparent;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 32px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled,
.navbar--solid {
  background: var(--nero);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.navbar__logo a {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.97);
  padding: 5px 14px;
  border-radius: 3px;
}
.navbar__logo img {
  height: 34px;
  width: auto;
  max-width: 220px;
  display: block;
  object-fit: contain;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.navbar__nav > li {
  position: relative;
}

.navbar__nav > li > a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: block;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.navbar__nav > li > a:hover,
.navbar__nav > li > a.active {
  color: var(--bianco);
  background: rgba(255,255,255,0.08);
}
.navbar__nav > li > a.active {
  color: var(--verde-hover);
}

/* Dropdown arrow */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.6rem;
  opacity: 0.7;
}

/* Dropdown menu */
.dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--nero);
  min-width: 220px;
  border-top: 2px solid var(--verde-oliva);
  box-shadow: var(--shadow);
  z-index: 100;
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  display: block;
}
.dropdown li a {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 20px;
  display: block;
  transition: color var(--transition), background var(--transition);
}
.dropdown li a:hover {
  color: var(--bianco);
  background: rgba(255,255,255,0.08);
  padding-left: 28px;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
}
.navbar__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--verde-oliva);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  right: 0;
  bottom: 0;
  width: min(320px, 100vw);
  background: var(--nero);
  z-index: 999;
  padding: 32px 24px;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu ul { display: flex; flex-direction: column; gap: 0; }
.mobile-menu > ul > li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-menu > ul > li > a {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 16px 0;
  display: block;
  transition: color var(--transition);
}
.mobile-menu > ul > li > a:hover { color: var(--verde-hover); }
.mobile-submenu { padding: 0 0 8px 16px; }
.mobile-submenu li a {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 10px 0;
  display: block;
  transition: color var(--transition);
}
.mobile-submenu li a:hover { color: var(--verde-hover); }

/* Overlay sfondo mobile */
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}
.mobile-overlay.open { display: block; }

/* ═══════════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/studio/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,26,26,0.72) 0%,
    rgba(26,26,26,0.58) 60%,
    rgba(107,124,42,0.35) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 24px;
  color: var(--bianco);
}

.hero__logo {
  margin: 0 auto 40px;
  width: min(380px, 85vw);
}
.hero__logo img {
  width: 100%;
  background: rgba(255,255,255,0.95);
  padding: 10px 20px;
  border-radius: 4px;
  box-sizing: border-box;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
}

.hero__claim {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero__sub {
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

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

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE: LO STUDIO
   ═══════════════════════════════════════════════════════════ */
.section-studio {
  background: var(--bianco-caldo);
  padding: var(--section-pad);
}

.studio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}

.studio-text .label { margin-bottom: 8px; }
.studio-text h2 { margin-bottom: 0; }
.studio-text p {
  color: var(--grigio);
  font-size: 1.05rem;
}
.studio-text .btn-outline-dark { margin-top: 16px; }

.studio-img {
  position: relative;
}
.studio-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.studio-img::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  right: 16px;
  bottom: 16px;
  border: 2px solid var(--oro);
  border-radius: var(--radius);
  z-index: 0;
}
.studio-img img { position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════════════
   SEZIONE: AREE DI PRATICA
   ═══════════════════════════════════════════════════════════ */
.section-aree {
  background: var(--verde-oliva);
  padding: var(--section-pad);
  color: var(--bianco);
}

.section-aree .label { color: rgba(255,255,255,0.65); }
.section-aree h2 { color: var(--bianco); margin-bottom: 48px; }
.section-aree .divider-oro { margin-left: 0; }

.aree-header {
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.aree-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.area-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.area-card:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.3);
  transform: translateY(-4px);
}
.area-card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--oro);
}
.area-card h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--bianco);
  margin-bottom: 12px;
}
.area-card p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE: IL TEAM
   ═══════════════════════════════════════════════════════════ */
.section-team {
  background: var(--bianco-caldo);
  padding: var(--section-pad);
}

.team-header {
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.team-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  align-items: start;
}

/* Card principale Irene */
.team-card--main {
  background: var(--bianco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.team-card--main:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.team-card--main .card-img {
  height: 100%;
  min-height: 380px;
}
.team-card--main .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}
.team-card--main .card-body {
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-card--main .card-body .label { margin-bottom: 6px; }
.team-card--main .card-body h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
  line-height: 1.2;
}
.team-card--main .card-body .qualifica {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 16px;
}
.team-card--main .card-body p {
  font-size: 0.9rem;
  color: var(--grigio);
  margin-bottom: 24px;
}
.team-card--main .card-body .btn-link { margin-top: auto; }

/* Cards secondarie */
.team-card--secondary {
  background: var(--bianco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card--secondary:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.team-card--secondary .card-img {
  height: 220px;
  overflow: hidden;
}
.team-card--secondary .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card--secondary:hover .card-img img { transform: scale(1.04); }
.team-card--secondary .card-body {
  padding: 20px 20px 24px;
}
.team-card--secondary .card-body .label { margin-bottom: 4px; font-size: 0.65rem; }
.team-card--secondary .card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.team-card--secondary .card-body .spec {
  font-size: 0.82rem;
  color: var(--grigio);
  margin-bottom: 16px;
}
.team-card--secondary .card-body .btn-link { font-size: 0.72rem; }

/* ═══════════════════════════════════════════════════════════
   SEZIONE: DOVE SIAMO
   ═══════════════════════════════════════════════════════════ */
.section-dove {
  background: var(--grigio-chiaro);
  padding: var(--section-pad);
}

.dove-grid {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 48px;
  align-items: start;
  max-width: var(--max-w);
  margin: 0 auto;
}

.sede h4 {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 12px;
}
.sede address {
  font-style: normal;
  color: var(--grigio);
  font-size: 0.95rem;
  line-height: 1.8;
}
.sede address strong {
  color: var(--nero);
  font-weight: 500;
  font-family: var(--font-display);
  font-size: 1.1rem;
}
.dove-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--nero);
  color: rgba(255,255,255,0.55);
  padding: 56px 24px 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: var(--max-w);
  margin: 0 auto 48px;
}

.footer__logo-link {
  display: inline-block;
  background: rgba(255,255,255,0.97);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 20px;
  line-height: 0;
}
.footer__brand img {
  height: 28px;
  width: auto;
  display: block;
  max-width: 180px;
  object-fit: contain;
}
.footer__brand p {
  font-size: 0.82rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
}
.footer__brand .social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer__brand .social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  transition: border-color var(--transition), color var(--transition), background var(--transition);
}
.footer__brand .social a:hover {
  border-color: var(--verde-oliva);
  color: var(--bianco);
  background: var(--verde-oliva);
}

.footer__col h5 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 16px;
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer__col ul li a:hover { color: var(--bianco); }

.footer__col address {
  font-style: normal;
  font-size: 0.82rem;
  line-height: 1.9;
  color: rgba(255,255,255,0.45);
}
.footer-sede-title {
  display: block;
  color: rgba(255,255,255,0.55);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
/* Email protetta — stile neutro (sfondo chiaro) */
.email-protected a,
.email-link {
  color: var(--verde-oliva);
  transition: color var(--transition);
}
.email-protected a:hover,
.email-link:hover {
  color: var(--verde-hover);
}

/* Override nel footer (sfondo scuro) */
.footer .email-protected a,
.footer .email-link,
.footer-email a {
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer .email-protected a:hover,
.footer .email-link:hover,
.footer-email a:hover { color: var(--bianco); }

/* Override su sfondo scuro (sezione contatti diretti) */
.section-contatti-diretti .email-protected a {
  color: rgba(255,255,255,0.7);
}
.section-contatti-diretti .email-protected a:hover {
  color: var(--bianco);
}

.footer__bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.3);
}
.footer__bottom a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer__bottom a:hover { color: rgba(255,255,255,0.8); }

/* ═══════════════════════════════════════════════════════════
   PAGINE INTERNE — HERO PROFILO
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  padding-top: var(--nav-h);
  background: var(--nero);
  padding-bottom: 0;
}

.page-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  max-width: var(--max-w);
  margin: 0 auto;
  min-height: 480px;
}

.page-hero__img {
  overflow: hidden;
}
.page-hero__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.page-hero__content {
  padding: 64px 56px;
  color: var(--bianco);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--nero);
}

.page-hero__content .label {
  color: var(--verde-hover);
  margin-bottom: 12px;
}
.page-hero__content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  line-height: 1.15;
}
.page-hero__content .qualifiche {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.badge {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  background: rgba(107,124,42,0.25);
  color: var(--verde-hover);
  border: 1px solid rgba(107,124,42,0.4);
}
.page-hero__content p {
  color: rgba(255,255,255,0.65);
  font-size: 1rem;
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE BIOGRAFIA
   ═══════════════════════════════════════════════════════════ */
.section-bio {
  padding: var(--section-pad);
  background: var(--bianco-caldo);
}

.bio-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.bio-text .label { margin-bottom: 8px; }
.bio-text h2 { margin-bottom: 24px; }
.bio-text p { color: var(--grigio); font-size: 1rem; }

.bio-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-box {
  background: var(--bianco);
  border-left: 3px solid var(--verde-oliva);
  padding: 20px 24px;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.info-box h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 10px;
}
.info-box ul { display: flex; flex-direction: column; gap: 6px; }
.info-box ul li {
  font-size: 0.88rem;
  color: var(--grigio);
  padding-left: 12px;
  position: relative;
}
.info-box ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--oro);
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE AREE PRATICA (pagine profilo)
   ═══════════════════════════════════════════════════════════ */
.section-aree-profilo {
  background: var(--grigio-chiaro);
  padding: var(--section-pad);
}
.section-aree-profilo .label { margin-bottom: 8px; }
.section-aree-profilo h2 { margin-bottom: 40px; }

.aree-profilo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}
.area-profilo-card {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 28px 24px;
  border-top: 3px solid var(--verde-oliva);
  transition: transform var(--transition), box-shadow var(--transition);
}
.area-profilo-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.area-profilo-card svg {
  width: 36px;
  height: 36px;
  color: var(--verde-oliva);
  margin-bottom: 14px;
}
.area-profilo-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.area-profilo-card p {
  font-size: 0.85rem;
  color: var(--grigio);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   SEZIONE CONTATTI DIRETTI (pagine profilo)
   ═══════════════════════════════════════════════════════════ */
.section-contatti-diretti {
  background: var(--nero);
  padding: 56px 24px;
  color: var(--bianco);
}
.contatti-diretti-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
}
.contatto-item {
  display: flex;
  align-items: center;
  gap: 12px;
}
.contatto-item svg {
  width: 20px;
  height: 20px;
  color: var(--verde-oliva);
  flex-shrink: 0;
}
.contatto-item a,
.contatto-item span {
  font-family: var(--font-ui);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.contatto-item a:hover { color: var(--bianco); }

/* ═══════════════════════════════════════════════════════════
   PAGINA: AVVOCATI HUB
   ═══════════════════════════════════════════════════════════ */
.page-header-simple {
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 64px;
  background: var(--nero);
  color: var(--bianco);
  text-align: center;
}
.page-header-simple .label { color: var(--verde-hover); margin-bottom: 8px; }
.page-header-simple h1 { color: var(--bianco); }
.page-header-simple p {
  max-width: 560px;
  margin: 16px auto 0;
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
}

.avvocati-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  padding: var(--section-pad);
}

.avvocato-card {
  background: var(--bianco);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition), transform var(--transition);
}
.avvocato-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}
.avvocato-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  object-position: top center;
}
.avvocato-card__body {
  padding: 28px 28px 32px;
}
.avvocato-card__body .label { margin-bottom: 4px; }
.avvocato-card__body h2 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.avvocato-card__body .spec {
  font-size: 0.88rem;
  color: var(--grigio);
  margin-bottom: 20px;
}
.avvocato-card__body .btn-link { }

/* ═══════════════════════════════════════════════════════════
   PAGINA: COLLABORATORI
   ═══════════════════════════════════════════════════════════ */
.collaboratori-intro {
  padding: var(--section-pad);
  background: var(--bianco-caldo);
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}
.collaboratori-intro h2 { margin-bottom: 16px; }
.collaboratori-intro p { color: var(--grigio); font-size: 1rem; }

.collaboratori-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px 80px;
}
.collaboratore-card {
  background: var(--bianco);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.collaboratore-card .avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--grigio-chiaro);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--grigio-medio);
}
.collaboratore-card h4 { margin-bottom: 4px; }
.collaboratore-card .anno {
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 8px;
}
.collaboratore-card .area {
  font-size: 0.85rem;
  color: var(--grigio);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   PAGINA: CONTATTI
   ═══════════════════════════════════════════════════════════ */
.contatti-section {
  padding: var(--section-pad);
  background: var(--bianco-caldo);
}

.contatti-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
}

/* Form */
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grigio);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--nero);
  background: var(--bianco);
  border: 1px solid var(--grigio-chiaro);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--verde-oliva);
  box-shadow: 0 0 0 3px rgba(107,124,42,0.12);
}
.form-group textarea { min-height: 140px; resize: vertical; }

.form-privacy {
  font-size: 0.8rem;
  color: var(--grigio);
  margin-bottom: 20px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.form-privacy input[type="checkbox"] {
  width: auto;
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--verde-oliva);
}
.form-privacy a { color: var(--verde-oliva); text-decoration: underline; }

.form-msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-family: var(--font-ui);
  font-size: 0.85rem;
  margin-bottom: 16px;
  display: none;
}
.form-msg.success { background: #e8f4e8; color: #2d6a2d; border: 1px solid #b8d8b8; display: block; }
.form-msg.error   { background: #fde8e8; color: #8b2020; border: 1px solid #f0b8b8; display: block; }

/* Info sedi */
.contatti-info h2 { margin-bottom: 32px; }
.sede-block {
  padding: 24px;
  background: var(--bianco);
  border-radius: var(--radius);
  margin-bottom: 20px;
  border-left: 3px solid var(--verde-oliva);
}
.sede-block h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--verde-oliva);
  margin-bottom: 10px;
}
.sede-block address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--grigio);
  line-height: 1.9;
}
.sede-block address strong {
  color: var(--nero);
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.email-block {
  margin-top: 24px;
  padding: 20px 24px;
  background: var(--bianco);
  border-radius: var(--radius);
}
.email-block h4 {
  font-family: var(--font-ui);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grigio-medio);
  margin-bottom: 14px;
}
.email-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: var(--grigio);
}
.email-line:last-child { margin-bottom: 0; }
.email-line svg { width: 16px; height: 16px; color: var(--verde-oliva); flex-shrink: 0; }
.email-line .email-label {
  font-family: var(--font-ui);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grigio-medio);
  min-width: 80px;
}
.email-placeholder { color: var(--grigio-medio); font-style: italic; }

/* Mappa */
.mappa-section {
  height: 360px;
  background: var(--grigio-chiaro);
}
.mappa-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ═══════════════════════════════════════════════════════════
   PAGINA: PRIVACY
   ═══════════════════════════════════════════════════════════ */
.privacy-section {
  padding: var(--section-pad);
  background: var(--bianco-caldo);
}
.privacy-content {
  max-width: 800px;
  margin: 0 auto;
}
.privacy-content h2 { margin-bottom: 32px; }
.privacy-content h3 {
  font-size: 1.2rem;
  margin: 32px 0 12px;
  color: var(--verde-scuro);
}
.privacy-content p,
.privacy-content li {
  font-size: 0.95rem;
  color: var(--grigio);
  line-height: 1.8;
}
.privacy-content ul {
  list-style: disc;
  padding-left: 24px;
  margin-bottom: 1em;
}
.privacy-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.88rem;
}
.privacy-content table th,
.privacy-content table td {
  text-align: left;
  padding: 10px 14px;
  border: 1px solid var(--grigio-chiaro);
}
.privacy-content table th {
  background: var(--grigio-chiaro);
  font-family: var(--font-ui);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grigio);
}

/* ═══════════════════════════════════════════════════════════
   BREADCRUMB
   ═══════════════════════════════════════════════════════════ */
.breadcrumb {
  padding: 12px 0;
  background: var(--bianco-caldo);
  border-bottom: 1px solid var(--grigio-chiaro);
}
.breadcrumb__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-ui);
  font-size: 0.72rem;
  color: var(--grigio-medio);
}
.breadcrumb__inner a { color: var(--verde-oliva); }
.breadcrumb__inner a:hover { text-decoration: underline; }
.breadcrumb__inner .sep { opacity: 0.4; }

/* ═══════════════════════════════════════════════════════════
   UTILS
   ═══════════════════════════════════════════════════════════ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
  }
  .team-card--main {
    grid-column: 1 / -1;
  }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .dove-grid { grid-template-columns: 1fr 1fr; }
  .dove-cta { grid-column: 1 / -1; text-align: left; }
  .bio-grid { grid-template-columns: 1fr; gap: 40px; }
  .page-hero__inner { grid-template-columns: 1fr; }
  .page-hero__img { height: 320px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; --section-pad: 56px 20px; }

  .navbar__nav { display: none; }
  .navbar__hamburger { display: flex; }
  .mobile-menu { display: block; }

  .studio-grid { grid-template-columns: 1fr; gap: 40px; }
  .studio-img::before { display: none; }

  .team-grid { grid-template-columns: 1fr; }
  .team-card--main { grid-template-columns: 1fr; }
  .team-card--main .card-img { min-height: 260px; }
  .team-card--main .card-body { padding: 24px; }

  .avvocati-grid { grid-template-columns: 1fr; max-width: 420px; }

  .dove-grid { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }

  .contatti-grid { grid-template-columns: 1fr; gap: 40px; }

  .page-hero__content { padding: 36px 24px; }

  .aree-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .aree-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: center; }
  .aree-profilo-grid { grid-template-columns: 1fr; }
}
