/* ============================================================
   Italian Fishing Guide — Florence Fishing Guide
   custom.css
   ============================================================ */

/* ── Google Fonts: già caricati via <link> in <head>, evitiamo duplicato @import ── */

/* ── CSS Variables ── */
:root {
  --primary-color: #1e4d2b;
  --primary-dark:  #12301a;
  --secondary-color: #c8a96e;
  --accent-color:  #e8830a;
  --text-dark:     #333333;
  --text-light:    #ffffff;
  --text-muted:    #6c757d;
  --bg-light:      #f5f0e8;
  --bg-dark:       #111c14;
  --card-shadow:   0 4px 20px rgba(0,0,0,0.10);
  --transition:    all 0.3s ease;
}

/* ── Base ── */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
  scroll-behavior: smooth;
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
}

/* ── Section Padding ── */
.section-padding {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .section-padding {
    padding-top: 48px;
    padding-bottom: 48px;
  }
}

/* ── Section Title ── */
.section-title {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title-light {
  color: var(--text-light);
}
.section-divider {
  width: 60px;
  height: 3px;
  background: var(--secondary-color);
  margin: 0 auto 2rem;
  border: none;
}

/* ══════════════════════════════════════════
   NAVBAR (sfondo beige come logo)
══════════════════════════════════════════ */
#mainNavbar {
  transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.3s ease;
  background: rgba(245,240,232,0.96);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 18px 0;
  border-bottom: 1px solid rgba(30,77,43,0.08);
}
#mainNavbar.scrolled {
  background: rgba(245,240,232,0.98) !important;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 16px rgba(30,77,43,0.12);
  padding: 10px 0;
}
#mainNavbar .navbar-brand {
  padding-top: 0;
  padding-bottom: 0;
}
#mainNavbar .navbar-brand img {
  height: 65px;
  width: auto;
  transition: var(--transition);
  border-radius: 0;
  box-shadow: none;
  background: none;
  filter: none;
}
#mainNavbar.scrolled .navbar-brand img {
  height: 48px;
  width: auto;
  filter: none;
}
#mainNavbar .nav-link {
  color: var(--primary-color) !important;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color 0.2s;
}
#mainNavbar .nav-link:hover,
#mainNavbar .nav-link.active {
  color: var(--accent-color) !important;
}
#mainNavbar.scrolled .nav-link {
  color: var(--primary-color) !important;
}
#mainNavbar.scrolled .nav-link:hover,
#mainNavbar.scrolled .nav-link.active {
  color: var(--accent-color) !important;
}
#mainNavbar .nav-link.btn-warning,
#mainNavbar .nav-link.btn-warning:hover,
#mainNavbar .nav-link.btn-warning.active,
#mainNavbar.scrolled .nav-link.btn-warning,
#mainNavbar.scrolled .nav-link.btn-warning:hover,
#mainNavbar.scrolled .nav-link.btn-warning.active {
  color: var(--bg-dark) !important;
}
.navbar-toggler {
  border-color: rgba(30,77,43,0.35);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830%2C77%2C43%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#mainNavbar.scrolled .navbar-toggler {
  border-color: rgba(30,77,43,0.35);
}
#mainNavbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2830%2C77%2C43%2C0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
@media (max-width: 991.98px) {
  #mainNavbar .navbar-collapse {
    background: rgba(245,240,232,0.98);
    margin-top: 12px;
    padding: 12px 16px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(30,77,43,0.1);
  }
}

/* ══════════════════════════════════════════
   HERO — Collage fotografico
══════════════════════════════════════════ */
#hero {
  padding-top: 101px;
  background: #1a1a1a;
}
.hero-collage {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: repeat(3, 1fr);
  gap: 3px;
  height: calc(100vh - 101px);
  min-height: 480px;
}
.hc-main {
  grid-column: 2;
  grid-row: 1 / 4;
  overflow: hidden;
}
.hc-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.hero-collage > .hc-thumb:nth-child(2) { grid-column: 1; grid-row: 1; }
.hero-collage > .hc-thumb:nth-child(3) { grid-column: 1; grid-row: 2 / 4; } /* portrait tall left */
.hero-collage > .hc-thumb:nth-child(4) { grid-column: 3; grid-row: 1 / 3; } /* portrait tall right */
.hero-collage > .hc-thumb:nth-child(5) { grid-column: 3; grid-row: 3; }
.hc-thumb {
  overflow: hidden;
}
.hc-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  transition: transform 0.4s ease;
}
.hc-thumb:hover img {
  transform: scale(1.05);
}
@media (max-width: 767px) {
  #mainNavbar .navbar-brand img {
    height: 52px;
  }
  #hero {
    padding-top: 88px;
  }
  .hero-collage {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 60vw repeat(3, 35vw);
    height: auto;
    min-height: auto;
  }
  .hc-main {
    grid-column: 1 / 3;
    grid-row: 1;
  }
  .hero-collage > .hc-thumb:nth-child(2) { grid-column: 1; grid-row: 2; }
  .hero-collage > .hc-thumb:nth-child(3) { grid-column: 1; grid-row: 3 / 5; } /* fish-2 portrait tall */
  .hero-collage > .hc-thumb:nth-child(4) { grid-column: 2; grid-row: 2 / 4; } /* fish-3 portrait tall */
  .hero-collage > .hc-thumb:nth-child(5) { grid-column: 2; grid-row: 4; }
}

