/* ============================================================
   SOFTCAST v5.1 — Stili condivisi
   Questo file è usato da tutte le pagine (softcast.html, chisiamo.html, ...).
   Modificalo qui una volta per propagare le modifiche ovunque.
   ============================================================ */

/* ---------- DESIGN TOKENS ---------- */
  :root {
    --green-900: #0f2a1f;
    --green-800: #173627;
    --green-700: #1d4030;
    --green-600: #2a553f;
    --green-300: #b9d8c0;
    --green-100: #e6f0e8;
    --cream: #faf6ee;
    --cream-warm: #f3ecd9;
    --black: #0f0f0f;
    --white: #ffffff;

    --shadow-sm: 0 1px 2px rgba(15, 42, 31, 0.06), 0 2px 8px rgba(15, 42, 31, 0.04);
    --shadow-md: 0 2px 4px rgba(15, 42, 31, 0.05), 0 8px 24px rgba(15, 42, 31, 0.08), 0 24px 48px rgba(15, 42, 31, 0.04);
    --shadow-lg: 0 4px 8px rgba(15, 42, 31, 0.06), 0 16px 40px rgba(15, 42, 31, 0.10), 0 40px 80px rgba(15, 42, 31, 0.06);

    --radius-sm: 16px;
    --radius-md: 24px;
    --radius-lg: 32px;
    --radius-xl: 48px;
    --radius-pill: 999px;

    --font-display: 'Fraunces', 'Times New Roman', serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --max-width: 1180px;
  }

  * { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* Subtle grain overlay */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.04 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    opacity: 0.5;
    z-index: 1;
    mix-blend-mode: multiply;
  }

  /* Decorative blobs */
  .blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
  }
  .blob--1 { top: -120px; left: -180px; width: 520px; height: 520px; background: var(--green-300); opacity: 0.45; }
  .blob--2 { top: 300px; right: -200px; width: 460px; height: 460px; background: var(--green-100); opacity: 0.7; }
  .blob--3 { bottom: 800px; left: -100px; width: 380px; height: 380px; background: var(--cream-warm); opacity: 0.7; }
  .blob--4 { bottom: 200px; right: -160px; width: 440px; height: 440px; background: var(--green-300); opacity: 0.35; }

  .container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
  }

  /* ---------- HEADER / HERO ---------- */
  .hero {
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
  }

  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-16px) rotate(2deg); }
  }
  @keyframes pulse-glow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50%       { opacity: 1;   transform: scale(1.12); }
  }

  .logo-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 220px;
    height: 220px;
    margin-bottom: 32px;
  }
  .logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: float 5s ease-in-out infinite;
    will-change: transform;
  }
  .logo-glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle, rgba(185, 216, 192, 0.55) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
    z-index: 0;
  }

  /* Reduce motion for accessibility */
  @media (prefers-reduced-motion: reduce) {
    .logo-wrap img { animation: none; transform: rotate(-1deg); }
    .logo-glow { animation: none; }
  }

  .wordmark {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 700;
    font-size: clamp(56px, 10vw, 120px);
    line-height: 0.95;
    color: var(--green-800);
    letter-spacing: -0.03em;
    margin-bottom: 16px;
  }
  .wordmark em {
    font-style: italic;
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 500;
    color: var(--green-600);
  }

  .tagline {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--green-700);
    max-width: 540px;
    margin: 0 auto 48px;
    font-weight: 500;
  }

  /* ---------- SOCIAL ROW ---------- */
  .social-row {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 8px;
  }

  .social-btn {
    padding: 14px 22px;
    border-radius: 18px;
    background: var(--green-800);
    color: var(--cream);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.3s ease;
    box-shadow: var(--shadow-sm);
    border: 2px solid transparent;
  }
  .social-btn:hover {
    transform: translateY(-4px);
    background: var(--black);
    box-shadow: var(--shadow-md);
  }
  .social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
  .social-btn .label { white-space: nowrap; }

  /* ---------- SECTION TITLES ---------- */
  .section {
    padding: 80px 0;
    position: relative;
  }
  .section-eyebrow {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-800);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 16px;
  }
  .section-title {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 96, 'SOFT' 80, 'wght' 600;
    font-size: clamp(36px, 6vw, 64px);
    color: var(--green-900);
    letter-spacing: -0.025em;
    line-height: 1.05;
    margin-bottom: 12px;
  }
  .section-title em {
    font-style: italic;
    font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 500;
    color: var(--green-600);
  }
  .section-sub {
    color: var(--green-700);
    font-size: 17px;
    max-width: 540px;
  }

  /* ---------- LATEST EPISODE ---------- */
  .latest {
    margin-top: 40px;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
  }
  .latest::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    background: var(--green-100);
    border-radius: 50%;
    opacity: 0.6;
    z-index: 0;
  }

  .latest-header { position: relative; z-index: 1; margin-bottom: 28px; }
  .ep-badge {
    display: inline-block;
    background: var(--green-800);
    color: var(--cream);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
  }
  .ep-title {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 72, 'SOFT' 60, 'wght' 600;
    font-size: clamp(28px, 4vw, 42px);
    color: var(--black);
    letter-spacing: -0.02em;
    line-height: 1.1;
    margin-bottom: 14px;
  }
  .ep-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--green-700);
    font-weight: 500;
    margin-bottom: 14px;
  }
  .ep-meta span { display: inline-flex; align-items: center; gap: 6px; }
  .ep-desc { color: #444; max-width: 720px; }

  /* Toggle pill */
  .toggle-wrap {
    display: inline-flex;
    background: var(--cream-warm);
    padding: 6px;
    border-radius: var(--radius-pill);
    margin: 28px 0 24px;
    position: relative;
    z-index: 1;
  }
  .toggle-btn {
    border: none;
    background: transparent;
    padding: 10px 22px;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--green-800);
    cursor: pointer;
    border-radius: var(--radius-pill);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }
  .toggle-btn.active {
    background: var(--green-800);
    color: var(--cream);
    box-shadow: var(--shadow-sm);
  }
  .toggle-btn svg { width: 16px; height: 16px; }

  .player-frame {
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--green-100);
    position: relative;
    z-index: 1;
  }
  .player-frame iframe { display: block; width: 100%; border: none; }
  .player-frame.spotify iframe { height: 232px; }
  .player-frame.youtube { aspect-ratio: 16/9; }
  .player-frame.youtube iframe { width: 100%; height: 100%; }

  .external-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    color: var(--green-700);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
    transition: color 0.2s ease, gap 0.25s ease;
    position: relative;
    z-index: 1;
  }
  .external-link:hover { color: var(--green-900); gap: 10px; }
  .external-link svg { width: 14px; height: 14px; }

  /* ---------- EPISODES GRID ---------- */
  .episodes-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
  }

  .ep-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }
  .ep-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: var(--green-100);
  }

  .ep-card-num {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 96, 'SOFT' 100, 'wght' 700;
    font-size: 56px;
    line-height: 1;
    color: var(--green-300);
    letter-spacing: -0.03em;
  }
  .ep-card-title {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 48, 'SOFT' 50, 'wght' 600;
    font-size: 22px;
    line-height: 1.2;
    color: var(--black);
    letter-spacing: -0.015em;
  }
  .ep-card-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--green-700);
    font-weight: 500;
  }
  .ep-card-desc {
    font-size: 14px;
    color: #555;
    flex-grow: 1;
  }

  .ep-buttons {
    display: flex;
    gap: 10px;
    margin-top: 6px;
    flex-wrap: wrap;
  }
  .ep-btn {
    flex: 1 1 auto;
    min-width: 120px;
    border: none;
    padding: 12px 18px;
    border-radius: var(--radius-pill);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.25s ease;
  }
  .ep-btn--yt {
    background: var(--green-800);
    color: var(--cream);
  }
  .ep-btn--yt:hover { background: var(--black); transform: translateY(-2px); }
  .ep-btn--sp {
    background: var(--cream-warm);
    color: var(--green-800);
  }
  .ep-btn--sp:hover { background: var(--green-100); transform: translateY(-2px); }
  .ep-btn--nav {
    background: var(--green-800);
    color: var(--cream);
  }
  .ep-btn--nav:hover { background: var(--black); transform: translateY(-2px); }

  /* Icone piattaforma via CSS — definite una volta sola, applicate ovunque */
  .ep-btn--yt::before,
  .ep-btn--sp::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    background-color: currentColor;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
  }
  .ep-btn--yt::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E");
  }
  .ep-btn--sp::before {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.02.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.3 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.42 1.56-.299.421-1.02.599-1.559.3z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 0C5.4 0 0 5.4 0 12s5.4 12 12 12 12-5.4 12-12S18.66 0 12 0zm5.521 17.34c-.24.359-.66.48-1.02.24-2.82-1.74-6.36-2.101-10.561-1.141-.418.122-.779-.179-.899-.539-.12-.421.18-.78.54-.9 4.56-1.021 8.52-.6 11.64 1.32.42.18.479.659.3 1.02zm1.44-3.3c-.301.42-.841.6-1.262.3-3.239-1.98-8.159-2.58-11.939-1.38-.479.12-1.02-.12-1.14-.6-.12-.48.12-1.021.6-1.141C9.6 9.9 15 10.561 18.72 12.84c.361.181.54.78.241 1.2zm.12-3.36C15.24 8.4 8.82 8.16 5.16 9.301c-.6.179-1.2-.181-1.38-.721-.18-.601.18-1.2.72-1.381 4.26-1.26 11.28-1.02 15.721 1.621.539.3.719 1.02.42 1.56-.299.421-1.02.599-1.559.3z'/%3E%3C/svg%3E");
  }
  .ep-btn svg { width: 16px; height: 16px; }

  /* ---------- FOOTER ---------- */
  .footer {
    margin-top: 80px;
    padding: 60px 0 40px;
    background: var(--green-900);
    color: var(--cream);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    position: relative;
    z-index: 2;
    text-align: center;
  }
  .footer-word {
    font-family: var(--font-display);
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 600;
    font-size: clamp(40px, 8vw, 80px);
    color: var(--cream);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
  }
  .footer-word img {
    width: clamp(120px, 30vw, 240px);
    height: auto;
    display: block;
    margin: 0 auto 0;
  }
  .footer-word em {
    font-style: italic;
    color: var(--green-300);
    font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 500;
  }
  .footer-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 32px;
    flex-wrap: wrap;
  }
  .footer-social .social-btn {
    background: var(--green-700);
    color: var(--cream);
    padding: 11px 18px;
    border-radius: 14px;
    font-size: 13px;
  }
  .footer-social .social-btn svg { width: 16px; height: 16px; }
  .footer-social .social-btn:hover {
    background: var(--green-300);
    color: var(--green-900);
  }
  .footer-copy {
    font-size: 13px;
    opacity: 0.6;
    letter-spacing: 0.02em;
  }
  .footer-copy span { color: var(--green-300); }

  /* ---------- ANIMATIONS ---------- */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  .fade-up { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 640px) {
    .hero { padding: 56px 0 40px; }
    .logo-wrap { width: 160px; height: 160px; }
    .latest { padding: 24px; border-radius: var(--radius-lg); }
    .section { padding: 60px 0; }
    .footer { padding: 48px 0 32px; }
  }

