    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:         #0d1117;
      --surface:    #161b22;
      --border:     #21262d;
      --accent:     #4b97cd;
      --accent-dim: rgba(75,151,205,0.10);
      --accent-glow:rgba(75,151,205,0.20);
      --text:       #e6edf3;
      --muted:      #7d8590;
      --white:      #ffffff;
      --serif:      'Barlow Condensed', sans-serif;
      --sans:       'Inter', sans-serif;
      --shell:      1280px;
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--sans);
      font-weight: 300;
      line-height: 1.7;
      overflow-x: hidden;
    }

    /* ═══════════════════════════════
       NAV — due righe
    ═══════════════════════════════ */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 100;
      background: rgba(13,17,23,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: var(--shell);
      margin: 0 auto;
      padding: 0.7rem 2rem 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    /* Riga 1: logo centrato + hamburger assoluto su mobile */
    .nav-top {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      padding-bottom: 0.6rem;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      text-decoration: none;
    }

    .nav-logo-img {
      height: 100px;
      width: auto;
      display: block;
    }

    /* Riga 2: menu centrato */
    .nav-bottom {
      width: 100%;
      border-top: 1px solid var(--border);
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 3rem;
      list-style: none;
      padding: 0.55rem 0;
    }

    .nav-links a {
      color: var(--muted);
      text-decoration: none;
      font-size: 0.78rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      transition: color 0.2s;
    }
    .nav-links a:hover,
    .nav-links a.active { color: var(--accent); }

    /* ═══════════════════════════════
       HERO — foto full-width
    ═══════════════════════════════ */
    .hero {
      position: relative;
      height: 100vh;
      min-height: 560px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
    }

    .hero-img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: 40% 50%;
      filter: brightness(0.42);
    }

    /* Placeholder scuro finché non hai la foto */
    .hero-placeholder {
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #1c1c1a 0%, #2e2820 50%, #1c1c1a 100%);
    }
    .hero-placeholder::after {
      content: '[ sostituire con: <img class="hero-img" src="../images/hero-web.jpg"> ]';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      color: #3a3a38;
      font-size: 0.75rem;
      letter-spacing: 0.08em;
      white-space: nowrap;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to top,
        rgba(13,17,23,0.97) 0%,
        rgba(13,17,23,0.5)  40%,
        rgba(13,17,23,0.15) 100%
      );
    }

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: var(--shell);
      margin: 0 auto;
      padding: 0 2rem 5rem;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 0.7rem;
      font-size: 0.72rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1.2rem;
    }
    .hero-eyebrow::before {
      content: '';
      width: 28px; height: 1px;
      background: var(--accent);
    }

    .hero h1 {
      font-family: var(--serif);
      font-size: clamp(3.2rem, 7vw, 6.5rem);
      font-weight: 800;
      line-height: 1.0;
      color: var(--white);
      max-width: 700px;
      margin-bottom: 1.4rem;
      letter-spacing: -0.01em;
    }
    .hero h1 em { font-style: normal; color: var(--accent); }

    .hero-sub {
      font-size: clamp(0.95rem, 1.2vw, 1.08rem);
      color: rgba(232,230,224,0.7);
      max-width: 500px;
      margin-bottom: 2.5rem;
      line-height: 1.85;
    }

    .hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

    .btn-primary {
      display: inline-block;
      padding: 0.85rem 2rem;
      background: var(--accent);
      color: #ffffff;
      text-decoration: none;
      font-weight: 500;
      font-size: 0.88rem;
      letter-spacing: 0.05em;
      transition: background 0.2s, transform 0.2s;
    }
    .btn-primary:hover { background: #5aaee0; transform: translateY(-2px); }

    .btn-ghost {
      display: inline-block;
      padding: 0.85rem 2rem;
      border: 1px solid rgba(232,230,224,0.25);
      color: rgba(232,230,224,0.7);
      text-decoration: none;
      font-size: 0.88rem;
      letter-spacing: 0.05em;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: var(--accent); color: var(--accent); }

    /* ═══════════════════════════════
       SHELL — wrapper centrato
    ═══════════════════════════════ */
    .shell {
      max-width: var(--shell);
      margin: 0 auto;
      padding: 0 2rem;
    }

    .section-eyebrow {
      font-size: 0.7rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 0.9rem;
    }

    .section-title {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 3.5vw, 3.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 3.5rem;
      letter-spacing: 0.01em;
    }

    /* ═══════════════════════════════
       SERVIZI
    ═══════════════════════════════ */
    .services { padding: 7rem 0; }

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

    .service-item {
      padding: 3rem 2.5rem;
      border-right: 1px solid var(--border);
      transition: background 0.3s;
    }
    .service-item:last-child { border-right: none; }
    .service-item:hover { background: var(--surface); }
    .service-item:hover .sn { color: var(--accent); }

    .sn {
      font-family: var(--serif);
      font-size: 4.5rem;
      font-weight: 900;
      color: var(--border);
      line-height: 1;
      margin-bottom: 1.2rem;
      transition: color 0.3s;
    }

    .service-name {
      font-family: var(--serif);
      font-size: 1.35rem;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.8rem;
    }

    .service-desc {
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.8;
    }

    /* ═══════════════════════════════
       PROCESSO
    ═══════════════════════════════ */
    .process {
      padding: 7rem 0;
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

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

    .step {
      background: var(--surface);
      padding: 2.5rem 1.5rem;
      text-align: center;
      transition: background 0.2s;
    }
    .step:hover { background: #1f1f1d; }

    .step-num {
      width: 60px; height: 60px;
      border: 1px solid var(--border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      font-family: var(--serif);
      font-size: 1.1rem;
      font-weight: 700;
      color: var(--accent);
      transition: all 0.2s;
    }
    .step:hover .step-num { background: var(--accent); color: var(--bg); border-color: var(--accent); }

    .step-title { font-size: 0.9rem; font-weight: 500; color: var(--white); margin-bottom: 0.5rem; }
    .step-desc { font-size: 0.82rem; color: var(--muted); line-height: 1.7; }

    /* ═══════════════════════════════
       PERCHÉ
    ═══════════════════════════════ */
    .why { padding: 7rem 0; }

    .why-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 7rem;
      align-items: start;
      margin-top: 3.5rem;
    }

    .why-text p { color: var(--muted); margin-bottom: 1.3rem; font-size: 0.97rem; line-height: 1.9; }
    .why-text p strong { color: var(--text); font-weight: 500; }

    .why-list { list-style: none; }
    .why-list li {
      padding: 1.2rem 0;
      border-bottom: 1px solid var(--border);
      display: flex;
      gap: 1rem;
      font-size: 0.93rem;
      color: var(--muted);
      line-height: 1.6;
    }
    .why-list li:first-child { border-top: 1px solid var(--border); }
    .why-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }

    /* ═══════════════════════════════
       ZONE
    ═══════════════════════════════ */
    .zone {
      padding: 5rem 0;
      background: var(--accent-dim);
      border-top: 1px solid rgba(75,151,205,0.2);
      border-bottom: 1px solid rgba(75,151,205,0.2);
    }

    .zone-inner { display: flex; align-items: center; gap: 5rem; }
    .zone-text { flex: 0 0 320px; }

    .zone-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.7rem; }

    .zone-title {
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2vw, 1.9rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 0.8rem;
      line-height: 1.25;
    }

    .zone-desc { color: var(--muted); font-size: 0.9rem; }

    .zone-cities { display: flex; flex-wrap: wrap; gap: 0.6rem; flex: 1; }

    .city-tag {
      padding: 0.45rem 1.1rem;
      border: 1px solid rgba(75,151,205,0.35);
      color: var(--accent);
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      text-decoration: none;
      transition: all 0.2s;
    }
    .city-tag:hover { background: var(--accent); color: var(--white); }
    .city-tag.dim { border-style: dashed; cursor: default; opacity: 0.5; }

    /* ═══════════════════════════════
       CTA FINALE
    ═══════════════════════════════ */
    .cta-section { padding: 9rem 2rem; text-align: center; }

    .cta-section h2 {
      font-family: var(--serif);
      font-size: clamp(2.2rem, 4.5vw, 3.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.2rem;
    }
    .cta-section h2 em { font-style: normal; color: var(--accent); }
    .cta-section p { color: var(--muted); font-size: 1rem; margin-bottom: 2.5rem; }

    /* ═══════════════════════════════
       FOOTER
    ═══════════════════════════════ */
    footer { border-top: 1px solid var(--border); }

    .footer-inner {
      max-width: var(--shell);
      margin: 0 auto;
      padding: 1.8rem 2rem 1.2rem;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .footer-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding-bottom: 1rem;
      border-bottom: 1px solid var(--border);
    }

    .footer-tagline {
      padding-top: 0.9rem;
      font-size: 0.72rem;
      color: rgba(125,133,144,0.45);
      letter-spacing: 0.04em;
      font-style: italic;
      text-align: center;
    }

    footer p { font-size: 0.8rem; color: var(--muted); }
    .footer-links { display: flex; gap: 2rem; }
    .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
    .footer-links a:hover { color: var(--accent); }

    /* ═══════════════════════════════
       HAMBURGER
    ═══════════════════════════════ */
    .nav-burger {
      display: none;
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      width: 36px;
      height: 36px;
      cursor: pointer;
      background: none;
      border: none;
      padding: 4px;
      z-index: 200;
    }

    .nav-burger span {
      display: block;
      width: 100%;
      height: 2px;
      background: var(--text);
      border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
      transform-origin: center;
    }

    /* X quando aperto */
    .nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-burger.open span:nth-child(2) { opacity: 0; }
    .nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Menu mobile a tendina */
    .nav-mobile {
      display: none;
      position: fixed;
      top: 55px;
      left: 0; right: 0;
      background: rgba(13,17,23,0.98);
      backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--border);
      padding: 1.5rem 2rem 2rem;
      z-index: 99;
      flex-direction: column;
      gap: 0;
    }

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

    .nav-mobile a {
      color: var(--muted);
      text-decoration: none;
      font-size: 1rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 1rem 0;
      border-bottom: 1px solid var(--border);
      transition: color 0.2s;
    }
    .nav-mobile a:last-child { border-bottom: none; }
    .nav-mobile a:hover,
    .nav-mobile a.active { color: var(--accent); }

    /* ═══════════════════════════════
       MOBILE
    ═══════════════════════════════ */
    @media (max-width: 860px) {
      .nav-logo-img { height: 45px; }
      .nav-bottom { display: none; }
      .nav-burger { display: flex; }

      .hero-content { padding: 0 1.2rem 3.5rem; }
      .shell { padding: 0 1.2rem; }
      .services-grid { grid-template-columns: 1fr; }
      .service-item { border-right: none; border-bottom: 1px solid var(--border); }
      .service-item:last-child { border-bottom: none; }
      .process-steps { grid-template-columns: 1fr 1fr; }
      .why-grid { grid-template-columns: 1fr; gap: 3rem; }
      .zone-inner { flex-direction: column; gap: 2rem; }
      .zone-text { flex: none; }
      .footer-top { flex-direction: column; gap: 1rem; text-align: center; }
    }

    /* ═══════════════════════════════
       ANIMAZIONI
    ═══════════════════════════════ */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow { animation: fadeUp 0.6s ease both; }
    .hero h1      { animation: fadeUp 0.6s 0.1s ease both; }
    .hero-sub     { animation: fadeUp 0.6s 0.2s ease both; }
    .hero-cta     { animation: fadeUp 0.6s 0.3s ease both; }

/* ═══════════════════════════════
   FOTOGRAFIA HUB — fotografia.html
═══════════════════════════════ */

.foto-hero .page-hero-inner {
  grid-template-columns: 1fr;
  text-align: center;
}

.page-hero-centered {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-hero-lead.centered { text-align: center; }

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

/* Ultima card occupa 2 colonne per simmetria con 5 elementi su 3 colonne */
.cat-card:nth-child(4) { grid-column: span 1; }

.cat-card {
  display: block;
  text-decoration: none;
  background: var(--bg);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.cat-card:hover { background: var(--surface); }

.cat-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.cat-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.cat-card:hover .cat-img-wrap img { transform: scale(1.04); }

.cat-placeholder {
  width: 100%;
  height: 100%;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--border);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  position: absolute;
  inset: 0;
}

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.7) 0%, transparent 60%);
}

