/* Reset & Base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --black: #0c0a08;
  --surface: #161210;
  --surface-2: #1e1b17;
  --white: #f5f5f5;
  --gray-100: #e8e8e8;
  --gray-200: #d0d0d0;
  --gray-400: #888;
  --gray-600: #767676;
  --gray-800: #252220;
  --accent: #c8956c;
  --accent-light: #d4a574;
  --accent-dark: #a07850;
  --accent-raw: #b03a2e;
  --font-body: 'Source Serif 4', Georgia, serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --grayscale-subtle: 12%;
  --grayscale-card: 25%;
  --grayscale-decorative: 35%;
  --grayscale-heavy: 50%;
}

html {
  scroll-behavior: smooth;
  font-size: 17px;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

p {
  line-height: 1.5;
}

/* Film grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9998;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* Utility */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 400;
  font-family: var(--font-display);
  position: relative;
}

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s, padding 0.4s;
}

nav.scrolled {
  background: rgba(12, 10, 8, 0.96);
  backdrop-filter: blur(20px);
  padding: 1rem 2rem;
  border-bottom: 1px solid rgba(200, 149, 108, 0.15);
}

body[data-page="home"] nav {
  background: linear-gradient(180deg, rgba(7, 6, 5, 0.72) 0%, rgba(7, 6, 5, 0.18) 68%, transparent 100%);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  height: 40px;
  width: 40px;
  object-fit: cover;
  border-radius: 50%;
}

.nav-logo span {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(245, 245, 245, 0.82);
  transition: color 0.3s, opacity 0.3s;
  position: relative;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.28);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

body[data-page="home"] .nav-logo span {
  color: rgba(245, 245, 245, 0.94);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

body[data-page="home"] .nav-links a {
  color: rgba(245, 245, 245, 0.88);
}

.nav-links a:hover::after {
  width: 100%;
}



/* Skip link (accessibility) */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--accent);
  color: var(--black);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 1000;
  border-radius: 0 0 3px 3px;
  transition: top 0.2s ease;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

/* Hero */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 4, 0.72) 0%, rgba(5, 4, 4, 0.3) 18%, transparent 34%),
    linear-gradient(to top, var(--black) 0%, rgba(12, 10, 8, 0.68) 35%, transparent 65%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 0 2rem 4.5rem;
  max-width: 900px;
  text-align: left;
  width: 100%;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7.5vw, 7rem);
  font-weight: 600;
  line-height: 0.8;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--gray-200);
  max-width: 620px;
  margin: 0;
  line-height: 1.6;
}

.hero .section-label {
  margin-bottom: 1rem;
}

.hero-cta {
  margin-top: 3rem;
  display: inline-block;
}

.hero-actions {
  justify-content: flex-start;
  margin-top: 3rem;
}

.hero-scroll {
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
}

.hero-scroll .line {
  width: 1px;
  height: 40px;
  background: var(--accent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50% { transform: scaleY(0.5); opacity: 1; }
}

/* About Section */
.about {
  padding: 8rem 0;
}

.project-highlight {
  padding-top: 7rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 2rem;
  max-width: 12ch;
  text-wrap: balance;
}

.about[aria-label="La nostra missione"] .about-text h2 {
  max-width: 21ch;
  font-size: clamp(1.9rem, 3.2vw, 3rem);
  line-height: 1.06;
  letter-spacing: 0.01em;
}

.about[aria-label="La nostra missione"] .about-grid {
  align-items: stretch;
  gap: 3rem;
}

.about[aria-label="La nostra missione"] .about-image {
  align-self: stretch;
}

.about[aria-label="La nostra missione"] .about-image img {
  aspect-ratio: 1 / 1;
  min-height: 100%;
}

.about[aria-label="Il progetto"] .about-text h2 {
  max-width: 16ch;
  line-height: 1.04;
}

.about-text p {
  color: var(--gray-200);
  margin-bottom: 1.5rem;
  font-size: 1rem;
  text-wrap: pretty;
}

.about-text .section-label {
  text-align: left;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(var(--grayscale-card));
  transition: filter 0.6s;
  border-radius: 2px;
}

.about-image:hover img {
  filter: grayscale(0%);
}

/* Stats */
.stats {
  padding: 5rem 0;
  border-top: 1px solid var(--gray-800);
  border-bottom: 1px solid var(--gray-800);
  background: var(--surface);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* Story Section */
.story {
  padding: 8rem 0;
  border-top: 1px solid var(--gray-800);
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: stretch;
}

.story-image {
  border: 1px solid var(--gray-800);
  border-radius: 3px;
  overflow: hidden;
  max-height: 70%;
  align-self: center;
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(var(--grayscale-subtle)) brightness(0.82);
}

.story-content {
  text-align: left;
}

.story-content:only-child {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.story h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 2rem;
}

.story blockquote {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  font-style: italic;
  line-height: 1.9;
  color: var(--gray-100);
  position: relative;
  padding: 2rem;
  text-align: left;
  border-left: 3px solid var(--accent);
  margin: 0;
}

.story blockquote::before {
  content: none;
}

.story-author {
  margin-top: 1.5rem;
  margin-left: 2rem;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

/* ══════════════════════════════════════
   Struttura Section (Chi Siamo page)
   ══════════════════════════════════════ */

.struttura {
  padding: 6rem 0;
  border-top: 1px solid var(--gray-800);
}

.struttura-content {
  text-align: center;
}

.struttura-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.struttura-content p {
  color: var(--gray-200);
  margin-bottom: 1rem;
  font-size: 1rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.struttura-content .place-features {
  max-width: 700px;
  margin: 2rem auto 0;
}

.struttura-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  margin-top: 3rem;
}

.struttura-images img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  filter: grayscale(var(--grayscale-card));
  transition: filter 0.6s;
  border-radius: 2px;
}

.struttura-images img:first-child {
  grid-column: span 2;
  aspect-ratio: 16/9;
}

.struttura-images img:hover {
  filter: grayscale(0%);
}

/* Place Features */
.place-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.feature {
  padding: 1.25rem;
  border: 1px solid var(--gray-800);
  background: var(--surface-2);
  transition: border-color 0.3s, background 0.3s;
  border-radius: 2px;
}

.feature:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.04);
}