/* ============================================================
   MENU DI NAVIGAZIONE (condiviso tra tutte le pagine)
   ============================================================ */
.main-nav {
  position: relative;
  z-index: 10;
  padding: 24px 0 0;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 20px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav-brand {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 700;
  font-size: 22px;
  color: var(--green-900);
  text-decoration: none;
  letter-spacing: -0.02em;
  padding: 4px 8px;
  white-space: nowrap;
}
.nav-brand em {
  font-style: italic;
  color: var(--green-600);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 500;
}
.nav-brand img {
  height: 28px;
  width: auto;
  display: block;
  filter: brightness(0);
}
.nav-inner.no-brand {
  max-width: fit-content;
  margin-left: auto;
  margin-right: 24px;
}
.nav-list {
  display: flex;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}
.nav-item {
  display: inline-block;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  color: var(--green-800);
  font-weight: 600;
  font-size: 14px;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}
.nav-item:hover {
  background: var(--green-100);
  transform: translateY(-1px);
}
.nav-item.active {
  background: var(--green-800);
  color: var(--cream);
}

@media (max-width: 600px) {
  .nav-inner { padding: 10px 14px; flex-wrap: wrap; gap: 10px; }
  .nav-brand { font-size: 18px; }
  .nav-item { padding: 8px 14px; font-size: 13px; }
}

/* ============================================================
   PAGINE INTERNE — contenuto testuale (Chi siamo, ecc.)
   ============================================================ */
.page-hero {
  text-align: center;
  padding: 60px 0 20px;
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 700;
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  color: var(--green-800);
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-hero h1 em {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'wght' 500;
  color: var(--green-600);
}
.page-hero .subtitle {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--green-700);
  max-width: 580px;
  margin: 0 auto;
  font-weight: 500;
}

.prose {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 5vw, 56px);
  box-shadow: var(--shadow-md);
  max-width: 780px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}