.cat-info {
  padding: 1.8rem 2rem;
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.cat-num {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--border);
  line-height: 1;
  transition: color 0.3s;
  flex-shrink: 0;
}

.cat-card:hover .cat-num { color: var(--accent); }

.cat-title {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.cat-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 0.8rem;
}

.cat-link {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════
   GALLERIA CATEGORIA — matrimoni.html ecc.
═══════════════════════════════ */

.gallery-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.gallery-hero-img-wrap {
  position: absolute;
  inset: 0;
}

.gallery-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.4);
}

.gallery-hero-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--surface) 0%, #1a2030 100%);
}

.gallery-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,17,23,0.95) 0%, rgba(13,17,23,0.2) 100%);
}

.gallery-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem 3rem;
}

.back-link {
  display: inline-block;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
  transition: color 0.2s;
}
.back-link:hover { color: var(--accent); }

.gallery-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.gallery-hero-sub {
  font-size: 0.95rem;
  color: rgba(232,230,224,0.65);
  max-width: 520px;
  line-height: 1.8;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.breadcrumb-list {
  display: flex;
  gap: 0.5rem;
  list-style: none;
  font-size: 0.78rem;
  color: var(--muted);
  align-items: center;
}

.breadcrumb-list li::after { content: '/'; margin-left: 0.5rem; color: var(--border); }
.breadcrumb-list li:last-child::after { display: none; }
.breadcrumb-list a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--accent); }
.breadcrumb-list li:last-child { color: var(--text); }