.feature-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: var(--accent);
}

.feature-label {
  font-size: 0.75rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ══════════════════════════════════════
   Team Section (Chi Siamo page)
   ══════════════════════════════════════ */

.team {
  padding: 6rem 0;
  border-top: 1px solid var(--gray-800);
}

.team-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.team-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-sub {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto;
}


/* ══════════════════════════════════════
   Collaboratori
   ══════════════════════════════════════ */

.collaboratori {
  padding: 6rem 0;
  border-top: 1px solid var(--gray-800);
}

.collaboratori-header {
  text-align: center;
  margin-bottom: 3rem;
}

.collaboratori-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.collaboratori-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.collab-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  padding: 2rem 1.5rem;
  border: 1px solid var(--gray-800);
  border-radius: 3px;
  background: var(--surface);
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
}

.collab-card:hover {
  border-color: var(--gray-600);
  background: var(--surface-2);
}

.collab-logo {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collab-logo img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(var(--grayscale-heavy)) brightness(0.9);
  transition: filter 0.3s;
}

.collab-card:hover .collab-logo img {
  filter: grayscale(0%) brightness(1);
}

.collab-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.collab-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--gray-100);
}

.collab-category {
  font-size: 0.8rem;
  color: var(--gray-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .collaboratori-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
  }
}

/* ══════════════════════════════════════
   Progetti (Dogs) Page
   ══════════════════════════════════════ */

.dogs-intro {
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.dogs-intro p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

.dogs-section {
  padding: 0 0 6rem;
}

.dogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.dog-card {
  border: 1px solid var(--gray-800);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  border-radius: 3px;
  cursor: pointer;
}

.dog-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.38);
}

.dog-card-image {
  overflow: hidden;
}

.dog-card-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  filter: grayscale(var(--grayscale-decorative));
  transition: filter 0.5s, transform 0.5s;
}

.dog-card:hover .dog-card-image img {
  filter: grayscale(0%);
  transform: scale(1.04);
}

.dog-card-body {
  padding: 1rem 1.25rem 1.25rem;
}

.dog-card-body h2,
.dog-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.dog-card-tag {
  display: none;
}

.dog-card-body p:last-child {
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   Contattaci Page
   ══════════════════════════════════════ */

.contact-page {
  padding: 5rem 0 6rem;
}

.contact-page-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  max-width: 600px;
  margin-left: 0;
  margin-right: auto;
}

.contact-page-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--gray-800);
  border-bottom: none;
  transition: background 0.3s;
}

.contact-page-card:last-child {
  border-bottom: 1px solid var(--gray-800);
}

.contact-page-card:hover {
  background: rgba(200, 149, 108, 0.04);
}

.contact-page-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-page-icon svg {
  width: 28px;
  height: 28px;
}

.contact-page-card h2 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.1rem;
}

.contact-page-heading {
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.contact-page-badge {
  display: inline-flex;
  align-items: center;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.contact-page-value {
  font-size: 0.85rem;
  color: var(--accent-light);
  font-weight: 400;
}

.contact-page-card .contact-page-info {
  flex: 1;
}

.contact-location {
  max-width: 600px;
  margin: 3rem auto 0;
}

.contact-location-inner {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  border: 1px solid var(--gray-800);
  background: var(--surface);
  border-radius: 3px;
}

.contact-location-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--accent);
}

.contact-location-icon svg {
  width: 28px;
  height: 28px;
}

.contact-location h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.contact-location p {
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0.35rem;
}

/* CTA / Donate */
.cta {
  padding: 8rem 0;
  text-align: center;
  position: relative;
  background: var(--surface);
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: var(--accent-dark);
}

.cta h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.cta p {
  color: var(--gray-200);
  max-width: 550px;
  margin: 0 auto 3rem;
  font-size: 1.05rem;
  line-height: 1.75;
}

.btn {
  display: inline-block;
  min-height: 52px;
  padding: 1rem 3rem;
  border: 1px solid var(--white);
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  cursor: pointer;
  background: transparent;
  color: var(--white);
  font-family: var(--font-display);
  border-radius: 2px;
  text-align: center;
}

.btn:hover {
  background: var(--white);
  color: var(--black);
}

.btn-accent {
  background: var(--accent-raw);
  color: var(--white);
  border-color: var(--accent-raw);
}

.btn-accent:hover {
  background: rgba(176, 58, 46, 0.1);
  color: var(--accent-raw);
  border-color: var(--accent-raw);
}

.btn-filled {
  background: var(--white);
  color: var(--black);
}

.btn-filled:hover {
  background: transparent;
  color: var(--white);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-display);
}

.cta-link:hover {
  color: var(--accent-light);
}

.page-header .container,
.help-intro .container,
.struttura .container,
.team .container,
.cta .container,
.contact-page .container {
  max-width: 1100px;
}

.page-header-sub {
  line-height: 1.75;
}

body[data-page="contattaci"] .page-header-sub + .page-header-sub {
  margin-top: 0.9rem;
}

.split-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}

.split-col {
  flex: 1 1 0;
  min-width: 0;
}

