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

    /* ─── TOKENS — all colours WCAG AA compliant ─── */
    :root {
      --c-terra:        #A04A2A; /* 5.2:1 on white */
      --c-terra-light:  #FBEEE8;
      --c-terra-border: #E2A882;
      --c-verde:        #2C4A3E; /* 9.4:1 on white */
      --c-verde-light:  #E5F0EC;
      --c-oro:          #7A5C1E; /* 6.1:1 on white */
      --c-oro-light:    #FDF0D4;
      --c-cream:        #FAF7F2;
      --c-ink:          #1A120B; /* 17:1 on white */
      --c-ink-mid:      #4A3B30; /* 9:1 on white */
      --c-ink-muted:    #6F6058; /* 4.6:1 on white */
      --c-border:       #DDD4CB;
      --c-white:        #FFFFFF;
      --c-focus:        #005FCC;

      --font-body:    -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
      --font-heading: 'Playfair Display', Georgia, "Times New Roman", serif;

      --r-sm: 6px;
      --r-md: 12px;
      --r-lg: 20px;
      --shadow: 0 2px 16px rgba(26,18,11,.08);
      --t: .2s ease;
    }

    /* ─── ACCESSIBILITY UTILITIES ─── */
    .sr-only {
      position: absolute; width: 1px; height: 1px;
      padding: 0; margin: -1px; overflow: hidden;
      clip: rect(0,0,0,0); white-space: nowrap; border: 0;
    }

    .skip-link {
      position: absolute; top: -100px; left: 1rem;
      background: var(--c-verde); color: #fff;
      padding: .5rem 1rem; border-radius: var(--r-sm);
      font-size: .9rem; font-weight: 500;
      text-decoration: none; z-index: 9999;
    }
    .skip-link:focus { top: .5rem; }

    :focus-visible {
      outline: 3px solid var(--c-focus);
      outline-offset: 3px;
    }

    /* ─── BASE ─── */
    html { scroll-behavior: smooth; font-size: 16px; }

    body {
      font-family: var(--font-body);
      background: var(--c-cream);
      color: var(--c-ink);
      line-height: 1.65;
    }

    h1, h2, h3 {
      font-family: var(--font-heading);
      line-height: 1.2;
      letter-spacing: -.02em;
    }
    h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 600; }
    h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 600; }
    h3 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); }
    p  { max-width: 65ch; }

    a { color: var(--c-terra); text-underline-offset: 3px; }
    a:hover { text-decoration: underline; }

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

    /* ─── LAYOUT ─── */
    .container {
      width: 100%;
      max-width: 1100px;
      margin-inline: auto;
      padding-inline: clamp(1rem, 5vw, 2.5rem);
    }
    .section { padding-block: clamp(3rem, 8vw, 5.5rem); }
    .section--alt { background: var(--c-white); }

    /* ─── COMPONENTS ─── */
    .eyebrow {
      display: inline-block;
      font-size: .72rem; font-weight: 600;
      letter-spacing: .1em; text-transform: uppercase;
      color: var(--c-terra);
      margin-bottom: .6rem;
    }
    .section-header { margin-bottom: 2.25rem; }
    .section-header p { color: var(--c-ink-mid); margin-top: .4rem; font-size: 1.05rem; }

    /* Buttons — min 44×44px touch target */
    .btn {
      display: inline-flex; align-items: center; gap: .4rem;
      min-height: 44px; padding: .7rem 1.4rem;
      border-radius: 50px;
      font-family: var(--font-body); font-size: .9375rem; font-weight: 500;
      text-decoration: none; border: 2px solid transparent;
      cursor: pointer; white-space: nowrap;
      transition: background var(--t), color var(--t), border-color var(--t);
    }
    .btn-primary { background: var(--c-terra); color: #fff; border-color: var(--c-terra); }
    .btn-primary:hover, .btn-primary:focus-visible {
      background: var(--c-verde); border-color: var(--c-verde);
      color: #fff; text-decoration: none;
    }
    .btn-outline { background: transparent; color: var(--c-terra); border-color: var(--c-terra); }
    .btn-outline:hover, .btn-outline:focus-visible {
      background: var(--c-terra); color: #fff; text-decoration: none;
    }
    .btn-lg { padding: .85rem 1.85rem; font-size: 1rem; }

    /* ─── HEADER ─── */
    .site-header {
      position: sticky; top: 0; z-index: 100;
      background: rgba(250,247,242,.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--c-border);
    }
    .nav {
      display: flex; align-items: center;
      justify-content: space-between;
      height: 60px; gap: 1rem;
    }
    .nav-logo {
      font-family: var(--font-heading); font-size: 1.2rem; font-weight: 600;
      color: var(--c-ink); text-decoration: none; white-space: nowrap;
    }
    .nav-logo span { color: var(--c-terra); font-style: italic; }

    .nav-links {
      display: none; list-style: none; gap: 1.5rem;
    }
    .nav-links a {
      font-size: .9rem; font-weight: 500;
      color: var(--c-ink-mid); text-decoration: none;
    }
    .nav-links a:hover, .nav-links a[aria-current] { color: var(--c-terra); }

    /* Hamburger */
    .nav-toggle {
      display: flex; flex-direction: column;
      justify-content: center; gap: 5px;
      width: 44px; height: 44px;
      background: none; border: none; cursor: pointer;
      padding: 8px; border-radius: var(--r-sm);
    }
    .nav-toggle span {
      display: block; height: 2px;
      background: var(--c-ink); border-radius: 2px;
      transition: transform var(--t), opacity var(--t);
    }
    .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
    .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    #mobile-menu {
      display: none; background: var(--c-white);
      border-bottom: 1px solid var(--c-border); padding: .75rem 1rem;
    }
    #mobile-menu.is-open { display: block; }
    #mobile-menu ul { list-style: none; display: flex; flex-direction: column; }
    #mobile-menu a {
      display: block; padding: .75rem 1rem; min-height: 44px;
      font-size: 1rem; font-weight: 500;
      color: var(--c-ink-mid); text-decoration: none;
      border-radius: var(--r-sm);
    }
    #mobile-menu a:hover { background: var(--c-cream); color: var(--c-terra); }

    @media (min-width: 768px) {
      .nav-links { display: flex; }
      .nav-toggle { display: none; }
    }

    /* ─── HERO ─── */
    .hero {
      display: grid; gap: 2.5rem;
      padding-block: clamp(2.5rem, 7vw, 5rem);
    }
    @media (min-width: 860px) {
      .hero { grid-template-columns: 1fr 1fr; align-items: center; }
    }
    .hero__text h1 { margin-bottom: .875rem; }
    .hero__text h1 em { color: var(--c-terra); font-style: italic; }
    .hero__text > p { color: var(--c-ink-mid); font-size: 1.05rem; margin-bottom: 1.5rem; }

    .hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.5rem; }
    .badge {
      font-size: .78rem; font-weight: 500; padding: .3rem .8rem;
      border-radius: 50px; border: 1px solid var(--c-terra-border);
      background: var(--c-terra-light); color: var(--c-terra);
    }

    /* Search card */
    .search-card {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-lg);
      padding: 1.5rem;
      box-shadow: var(--shadow);
    }
    .search-legend {
      font-family: var(--font-heading);
      font-size: 1.05rem; font-weight: 600;
      display: block; margin-bottom: 1.1rem;
    }
    .search-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: .65rem; margin-bottom: .65rem;
    }
    @media (max-width: 480px) { .search-grid { grid-template-columns: 1fr; } }

    .field { display: flex; flex-direction: column; gap: .3rem; }
    .field label {
      font-size: .72rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--c-ink-muted);
    }
    .field input, .field select {
      font-family: var(--font-body); font-size: .9375rem;
      color: var(--c-ink); background: var(--c-cream);
      border: 1.5px solid var(--c-border);
      border-radius: var(--r-sm);
      padding: .6rem .85rem; min-height: 44px; width: 100%;
      transition: border-color var(--t);
    }
    .field input:focus, .field select:focus {
      outline: none; border-color: var(--c-terra); background: var(--c-white);
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: var(--c-verde); color: #fff;
      padding-block: 1.25rem;
    }
    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1rem; text-align: center;
    }
    .stats-grid dt { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 600; }
    .stats-grid dd { font-size: .75rem; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }

    /* ─── CARDS ─── */
    .cards-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(min(290px, 100%), 1fr));
      gap: 1.5rem;
    }

    .offer-card {
      background: var(--c-white);
      border: 1px solid var(--c-border);
      border-radius: var(--r-md);
      overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: var(--shadow);
      transition: box-shadow var(--t), transform var(--t);
    }
    .offer-card:hover { box-shadow: 0 6px 28px rgba(26,18,11,.13); transform: translateY(-2px); }

    .card-img {
      height: 180px; position: relative; overflow: hidden;
      background: var(--c-verde-light);
    }
    .card-img img { width: 100%; height: 100%; object-fit: cover; }
    .discount-badge {
      position: absolute; top: .75rem; left: .75rem;
      background: var(--c-terra); color: #fff;
      font-size: .72rem; font-weight: 700;
      padding: .25rem .6rem; border-radius: 50px;
    }

    .card-body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
    .card-meta {
      font-size: .75rem; color: var(--c-ink-muted);
      margin-bottom: .3rem;
      display: flex; align-items: center; gap: .35rem;
    }
    .card-body h3 { margin-bottom: .35rem; font-size: 1.05rem; }
    .card-desc {
      font-size: .9rem; color: var(--c-ink-mid);
      flex: 1; margin-bottom: .875rem; max-width: unset;
    }
    .card-footer {
      display: flex; align-items: center;
      justify-content: space-between; gap: .75rem;
    }
    .price__label { font-size: .68rem; color: var(--c-ink-muted); text-transform: uppercase; letter-spacing: .05em; }
    .price__amount { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; color: var(--c-terra); }
    .price__unit { font-size: .72rem; color: var(--c-ink-muted); }

    .stars { display: flex; gap: 2px; }
    .stars svg { width: 13px; height: 13px; fill: var(--c-oro); flex-shrink: 0; }

    .rating {
      display: inline-flex; align-items: center; gap: .25rem;
      background: var(--c-verde-light); color: var(--c-verde);
      font-size: .75rem; font-weight: 600;
      padding: .2rem .55rem; border-radius: var(--r-sm);
    }

    /* Experience tag */
    .exp-tag {
      display: inline-block; font-size: .7rem; font-weight: 600;
      letter-spacing: .06em; text-transform: uppercase;
      color: var(--c-oro); background: var(--c-oro-light);
      border: 1px solid #DEC88A;
      padding: .2rem .55rem; border-radius: 50px; margin-bottom: .55rem;
    }
    .exp-info {
      display: flex; gap: 1rem; flex-wrap: wrap;
      font-size: .78rem; color: var(--c-ink-muted); margin-bottom: .875rem;
    }

    /* ─── HOW IT WORKS ─── */
    .steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
    .step { text-align: center; padding: 1.25rem 1rem; }
    .step-num {
      display: inline-flex; align-items: center; justify-content: center;
      width: 52px; height: 52px; border-radius: 50%;
      background: var(--c-terra-light); border: 2px solid var(--c-terra-border);
      font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600;
      color: var(--c-terra); margin-bottom: 1rem;
    }
    .step h3 { margin-bottom: .4rem; }
    .step p { font-size: .9375rem; color: var(--c-ink-mid); margin-inline: auto; }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: var(--c-verde);
      border-radius: var(--r-lg);
      padding: clamp(2rem, 5vw, 3rem);
      color: #fff;
      display: grid; gap: 1.5rem; align-items: center;
    }
    @media (min-width: 640px) { .cta-banner { grid-template-columns: 1fr auto; } }
    .cta-banner h2 { color: #fff; margin-bottom: .4rem; font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
    .cta-banner p { color: rgba(255,255,255,.82); }
    .cta-banner .btn-primary { background: var(--c-terra); border-color: var(--c-terra); flex-shrink: 0; }
    .cta-banner .btn-primary:hover { background: var(--c-cream); border-color: var(--c-cream); color: var(--c-terra); }

    /* ─── TRUST BAR ─── */
    .trust-bar {
      padding-block: 2rem;
      border-top: 1px solid var(--c-border);
      border-bottom: 1px solid var(--c-border);
    }
    .trust-bar > p {
      font-size: .72rem; text-transform: uppercase; letter-spacing: .08em;
      color: var(--c-ink-muted); text-align: center;
      margin-bottom: 1.1rem; max-width: unset;
    }
    .trust-logos {
      display: flex; flex-wrap: wrap;
      justify-content: center; align-items: center;
      gap: 1.5rem 2.5rem;
    }
    .trust-logo {
      font-size: .9rem; font-weight: 600; color: var(--c-ink-muted);
      display: flex; align-items: center; gap: .35rem;
      text-decoration: none;
    }
    .trust-logo:hover { color: var(--c-terra); }
    .trust-logo svg { width: 18px; height: 18px; opacity: .65; flex-shrink: 0; }

    /* ─── NEWSLETTER ─── */
    .newsletter {
      background: var(--c-terra-light);
      border: 1px solid var(--c-terra-border);
      border-radius: var(--r-lg);
      padding: clamp(2rem, 5vw, 3rem);
      text-align: center;
    }
    .newsletter h2 { margin-bottom: .4rem; }
    .newsletter > p { color: var(--c-ink-mid); margin-inline: auto; margin-bottom: 1.4rem; }
    .nl-form {
      display: flex; flex-wrap: wrap; gap: .65rem;
      justify-content: center; max-width: 460px; margin-inline: auto;
    }
    .nl-form input[type="email"] {
      flex: 1 1 200px; min-height: 44px;
      border: 1.5px solid var(--c-terra-border);
      border-radius: 50px; padding: .6rem 1.2rem;
      font-family: var(--font-body); font-size: .9375rem;
      color: var(--c-ink); background: var(--c-white);
    }
    .nl-form input[type="email"]:focus { outline: none; border-color: var(--c-terra); }
    .nl-note { font-size: .75rem; color: var(--c-ink-muted); margin-top: .65rem; }

    /* ─── FOOTER ─── */
    .site-footer { background: var(--c-ink); color: rgba(255,255,255,.72); padding-block: 3rem 1.75rem; }
    .footer-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
      gap: 2rem; margin-bottom: 2.5rem;
    }
    .footer-brand .nav-logo { color: #fff; }
    .footer-brand .nav-logo span { color: var(--c-terra); }
    .footer-brand p { font-size: .85rem; margin-top: .7rem; color: rgba(255,255,255,.55); max-width: unset; }
    .footer-col h4 {
      font-family: var(--font-body); font-size: .72rem; font-weight: 600;
      letter-spacing: .08em; text-transform: uppercase;
      color: rgba(255,255,255,.38); margin-bottom: .8rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
    .footer-col a { font-size: .875rem; color: rgba(255,255,255,.68); text-decoration: none; }
    .footer-col a:hover { color: #fff; }
    .footer-bottom {
      display: flex; flex-wrap: wrap;
      justify-content: space-between; align-items: center;
      gap: .65rem; padding-top: 1.5rem;
      border-top: 1px solid rgba(255,255,255,.1);
      font-size: .78rem; color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.5); }
    .footer-bottom a:hover { color: #fff; }
    .footer-legal-links { display: flex; gap: 1rem; }

    /* ─── BACK TO TOP ─── */
    #back-top {
      position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
      width: 44px; height: 44px;
      background: var(--c-terra); color: #fff;
      border: none; border-radius: 50%; cursor: pointer;
      font-size: 1.1rem; font-weight: 700;
      display: none; align-items: center; justify-content: center;
      box-shadow: 0 2px 10px rgba(160,74,42,.4);
      transition: background var(--t);
    }
    #back-top:hover { background: var(--c-verde); }
    #back-top.visible { display: flex; }
/* ─── PROSE PAGES (Chi siamo, Privacy, ecc.) ─── */
.prose-page { padding-block: clamp(2.5rem, 7vw, 5rem); }
.prose-hero {
  background: var(--c-verde);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4rem);
  margin-bottom: 0;
}
.prose-hero h1 { color: #fff; margin-bottom: .5rem; }
.prose-hero p  { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 60ch; }

.prose { max-width: 72ch; }
.prose h2 { margin-top: 2.5rem; margin-bottom: .75rem; font-size: 1.4rem; }
.prose h3 { margin-top: 1.75rem; margin-bottom: .5rem; color: var(--c-ink-mid); }
.prose p  { margin-bottom: 1rem; color: var(--c-ink-mid); }
.prose ul, .prose ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--c-ink-mid); }
.prose li { margin-bottom: .4rem; }
.prose a  { color: var(--c-terra); }
.prose strong { color: var(--c-ink); font-weight: 600; }
.prose hr { border: none; border-top: 1px solid var(--c-border); margin-block: 2rem; }
.prose .update { font-size: .8rem; color: var(--c-ink-muted); margin-bottom: 2rem; }