/* Intro testo SEO */
.gallery-intro {
  padding: 3rem 0;
  border-bottom: 1px solid var(--border);
}

.gallery-intro-inner {
  display: flex;
  gap: 3rem;
  max-width: 820px;
}

.gallery-intro-inner p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.85;
  flex: 1;
}

.gallery-intro-inner p strong { color: var(--text); font-weight: 500; }

/* Griglia galleria */
.gallery-section { padding: 4rem 0 6rem; }

.gallery-grid {
  columns: 3;
  column-gap: 8px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 8px;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  display: block;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.3s;
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13,17,23,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery-item-overlay span {
  color: var(--white);
  font-size: 2.5rem;
  font-weight: 300;
  line-height: 1;
}

.gallery-item:hover img { transform: scale(1.03); filter: brightness(0.85); }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

/* ═══════════════════════════════
   LIGHTBOX
═══════════════════════════════ */

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5,8,12,0.97);
  z-index: 999;
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lb-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lb-img {
  max-width: 90vw;
  max-height: 82vh;
  object-fit: contain;
  display: block;
  user-select: none;
}

.lb-caption {
  margin-top: 0.8rem;
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  text-align: center;
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 1.1rem;
  width: 42px;
  height: 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1000;
}

.lb-close:hover { border-color: var(--accent); color: var(--white); }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 2rem;
  width: 52px;
  height: 52px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  z-index: 1000;
  line-height: 1;
}

