/* HOME R11 - INSTAGRAM RESTORE + DESKTOP AIRY - 2026-09-03 */

/* =====================================================
   BASE
   ===================================================== */

* {
  box-sizing: border-box;
}

:root {
  --green-dark: #285f2f;
  --green: #4f8f3a;
  --green-bright: #6ca849;
  --green-soft: #e8f1d2;

  --cream: #fff4df;
  --paper: #fff9ec;
  --paper-soft: #fffdf6;

  --yellow: #f3c64a;
  --orange: #ef8f3a;
  --coral: #f47d58;
  --pink-soft: #ffd8ce;

  --ink: #1f2d22;
  --muted: #5d694f;

  --shadow: 0 18px 45px rgba(60, 80, 45, 0.16);
  --soft-shadow: 0 10px 28px rgba(60, 80, 45, 0.12);

  --radius-large: 34px;
  --radius-medium: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Patrick Hand", "Nunito", Arial, Helvetica, sans-serif;
  color: var(--ink);
  background:
    linear-gradient(rgba(255, 244, 223, 0.72), rgba(255, 244, 223, 0.92)),
    url("texture.png");
  line-height: 1.45;
}

/* =====================================================
   HERO
   ===================================================== */

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  padding: 26px 38px 135px;
  background-image:
    linear-gradient(
      90deg,
      rgba(255, 249, 236, 0.74) 0%,
      rgba(255, 249, 236, 0.54) 22%,
      rgba(255, 249, 236, 0.18) 36%,
      rgba(255, 249, 236, 0.00) 48%,
      rgba(255, 249, 236, 0.00) 100%
    ),
    url("000.jpg");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -1px;
  height: 112px;
  background: var(--paper-soft);
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  z-index: 1;
}

.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 78px;
  height: 16px;
  background: #a5c67b;
  opacity: 0.9;
  clip-path: ellipse(62% 70% at 24% 50%);
  z-index: 2;
}

/* =====================================================
   NAVBAR
   ===================================================== */

.navbar {
  position: relative;
  z-index: 5;
  max-width: 1420px;
  margin: 0 auto;
  padding: 16px 28px;
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--soft-shadow);
}

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

.logo img {
  display: block;
  height: 72px;
  width: auto;
}

.menu {
  display: flex;
  align-items: center;
  gap: clamp(22px, 4vw, 58px);
}

.menu a {
  position: relative;
  color: var(--ink);
  text-decoration: none;
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 25px;
  font-weight: 400;
  line-height: 1;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--green);
}

.menu a.active::after {
  content: "";
  position: absolute;
  left: 4px;
  right: 2px;
  bottom: -12px;
  height: 5px;
  background: var(--green);
  border-radius: 999px;
  transform: rotate(-3deg);
}

.menu-toggle {
  display: none;
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--green-dark);
  font-size: 30px;
  line-height: 1;
}

/* =====================================================
   HERO CONTENT
   ===================================================== */

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1420px;
  margin: 116px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) 385px;
  align-items: center;
  gap: 58px;
}

/* Wrapper neutro su desktop: diventa il riquadro fotografico solo su mobile. */
.hero-mobile-stage {
  display: contents;
}

.hero-mobile-photo {
  display: none;
}

.hero-text {
  position: relative;
  max-width: 820px;
  isolation: isolate;
}

.hero-text::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -48px -70px -42px -58px;
  background: radial-gradient(
    ellipse at 36% 48%,
    rgba(255, 253, 246, 0.72) 0%,
    rgba(255, 253, 246, 0.48) 42%,
    rgba(255, 253, 246, 0.14) 68%,
    transparent 82%
  );
  filter: blur(10px);
  pointer-events: none;
}

.sun-lines {
  position: absolute;
  left: -34px;
  top: -8px;
  width: 56px;
  height: 42px;
}

.sun-lines span {
  position: absolute;
  width: 34px;
  height: 6px;
  background: var(--yellow);
  border-radius: 999px;
  transform-origin: left center;
}

.sun-lines span:nth-child(1) {
  transform: rotate(22deg);
  left: 8px;
  top: 4px;
}

.sun-lines span:nth-child(2) {
  transform: rotate(48deg);
  left: 0;
  top: 18px;
}

.sun-lines span:nth-child(3) {
  transform: rotate(75deg);
  left: 8px;
  top: 30px;
}

.hero-kicker {
  display: block;
  margin: 0 0 4px;
  color: var(--green-dark);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: clamp(36px, 3.4vw, 54px);
  font-weight: 400;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255, 253, 246, 0.78),
    0 0 12px rgba(255, 253, 246, 0.78);
}

.hero h1 {
  position: relative;
  display: inline-block;
  margin: 0;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(56px, 6.8vw, 106px);
  font-weight: 600;
  line-height: 0.92;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-shadow:
    0 2px 0 rgba(255, 253, 246, 0.72),
    0 0 18px rgba(255, 253, 246, 0.82);
}

.hero h1::after {
  content: "🌿";
  position: absolute;
  right: -24px;
  top: -18px;
  font-size: clamp(24px, 2.5vw, 38px);
  transform: rotate(12deg);
}

.title-underline {
  width: min(510px, 78%);
  height: 10px;
  margin: 16px 0 30px;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.hero-description {
  max-width: 670px;
  margin: 0;
  color: var(--ink);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: clamp(27px, 2.2vw, 36px);
  font-weight: 400;
  line-height: 1.38;
  text-shadow:
    0 1px 0 rgba(255, 253, 246, 0.82),
    0 0 10px rgba(255, 253, 246, 0.72);
}

.hero-description strong {
  color: var(--green);
  font-weight: 400;
}

.hero-description em {
  color: var(--coral);
  font-style: normal;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 38px;
}

/* =====================================================
   BUTTONS
   ===================================================== */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 13px 28px;
  border-radius: 13px;
  text-decoration: none;
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: white;
  background: linear-gradient(180deg, #438336, #2f6c2e);
  box-shadow: 0 8px 18px rgba(47, 108, 46, 0.22);
}

.button.secondary {
  color: var(--green-dark);
  background: rgba(255, 249, 236, 0.72);
  border: 3px solid var(--green);
}


/* Home CTA: i link restano sempre cliccabili sopra decorazioni e overlay. */
.home-page .hero-buttons {
  position: relative;
  z-index: 8;
}

.home-page .hero-buttons .button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
  touch-action: manipulation;
}

/* =====================================================
   EVENT BOX
   ===================================================== */