/* Urgent CTA variant */
.cta--urgent {
  background: #100d0b;
  border-top: 3px solid var(--accent-raw);
  position: relative;
}

.cta--urgent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(176, 58, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Urgent CTA variant — for .help-cta elements (come-aiutarci) */
.help-cta--urgent {
  border-top: 3px solid var(--accent-raw);
  position: relative;
}

.help-cta--urgent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(176, 58, 46, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Buttons */
.btn-sm {
  padding: 0.65rem 1.5rem;
  font-size: 0.7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* Contact / Footer */
footer {
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--gray-800);
  background: #080604;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: var(--gray-200);
  font-size: 0.96rem;
  max-width: 350px;
  line-height: 1.75;
}

.footer-col h4 {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: var(--accent);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-col a {
  font-size: 0.95rem;
  color: var(--gray-100);
  transition: color 0.3s;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-location {
  color: var(--gray-100);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
  font-size: 0.8rem;
  color: var(--gray-400);
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 1.5rem;
}

.social-links a {
  color: var(--gray-400);
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--accent);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Mobile Overlay Menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s;
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  transition: color 0.3s;
}

.mobile-menu a:hover {
  color: var(--accent);
}


/* Responsive */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .dogs-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-page-grid {
    max-width: 100%;
  }
}

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

  .hamburger {
    display: flex;
  }

  .mobile-menu {
    display: flex;
  }

  .hero-content {
    padding: 0 1.5rem 4rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .place-features {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .dogs-grid {
    grid-template-columns: 1fr;
  }

  .contact-location-inner {
    flex-direction: column;
    padding: 2rem;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 220px;
  }

  .pgi--tall {
    grid-row: span 1;
  }

  .help-photo-strip {
    grid-template-columns: 1fr 1fr;
    height: 220px;
  }

  .help-photo-strip .help-photo-strip-hide-mobile {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .dogs-grid {
    grid-template-columns: 1fr;
  }

  .photo-gallery-grid {
    grid-auto-rows: 170px;
  }

  .help-photo-strip {
    grid-template-columns: 1fr;
    height: 200px;
  }
}

/* ══════════════════════════════════════
   Photo Gallery (Homepage)
   ══════════════════════════════════════ */

.photo-gallery {
  padding: 6rem 0 0;
  border-top: 1px solid var(--gray-800);
}

.photo-gallery-header {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 2rem;
}

.photo-gallery-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
  line-height: 1.1;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
}

.pgi {
  overflow: hidden;
  position: relative;
}

.pgi--tall {
  grid-row: span 2;
}

.pgi img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) grayscale(var(--grayscale-subtle));
  transition: filter 0.5s ease, transform 0.7s ease;
  display: block;
}

.pgi:hover img {
  filter: brightness(0.95) grayscale(0%);
  transform: scale(1.05);
}

/* ══════════════════════════════════════
   Photo Strip (Come Aiutarci page)
   ══════════════════════════════════════ */

.help-photo-strip {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3px;
  height: 340px;
  overflow: hidden;
}

.help-photo-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.65) grayscale(var(--grayscale-subtle));
  transition: filter 0.5s;
  display: block;
}

.help-photo-strip img:hover {
  filter: brightness(0.85) grayscale(0%);
}

/* ══════════════════════════════════════
   Shared - Page Header (subpages)
   ══════════════════════════════════════ */

.page-header {
  padding: 10rem 0 4rem;
  border-bottom: 1px solid var(--gray-800);
  text-align: left;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.07) 0%, transparent 65%);
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-wrap: balance;
}

h1, h2, h3 {
  text-transform: uppercase;
}

.page-header-sub {
  font-family: var(--font-body);
  color: var(--gray-200);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 0;
  line-height: 1.72;
  text-wrap: pretty;
}

.page-header .cta-buttons {
  justify-content: flex-start;
  margin-top: 1.5rem;
}

.section-label-left {
  text-align: left;
}

.split-header {
  display: flex;
  align-items: center;
  gap: 3rem;
}

.split-col {
  flex: 1;
}

body[data-page="chi-siamo"] .page-header .split-col {
  max-width: 46rem;
}

body[data-page="chi-siamo"] .page-header-sub {
  max-width: none;
}

.about-image-header {
  flex: 1;
  height: clamp(280px, 34vw, 420px);
}

.image-contain-fill {
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
}

.about-text-centered {
  max-width: 720px;
  margin: 2rem auto;
  text-align: center;
}

.team-list {
  list-style: none;
  padding: 0;
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  text-align: center;
}

.help-card-photo {
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--gray-800);
  min-height: 100%;
}

.help-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-page-layout {
  display: flex;
  gap: 3.5rem;
  align-items: stretch;
  padding: 2.25rem;
  border: 1px solid var(--gray-800);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(200, 149, 108, 0.025) 100%);
  border-radius: 4px;
}

.contact-page-grid-fluid {
  flex: 1;
  max-width: none;
}

.contact-location-fluid {
  flex: 1;
  margin: 0;
  max-width: none;
  display: flex;
  flex-direction: column;
}

.contact-location-image {
  width: 100%;
  flex: 1;
  min-height: 0;
  object-fit: cover;
  margin-top: 1.5rem;
  filter: brightness(0.78) grayscale(10%);
  display: block;
}

.progetti-note {
  margin-top: 2rem;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}

.progetti-offer-grid {
  margin-top: 2rem;
  align-items: stretch;
}

.progetti-step-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.progetti-step-title-spaced {
  margin-top: 1.5rem;
}