/* Destination pages */
.dest-hero {
  background: var(--c-verde);
  color: #fff;
  padding-block: clamp(3rem, 7vw, 5rem);
  position: relative;
  overflow: hidden;
}
.dest-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(0,0,0,.35);
}
.dest-hero > * { position: relative; z-index: 1; }
.dest-hero h1 { color: #fff; margin-bottom: .75rem; }
.dest-hero p  { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 60ch; }
.dest-hero .eyebrow { color: var(--c-terra-border); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}
.contact-form { display: flex; flex-direction: column; gap: .875rem; }
.contact-form textarea {
  font-family: var(--font-body); font-size: .9375rem;
  color: var(--c-ink); background: var(--c-cream);
  border: 1.5px solid var(--c-border); border-radius: var(--r-sm);
  padding: .6rem .85rem; width: 100%; resize: vertical; min-height: 140px;
}
.contact-form textarea:focus { outline: none; border-color: var(--c-terra); }
.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--c-terra-light); border: 1px solid var(--c-terra-border);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-item h3 { font-size: 1rem; margin-bottom: .2rem; font-family: var(--font-body); }
.contact-item p  { font-size: .9rem; color: var(--c-ink-mid); max-width: unset; }

/* ─── COOKIE BANNER ─── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: var(--c-ink);
  color: rgba(255,255,255,.88);
  padding: 1.25rem clamp(1rem, 5vw, 3rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.25);
  border-top: 3px solid var(--c-terra);
  transform: translateY(100%);
  transition: transform .35s ease;
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner.hidden  { display: none; }

.cookie-text {
  flex: 1 1 280px;
  font-size: .875rem;
  line-height: 1.55;
  color: rgba(255,255,255,.82);
}
.cookie-text strong { color: #fff; }
.cookie-text a { color: var(--c-terra-border); }

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
  flex-shrink: 0;
}
.btn-cookie-accept {
  background: var(--c-terra);
  color: #fff;
  border: 2px solid var(--c-terra);
  border-radius: 50px;
  padding: .6rem 1.4rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  cursor: pointer;
  transition: background var(--t), border-color var(--t);
  white-space: nowrap;
}
.btn-cookie-accept:hover { background: #C05C30; border-color: #C05C30; }
.btn-cookie-reject {
  background: transparent;
  color: rgba(255,255,255,.8);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: .6rem 1.4rem;
  min-height: 44px;
  font-family: var(--font-body);
  font-size: .9rem; font-weight: 500;
  cursor: pointer;
  transition: border-color var(--t), color var(--t);
  white-space: nowrap;
}
.btn-cookie-reject:hover { border-color: rgba(255,255,255,.7); color: #fff; }

/* ─── PHOTO COMPONENTS ─── */