.event-box {
  position: relative;
  width: 100%;
  min-height: 230px;
  padding: 32px 36px;
  color: var(--ink);
  background:
    radial-gradient(circle at bottom right, rgba(244, 125, 88, 0.10), transparent 28%),
    linear-gradient(
      145deg,
      rgba(232, 241, 210, 0.76),
      rgba(202, 225, 174, 0.62)
    );
  border: 2px solid rgba(79, 143, 58, 0.28);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.event-box::before {
  content: "╱";
  position: absolute;
  top: 28px;
  right: 82px;
  color: var(--orange);
  font-size: 31px;
  font-weight: bold;
  transform: rotate(25deg);
}

.event-box::after {
  content: "♥";
  position: absolute;
  right: 36px;
  bottom: 28px;
  color: var(--coral);
  font-size: 38px;
  line-height: 1;
}

.event-box-label {
  margin-bottom: 16px;
  color: var(--orange);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 27px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.event-empty {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.event-real {
  display: block;
}

.event-empty-icon {
  flex: 0 0 auto;
  margin-top: 8px;
  font-size: 44px;
  line-height: 1;
}

.event-title {
  margin-bottom: 12px;
  color: var(--green-dark);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.05;
}

.event-real-title {
  margin-bottom: 18px;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  word-break: break-word;
}

.event-empty-text,
.event-date,
.event-time,
.event-location {
  color: var(--ink);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.event-link {
  display: inline-block;
  margin-top: 16px;
  color: var(--green-dark);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 22px;
  text-decoration: none;
  border-bottom: 3px solid var(--yellow);
}

.loading {
  color: var(--muted);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 23px;
}

/* =====================================================
   HERO FLOWER DECORATION
   ===================================================== */

.hero-flower {
  position: absolute;
  right: clamp(22px, 6vw, 92px);
  bottom: 52px;
  z-index: 3;
  width: 86px;
  height: 134px;
  pointer-events: none;
}

.flower-head {
  position: absolute;
  top: 0;
  left: 20px;
  color: var(--coral);
  font-size: 58px;
  line-height: 1;
  transform: rotate(-8deg);
}

.flower-stem {
  position: absolute;
  left: 50%;
  top: 48px;
  width: 7px;
  height: 84px;
  background: var(--green);
  border-radius: 999px;
  transform: translateX(-50%) rotate(4deg);
}

.flower-leaf {
  position: absolute;
  top: 86px;
  width: 28px;
  height: 16px;
  background: var(--green-bright);
  border-radius: 999px 0 999px 0;
}

.leaf-left {
  left: 18px;
  transform: rotate(24deg);
}

.leaf-right {
  right: 18px;
  transform: scaleX(-1) rotate(24deg);
}

/* =====================================================
   MAIN
   ===================================================== */

.container {
  position: relative;
  z-index: 4;
  max-width: 1420px;
  margin: -58px auto 0;
  padding: 0 38px;
}

/* =====================================================
   ACTIVITIES
   ===================================================== */

.activities {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 48px 44px 44px;
  background: var(--paper-soft);
  border-radius: 34px 34px 0 0;
}

.activity {
  display: grid;
  grid-template-columns: 106px 1fr;
  align-items: center;
  gap: 24px;
}

.activity-icon {
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  border-radius: 999px;
}

.activity-icon span {
  font-size: 42px;
  line-height: 1;
}

.activity-icon-green {
  background: #e2edc0;
}

.activity-icon-yellow {
  background: #ffe8a8;
}

.activity-icon-coral {
  background: #ffd9cf;
}

.activity h3 {
  margin: 0 0 8px;
  color: var(--green-dark);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: clamp(28px, 2vw, 36px);
  font-weight: 400;
  line-height: 1.05;
}

.activity p {
  max-width: 330px;
  margin: 0;
  color: var(--ink);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
}

.activity-mark {
  width: 58px;
  height: 5px;
  margin-top: 16px;
  border-radius: 999px;
  transform: rotate(-3deg);
}

.green-mark {
  background: var(--green);
}

.yellow-mark {
  background: var(--yellow);
}

.coral-mark {
  background: #ff9b87;
}

/* =====================================================
   INSTAGRAM
   ===================================================== */

.instagram-section {
  margin-top: 34px;
  padding: 38px;
  background: rgba(255, 249, 236, 0.92);
  border-radius: 30px;
  box-shadow: var(--soft-shadow);
}

.section-heading {
  margin-bottom: 26px;
}

.section-kicker {
  margin: 0 0 6px;
  color: var(--orange);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 27px;
  text-transform: uppercase;
}

.instagram-section h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
}

/* =====================================================
   FOOTER
   ===================================================== */

footer {
  margin-top: 64px;
  padding: 34px 20px;
  color: white;
  background: var(--green-dark);
  text-align: center;
  font-family: "Nunito", Arial, Helvetica, sans-serif;
  font-size: 16px;
}


/* CARTINO FOOTER CREDIT - R12 */
.footer-credit {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Patrick Hand", "Nunito", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.2px;
}


/* =====================================================
   HOME DESKTOP — HERO PIÙ ARIOSA
   Solo desktop: il mobile R9/R10 rimane invariato.
   ===================================================== */
@media (min-width: 981px) {
  .home-page .hero {
    background-image:
      linear-gradient(
        90deg,
        rgba(255, 249, 236, 0.64) 0%,
        rgba(255, 249, 236, 0.42) 19%,
        rgba(255, 249, 236, 0.12) 32%,
        rgba(255, 249, 236, 0.00) 43%,
        rgba(255, 249, 236, 0.00) 100%
      ),
      url("000.jpg");
  }

  .home-page .hero-inner {
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 72px;
  }

  .home-page .hero-text {
    max-width: 690px;
  }

  .home-page .hero-text::before {
    inset: -34px -42px -30px -40px;
    background: radial-gradient(
      ellipse at 34% 48%,
      rgba(255, 253, 246, 0.54) 0%,
      rgba(255, 253, 246, 0.31) 42%,
      rgba(255, 253, 246, 0.08) 68%,
      transparent 82%
    );
    filter: blur(8px);
  }

  .home-page .hero-kicker {
    font-size: clamp(32px, 2.8vw, 44px);
  }

  .home-page .hero h1 {
    font-size: clamp(50px, 5.5vw, 84px);
    letter-spacing: 0.5px;
  }

  .home-page .hero h1::after {
    right: -20px;
    top: -15px;
    font-size: clamp(21px, 2vw, 31px);
  }

  .home-page .title-underline {
    width: min(410px, 72%);
    height: 8px;
    margin: 14px 0 22px;
  }

  .home-page .hero-description {
    max-width: 570px;
    font-size: clamp(23px, 1.85vw, 30px);
    line-height: 1.34;
  }

  .home-page .hero-buttons {
    gap: 14px;
    margin-top: 28px;
  }

  .home-page .hero-buttons .button {
    min-height: 46px;
    padding: 10px 22px;
    border-radius: 12px;
    font-size: 21px;
  }

  .home-page .hero-buttons .button.secondary {
    border-width: 2px;
  }

  .home-page .event-box {
    min-height: 178px;
    padding: 23px 25px 21px;
    border-radius: 23px;
  }

  .home-page .event-box::before {
    top: 20px;
    right: 58px;
    font-size: 25px;
  }

  .home-page .event-box::after {
    right: 24px;
    bottom: 20px;
    font-size: 29px;
  }

  .home-page .event-box-label {
    margin-bottom: 11px;
    font-size: 22px;
  }

  .home-page .event-real-title,
  .home-page .event-title {
    margin-bottom: 10px;
    font-size: 25px;
    line-height: 1.04;
  }

  .home-page .event-empty {
    gap: 12px;
  }

  .home-page .event-empty-icon {
    margin-top: 4px;
    font-size: 35px;
  }

  .home-page .event-empty-text,
  .home-page .event-date,
  .home-page .event-time,
  .home-page .loading {
    font-size: 19px;
    line-height: 1.18;
  }

  .home-page .event-link {
    margin-top: 11px;
    font-size: 19px;
    border-bottom-width: 2px;
  }
}

/* =====================================================
   RESPONSIVE
   ===================================================== */







/* =====================================================
   PAGINA EVENTI
   ===================================================== */
.internal-header{position:relative;overflow:hidden;padding:26px 38px 120px;background:linear-gradient(rgba(255,249,236,.88),rgba(255,249,236,.96)),url("texture.png")}
.internal-wave{position:absolute;left:-5%;right:-5%;bottom:-1px;height:82px;background:var(--paper-soft);border-radius:50% 50% 0 0/55% 55% 0 0}
.events-hero{position:relative;z-index:2;max-width:1420px;margin:72px auto 0;display:grid;grid-template-columns:minmax(0,.86fr) minmax(480px,1.14fr);align-items:center;gap:clamp(44px,6vw,92px)}
.events-hero-copy{position:relative;padding-left:18px}
.events-eyebrow{margin:0 0 10px;color:var(--orange);font-size:29px;line-height:1}
.events-hero h1{margin:0;color:var(--green-dark);font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:clamp(60px,7vw,104px);font-weight:600;line-height:.92}
.events-hero h1 span{display:block;margin-top:10px;color:var(--green);font-family:"Patrick Hand","Nunito",Arial,sans-serif;font-size:clamp(38px,4vw,62px);font-weight:400;line-height:1}
.events-title-mark{width:min(290px,72%);height:9px;margin:24px 0 28px;background:var(--yellow);border-radius:999px;transform:rotate(-2deg)}
.events-intro{max-width:590px;margin:0;color:var(--ink);font-size:clamp(25px,2.2vw,34px);line-height:1.35}
.events-hero-photo,.story-photo{position:relative;margin:0}
.events-hero-photo{transform:rotate(1deg)}
.events-hero-photo img{display:block;width:100%;height:clamp(370px,42vw,570px);object-fit:cover;border-radius:34px 34px 86px 34px;box-shadow:var(--shadow)}
.photo-tape{position:absolute;top:-17px;left:50%;width:108px;height:33px;background:rgba(243,198,74,.66);transform:translateX(-50%) rotate(-3deg);box-shadow:0 3px 8px rgba(70,70,30,.08)}
.events-main{max-width:1320px;margin:0 auto;padding:42px 38px 20px}
.events-diary{padding-top:10px}
.events-section-heading{max-width:760px;margin-bottom:70px}
.events-section-heading.compact{margin-bottom:34px}
.events-section-heading h2,.events-closing h2{margin:0;color:var(--green-dark);font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:clamp(40px,4.8vw,64px);font-weight:600;line-height:1}
.events-section-heading>p:last-child{max-width:680px;margin:18px 0 0;font-size:25px;line-height:1.35}
.story-event{display:grid;grid-template-columns:minmax(360px,.95fr) minmax(0,1.05fr);align-items:center;gap:clamp(50px,7vw,104px);margin-bottom:112px}
.story-event-reverse .story-photo{grid-column:2;grid-row:1}.story-event-reverse .story-copy{grid-column:1;grid-row:1}
.story-photo-left{transform:rotate(-1.4deg)}.story-photo-right{transform:rotate(1.4deg)}
.story-photo img{display:block;width:100%;height:390px;object-fit:cover;border-radius:28px;box-shadow:var(--soft-shadow)}
.story-photo-left img{border-radius:28px 64px 28px 46px}.story-photo-right img{border-radius:64px 28px 46px 28px}
.event-stamp{display:inline-block;margin-bottom:17px;padding:8px 15px;color:var(--green-dark);background:var(--green-soft);border-radius:999px;font-size:20px;line-height:1;transform:rotate(-1deg)}
.story-date{margin:0 0 8px;color:var(--orange);font-family:"Nunito",Arial,sans-serif;font-size:15px;font-weight:800;letter-spacing:1.2px;text-transform:uppercase}
.story-copy h3{margin:0 0 18px;color:var(--green-dark);font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:clamp(38px,4vw,56px);font-weight:600;line-height:1}
.story-copy>p:last-child{max-width:560px;margin:0;font-size:25px;line-height:1.42}
.moments-gallery{margin-top:6px;padding:54px;background:rgba(255,249,236,.92);border-radius:var(--radius-large);box-shadow:var(--soft-shadow)}
.moments-grid{display:grid;grid-template-columns:1.18fr .82fr 1fr;grid-auto-rows:220px;gap:18px}
.moments-grid figure{overflow:hidden;margin:0;border-radius:22px;transform:rotate(-.5deg)}.moments-grid figure:nth-child(even){transform:rotate(.6deg)}
.moments-grid figure:nth-child(1),.moments-grid figure:nth-child(5){grid-row:span 2}
.moments-grid img{display:block;width:100%;height:100%;object-fit:cover;transition:transform .35s ease}.moments-grid figure:hover img{transform:scale(1.035)}
.events-closing{margin-top:70px;padding:46px 52px;display:flex;align-items:center;justify-content:space-between;gap:40px;background:radial-gradient(circle at right top,rgba(243,198,74,.28),transparent 26%),var(--green-soft);border-radius:30px}
.events-closing p:not(.section-kicker){max-width:680px;margin:15px 0 0;font-size:24px}
.events-calendar-link{flex:0 0 auto;display:inline-flex;align-items:center;gap:13px;color:var(--green-dark);font-size:25px;text-decoration:none;border-bottom:4px solid var(--yellow)}
.events-calendar-link span{transition:transform .2s ease}.events-calendar-link:hover span{transform:translateX(5px)}




/* =====================================================
   PAGINA CHI SIAMO
   ===================================================== */
.about-header{position:relative;overflow:hidden;padding:26px 38px 118px;background:linear-gradient(rgba(255,249,236,.88),rgba(255,249,236,.96)),url("texture.png")}.about-hero{position:relative;z-index:2;max-width:1420px;margin:72px auto 0;display:grid;grid-template-columns:minmax(520px,1.08fr) minmax(0,.92fr);align-items:center;gap:clamp(44px,6vw,92px)}.about-hero-photo{margin:0}.about-hero-photo img{display:block;width:100%;height:clamp(390px,43vw,560px);object-fit:cover;border-radius:34px 88px 34px 34px;box-shadow:var(--shadow)}.about-eyebrow,.journey-kicker{margin:0 0 10px;color:var(--orange);font-size:27px;line-height:1}.about-hero h1{margin:0;color:var(--green-dark);font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:clamp(54px,6vw,88px);font-weight:600;line-height:.98}.about-title-mark{width:min(340px,76%);height:9px;margin:24px 0 28px;background:var(--yellow);border-radius:999px;transform:rotate(-1.5deg)}.about-hero-copy>p:last-child{max-width:560px;margin:0;font-size:clamp(24px,2.1vw,32px);line-height:1.38}.about-main{max-width:1320px;margin:0 auto;padding:42px 38px 20px}.about-journey{position:relative;padding:36px 0 10px}.journey-path{position:absolute;top:110px;bottom:90px;left:50%;width:110px;transform:translateX(-50%);opacity:.68;background:radial-gradient(circle,var(--green-bright) 0 8px,transparent 9px) center top/48px 48px repeat-y}.journey-step{position:relative;z-index:2;display:grid;grid-template-columns:minmax(360px,.96fr) minmax(0,1.04fr);align-items:center;gap:clamp(58px,8vw,120px);margin-bottom:120px}.journey-step-reverse .journey-photo{grid-column:2;grid-row:1}.journey-step-reverse .journey-copy{grid-column:1;grid-row:1}.journey-photo{position:relative;margin:0}.journey-photo img{display:block;width:100%;height:390px;object-fit:cover;background:white;border:12px solid white;border-bottom-width:20px;border-radius:24px;box-shadow:var(--shadow)}.photo-left{transform:rotate(-1.3deg)}.photo-right{transform:rotate(1.4deg)}.tape-green{background:rgba(165,198,123,.78)}.tape-yellow{background:rgba(243,198,74,.74)}.tape-coral{background:rgba(244,125,88,.64)}.journey-number{display:grid;place-items:center;width:64px;height:64px;margin-bottom:18px;color:white;background:var(--green);border-radius:50%;font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:30px;box-shadow:0 7px 18px rgba(55,102,45,.18)}.journey-copy h2,.about-closing h2{margin:0;color:var(--green-dark);font-family:"Fredoka","Nunito",Arial,sans-serif;font-size:clamp(39px,4.2vw,58px);font-weight:600;line-height:1.02}.journey-copy h2::after{content:"";display:block;width:168px;height:5px;margin-top:16px;background:var(--green-bright);border-radius:999px;transform:rotate(-1deg)}.journey-copy>p:last-child{max-width:570px;margin:24px 0 0;font-size:25px;line-height:1.43}.about-closing{margin-top:16px;padding:45px 52px;display:grid;grid-template-columns:100px 1fr;align-items:center;gap:30px;background:radial-gradient(circle at right top,rgba(243,198,74,.26),transparent 26%),var(--green-soft);border-radius:30px}.about-closing-icon{font-size:70px;line-height:1}.about-closing p:not(.section-kicker){max-width:760px;margin:16px 0 0;font-size:24px}


/* =====================================================
   PAGINA CALENDARIO
   ===================================================== */

.calendar-header {
  padding-bottom: 112px;
}

.calendar-intro {
  position: relative;
  z-index: 2;
  max-width: 920px;
  margin: 72px auto 0;
  padding: 0 38px;
  text-align: center;
}

.calendar-eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 29px;
  line-height: 1;
}

.calendar-intro h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.95;
}

.calendar-title-mark {
  width: min(310px, 72%);
  height: 9px;
  margin: 22px auto 25px;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.calendar-intro > p:last-child {
  max-width: 650px;
  margin: 0 auto;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.4;
}

.calendar-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: 46px 38px 30px;
}

.garden-noticeboard {
  position: relative;
  padding: 38px 44px 42px;
  background:
    linear-gradient(rgba(119, 76, 38, 0.12), rgba(80, 52, 27, 0.12)),
    repeating-linear-gradient(
      90deg,
      #9a673d 0,
      #9a673d 86px,
      #906038 87px,
      #906038 89px
    );
  border: 16px solid #6e482b;
  border-radius: 30px;
  box-shadow:
    inset 0 0 0 4px rgba(255, 255, 255, 0.15),
    var(--shadow);
}

.garden-noticeboard::before,
.garden-noticeboard::after {
  content: "";
  position: absolute;
  bottom: -28px;
  width: 42px;
  height: 52px;
  background: #6e482b;
  border-radius: 0 0 8px 8px;
}

.garden-noticeboard::before {
  left: 11%;
}

.garden-noticeboard::after {
  right: 11%;
}

.noticeboard-top {
  position: relative;
  min-height: 92px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.noticeboard-small {
  margin: 0 0 4px;
  color: #fff4df;
  font-size: 23px;
  line-height: 1;
}

.noticeboard-top h2 {
  margin: 0;
  color: white;
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(35px, 4vw, 54px);
  font-weight: 600;
  line-height: 1;
}

.noticeboard-pin {
  position: absolute;
  top: 14px;
  width: 23px;
  height: 23px;
  background: var(--coral);
  border: 5px solid #ffd2c5;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(50, 20, 10, 0.28);
}

.pin-left {
  left: 18px;
}

.pin-right {
  right: 18px;
  background: var(--yellow);
  border-color: #ffecad;
}

.calendar-paper {
  position: relative;
  padding: 26px;
  background:
    linear-gradient(rgba(255, 253, 246, 0.96), rgba(255, 249, 236, 0.98)),
    url("texture.png");
  border-radius: 13px;
  box-shadow: 0 14px 30px rgba(48, 30, 14, 0.25);
  transform: rotate(-0.35deg);
}

.paper-tape {
  position: absolute;
  z-index: 2;
  top: -15px;
  width: 96px;
  height: 30px;
  background: rgba(243, 198, 74, 0.72);
  box-shadow: 0 3px 8px rgba(70, 70, 30, 0.08);
}

.tape-top-left {
  left: 10%;
  transform: rotate(-5deg);
}

.tape-top-right {
  right: 10%;
  transform: rotate(4deg);
}

.google-calendar {
  display: block;
  width: 100%;
  height: 760px;
  border: 0;
  background: white;
  border-radius: 8px;
}

.noticeboard-footer {
  margin-top: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: #fff8e6;
  text-align: center;
}

.noticeboard-footer span {
  font-size: 28px;
}

.noticeboard-footer p {
  margin: 0;
  font-size: 22px;
}








/* =====================================================
   PAGINA CONTATTI
   ===================================================== */

.contacts-header {
  padding-bottom: 108px;
}

.contacts-intro {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 72px auto 0;
  padding: 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  gap: 55px;
}

.contacts-eyebrow {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 29px;
  line-height: 1;
}

.contacts-intro h1 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(58px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.95;
}

.contacts-title-mark {
  width: min(280px, 70%);
  height: 9px;
  margin: 22px 0 25px;
  background: var(--yellow);
  border-radius: 999px;
  transform: rotate(-1deg);
}

.contacts-intro-copy > p:last-child {
  max-width: 650px;
  margin: 0;
  font-size: clamp(25px, 2.1vw, 32px);
  line-height: 1.4;
}

.contacts-illustration {
  position: relative;
  min-height: 180px;
}

.contacts-pot {
  position: absolute;
  left: 12px;
  bottom: 0;
  font-size: 105px;
  transform: rotate(-5deg);
}

.contacts-envelope {
  position: absolute;
  right: 6px;
  top: 8px;
  font-size: 76px;
  transform: rotate(8deg);
}

.contacts-main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 48px 38px 20px;
}

.contact-card {
  position: relative;
  padding: 50px 56px 54px;
  background:
    linear-gradient(rgba(255, 253, 246, 0.95), rgba(255, 249, 236, 0.98)),
    url("texture.png");
  border: 3px solid rgba(79, 143, 58, 0.2);
  border-radius: 30px;
  box-shadow: var(--shadow);
  transform: rotate(-0.25deg);
}

.contact-pin {
  position: absolute;
  top: 25px;
  width: 24px;
  height: 24px;
  background: var(--coral);
  border: 5px solid #ffd5ca;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(50, 20, 10, 0.2);
}

.contact-pin-left {
  left: 30px;
}

.contact-pin-right {
  right: 30px;
  background: var(--yellow);
  border-color: #ffedb1;
}

.contact-card-heading {
  padding: 0 46px;
  text-align: center;
}

.contact-card-heading h2 {
  margin: 0;
  color: var(--green-dark);
  font-family: "Fredoka", "Nunito", Arial, sans-serif;
  font-size: clamp(38px, 4.8vw, 60px);
  font-weight: 600;
  line-height: 1;
}

.contact-details {
  margin-top: 52px;
  display: grid;
  gap: 22px;
}

.contact-detail {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: start;
  gap: 24px;
  padding: 24px 26px;
  background: rgba(232, 241, 210, 0.55);
  border-radius: 22px;
}

.contact-detail:nth-child(2) {
  background: rgba(255, 232, 168, 0.46);
}

.contact-detail:nth-child(3) {
  background: rgba(255, 216, 206, 0.43);
}

.contact-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  background: var(--paper-soft);
  border-radius: 50%;
  font-size: 31px;
}