.struttura[aria-label="Cosa chiediamo all'adottante"] .place-features {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.struttura[aria-label="Cosa chiediamo all'adottante"] .feature {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, rgba(200, 149, 108, 0.035) 100%);
  border-color: rgba(200, 149, 108, 0.18);
  padding: 1.45rem 1.25rem;
}

.struttura[aria-label="Cosa chiediamo all'adottante"] .feature:hover {
  border-color: rgba(200, 149, 108, 0.34);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(200, 149, 108, 0.06) 100%);
}

.struttura[aria-label="Cosa chiediamo all'adottante"] .feature-value {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2rem;
}

.struttura[aria-label="Cosa chiediamo all'adottante"] .feature-label {
  color: var(--gray-200);
  line-height: 1.55;
}

.progetti-image-stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  min-height: 100%;
}

.progetti-image-stack img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-rounded {
  border-radius: 8px;
}

.progetti-phone {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 1rem auto;
  letter-spacing: 0.03em;
  text-align: center;
}

.link-reset {
  color: inherit;
  text-decoration: none;
}

.btn-block-spaced {
  margin-top: 1rem;
  width: 100%;
  text-align: center;
}

.icon-inline-end {
  vertical-align: middle;
  margin-left: 0.3rem;
}

.progetti-free-note {
  font-size: 0.95rem;
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.footer-address {
  font-style: normal;
  margin-top: 1.25rem;
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.8;
}

.footer-line {
  display: block;
}

.footer-line-spaced {
  display: block;
  margin-bottom: 0.75rem;
}

.footer-abbr {
  text-decoration: none;
  color: var(--gray-400);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
}

/* Active nav link */
.nav-links a.active {
  color: var(--accent-light);
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent);
}

/* ══════════════════════════════════════
   Blog / Posts Page
   ══════════════════════════════════════ */

.blog-feed {
  padding: 5rem 0 7rem;
}

.blog-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 348px;
  gap: 3rem;
  align-items: start;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.blog-post {
  border: 1px solid var(--gray-800);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  border-radius: 3px;
  height: 100%;
}

.blog-post:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.blog-post-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.blog-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(var(--grayscale-decorative));
  transition: filter 0.6s;
}

.blog-post:hover .blog-post-image img {
  filter: grayscale(0%);
}

.blog-post-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-post-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.blog-post-text {
  font-size: 0.85rem;
  color: var(--gray-200);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  text-wrap: pretty;
}

.blog-post-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}

.blog-post:hover .blog-post-link {
  gap: 0.5rem;
}

/* Blog Sidebar */
.blog-sidebar {
  position: sticky;
  top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  border: 1px solid var(--gray-800);
  padding: 1.9rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0%, rgba(200, 149, 108, 0.055) 100%);
  border-radius: 3px;
  min-width: 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.sidebar-card h3 {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: var(--gray-100);
  text-wrap: balance;
}

.sidebar-card p {
  font-size: 0.93rem;
  color: var(--gray-200);
  line-height: 1.72;
  text-wrap: pretty;
}

.sidebar-card .btn {
  margin-top: 1rem;
}

.project-highlight .cta-link,
.cta .cta-link,
.help-cta .cta-link {
  justify-content: center;
}

.sidebar-contact {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--gray-200);
  transition: color 0.3s;
}

.sidebar-contact:hover {
  color: var(--accent);
}

.sidebar-contact svg {
  flex-shrink: 0;
  color: var(--gray-400);
  margin-top: 0.1rem;
}

/* ══════════════════════════════════════
   Contact Bar
   ══════════════════════════════════════ */

.contact-bar {
  padding: 3rem 0;
  border-top: 1px solid var(--gray-800);
}

.contact-bar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  border: 1px solid var(--gray-800);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  cursor: pointer;
  border-radius: 3px;
  min-height: 100%;
}

.contact-item:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.04);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
}

.contact-item svg {
  flex-shrink: 0;
  color: var(--accent);
}

.footer-email-link {
  color: var(--gray-100);
  transition: color 0.3s;
}

.footer-email-link:hover {
  color: var(--white);
}

.contact-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.15rem;
}

.contact-value {
  display: block;
  font-size: 0.95rem;
  color: var(--white);
  line-height: 1.5;
  overflow-wrap: anywhere;
}

/* ══════════════════════════════════════
   Events Page
   ══════════════════════════════════════ */

.events-section {
  padding: 5rem 0 6rem;
}

.events-past {
  padding-top: 2rem;
  border-top: 1px solid var(--gray-800);
}

.events-past--primary {
  padding-top: 0;
  border-top: none;
}

.events-section-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.events-badge {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  border-radius: 2px;
}

.events-badge.upcoming {
  background: var(--accent);
  color: var(--black);
}

.events-badge.past {
  background: var(--gray-800);
  color: var(--gray-400);
}

.events-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-left: 0;
}

.events-empty {
  color: var(--gray-400);
  font-size: 1rem;
  padding: 0 0 2rem 0;
  text-wrap: pretty;
}

.events-empty-state {
  margin-bottom: 2.25rem;
  padding: 1.6rem 1.7rem 1.75rem;
  border: 1px solid var(--gray-800);
  border-left: 3px solid var(--accent);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(200, 149, 108, 0.05) 100%);
  border-radius: 3px;
}

.events-empty-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.events-empty-state h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.8vw, 1.85rem);
  margin-bottom: 0.65rem;
}

.events-empty-state p {
  max-width: 56ch;
  color: var(--gray-200);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.event-card {
  display: grid;
  grid-template-columns: 240px 80px 1fr;
  gap: 0;
  border: 1px solid var(--gray-800);
  overflow: hidden;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  border-radius: 3px;
  background: var(--surface);
}

.event-card:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.event-card-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--surface-2);
}