.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover,
.lb-next:hover { border-color: var(--accent); color: var(--white); }

/* Navigazione altre categorie */
.cat-nav {
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.cat-nav-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.cat-nav-item {
  padding: 0.7rem 1.4rem;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
}

.cat-nav-item:hover { border-color: var(--accent); color: var(--accent); }

/* ── Page hero base (usato da chi-sono) ── */
.page-hero {
  padding-top: 180px;
  padding-bottom: 6rem;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.page-hero h1 em { font-style: normal; color: var(--accent); }

.page-hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  max-width: 480px;
}

/* ── Mobile foto ── */
@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
  .cat-card:nth-child(4) { grid-column: span 1; }
  .gallery-grid { columns: 2; }
  .gallery-intro-inner { flex-direction: column; gap: 1rem; }
  .lb-prev { left: 0.5rem; }
  .lb-next { right: 0.5rem; }
  .page-hero { padding-top: 130px; padding-bottom: 4rem; }
  .page-hero-inner { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 500px) {
  .gallery-grid { columns: 1; }
}

/* ═══════════════════════════════
   SLIDER HERO — fotografia.html
═══════════════════════════════ */

.foto-slider-hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.slider-track {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.slide.active { opacity: 1; }

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.42);
  display: block;
}

.slide-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0d1117 0%, #161b22 50%, #0d1117 100%);
  position: absolute;
  inset: 0;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(13,17,23,0.95) 0%,
    rgba(13,17,23,0.45) 40%,
    rgba(13,17,23,0.15) 100%
  );
}