.contact-detail h3 {
  margin: 0 0 7px;
  color: var(--green-dark);
  font-size: 31px;
  font-weight: 400;
  line-height: 1;
}

.contact-detail p,
.contact-detail a {
  margin: 0;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.35;
}

.contact-detail a {
  overflow-wrap: anywhere;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.contact-detail .contact-text-link {
  display: inline-block;
  margin-top: 10px;
  color: var(--green-dark);
}

.contacts-note {
  margin-top: 36px;
  padding: 27px 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  background: var(--green-soft);
  border-radius: 24px;
  text-align: center;
}

.contacts-note span {
  flex: 0 0 auto;
  font-size: 34px;
}

.contacts-note p {
  max-width: 760px;
  margin: 0;
  font-size: 23px;
  line-height: 1.35;
}

/* =====================================================
   RESPONSIVE UNIFICATO
   Un solo sistema per tablet e smartphone.
   Le regole desktop sopra questa sezione restano invariate.
   ===================================================== */

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

img,
iframe {
  max-width: 100%;
}

.menu-toggle {
  cursor: pointer;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
}

/* Tablet orizzontale e piccoli notebook */
@media (max-width: 1120px) {
  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 72px;
    gap: 40px;
  }

  .hero-text,
  .event-box {
    min-width: 0;
  }

  .event-box {
    width: 100%;
    max-width: 560px;
  }

  .activities {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .activity {
    grid-template-columns: 96px minmax(0, 1fr);
  }
}

/* Impaginazioni interne a colonna singola */
@media (max-width: 980px) {
  .events-hero,
  .about-hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 58px;
  }

  .events-hero-copy {
    padding-left: 0;
  }

  .about-hero-photo {
    order: 2;
  }

  .events-hero-photo,
  .about-hero-photo {
    width: 100%;
    max-width: 780px;
  }

  .journey-path {
    display: none;
  }

  .story-event,
  .story-event-reverse,
  .journey-step,
  .journey-step-reverse {
    grid-template-columns: minmax(0, 1fr);
  }

  .story-event-reverse .story-photo,
  .story-event-reverse .story-copy,
  .journey-step-reverse .journey-photo,
  .journey-step-reverse .journey-copy {
    grid-column: auto;
    grid-row: auto;
  }

  .story-event,
  .story-event-reverse {
    gap: 34px;
    margin-bottom: 86px;
  }

  .journey-step,
  .journey-step-reverse {
    gap: 36px;
    margin-bottom: 88px;
  }

  .story-photo img,
  .journey-photo img {
    height: min(58vw, 440px);
  }

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

  .events-closing {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Navigazione mobile e tablet verticale */
@media (max-width: 900px) {
  .navbar {
    min-height: auto;
    padding: 12px 16px;
    gap: 16px;
  }

  .logo img {
    height: 60px;
    max-width: min(230px, 68vw);
    object-fit: contain;
  }

  .menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 30px;
  }

  .menu {
    position: absolute;
    z-index: 30;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 18px 16px;
    background: var(--paper);
    border: 1px solid rgba(79, 143, 58, 0.15);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .menu.is-open {
    display: flex;
  }

  .menu a {
    width: 100%;
    padding: 13px 6px;
    font-size: 25px;
  }

  .menu a.active::after {
    left: 6px;
    right: auto;
    bottom: 5px;
    width: 52px;
  }

  .internal-header,
  .about-header {
    padding-left: 18px;
    padding-right: 18px;
  }

  .garden-noticeboard {
    padding: 30px 24px 34px;
    border-width: 12px;
  }

  .calendar-paper {
    padding: 18px;
  }

  .google-calendar {
    height: 700px;
  }

  .contacts-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
  }

  .contacts-illustration {
    display: none;
  }

  .contact-map {
    width: 100%;
    max-width: 100%;
    margin-top: 16px;
  }

  .contact-map iframe {
    display: block;
    width: 100%;
    height: 240px;
    border: 0;
    border-radius: 14px;
  }
}

/* Smartphone e tablet stretti */
@media (max-width: 760px) {
  .hero {
    padding: 12px 14px 84px;
    background-image:
      linear-gradient(
        90deg,
        rgba(255, 249, 236, 0.84) 0%,
        rgba(255, 249, 236, 0.62) 48%,
        rgba(255, 249, 236, 0.16) 74%,
        rgba(255, 249, 236, 0) 92%
      ),
      url("000.jpg");
    background-position: 62% center;
  }

  .hero::after {
    height: 76px;
  }

  .hero::before {
    bottom: 53px;
    height: 12px;
  }

  .internal-header,
  .about-header {
    padding: 12px 12px 76px;
  }

  .internal-wave {
    height: 62px;
  }

  .navbar {
    padding: 10px 12px;
    border-radius: 16px;
  }

  .logo img {
    height: 52px;
    max-width: 72vw;
  }

  .menu-toggle {
    font-size: 28px;
  }

  .menu {
    top: calc(100% + 8px);
    padding: 9px 14px 13px;
    border-radius: 16px;
  }

  .menu a {
    padding: 12px 5px;
    font-size: 23px;
  }

  /* Home: composizione mobile dedicata R8. Desktop invariato. */
  .home-page .hero {
    position: relative;
    min-height: 0;
    padding: 0 0 10px;
    overflow: visible;
    background: var(--paper-soft);
  }

  .home-page .hero::before,
  .home-page .hero::after {
    display: none;
  }

  /* Header più sottile: resta chiaramente lo stesso del desktop. */
  .home-page .navbar {
    position: absolute;
    top: 10px;
    left: 14px;
    right: 14px;
    z-index: 10;
    width: auto;
    min-height: 58px;
    margin: 0;
    padding: 6px 10px;
    background: rgba(255, 249, 236, 0.93);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 16px;
    box-shadow: 0 5px 16px rgba(47, 75, 40, 0.10);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .home-page .logo img {
    height: 40px;
    max-width: 104px;
  }

  .home-page .menu-toggle {
    font-size: 25px;
  }

  .home-page .hero-inner {
    display: block;
    max-width: none;
    margin: 0;
  }

  /*
    Su mobile la foto e il testo sono due superfici distinte:
    niente più card desktop sovrapposta alla fotografia.
  */
  .home-page .hero-mobile-stage {
    display: block;
    min-height: 0;
    padding: 0;
    background: var(--paper-soft);
  }

  .home-page .hero-mobile-photo {
    display: block;
    width: 100%;
    height: clamp(255px, 70vw, 315px);
    margin-bottom: -18px;
    background: url("000.jpg") center 50% / cover no-repeat;
    border-radius: 0;
    clip-path: polygon(
      0 0,
      100% 0,
      100% 100%,
      0 91%
    );
  }

  .home-page .hero-text {
    position: relative;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 30px 22px 16px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .home-page .hero-text::before {
    display: none;
  }

  .home-page .sun-lines {
    left: 8px;
    top: 3px;
    transform: scale(0.42);
    transform-origin: top left;
  }

  .home-page .hero-kicker {
    margin-bottom: 1px;
    font-size: clamp(25px, 7.2vw, 31px);
    text-shadow: none;
  }

  .home-page .hero h1 {
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0;
    font-size: clamp(31px, 9.3vw, 40px);
    line-height: 0.98;
    letter-spacing: -0.045em;
    white-space: nowrap;
    text-shadow: none;
  }

  .home-page .hero h1::after {
    display: none;
  }

  .home-page .title-underline {
    width: 126px;
    height: 5px;
    margin: 10px 0 12px;
  }

  .home-page .hero-description {
    max-width: 350px;
    font-size: clamp(17px, 4.7vw, 20px);
    line-height: 1.25;
    text-shadow: none;
  }

  .home-page .hero-description br {
    display: none;
  }

  .home-page .hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    margin-top: 14px;
  }

  .home-page .button {
    width: auto;
    min-height: 40px;
    padding: 8px 13px;
    border-radius: 12px;
    font-size: clamp(15px, 4vw, 17px);
    gap: 6px;
    white-space: nowrap;
  }

  .home-page .button.secondary {
    border-width: 2px;
  }

  /*
    Evento = fascia informativa, non una seconda hero.
    La location resta disponibile nelle pagine evento/calendario,
    ma non occupa spazio nella Home mobile.
  */
  .home-page .event-box {
    width: auto;
    max-width: none;
    min-height: 0;
    margin: 4px 18px 8px;
    padding: 11px 13px 10px;
    background:
      linear-gradient(
        135deg,
        rgba(232, 241, 210, 0.78),
        rgba(221, 235, 199, 0.60)
      );
    border: 1px solid rgba(79, 143, 58, 0.24);
    border-radius: 15px;
    box-shadow: none;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }

  .home-page .event-box::before,
  .home-page .event-box::after {
    display: none;
  }

  .home-page .event-box-label {
    margin-bottom: 4px;
    padding-right: 0;
    font-size: 12.5px;
    line-height: 1;
    letter-spacing: 0.55px;
  }

  .home-page .event-empty {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr);
    align-items: center;
    gap: 8px;
  }

  .home-page .event-empty-icon {
    margin: 0;
    font-size: 23px;
  }

  .home-page .event-title,
  .home-page .event-real-title {
    margin-bottom: 2px;
    font-size: clamp(17px, 4.7vw, 20px);
    line-height: 1.05;
  }

  .home-page .event-empty-text,
  .home-page .event-date,
  .home-page .event-time,
  .home-page .event-link,
  .home-page .loading {
    font-size: 13px;
    line-height: 1.15;
  }

  .home-page .event-real {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "title title"
      "date time"
      "link link";
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
  }

  .home-page .event-real-title {
    grid-area: title;
  }

  .home-page .event-date {
    grid-area: date;
    min-width: 0;
  }

  .home-page .event-time {
    grid-area: time;
    white-space: nowrap;
  }

  .home-page .event-location {
    display: none;
  }

  .home-page .event-link {
    grid-area: link;
    width: fit-content;
    margin-top: 1px;
    border-bottom-width: 2px;
  }

  .home-page .hero-flower {
    display: none;
  }

  .home-page .container {
    max-width: none;
    margin-top: 0;
    padding: 0;
  }

  /*
    ATTIVITÀ — OPZIONE C
    Un solo riquadro orizzontale, diviso in tre blocchi verticali.
    Il prato inferiore entra leggermente nel riquadro e crea lo stacco
    naturale verso Instagram.
  */
  .home-page .activities {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    margin: 14px 18px 38px;
    padding: 18px 7px 32px;
    overflow: visible;
    background: rgba(255, 249, 236, 0.90);
    border: 1px solid rgba(46, 103, 55, 0.10);
    border-radius: 18px;
    box-shadow: 0 6px 18px rgba(47, 75, 40, 0.08);
  }

  .home-page .activity {
    min-width: 0;
    min-height: 154px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    padding: 3px 9px 10px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    text-align: center;
  }

  .home-page .activity + .activity {
    border-left: 1px solid rgba(46, 103, 55, 0.15);
  }

  .home-page .activity-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
    flex: 0 0 auto;
  }

  .home-page .activity-icon span {
    font-size: 24px;
  }

  .home-page .activity h3 {
    min-height: 2.15em;
    margin: 0 0 6px;
    font-size: clamp(13px, 3.6vw, 15px);
    line-height: 1.05;
    text-align: center;
  }

  .home-page .activity p {
    max-width: 108px;
    margin: 0 auto;
    font-size: clamp(9.5px, 2.65vw, 11px);
    line-height: 1.28;
    text-align: center;
    display: block;
    overflow: visible;
  }

  .home-page .activity-mark {
    display: none;
  }

  /*
    Prato morbido: sovrapposto di pochi pixel al fondo del riquadro.
    Non è un asset grafico: è tutto CSS, quindi resta leggero e responsive.
  */
  .home-page .activities::after {
    content: "";
    position: absolute;
    z-index: 2;
    left: -18px;
    right: -18px;
    bottom: -27px;
    height: 46px;
    pointer-events: none;
    background:
      radial-gradient(ellipse at 8% 100%,
        rgba(116, 171, 55, 0.98) 0 35%,
        transparent 36%),
      radial-gradient(ellipse at 27% 100%,
        rgba(167, 207, 86, 0.98) 0 46%,
        transparent 47%),
      radial-gradient(ellipse at 52% 100%,
        rgba(132, 187, 62, 0.98) 0 39%,
        transparent 40%),
      radial-gradient(ellipse at 73% 100%,
        rgba(184, 216, 101, 0.98) 0 46%,
        transparent 47%),
      radial-gradient(ellipse at 93% 100%,
        rgba(105, 163, 47, 0.98) 0 36%,
        transparent 37%),
      linear-gradient(
        to top,
        rgba(154, 197, 76, 0.98) 0 38%,
        rgba(183, 216, 102, 0.92) 39% 48%,
        transparent 49%
      );
  }

  /*
    Alcuni fili d'erba appena accennati sopra le ondine.
    Restano volutamente sobri.
  */
  .home-page .activities::before {
    content: "";
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: -6px;
    height: 21px;
    pointer-events: none;
    opacity: 0.72;
    background:
      linear-gradient(78deg, transparent 47%, #5d9d35 48% 52%, transparent 53%)
        6% 100% / 18px 18px no-repeat,
      linear-gradient(102deg, transparent 47%, #72ad3d 48% 52%, transparent 53%)
        18% 100% / 16px 16px no-repeat,
      linear-gradient(80deg, transparent 47%, #5d9d35 48% 52%, transparent 53%)
        42% 100% / 19px 20px no-repeat,
      linear-gradient(100deg, transparent 47%, #72ad3d 48% 52%, transparent 53%)
        67% 100% / 17px 18px no-repeat,
      linear-gradient(82deg, transparent 47%, #5d9d35 48% 52%, transparent 53%)
        88% 100% / 18px 20px no-repeat;
  }

  /*
    Instagram senza "mega-card": titolo leggero e widget subito sotto.
    Il numero di colonne interno resta gestito da Elfsight.
  */
  .home-page .instagram-section {
    margin: 0;
    padding: 11px 14px 18px;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    overflow: hidden;
  }

  .home-page .section-heading {
    margin-bottom: 9px;
  }

  .home-page .section-kicker {
    margin-bottom: 0;
    font-size: 18px;
  }

  .home-page .instagram-section h2 {
    display: none;
  }

  .home-page .instagram-section > div,
  .home-page .instagram-section iframe {
    max-width: 100% !important;
  }

  /* Chi siamo */
  .about-main {
    padding: 26px 12px 10px;
  }

  .about-hero {
    margin-top: 38px;
    gap: 28px;
  }

  .about-eyebrow,
  .journey-kicker {
    font-size: 23px;
  }

  .about-hero h1 {
    max-width: 100%;
    font-size: clamp(36px, 10.8vw, 58px);
    line-height: 1.02;
  }

  .about-title-mark {
    width: min(82%, 280px);
    margin: 18px 0 22px;
  }

  .about-hero-copy > p:last-child {
    font-size: 23px;
    line-height: 1.35;
  }

  .about-hero-photo img {
    height: min(72vw, 360px);
    border-radius: 24px 48px 24px 24px;
  }

  .about-journey {
    padding-top: 24px;
  }

  .journey-step,
  .journey-step-reverse {
    gap: 28px;
    margin-bottom: 64px;
  }

  .journey-photo img {
    height: min(72vw, 340px);
    border-width: 8px;
    border-bottom-width: 14px;
  }

  .journey-number {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    font-size: 25px;
  }

  .journey-copy h2,
  .about-closing h2 {
    font-size: clamp(32px, 9vw, 43px);
    line-height: 1.05;
  }

  .journey-copy h2::after {
    width: 130px;
    margin-top: 12px;
  }

  .journey-copy > p:last-child {
    margin-top: 18px;
    font-size: 21px;
    line-height: 1.4;
  }

  .about-closing {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 4px;
    padding: 30px 22px;
    gap: 18px;
    border-radius: 24px;
  }

  .about-closing-icon {
    font-size: 58px;
  }

  .about-closing p:not(.section-kicker) {
    font-size: 21px;
  }

  /* Eventi */
  .events-main {
    padding: 26px 12px 10px;
  }

  .events-hero {
    margin-top: 38px;
    gap: 28px;
  }

  .events-eyebrow {
    font-size: 23px;
  }

  .events-hero h1 {
    font-size: clamp(45px, 13vw, 66px);
    line-height: 0.98;
  }

  .events-hero h1 span {
    margin-top: 6px;
    font-size: clamp(29px, 8.4vw, 40px);
    line-height: 1.05;
  }

  .events-title-mark {
    width: min(78%, 245px);
    margin: 18px 0 22px;
  }

  .events-intro {
    font-size: 23px;
    line-height: 1.35;
  }

  .events-hero-photo img {
    height: min(72vw, 360px);
    border-radius: 24px 24px 48px 24px;
  }

  .events-section-heading {
    margin-bottom: 38px;
  }

  .events-section-heading h2,
  .events-closing h2 {
    font-size: clamp(33px, 9.5vw, 45px);
    line-height: 1.05;
  }

  .events-section-heading > p:last-child {
    margin-top: 13px;
    font-size: 21px;
  }

  .story-event,
  .story-event-reverse {
    gap: 27px;
    margin-bottom: 62px;
  }

  .story-photo img {
    height: min(72vw, 340px);
  }

  .event-stamp {
    max-width: 100%;
    margin-bottom: 14px;
    padding: 8px 13px;
    font-size: 18px;
    line-height: 1.2;
    white-space: normal;
  }

  .story-copy h3 {
    margin-bottom: 14px;
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.05;
  }

  .story-copy > p:last-child {
    font-size: 21px;
    line-height: 1.4;
  }

  .moments-gallery {
    padding: 26px 16px;
    border-radius: 24px;
  }

  .moments-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: min(42vw, 210px);
    gap: 10px;
  }

  .events-closing {
    margin-top: 38px;
    padding: 30px 22px;
    gap: 24px;
    border-radius: 24px;
  }

  .events-closing p:not(.section-kicker) {
    font-size: 21px;
  }

  .events-calendar-link {
    width: fit-content;
    max-width: 100%;
    font-size: 22px;
  }

  /* Calendario */
  .calendar-header {
    padding-bottom: 82px;
  }

  .calendar-intro {
    margin-top: 38px;
    padding: 0 4px;
  }

  .calendar-eyebrow {
    font-size: 24px;
  }

  .calendar-intro h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .calendar-title-mark {
    width: min(76%, 310px);
    margin: 18px auto 22px;
  }

  .calendar-intro > p:last-child {
    font-size: 23px;
    line-height: 1.35;
  }

  .calendar-main {
    padding: 26px 10px 26px;
  }

  .garden-noticeboard {
    padding: 22px 10px 26px;
    border-width: 8px;
    border-radius: 20px;
  }

  .garden-noticeboard::before,
  .garden-noticeboard::after {
    bottom: -24px;
    width: 36px;
    height: 44px;
  }

  .noticeboard-top {
    min-height: 76px;
    margin-bottom: 18px;
  }

  .noticeboard-small {
    font-size: 20px;
  }

  .noticeboard-top h2 {
    font-size: clamp(28px, 9vw, 38px);
    line-height: 1.05;
  }

  .noticeboard-pin {
    display: none;
  }

  .calendar-paper {
    padding: 8px;
    overflow: hidden;
    transform: none;
  }

  .paper-tape {
    width: 64px;
    height: 21px;
  }

  .google-calendar {
    display: block;
    width: 100% !important;
    height: 650px !important;
    margin: 0 !important;
    transform: none !important;
    transform-origin: initial !important;
  }

  .noticeboard-footer {
    margin-top: 21px;
    gap: 10px;
    align-items: flex-start;
  }

  .noticeboard-footer span {
    font-size: 23px;
  }

  .noticeboard-footer p {
    font-size: 18px;
    line-height: 1.3;
  }

  /* Contatti */
  .contacts-header {
    padding-bottom: 80px;
  }

  .contacts-intro {
    margin-top: 38px;
    padding: 0 4px;
  }

  .contacts-eyebrow {
    font-size: 24px;
  }

  .contacts-intro h1 {
    font-size: clamp(48px, 14vw, 66px);
  }

  .contacts-title-mark {
    width: min(72%, 280px);
    margin: 18px 0 22px;
  }

  .contacts-intro-copy > p:last-child {
    font-size: 23px;
    line-height: 1.35;
  }

  .contacts-main {
    padding: 26px 12px 10px;
  }

  .contact-card {
    padding: 38px 16px 28px;
    border-radius: 24px;
    transform: none;
  }

  .contact-card-heading {
    padding: 0 20px;
  }

  .contact-card-heading h2 {
    font-size: clamp(34px, 10vw, 46px);
    line-height: 1.05;
  }

  .contact-details {
    margin-top: 32px;
    gap: 16px;
  }

  .contact-detail {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 16px;
    padding: 18px 15px;
    border-radius: 18px;
  }

  .contact-icon {
    width: 54px;
    height: 54px;
    font-size: 26px;
  }

  .contact-detail h3 {
    font-size: 28px;
  }

  .contact-detail p,
  .contact-detail a {
    font-size: 20px;
    overflow-wrap: anywhere;
  }

  .contact-map iframe {
    height: 220px;
  }

  .contacts-note {
    margin-top: 24px;
    padding: 22px 18px;
    border-radius: 20px;
  }

  .contacts-note p {
    font-size: 20px;
  }

  footer {
    margin-top: 44px;
    padding: 28px 14px;
    font-size: 14px;
    line-height: 1.4;
  }
}

/* Smartphone stretti */
@media (max-width: 480px) {
  /* Le regole Home sono fluide e non richiedono override aggiuntivi qui. */

  .about-hero h1 {
    font-size: clamp(34px, 10vw, 43px);
  }

  .about-hero-photo img,
  .journey-photo img,
  .events-hero-photo img,
  .story-photo img {
    height: min(74vw, 330px);
  }

  .events-hero h1 {
    font-size: clamp(42px, 12.5vw, 56px);
  }

  .moments-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: min(72vw, 285px);
  }

  .moments-grid figure:nth-child(1),
  .moments-grid figure:nth-child(5) {
    grid-row: span 1;
  }

  .contact-card-heading {
    padding: 0 10px;
  }

  .contact-detail {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-icon {
    width: 50px;
    height: 50px;
  }

  .contacts-note {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 350px) {
  .hero h1 {
    font-size: 28px;
  }

  .about-hero h1 {
    font-size: 31px;
  }

  .calendar-intro h1,
  .contacts-intro h1 {
    font-size: 46px;
  }

  .garden-noticeboard {
    padding-inline: 7px;
    border-width: 7px;
  }
}