.event-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(var(--grayscale-heavy));
  transition: filter 0.6s;
}

.event-card:hover .event-card-image img {
  filter: grayscale(var(--grayscale-subtle));
}

.event-card-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-left: 1px solid var(--gray-800);
  border-right: 1px solid var(--gray-800);
}

.event-day {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent);
}

.event-month {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 0.25rem;
}

.event-year {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray-500);
  margin-top: 0.15rem;
}

.event-card-body {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-wrap: balance;
}

.event-meta {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
  flex-wrap: wrap;
}

.event-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--gray-400);
}

.event-desc {
  font-size: 0.9rem;
  color: var(--gray-200);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ══════════════════════════════════════
   Video Page
   ══════════════════════════════════════ */

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-card {
  border: 1px solid var(--gray-800);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
  text-decoration: none;
  color: inherit;
  border-radius: 3px;
  height: 100%;
}

.video-card:hover {
  border-color: var(--accent-dark);
  background: rgba(200, 149, 108, 0.02);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.28);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--surface-2);
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(var(--grayscale-decorative));
  transition: filter 0.6s;
}

.video-card:hover .video-card-thumb img {
  filter: grayscale(0%);
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
  transition: background 0.3s;
}

.video-card:hover .video-card-play {
  background: rgba(0, 0, 0, 0.5);
}

.video-card-play svg {
  width: 52px;
  height: 52px;
  opacity: 0.9;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.6));
  transition: transform 0.3s;
}

.video-card:hover .video-card-play svg {
  transform: scale(1.1);
}

.video-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.video-card-date {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 0.4rem;
}

.video-card-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 0.5rem;
  color: var(--white);
  text-wrap: balance;
}

.video-card-desc {
  font-size: 0.85rem;
  color: var(--gray-200);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  text-wrap: pretty;
}

.video-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  transition: gap 0.2s;
}

.video-card:hover .video-card-link {
  gap: 0.5rem;
}

/* ══════════════════════════════════════
   Come Aiutarci Page
   ══════════════════════════════════════ */

.help-intro {
  padding: 4rem 0;
  text-align: center;
}

.help-intro p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.8;
  text-wrap: pretty;
}

.help-paths {
  padding: 0 0 4rem;
}

.help-cards {
  padding: 1rem 0 5rem;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  align-items: stretch;
}

.help-card {
  background: var(--surface);
  border: 1px solid var(--gray-800);
  border-top: 3px solid var(--accent-dark);
  padding: 2.35rem 1.85rem;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
  border-radius: 2px;
  min-height: 100%;
}

.help-card-kicker {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-bottom: 1rem;
  padding: 0.25rem 0.6rem;
  border: 1px solid rgba(200, 149, 108, 0.28);
  background: rgba(200, 149, 108, 0.08);
  color: var(--accent-light);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

.help-card--featured {
  border-top-color: var(--accent);
  background: linear-gradient(180deg, rgba(200, 149, 108, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
}

.help-card:hover {
  border-color: var(--gray-600);
  border-top-color: var(--accent);
  background: rgba(200, 149, 108, 0.04);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.34);
}

.help-card--featured:hover {
  border-color: rgba(200, 149, 108, 0.55);
  border-top-color: var(--accent-light);
  background: linear-gradient(180deg, rgba(200, 149, 108, 0.12) 0%, rgba(255, 255, 255, 0.03) 100%);
}

.help-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}

.help-icon svg {
  width: 32px;
  height: 32px;
}

.help-card h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.help-card p {
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.78;
  margin-bottom: 1rem;
  text-wrap: pretty;
}

.help-card .btn {
  margin-top: auto;
  text-align: center;
}

.help-buttons {
  display: flex;
  gap: 0.75rem;
  margin-top: auto;
}

.help-buttons .btn {
  flex: 1;
  text-align: center;
}

.btn-donate {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--black);
  font-weight: 600;
}

.btn-donate:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
  color: var(--black);
}

.bank-info {
  margin-top: 1.5rem;
  padding: 1.5rem;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid var(--accent-dark);
}

.bank-info h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.bank-info p {
  font-size: 0.85rem;
  color: var(--gray-200);
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.bank-note {
  color: var(--gray-400);
  font-size: 0.8rem;
  margin-top: 0.5rem;
}

/* Help CTA banner */
.help-cta {
  padding: 0 0 6rem;
}

.help-cta-inner {
  border: 1px solid var(--gray-800);
  padding: 4rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: var(--surface);
  border-radius: 3px;
}

.help-cta-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200, 149, 108, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.help-cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
}

.help-cta-inner p {
  color: var(--gray-200);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1rem;
  position: relative;
}

.help-cta-inner .btn {
  position: relative;
}

/* ══════════════════════════════════════
   Cookie Banner (GDPR)
   ══════════════════════════════════════ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: rgba(20, 16, 14, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--gray-600);
  padding: 0.7rem 1rem;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 0.7rem;
  color: var(--gray-200);
  max-width: 560px;
  line-height: 1.42;
}

.cookie-banner p a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner-buttons {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.44rem 0.9rem;
  font-size: 0.62rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--white);
  cursor: pointer;
  font-family: var(--font-body);
  transition: background 0.3s, color 0.3s;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--black);
  border-color: var(--accent);
}

.cookie-btn-accept:hover {
  background: var(--accent-light);
  border-color: var(--accent-light);
}

.cookie-btn-reject {
  background: transparent;
  color: var(--white);
}

.cookie-btn-reject:hover {
  background: var(--white);
  color: var(--black);
}

/* ══════════════════════════════════════
   Privacy Policy Page
   ══════════════════════════════════════ */