/* Etichetta categoria in basso a destra */
.slide-label {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  font-family: var(--serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.25);
  transition: color 0.3s;
  z-index: 2;
}

.slide.active .slide-label { color: rgba(255,255,255,0.5); }

/* Contenuto testo */
.slider-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.slider-content h1 {
  font-family: var(--serif);
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.2rem;
  letter-spacing: -0.01em;
}

.slider-content h1 em { font-style: normal; color: var(--accent); }

.slider-sub {
  font-size: clamp(0.92rem, 1.2vw, 1.05rem);
  color: rgba(230,237,243,0.65);
  line-height: 1.85;
  max-width: 520px;
}

/* Dots */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.dot {
  width: 28px;
  height: 3px;
  background: rgba(255,255,255,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.dot.active {
  background: var(--accent);
  width: 44px;
}

/* Frecce slider */
.slider-prev,
.slider-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.4);
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
  line-height: 1;
}

.slider-prev { left: 1.5rem; }
.slider-next { right: 1.5rem; }

.slider-prev:hover,
.slider-next:hover {
  border-color: var(--accent);
  color: var(--white);
}

@media (max-width: 860px) {
  .slider-prev, .slider-next { display: none; }
  .slider-content { padding: 0 1.2rem 5rem; }
}

/* ═══════════════════════════════
   PAGINE GEOGRAFICHE
═══════════════════════════════ */

.geo-hero {
  padding-top: 160px;
  padding-bottom: 6rem;
  border-bottom: 1px solid var(--border);
}

.geo-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1.4rem;
  letter-spacing: -0.01em;
}

.geo-hero h1 em { font-style: normal; color: var(--accent); }

.geo-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.geo-body { padding: 6rem 0; }

.geo-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 5rem;
  align-items: start;
}

.geo-content p {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.9;
  margin-bottom: 1.3rem;
}

.geo-content p strong { color: var(--text); font-weight: 500; }

.geo-sub-title {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.geo-list {
  list-style: none;
  margin-bottom: 1.5rem;
}

.geo-list li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  display: flex;
  gap: 0.7rem;
}

.geo-list li:first-child { border-top: 1px solid var(--border); }
.geo-list li::before { content: '→'; color: var(--accent); flex-shrink: 0; }
.geo-list li strong { color: var(--text); font-weight: 500; }

/* Sidebar */
.geo-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: sticky;
  top: 130px;
}

.geo-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.geo-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.geo-zone-list {
  list-style: none;
}

.geo-zone-list li {
  font-size: 0.88rem;
  color: var(--muted);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
}

.geo-zone-list li:last-child { border-bottom: none; }

.geo-card-text {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.geo-other-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.geo-other-links a {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.geo-other-links a:last-child { border-bottom: none; }
.geo-other-links a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .geo-hero { padding-top: 130px; padding-bottom: 4rem; }
  .geo-grid { grid-template-columns: 1fr; gap: 3rem; }
  .geo-sidebar { position: static; }
}

/* ═══════════════════════════════
   CHI SONO
═══════════════════════════════ */

.page-hero-text .section-eyebrow { margin-bottom: 1rem; }

.photo-wrap { position: relative; }

.photo-box {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-placeholder-label {
  color: var(--border);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  padding: 2rem;
}

.photo-box::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 4px;
  background: var(--accent);
  z-index: 1;
}

.quote-section {
  padding: 5rem 0;
  background: var(--accent-dim);
  border-top: 1px solid rgba(75,151,205,0.2);
  border-bottom: 1px solid rgba(75,151,205,0.2);
}

.quote-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 3rem;
}

.quote-img-wrap {
  flex: 1;
  display: flex;
  justify-content: center;
}

.quote-img-wrap img {
  max-width: 600px;
  width: 100%;
  height: auto;
}