/* Hero photo — full-width banner with overlay */
.photo-hero {
  position: relative;
  width: 100%;
  height: clamp(280px, 50vw, 520px);
  overflow: hidden;
  background: var(--c-verde);
}
.photo-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.photo-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,11,.18) 0%, rgba(26,18,11,.55) 100%);
}
.photo-hero-text {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  z-index: 1;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  color: #fff;
}
.photo-hero-text h1 { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,.4); }
.photo-hero-text p  { color: rgba(255,255,255,.88); text-shadow: 0 1px 3px rgba(0,0,0,.3); }
.photo-hero-text .eyebrow { color: var(--c-terra-border); }

/* Photo credit */
.photo-credit {
  font-size: .68rem;
  color: rgba(255,255,255,.55);
  margin-top: .35rem;
}

/* Inline photo — affiancata al testo */
.photo-inline {
  width: 100%;
  border-radius: var(--r-md);
  overflow: hidden;
  margin-block: 1.5rem;
  box-shadow: var(--shadow);
}
.photo-inline img {
  width: 100%; height: auto;
  display: block;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.photo-inline figcaption {
  padding: .5rem .875rem;
  font-size: .78rem;
  color: var(--c-ink-muted);
  background: var(--c-cream);
  border-top: 1px solid var(--c-border);
}

/* Photo grid — 2 colonne su desktop */
.photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
  gap: 1rem;
  margin-block: 1.5rem;
}
.photo-grid figure {
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.photo-grid img {
  width: 100%; display: block;
  aspect-ratio: 4/3;
  object-fit: cover;
  transition: transform .4s ease;
}
.photo-grid figure:hover img { transform: scale(1.03); }
.photo-grid figcaption {
  padding: .4rem .75rem;
  font-size: .75rem;
  color: var(--c-ink-muted);
  background: var(--c-cream);
}