.prose h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'wght' 600;
  font-size: clamp(26px, 4vw, 36px);
  color: var(--green-900);
  letter-spacing: -0.02em;
  margin: 36px 0 14px;
  line-height: 1.15;
}
.prose h2:first-child { margin-top: 0; }
.prose h2 em {
  font-style: italic;
  color: var(--green-600);
  font-variation-settings: 'opsz' 72, 'SOFT' 100, 'wght' 500;
}
.prose p {
  font-size: 17px;
  color: #2c2c2c;
  margin-bottom: 16px;
  line-height: 1.7;
}
.prose p:last-child { margin-bottom: 0; }
.prose .lede {
  font-size: 19px;
  color: var(--green-800);
  font-weight: 500;
}

.host-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.host-card {
  background: var(--cream-warm);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
}
.host-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--green-300);
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 100, 'wght' 700;
  font-size: 28px;
  color: var(--green-900);
}
.host-card h3 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 48, 'SOFT' 80, 'wght' 600;
  font-size: 20px;
  color: var(--black);
  margin-bottom: 6px;
}
.host-card p {
  font-size: 14px;
  color: var(--green-700);
  margin: 0;
}

.cta-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  background: var(--green-800);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease;
}
.cta-btn:hover { background: var(--black); transform: translateY(-2px); }
.cta-btn.secondary { background: var(--cream-warm); color: var(--green-800); }
.cta-btn.secondary:hover { background: var(--green-100); }