.privacy-content {
  padding: 4rem 0 8rem;
}

.privacy-content h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin: 3rem 0 1rem;
  letter-spacing: -0.02em;
}

.privacy-content h2:first-child {
  margin-top: 0;
}

.privacy-content p,
.privacy-content li {
  color: var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.privacy-content ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.privacy-content a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ══════════════════════════════════════
   Floating Contact Button
   ══════════════════════════════════════ */

.contact-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 250;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s, box-shadow 0.3s;
}

.contact-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.contact-float svg {
  width: 26px;
  height: 26px;
  color: var(--black);
}

/* ══════════════════════════════════════
   Accent Divider (decorative)
   ══════════════════════════════════════ */

.accent-divider {
  width: 40px;
  height: 3px;
  background: var(--accent);
  margin: 0 auto 2rem;
}

/* ══════════════════════════════════════
   Loading Spinner
   ══════════════════════════════════════ */

.loading {
  text-align: center;
  padding: 4rem 0;
}

.loading-spinner {
  width: 32px;
  height: 32px;
  border: 2px solid var(--gray-800);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  margin: 0 auto 1.25rem;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.loading p {
  color: var(--gray-400);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ══════════════════════════════════════
   Error Message
   ══════════════════════════════════════ */

.error-message {
  text-align: center;
  padding: 4rem 0;
}

.error-message p {
  color: var(--gray-400);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════
   404 Page
   ══════════════════════════════════════ */

.not-found {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.not-found-content {
  position: relative;
  z-index: 1;
}

.not-found-code {
  font-family: var(--font-display);
  font-size: clamp(8rem, 20vw, 14rem);
  font-weight: 700;
  line-height: 1;
  color: var(--gray-800);
  letter-spacing: -0.05em;
  margin-bottom: 1.5rem;
}

.not-found h1 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.not-found p {
  color: var(--gray-400);
  font-size: 1rem;
  max-width: 420px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.not-found-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Paw trail decoration */
.paw-trail {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.paw {
  position: absolute;
  color: var(--accent);
  opacity: 0.04;
}

.paw-1 {
  width: 120px;
  top: 15%;
  left: 8%;
  transform: rotate(-25deg);
}

.paw-2 {
  width: 100px;
  top: 45%;
  right: 12%;
  transform: rotate(15deg);
}

.paw-3 {
  width: 80px;
  bottom: 20%;
  left: 20%;
  transform: rotate(-40deg);
}

/* ══════════════════════════════════════
   Accessibility — Focus visible
   ══════════════════════════════════════ */

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ══════════════════════════════════════
   CTA — Paw watermark decoration
   ══════════════════════════════════════ */

.cta::after {
  content: '';
  position: absolute;
  bottom: 2.5rem;
  right: 5rem;
  width: 160px;
  height: 160px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='%23c8956c'%3E%3Cellipse cx='50' cy='72' rx='25' ry='22'/%3E%3Cellipse cx='20' cy='48' rx='11' ry='14' transform='rotate(-15 20 48)'/%3E%3Cellipse cx='38' cy='34' rx='10' ry='13' transform='rotate(-5 38 34)'/%3E%3Cellipse cx='62' cy='34' rx='10' ry='13' transform='rotate(5 62 34)'/%3E%3Cellipse cx='80' cy='48' rx='11' ry='14' transform='rotate(15 80 48)'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
  transform: rotate(-18deg);
}


/* ══════════════════════════════════════
   Story section — subtle left-border quote accent
   ══════════════════════════════════════ */

.story blockquote {
  background: rgba(200, 149, 108, 0.03);
}

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

  .story-image img {
    width: 100%;
    height: auto;
  }
}

/* ══════════════════════════════════════
   Team members — elegant name tags
   ══════════════════════════════════════ */

.team .about-text li {
  font-family: var(--font-display);
  font-size: 1.05rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-200);
  position: relative;
  display: inline-block;
  padding: 0.25rem 0;
}

.team .about-text li::after {
  content: '';
  display: block;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s ease;
  margin-top: 2px;
}

.team .about-text li:hover::after {
  width: 100%;
}

/* ══════════════════════════════════════
   Contact page cards — stacked style
   ══════════════════════════════════════ */

.contact-page-card {
  transition: background 0.3s, color 0.3s;
  cursor: pointer;
}

.contact-page-card:first-child {
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}

.contact-page-card:last-child {
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
}

/* ══════════════════════════════════════
   Bank info — warm surface
   ══════════════════════════════════════ */

.bank-info {
  background: var(--surface-2);
  border-radius: 2px;
}

/* ══════════════════════════════════════
   Mobile menu — warm bg
   ══════════════════════════════════════ */

.mobile-menu {
  background: var(--black);
}

/* ══════════════════════════════════════
   Nav logo — hover effect
   ══════════════════════════════════════ */

.nav-logo:hover span {
  color: var(--accent-light);
}

.nav-logo span {
  transition: color 0.3s;
}

/* ══════════════════════════════════════
   Loading — warm spinner
   ══════════════════════════════════════ */

.loading {
  background: transparent;
}

/* ══════════════════════════════════════
   Reduced motion support
   ══════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero-scroll .line {
    animation: none;
    opacity: 0.5;
  }

  .loading-spinner {
    animation: none;
    border-top-color: var(--accent);
  }
}

.project-highlight .about-grid {
  align-items: stretch;
}

.project-highlight .about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ══════════════════════════════════════
   Dogs grid — responsive 3-to-2-to-1
   ══════════════════════════════════════ */

@media (min-width: 1025px) {
  .dogs-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ══════════════════════════════════════
   About section — warm bg variant
   ══════════════════════════════════════ */

.about-image::after {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(200, 149, 108, 0.15);
  border-radius: 3px;
  pointer-events: none;
  z-index: 0;
}

.about-image {
  position: relative;
  z-index: 0;
}

.about-image img {
  position: relative;
  z-index: 1;
}

/* ══════════════════════════════════════
   Impact Strip (homepage)
   ══════════════════════════════════════ */

.support-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2.5rem 0 2rem;
  align-items: stretch;
}

.support-option {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: space-between;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-align: left;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  border-radius: 3px;
  min-height: 100%;
}

.support-option:hover {
  transform: translateY(-3px);
  border-color: rgba(216, 184, 122, 0.4);
  background: rgba(216, 184, 122, 0.05);
}

.support-option-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.support-option-copy {
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.6;
}


/* ══════════════════════════════════════
   Mobile menu links — touch target 44px
   ══════════════════════════════════════ */

.mobile-menu a {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 2rem;
}

/* ══════════════════════════════════════
   Footer nav links — touch target
   ══════════════════════════════════════ */

.footer-col li {
  min-height: 36px;
  display: flex;
  align-items: center;
}

/* ══════════════════════════════════════
   Contact page card hover — cursor
   ══════════════════════════════════════ */

.contact-page-card:hover {
  background: rgba(200, 149, 108, 0.04);
}

/* ══════════════════════════════════════
   Progetti page — ensure consistent nav active
   ══════════════════════════════════════ */

body[data-page="progetti"] .nav-links a[href="/progetti"],
body[data-page="video"] .nav-links a[href="/video"] {
  color: var(--white);
}

/* ══════════════════════════════════════
   Page-specific responsive overrides
   (must come after section styles above)
   ══════════════════════════════════════ */

@media (max-width: 1024px) {
  .contact-page-layout,
  .split-header {
    flex-direction: column;
  }

  .page-header {
    padding: 8.5rem 0 3.25rem;
  }

  .about,
  .project-highlight,
  .struttura,
  .story,
  .team,
  .cta,
  .blog-feed,
  .events-section,
  .help-cards,
  .help-cta,
  .contact-page {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }

  .about-grid {
    gap: 2.5rem;
  }

  .about-text h2 {
    max-width: none;
  }

  .help-grid {
    grid-template-columns: 1fr;
    max-width: 550px;
    margin: 0 auto;
  }

  .support-options {
    grid-template-columns: 1fr;
  }

  .contact-bar-inner {
    grid-template-columns: 1fr;
  }

  .blog-layout {
    grid-template-columns: 1fr;
  }

  .blog-grid,
  .video-grid {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
  }

  .sidebar-card {
    flex: 1;
    min-width: 280px;
  }

  .event-card {
    grid-template-columns: 180px 70px 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero {
    min-height: 500px;
    height: auto;
  }

  .hero-content {
    padding: 0 1.25rem 7.5rem;
  }

  body[data-page="home"] .hero-content {
    padding-top: 6rem;
  }

  .hero .section-label {
    margin-bottom: 0.8rem;
  }

   .hero-content h1 {
    font-size: clamp(2.45rem, 10vw, 3.8rem);
    line-height: 0.9;
  }

  .hero-actions {
    margin-top: 2rem;
  }

  .hero-scroll {
    display: none;
  }

  .page-header {
    padding: 7.5rem 0 2.75rem;
  }

  .page-header h1 {
    line-height: 0.95;
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .about-image-header {
    height: 240px;
  }

  .page-header-sub,
  .hero-content p,
  .cta p {
    font-size: 1rem;
  }

  body[data-page="eventi"] .page-header-sub {
    max-width: 31ch;
    line-height: 1.65;
  }

  body[data-page="eventi"] .events-section {
    padding-top: 4.1rem;
  }

  body[data-page="eventi"] .events-section-title {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
  }

  body[data-page="eventi"] .events-past {
    padding-top: 1.6rem;
    margin-top: 0.75rem;
  }

  body[data-page="eventi"] .events-list {
    gap: 1.15rem;
  }

  body[data-page="eventi"] .events-empty {
    padding: 1rem 1.05rem 1.15rem;
    border: 1px solid var(--gray-800);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.015) 0%, rgba(200, 149, 108, 0.025) 100%);
    border-radius: 3px;
    line-height: 1.7;
  }

  body[data-page="eventi"] .event-card-date {
    padding: 0.65rem 1rem;
    gap: 0.4rem;
  }

  body[data-page="eventi"] .event-day {
    font-size: 1.55rem;
  }

  body[data-page="eventi"] .event-month,
  body[data-page="eventi"] .event-year {
    font-size: 0.6rem;
  }

  body[data-page="eventi"] .event-card-body {
    padding: 1.1rem 1.15rem 1.2rem;
  }

  body[data-page="eventi"] .event-card-body h3 {
    font-size: 1.02rem;
    line-height: 1.28;
  }

  body[data-page="eventi"] .event-meta {
    gap: 0.75rem 1rem;
    margin-bottom: 0.95rem;
  }

  body[data-page="chi-siamo"] .page-header h1 {
    max-width: 10ch;
    font-size: clamp(1.95rem, 8.6vw, 2.75rem);
  }

  body[data-page="chi-siamo"] .page-header-sub {
    max-width: none;
    line-height: 1.68;
  }

  body[data-page="chi-siamo"] .about-image-header {
    height: 208px;
  }

  body[data-page="chi-siamo"] .about[aria-label="La nostra missione"] .about-grid {
    gap: 1.35rem;
  }

  body[data-page="chi-siamo"] .about[aria-label="La nostra missione"] .about-text h2 {
    max-width: none;
    font-size: clamp(1.55rem, 7.8vw, 2rem);
    line-height: 1.04;
    margin-bottom: 1.25rem;
  }

  body[data-page="chi-siamo"] .about[aria-label="La nostra missione"] .about-text p {
    font-size: 0.95rem;
    line-height: 1.72;
  }

  body[data-page="come-aiutarci"] .page-header h1 {
    max-width: 12ch;
    font-size: clamp(1.85rem, 8.1vw, 2.6rem);
  }

  body[data-page="come-aiutarci"] .page-header-sub {
    max-width: 32ch;
    line-height: 1.65;
  }

  body[data-page="come-aiutarci"] .help-intro {
    padding: 2.75rem 0 1.9rem;
  }

  body[data-page="come-aiutarci"] .help-intro p {
    max-width: 36ch;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  body[data-page="come-aiutarci"] .help-cards {
    padding-top: 0.25rem;
  }

  body[data-page="come-aiutarci"] .help-card {
    padding: 1.45rem 1.2rem;
  }

  body[data-page="come-aiutarci"] .help-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 1rem;
  }

  body[data-page="come-aiutarci"] .help-icon svg {
    width: 28px;
    height: 28px;
  }

  body[data-page="come-aiutarci"] .bank-info {
    margin-top: 1rem;
    padding: 1rem;
  }

  body[data-page="diario"] .page-header-sub,
  body[data-page="video"] .page-header-sub {
    max-width: 31ch;
    line-height: 1.65;
  }

  body[data-page="diario"] .blog-layout,
  body[data-page="video"] .blog-layout {
    gap: 1.4rem;
  }

  body[data-page="diario"] .blog-grid,
  body[data-page="video"] .video-grid {
    gap: 1.1rem;
  }

  body[data-page="diario"] .blog-post-body,
  body[data-page="video"] .video-card-body {
    padding: 1rem 1.1rem 1.15rem;
  }

  body[data-page="diario"] .blog-sidebar,
  body[data-page="video"] .blog-sidebar {
    gap: 0.85rem;
  }

  body[data-page="diario"] .sidebar-card,
  body[data-page="video"] .sidebar-card {
    padding: 1.2rem 1.1rem;
  }

  .cta-buttons {
    width: 100%;
    align-items: stretch;
  }

  .cta-buttons .btn,
  .hero-actions .btn {
    width: min(100%, 360px);
  }

  .about,
  .project-highlight,
  .struttura,
  .story,
  .team,
  .cta,
  .blog-feed,
  .events-section,
  .help-cards,
  .help-cta,
  .contact-page {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .about-grid,
  .story-grid {
    gap: 2rem;
  }

  .blog-sidebar {
    flex-direction: column;
    gap: 1rem;
  }

  .sidebar-card {
    min-width: 0;
    width: 100%;
    padding: 1.35rem;
  }

  .about-image::after {
    inset: -5px;
  }

  .support-option {
    padding: 1rem 1rem 1.05rem;
  }

  .contact-bar {
    padding: 2.25rem 0;
  }

  .contact-item {
    align-items: flex-start;
    padding: 1.2rem 1.1rem;
  }

  .contact-item svg {
    margin-top: 0.15rem;
  }

  .contact-value {
    font-size: 0.9rem;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .event-card-image {
    aspect-ratio: 1/1;
  }

  .event-card-date {
    flex-direction: row;
    gap: 0.5rem;
    border-left: none;
    border-right: none;
    border-top: 1px solid var(--gray-800);
    border-bottom: 1px solid var(--gray-800);
    padding: 0.75rem 1.5rem;
    justify-content: flex-start;
  }

  .event-card-body {
    padding: 1.25rem 1.5rem;
  }

  .struttura[aria-label="Cosa chiediamo all'adottante"] .place-features {
    margin-top: 1.25rem;
    gap: 0.75rem;
  }

  .struttura[aria-label="Cosa chiediamo all'adottante"] .feature {
    padding: 1rem 0.9rem;
  }

  .struttura[aria-label="Cosa chiediamo all'adottante"] .feature-label {
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .help-grid {
    max-width: none;
    gap: 1rem;
  }

  .help-card {
    padding: 1.6rem 1.25rem;
  }

  .help-card h2 {
    font-size: 1.15rem;
    margin-bottom: 1rem;
  }

  .help-buttons {
    flex-direction: column;
  }

  .contact-page-layout {
    padding: 0;
    border: none;
    background: transparent;
    border-radius: 0;
    gap: 1.25rem;
    max-width: 420px;
    margin: 0 auto;
  }

  .contact-page-grid,
  .contact-page-grid-fluid,
  .contact-location,
  .contact-location-fluid {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
  }

  .contact-page-card {
    padding: 1.2rem 1.1rem;
    gap: 1rem;
    width: 100%;
  }

  .contact-page-icon {
    width: 34px;
    height: 34px;
  }

  .contact-page-icon svg {
    width: 22px;
    height: 22px;
  }

  .contact-page-card h2 {
    font-size: 0.82rem;
  }

  .contact-page-value {
    font-size: 0.8rem;
  }

  .contact-location {
    margin-top: 0;
  }

  .contact-location-inner {
    padding: 1.35rem;
  }

  .contact-location-image {
    margin-top: 1rem;
  }

  .help-cta-inner {
    padding: 2.4rem 1.25rem;
  }

  .cta::after {
    display: none;
  }

  .cookie-banner {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
    align-items: stretch;
  }

  .cookie-banner p {
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .cookie-banner-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
    padding: 0.55rem 0.9rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .contact-float {
    display: none;
  }

}