/* ══════════════════════════════════════════
   CHI SONO
══════════════════════════════════════════ */
#chi-sono {
  background: #ffffff;
}
.stat-card {
  background: var(--bg-light);
  border-radius: 12px;
  padding: 20px 16px;
  text-align: center;
  border-left: 4px solid var(--secondary-color);
}
.stat-card .stat-icon {
  font-size: 1.6rem;
  color: var(--primary-color);
  margin-bottom: 8px;
}
.stat-card .stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  line-height: 1;
}
.stat-card .stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 4px;
}
.bio-img {
  width: 100%;
  max-height: 560px;
  border-radius: 16px;
  object-fit: cover;
  object-position: center center;
  display: block;
  margin: 0 auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.18);
}
.bio-author-logo {
  display: block;
  margin: 0 auto 1.5rem;
  max-height: 80px;
  width: auto;
}
@media (min-width: 992px) {
  .bio-author-logo {
    margin-left: 0;
    margin-right: auto;
  }
}

/* ══════════════════════════════════════════
   SERVIZI
══════════════════════════════════════════ */
#servizi {
  background: var(--bg-light);
}
.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 36px 28px;
  height: 100%;
  border: none;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-bottom: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
  border-bottom-color: var(--secondary-color);
}
.service-icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.service-icon i {
  font-size: 1.6rem;
  color: var(--secondary-color);
}
.service-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ══════════════════════════════════════════
   SPONSOR
══════════════════════════════════════════ */
#sponsors {
  background: #ffffff;
}
#sponsors .row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  gap: 32px 0;
}
#sponsors .row > [class*="col-"] {
  flex: 0 0 auto;
}
.sponsor-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 80px;
  padding: 8px 16px;
}
.sponsor-logo img {
  max-height: 60px;
  max-width: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%) opacity(0.65);
  transition: filter 0.3s ease;
}
.sponsor-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* ══════════════════════════════════════════
   GALLERIA
══════════════════════════════════════════ */
#galleria {
  background: var(--bg-light);
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 4/3;
  box-shadow: 0 6px 22px rgba(0,0,0,0.10);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
  display: block;
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(18,48,26,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.gallery-overlay i {
  font-size: 2rem;
  color: var(--text-light);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-item:hover img {
  transform: scale(1.08);
}

/* ── Lightbox ── */
#lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
#lightbox-overlay img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 28px;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  background: none;
  border: none;
  opacity: 0.85;
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.22); }

/* ══════════════════════════════════════════
   PREZZI / CTA
══════════════════════════════════════════ */
#prezzi {
  background: var(--bg-dark);
  position: relative;
  overflow: hidden;
}
#prezzi::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/florence-fishing-guide_img_price.JPG?v=20260525-1430') center/cover no-repeat;
  opacity: 0.14;
  z-index: 0;
}
#prezzi::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17,28,20,0.7) 0%, rgba(17,28,20,0.92) 100%);
  z-index: 1;
}
#prezzi .container {
  position: relative;
  z-index: 2;
}

