    /* ── CSS VARIABLES ─────────────────────────────────────────── */
    :root {
      --red:        #CC1E1E;
      --red-dark:   #9E1515;
      --red-light:  #E84040;
      --green:      #2D7A2D;
      --green-dark: #4E7A2D;
      --green-light:#38A038;
      --white:      #FFFFFF;
      --off-white:  #F8F5F5;
      --text-dark:  #1A1A1A;
      --text-mid:   #444444;
      --border:     rgba(204,30,30,0.15);

      --header-h: 96px;
      --max-w: 1200px;
      --radius: 6px;
      --shadow: 0 4px 24px rgba(0,0,0,0.12);

	--font-headings: 'Arial', sans-serif;
    	--font-body: 'Lato', sans-serif;
    }

    /* ── RESET ─────────────────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font-body);
      background: var(--off-white);
      color: var(--text-dark);
      line-height: 1.6;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }

    /* ── HEADER ────────────────────────────────────────────────── */
    #header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: var(--white);
      border-bottom: 3px solid var(--red);
      height: var(--header-h);
      display: flex;
      align-items: center;
      box-shadow: 0 2px 16px rgba(0,0,0,0.10);
    }
    .header-inner {
      width: 100%;
      max-width: var(--max-w);
      margin: 0 auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .header-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .header-logo {
      height: 80px;
      width: 80px;
      object-fit: contain;
      flex-shrink: 0;
    }
    .header-name {
      font-family: var(--font-headings);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--red);
      letter-spacing: 0.02em;
      line-height: 1.2;
    }
    .header-name span {
      display: block;
      font-size: 0.75rem;
      font-family: var(--font-body);
      font-weight: 600;
      color: var(--green);
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }
    nav {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    nav a {
      font-weight: 600;
      font-size: 0.9rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--text-dark);
      padding: 8px 18px;
      border-radius: var(--radius);
      transition: background 0.2s, color 0.2s;
    }
    nav a:hover {
      background: var(--red);
      color: var(--white);
    }

    /* Mobile nav toggle */
    .nav-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      cursor: pointer;
      padding: 4px;
      border: none;
      background: transparent;
    }
    .nav-toggle span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--red);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle.open span:nth-child(2) { opacity: 0; }
    .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ── HERO SECTION ──────────────────────────────────────────── */
    #home {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      inset: 0;
      background: url('molfetta-1.jpg') center center / cover no-repeat;
      filter: brightness(0.95);
      z-index: 0;
    }
    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        135deg,
        rgba(158,21,21,0.65) 0%,
        rgba(0,0,0,0.35) 60%,
        rgba(45,122,45,0.40) 100%
      );
      z-index: 1;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      text-align: center;
      color: var(--white);
      padding: 80px 24px 60px;
      max-width: 992px;
      margin: 0 auto;
      animation: heroFadeUp 0.9s ease both;
    }
    @keyframes heroFadeUp {
      from { opacity: 0; transform: translateY(32px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-logo {
      width: 240px;
      height: 240px;
      object-fit: contain;
      margin: 0 auto 28px;
      filter: drop-shadow(0 4px 16px rgba(0,0,0,0.5));
      animation: heroFadeUp 0.9s 0.15s ease both;
    }
    .hero-title {
      font-family: var(--font-headings);
      font-size: clamp(2.2rem, 6vw, 4.2rem);
      font-weight: 800;
      letter-spacing: 0.03em;
      line-height: 1.1;
      text-shadow: 0 2px 16px rgba(0,0,0,0.5);
      animation: heroFadeUp 0.9s 0.25s ease both;
    }
    .hero-divider {
      width: 60px;
      height: 4px;
      background: linear-gradient(90deg, var(--red-light), var(--green-light));
      margin: 20px auto;
      border-radius: 2px;
      animation: heroFadeUp 0.9s 0.35s ease both;
    }
    .hero-date {
      font-size: clamp(1rem, 2.5vw, 1.3rem);
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.88);
      margin-bottom: 28px;
      animation: heroFadeUp 0.9s 0.40s ease both;
    }
    .hero-candidate-label {
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.20em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      margin-bottom: 8px;
      animation: heroFadeUp 0.9s 0.48s ease both;
    }
    .hero-candidate {
      display: inline-block;
      background: var(--white);
      color: var(--red-dark);
      font-family: var(--font-headings);
      font-size: clamp(1.4rem, 4vw, 2.4rem);
      font-weight: 700;
      padding: 12px 36px;
      border-radius: 60px;
      letter-spacing: 0.04em;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
      animation: heroFadeUp 0.9s 0.55s ease both;
    }
    .hero-candidate strong {
      color: var(--green);
    }
    .hero-candidate-cv, .hero-candidate-cg {
      margin-top: 12px;
      display: inline-block;
      padding: 12px 36px;
      border-radius: 60px;
      letter-spacing: 0.04em;
      box-shadow: 0 4px 24px rgba(0,0,0,0.3);
      animation: heroFadeUp 0.9s 0.55s ease both;
    }

    .hero-candidate-cv {
      background: var(--red);
      color: var(--white);
    }
    .hero-candidate-cv:hover {
      background: var(--red-dark);
    }
    .hero-candidate-cg {
      background: var(--green);
      color: var(--white);
    }
    .hero-candidate-cg:hover {
      background: var(--green-dark);
    }
    .hero-candidate-cg svg, .hero-candidate-cv svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }
    .hero-scroll-hint {
      position: absolute;
      bottom: 28px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255,255,255,0.6);
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      animation: bounce 2s infinite;
    }
    .hero-scroll-hint svg { width: 20px; height: 20px; }
    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    /* ── SECTION HEADING ───────────────────────────────────────── */
    .section-heading {
      text-align: center;
      margin-bottom: 52px;
    }
    .section-heading h2 {
      font-family: var(--font-headings);
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      font-weight: 900;
      color: var(--red-dark);
      letter-spacing: 0.02em;
    }
    .section-heading .underline {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 12px;
    }
    .section-heading .underline::before,
    .section-heading .underline::after {
      content: '';
      height: 2px;
      width: 60px;
      background: var(--border);
      border-radius: 1px;
    }
    .section-heading .dot {
      width: 8px; height: 8px;
      background: var(--red);
      border-radius: 50%;
    }

    /* ── CANDIDATI SECTION ─────────────────────────────────────── */
    #candidati {
      padding: 80px 24px;
      background: var(--off-white);
    }
    .candidati-inner {
      max-width: var(--max-w);
      margin: 0 auto;
    }
    .candidati-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 28px;
    }

    /* Candidate card */
    .card {
      background: var(--white);
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 2px 14px rgba(0,0,0,0.08);
      border: 1px solid var(--border);
      transition: transform 0.25s, box-shadow 0.25s;
      display: flex;
      flex-direction: column;
    }
    .card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 32px rgba(204,30,30,0.15);
    }
    .card-img-wrap {
      width: 100%;
      background: #f0eded;
    }
    .card-img-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }
    .card-body {
      padding: 18px 16px 16px;
      display: flex;
      flex-direction: column;
      flex: 1;
      gap: 12px;
    }
    .card-name {
      font-family: var(--font-headings);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.3;
    }
    .card-name .cognome {
      display: block;
      font-size: 1.05rem;
      color: var(--red-dark);
    }
    .card-links {
      display: flex;
      flex-direction: column;
      gap: 7px;
      margin-top: auto;
    }
    .card-link {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 0.78rem;
      font-weight: 600;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 7px 12px;
      border-radius: var(--radius);
      border: 1.5px solid transparent;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
      cursor: pointer;
    }
    .card-link.cv {
      background: var(--red);
      color: var(--white);
    }
    .card-link.cv:hover {
      background: var(--red-dark);
    }
    .card-link.cg {
      background: transparent;
      color: var(--green);
      border-color: var(--green);
    }
    .card-link.cg:hover {
      background: var(--green);
      color: var(--white);
    }
    .card-link svg {
      width: 14px;
      height: 14px;
      flex-shrink: 0;
    }

    /* ── FOOTER ────────────────────────────────────────────────── */
    #footer {
      background: var(--text-dark);
      border-top: 4px solid var(--red);
      padding: 28px 24px;
    }
    .footer-inner {
      max-width: var(--max-w);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }
    .footer-brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .footer-logo {
      width: 80px;
      height: 80px;
      object-fit: contain;
    }
    .footer-name {
      font-family: var(--font-headings);
      font-size: 1.05rem;
      font-weight: 700;
      color: var(--white);
    }
    .footer-name span {
      display: block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 500;
      color: rgba(255,255,255,0.5);
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }
    .footer-right {
      font-size: 0.85rem;
      font-weight: 500;
      color: rgba(255,255,255,0.55);
      letter-spacing: 0.04em;
      text-align: right;
    }
    .footer-right strong {
      display: block;
      color: rgba(255,255,255,0.9);
      font-size: 0.95rem;
      font-weight: 700;
    }

    /* ── ITALIAN FLAG ACCENT LINE ──────────────────────────────── */
    .flag-bar {
      height: 4px;
      background: linear-gradient(90deg, #CC1E1E 33.3%, #FFFFFF 33.3% 66.6%, #2D7A2D 66.6%);
    }

    /* ── RESPONSIVE BREAKPOINTS ────────────────────────────────── */

    /* 992px */
    @media (max-width: 992px) {
      .candidati-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 22px;
      }
    }

    /* 768px */
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: var(--white);
        border-bottom: 3px solid var(--red);
        padding: 16px;
        gap: 4px;
        box-shadow: 0 8px 24px rgba(0,0,0,0.12);
      }
      nav.open { display: flex; }
      nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
      }
      .candidati-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
      }
      #candidati { padding: 60px 16px; }
      .hero-logo { width: 200px; height: 200px; }
    }

    /* 480px */
    @media (max-width: 480px) {
      .header-name { font-size: 1rem; }
      .candidati-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
      }
      #candidati { padding: 48px 14px; }
      .hero-logo { width: 160px; height: 160px; }
      .hero-candidate { padding: 10px 22px; }
      .footer-inner { flex-direction: column; align-items: flex-start; }
      .footer-right { text-align: left; }
    }