.quote-text-fallback {
  flex: 1;
  border-left: 3px solid var(--accent);
  padding-left: 2rem;
}

.quote-text-fallback blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.quote-text-fallback cite {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

.bio-section { padding: 7rem 0; }

.bio-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 6rem;
  align-items: start;
}

.bio-sidebar-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.bio-facts { list-style: none; }

.bio-facts li {
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.bio-facts li:first-child { border-top: 1px solid var(--border); }

.bio-facts li strong {
  color: var(--text);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.bio-content p {
  color: var(--muted);
  font-size: 0.97rem;
  line-height: 1.9;
  margin-bottom: 1.4rem;
}

.bio-content p strong { color: var(--text); font-weight: 500; }

.skills-section {
  padding: 6rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.skill-item {
  background: var(--surface);
  padding: 2.5rem 2rem;
  transition: background 0.2s;
}

.skill-item:hover { background: var(--bg); }

.skill-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
  color: var(--accent);
}

.skill-name {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.skill-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
}

.about-cta {
  padding: 8rem 2rem;
  text-align: center;
}

.about-cta h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.1;
}

.about-cta h2 em { font-style: normal; color: var(--accent); }
.about-cta p { color: var(--muted); margin-bottom: 2.5rem; font-size: 1rem; }

@media (max-width: 860px) {
  .bio-inner { grid-template-columns: 1fr; gap: 3rem; }
  .skills-grid { grid-template-columns: 1fr 1fr; }
  .quote-inner { flex-direction: column; }
}

/* Esempio nel tuo CSS */
.fas {
    color: #4b97cd; /* Il tuo azzurro */
    font-size: 1.8rem; /* La grandezza dell'icona */
    margin-bottom: 15px;
    display: block; /* Per metterla sopra il titolo */
}

/* Effetto al passaggio del mouse sulla card */
.card:hover .fas {
    color: #ffffff;
    transform: scale(1.1);
    transition: 0.3s;
}

/* ═══════════════════════════════
   CONTATTI
═══════════════════════════════ */

.contact-hero {
  padding-top: 180px;
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--border);
}

.contact-hero-inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
}

.contact-hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 800;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.contact-hero h1 em { font-style: normal; color: var(--accent); }

.contact-hero-sub {
  font-size: 1rem;
  color: var(--muted);
  max-width: 500px;
  line-height: 1.8;
}

.contact-main { padding: 6rem 0; }

.contact-grid {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 7rem;
  align-items: start;
}

.contact-info-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.contact-items { list-style: none; margin-bottom: 3rem; }

.contact-items li {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.contact-items li:first-child { border-top: 1px solid var(--border); }

.contact-item-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}

.contact-item-value {
  font-size: 0.95rem;
  color: var(--text);
}

.contact-item-value a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-item-value a:hover { color: var(--accent); }

.contact-note {
  padding: 1.5rem;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.contact-note strong { color: var(--text); font-weight: 500; }

.form-title {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 2rem;
  line-height: 1.1;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  padding: 0.85rem 1rem;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

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

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

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234b97cd' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--surface); color: var(--text); }

.form-group textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

.form-privacy {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  cursor: pointer;
}

.form-privacy input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--accent);
  cursor: pointer;
}

.form-privacy-text {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.6;
}

.form-privacy-text a { color: var(--accent); text-decoration: none; }

.recaptcha-note {
  font-size: 0.75rem;
  color: var(--border);
  line-height: 1.5;
}

.btn-submit {
  display: inline-block;
  padding: 1rem 2.5rem;
  background: var(--accent);
  color: #ffffff;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  align-self: flex-start;
}