/* Price cards */
.price-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(200,169,110,0.18);
  border-radius: 14px;
  padding: 32px 26px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--secondary-color);
  background: rgba(255,255,255,0.06);
}
.price-card .price-tag {
  display: inline-block;
  background: rgba(200,169,110,0.18);
  color: var(--secondary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.price-card .price-lake {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 6px;
  font-weight: 700;
}
.price-card .price-duration {
  color: rgba(255,255,255,0.55);
  font-size: 0.85rem;
  margin-bottom: 18px;
}
.price-card .price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary-color);
  line-height: 1;
  margin-bottom: 14px;
}
.price-card .price-amount span {
  font-size: 1.6rem;
  font-weight: 600;
  margin-left: 4px;
  vertical-align: top;
  position: relative;
  top: 6px;
}
.price-card .price-note {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}
.price-card-featured {
  background: linear-gradient(180deg, rgba(200,169,110,0.14) 0%, rgba(200,169,110,0.04) 100%);
  border-color: rgba(200,169,110,0.55);
  transform: translateY(-4px);
}
.price-card-featured:hover {
  transform: translateY(-10px);
}

/* Toggle bottone listino (collapse) */
.prezzi-toggle .prezzi-toggle-icon-hide,
.prezzi-toggle .prezzi-toggle-label-hide { display: none; }
.prezzi-toggle:not(.collapsed) .prezzi-toggle-icon-show,
.prezzi-toggle:not(.collapsed) .prezzi-toggle-label-show { display: none; }
.prezzi-toggle:not(.collapsed) .prezzi-toggle-icon-hide,
.prezzi-toggle:not(.collapsed) .prezzi-toggle-label-hide { display: inline; }

/* Price extras */
.price-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 26px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
}
.price-extra-item {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 280px;
}
.price-extra-item i {
  font-size: 1.4rem;
  color: var(--secondary-color);
  flex-shrink: 0;
}
.price-extra-label {
  color: rgba(255,255,255,0.85);
  font-size: 0.92rem;
  line-height: 1.4;
}
.price-extra-value {
  color: var(--secondary-color);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 2px;
}
.price-extra-value a {
  color: var(--secondary-color);
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   CONTATTI
══════════════════════════════════════════ */
#contatti {
  background: #ffffff;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}
.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--primary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  color: var(--secondary-color);
  font-size: 1rem;
}
.contact-info-text a {
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-info-text a:hover {
  color: var(--primary-color);
}
.contact-form-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--card-shadow);
}
@media (max-width: 576px) {
  .contact-form-card {
    padding: 28px 20px;
  }
}
.form-control, .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(30,77,43,0.18);
}
.form-label { font-weight: 700; font-size: 0.9rem; color: var(--text-dark); }

/* Form validation */
.form-control.is-invalid,
.form-check-input.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220,53,69,0.25) !important;
}
.form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

/* ══════════════════════════════════════════
   FOOTER
══════════════════════════════════════════ */
#footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 60px;
  padding-bottom: 32px;
}
#footer .footer-logo {
  height: 200px;
  width: auto;
  filter: none;
  margin-bottom: 16px;
  border: 1px solid #f5f0e8;
  padding: 2px;
  border-radius: 14px;
  background-color: #f5f0e8;
  box-sizing: content-box;
}
@media (max-width: 576px) {
  #footer .footer-logo {
    height: 120px;
  }
}
#footer h6 {
  color: var(--secondary-color);
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: 16px;
}
#footer a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 0.2s;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 8px;
}
#footer a:hover { color: var(--secondary-color); }
#footer .footer-divider {
  border-color: rgba(255,255,255,0.1);
  margin: 28px 0 20px;
}
.footer-social {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer-social a {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75) !important;
  margin-right: 0;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, color 0.2s !important;
  flex-shrink: 0;
}
.footer-social a i {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--bg-dark) !important;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
}
.footer-copy {
  flex: 1 1 auto;
}
.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.42);
  font-size: 0.78rem;
  letter-spacing: 0.03em;
}
.footer-credit a {
  display: inline-flex !important;
  align-items: center;
  margin: 0 !important;
  padding: 0;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.footer-credit a:hover { opacity: 1; }
.footer-credit img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}
@media (max-width: 575.98px) {
  .footer-bottom { justify-content: center; text-align: center; }
  .footer-copy { flex-basis: 100%; }
}

/* ══════════════════════════════════════════
   UTILITY
══════════════════════════════════════════ */
.btn-primary-custom {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--text-light);
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--text-light);
}
.btn-warning {
  font-weight: 700;
  color: var(--bg-dark) !important;
}

/* Animate on scroll */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* bg-primary-dark utility */
.bg-primary-dark {
  background-color: var(--primary-dark) !important;
}
.text-secondary-color {
  color: var(--secondary-color) !important;
}