/* ============================================================
   PAGINA CONTATTI — form e info
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 24px;
  max-width: 980px;
  margin: 40px auto 0;
  position: relative;
  z-index: 2;
}

@media (max-width: 760px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: clamp(24px, 4vw, 36px);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}
.contact-card.info {
  background: var(--green-800);
  color: var(--cream);
}
.contact-card.info::before {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 240px;
  height: 240px;
  background: var(--green-700);
  border-radius: 50%;
  opacity: 0.5;
  z-index: 0;
}
.contact-card > * { position: relative; z-index: 1; }

.contact-card h2 {
  font-family: var(--font-display);
  font-variation-settings: 'opsz' 72, 'SOFT' 80, 'wght' 600;
  font-size: clamp(24px, 3.5vw, 32px);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1.15;
}
.contact-card h2 em {
  font-style: italic;
  font-variation-settings: 'opsz' 72, 'SOFT' 100, 'wght' 500;
}
.contact-card.info h2 em { color: var(--green-300); }
.contact-card:not(.info) h2 { color: var(--green-900); }
.contact-card:not(.info) h2 em { color: var(--green-600); }

.contact-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.contact-card.info p { color: rgba(250, 246, 238, 0.85); }
.contact-card:not(.info) p { color: #444; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--green-700);
  border-radius: var(--radius-md);
  color: var(--cream);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 10px;
  transition: background 0.25s ease, transform 0.25s ease;
  word-break: break-all;
}
.contact-link:hover { background: var(--green-600); transform: translateY(-2px); }
.contact-link svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--green-300);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 480px) {
  .form-row { grid-template-columns: 1fr; }
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--green-800);
  letter-spacing: 0.02em;
  padding-left: 4px;
}
.field input,
.field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--black);
  background: var(--cream);
  border: 2px solid transparent;
  border-radius: var(--radius-md);
  padding: 14px 18px;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  width: 100%;
  outline: none;
  resize: none;
}
.field textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.55;
}
.field input::placeholder,
.field textarea::placeholder { color: #999; }
.field input:hover,
.field textarea:hover { background: var(--green-100); }
.field input:focus,
.field textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(42, 85, 63, 0.12);
}

.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: var(--radius-pill);
  background: var(--green-800);
  color: var(--cream);
  border: none;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.25s ease, box-shadow 0.3s ease;
  margin-top: 6px;
  box-shadow: var(--shadow-sm);
}
.submit-btn:hover {
  background: var(--black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.submit-btn:active { transform: translateY(0); }
.submit-btn svg { width: 18px; height: 18px; }

.form-note {
  font-size: 12px;
  color: var(--green-700);
  text-align: center;
  margin-top: 4px;
  opacity: 0.75;
}