.btn-submit:hover { background: #5aaee0; transform: translateY(-2px); }

.form-success {
  display: none;
  padding: 2rem;
  background: var(--accent-dim);
  border: 1px solid rgba(75,151,205,0.3);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-success.visible { display: block; }
.form-success p { color: var(--text); font-size: 0.95rem; }
.form-success strong { color: var(--accent); }

@media (max-width: 860px) {
  .contact-hero { padding-top: 130px; }
  .contact-grid { grid-template-columns: 1fr; gap: 4rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════
   PREZZI
═══════════════════════════════ */

.pricing {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-intro {
  font-size: 0.97rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.85;
  margin-top: -2rem;
  margin-bottom: 3.5rem;
}

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

.pricing-card {
  background: var(--surface);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: background 0.2s;
}

.pricing-card:hover { background: var(--bg); }

.pricing-card.featured {
  background: var(--bg);
  border-top: 3px solid var(--accent);
}

.pricing-badge {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.pricing-name {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.8rem;
}

.pricing-desc {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--border);
}

.pricing-features {
  list-style: none;
  flex: 1;
  margin-bottom: 2rem;
}

.pricing-features li {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
}

.pricing-features li:last-child { border-bottom: none; }

.pricing-features li::before {
  content: '✓';
  color: var(--accent);
  flex-shrink: 0;
  font-size: 0.78rem;
  margin-top: 0.1rem;
}

.pricing-cta {
  display: block;
  text-align: center;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  color: var(--muted);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  margin-top: auto;
}

.pricing-cta:hover,
.pricing-card.featured .pricing-cta {
  border-color: var(--accent);
  color: var(--white);
  background: var(--accent);
}

.pricing-card.featured .pricing-cta:hover {
  background: #5aaee0;
}

/* Nota fotografica */
.pricing-note {
  margin-top: 2.5rem;
  padding: 1.5rem 2rem;
  background: var(--accent-dim);
  border-left: 3px solid var(--accent);
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
}

.pricing-note-icon {
  font-size: 1.2rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.pricing-note p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

.pricing-note p strong { color: var(--text); font-weight: 500; }

.pricing-note a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.pricing-note a:hover { opacity: 0.8; }

@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-note { flex-direction: column; gap: 0.8rem; }
}

/* ═══════════════════════════════
   PRIVACY
═══════════════════════════════ */

.privacy-hero {
  padding-top: 220px;
  padding-bottom: 4rem;
  border-bottom: 1px solid var(--border);
}

.privacy-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.privacy-update {
  font-size: 0.8rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}

.privacy-body { padding: 5rem 0 8rem; }

.privacy-content {
  max-width: 760px;
}

.privacy-block {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

.privacy-block:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.privacy-block h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.privacy-block h3 {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  margin: 1.5rem 0 0.6rem;
  letter-spacing: 0.03em;
}

.privacy-block p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 0.9rem;
}

.privacy-block p:last-child { margin-bottom: 0; }

.privacy-block p strong { color: var(--text); font-weight: 500; }

.privacy-block a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.privacy-block a:hover { opacity: 0.8; }

.privacy-list {
  list-style: none;
  margin: 0.8rem 0 1rem;
}

.privacy-list li {
  font-size: 0.9rem;
  color: var(--muted);
  padding: 0.4rem 0;
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.7;
}

.privacy-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-size: 0.78rem;
}

@media (max-width: 860px) {
  .privacy-hero { padding-top: 160px; }
}

/* reCAPTCHA e form error */
.g-recaptcha { margin: 0.5rem 0; }

.form-error {
  display: none;
  padding: 2rem;
  background: rgba(224,90,90,0.08);
  border: 1px solid rgba(224,90,90,0.3);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-error.visible { display: block; }
.form-error p { color: var(--text); font-size: 0.95rem; }
.form-error strong { color: #e05a5a; }

/* reCAPTCHA e form error */
.g-recaptcha { margin: 0.5rem 0; }

.form-error {
  display: none;
  padding: 2rem;
  background: rgba(224,90,90,0.08);
  border: 1px solid rgba(224,90,90,0.3);
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-error.visible { display: block; }
.form-error p { color: var(--text); font-size: 0.95rem; }
.form-error strong { color: #e05a5a; }

/*BAND CARD*/
.band-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: border-color 0.2s;
}
.band-card:hover { border-color: var(--accent); }
.band-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.band-card strong { color: var(--white); font-size: 1rem; }
.band-card span:last-child { font-size: 0.83rem; color: var(--muted); }
.band-card::after {
  content: '⚠';
  margin-left: auto;
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.band-card:hover::after { opacity: 1; }

@media (max-width: 860px) {
  .band-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .band-card::after {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
  }
  .band-card { position: relative; }
}