/* ══════════════════════════════════════════
   SPOT
══════════════════════════════════════════ */
#spot {
  background: var(--bg-light);
}
.spot-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}
.spot-block {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.spot-block:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}
.spot-media {
  overflow: hidden;
  aspect-ratio: 16 / 9;
}
.spot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}
.spot-content {
  padding: 32px 32px 36px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.spot-title {
  font-family: 'Playfair Display', serif;
  color: var(--primary-color);
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.spot-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 18px;
}
.spot-content p {
  color: var(--text-dark);
  font-size: 0.95rem;
  line-height: 1.72;
  margin-bottom: 0.85rem;
}
.spot-meta-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.spot-meta-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.spot-meta-label i { color: var(--secondary-color); }
.spot-species {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.spot-species .badge {
  background: var(--primary-color);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.spot-seasons {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spot-seasons li {
  font-size: 0.88rem;
  color: var(--text-dark);
  padding: 3px 0;
}
.spot-seasons strong { color: var(--primary-color); }
.spot-services {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.07);
}
.spot-service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.spot-service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-dark);
  padding: 5px 0;
  line-height: 1.5;
}
.spot-service-list li i {
  color: var(--secondary-color);
  font-size: 0.85rem;
  margin-top: 5px;
  flex-shrink: 0;
}
.srv-price {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-left: 4px;
}
.srv-included {
  background: rgba(30,77,43,0.1);
  color: var(--primary-color);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 2px 10px;
  border-radius: 999px;
  margin-left: 6px;
}
@media (max-width: 767.98px) {
  .spot-list { grid-template-columns: 1fr; gap: 32px; }
  .spot-content { padding: 26px 22px 30px; }
  .spot-title { font-size: 1.4rem; }
  .spot-meta-row { grid-template-columns: 1fr; gap: 18px; }
}

.sponsor-logo img {
  display: block;
  margin: 0 auto;
}

/* ── Spot CTA "altro lago" — illustrazione stilizzata ── */
.spot-block-cta {
  background: linear-gradient(135deg, #ffffff 0%, var(--bg-light) 100%);
  border: 1px dashed rgba(30,77,43,0.18);
  grid-column: 1 / -1;
}
@media (min-width: 768px) {
  .spot-block-cta {
    display: grid;
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  }
  .spot-block-cta .spot-media {
    aspect-ratio: auto;
    min-height: 320px;
  }
}
.spot-media-illustrated {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 60%, #0b1d12 100%);
  position: relative;
  overflow: hidden;
}
.spot-media-illustrated::before,
.spot-media-illustrated::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(ellipse at 30% 40%, rgba(200,169,110,0.25) 0%, transparent 55%),
              radial-gradient(ellipse at 75% 65%, rgba(255,255,255,0.08) 0%, transparent 55%);
  pointer-events: none;
}
.spot-media-illustrated::before {
  top: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(200,169,110,0.1) 100%);
}
.spot-media-illustrated::after {
  bottom: 0;
  height: 55%;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(200,169,110,0.18) 0%, transparent 70%),
    repeating-linear-gradient(180deg, rgba(255,255,255,0.04) 0px, rgba(255,255,255,0.04) 2px, transparent 2px, transparent 18px);
}
.spot-illustration {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  z-index: 2;
  color: var(--secondary-color);
}
.spot-illustration i.fa-water {
  font-size: 5rem;
  opacity: 0.55;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.35));
}
.spot-illustration i.fa-fish-fins {
  font-size: 2.4rem;
  opacity: 0.8;
  transform: translateX(28px);
}


/* === Gallery "Le Nostre Uscite" - grid con tall portraits === */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: 1.5rem;
}
.gallery-grid > * { min-width: 0; }
.gallery-grid .gallery-tall { grid-row: span 2; }
.gallery-grid .gallery-item,
.gallery-grid .gallery-item img { height: 100%; }
@media (max-width: 991px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
}
@media (max-width: 575px) {
  .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
  .gallery-grid .gallery-tall { grid-row: span 2; }
}
/* Forza focus alto su foto con soggetto in cima */
.gallery-item img.focus-top,
.hc-thumb img.focus-top,
.hc-main img.focus-top { object-position: top center; }

/* Variante con foto reale al posto dell'illustrazione */
.spot-media-illustrated.has-photo { background: #1a1a1a; }
.spot-media-illustrated.has-photo::before,
.spot-media-illustrated.has-photo::after { display: none; }
.spot-media-illustrated.has-photo picture,
.spot-media-illustrated.has-photo picture > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
