:root {
  --bg: #f7f5ef;
  --surface: #fffdf7;
  --surface-strong: #ffffff;
  --text: #1f2417;
  --muted: #586044;
  --line: rgba(66, 70, 50, 0.14);
  --brand: #ffb614;
  --brand-dark: #d89500;
  --olive: #424632;
  --olive-soft: #6f7b3f;
  --shadow: 0 18px 60px rgba(31, 36, 23, 0.12);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  background:
    url("../images/macchiacolore-02.png") left -90px top 160px / 220px no-repeat,
    url("../images/macchiacolore-03.png") right -80px top 420px / 250px no-repeat,
    url("../images/macchiacolore-02.png") right 4% bottom 220px / 210px no-repeat,
    url("../images/macchiacolore-03.png") left 3% bottom 380px / 190px no-repeat,
    radial-gradient(circle at top left, rgba(255, 182, 20, 0.18), transparent 28%),
    radial-gradient(circle at bottom right, rgba(111, 123, 63, 0.14), transparent 26%),
    var(--bg);
  line-height: 1.6;
}

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

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

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding-left: 1.2rem;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  z-index: 1000;
  background: #fff;
  border-radius: 999px;
  padding: 12px 16px;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.eyebrow,
.meta {
  font-family: "IBM Plex Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--brand-dark);
  margin-bottom: 12px;
}

.meta {
  color: var(--muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(16px);
  background: rgba(247, 245, 239, 0.82);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 10px 40px rgba(31, 36, 23, 0.08);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand img {
  width: 168px;
  height: auto;
}

.brand-copy {
  display: none;
}

.nav-toggle {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: var(--olive);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.site-nav {
  position: absolute;
  inset: 82px 16px auto;
  display: none;
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.nav-open .site-nav {
  display: block;
}

.site-nav ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--olive);
}

.site-nav a[href="prenota"],
.site-nav a[href="prenota.html"] {
  background: var(--brand);
  color: #1f2417;
  box-shadow: 0 12px 30px rgba(255, 182, 20, 0.28);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: rgba(255, 182, 20, 0.12);
  color: var(--brand-dark);
}

.site-nav a[href="prenota"]:hover,
.site-nav a[href="prenota"][aria-current="page"],
.site-nav a[href="prenota.html"]:hover,
.site-nav a[href="prenota.html"][aria-current="page"] {
  background: var(--brand);
  color: #1f2417;
}

.hero {
  padding: 26px 0 48px;
}

.hero.inner-hero {
  padding: 12px 0 22px;
}

.hero-panel {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(125deg, rgba(66, 70, 50, 0.88), rgba(18, 22, 14, 0.72)),
    var(--hero-image) center/cover no-repeat;
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto auto -120px -40px;
  width: 220px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-02.png") center/contain no-repeat;
  opacity: 0.55;
}

.hero-panel::after {
  content: "";
  position: absolute;
  inset: 24px -56px auto auto;
  width: 220px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-03.png") center/contain no-repeat;
  opacity: 0.5;
}

.hero-grid {
  position: relative;
  z-index: 1;
  padding: 38px 24px 28px;
  display: grid;
  gap: 32px;
  color: #fff;
}

.hero-copy h1,
.page-hero h1 {
  margin: 0 0 16px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.5rem, 7vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.05rem;
}

.home-intro {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.96)),
    var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.home-intro::before {
  content: "";
  position: absolute;
  inset: -60px auto auto -20px;
  width: 220px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-02.png") center/contain no-repeat;
  opacity: 0.24;
}

.home-intro::after {
  content: "";
  position: absolute;
  inset: auto -36px -86px auto;
  width: 220px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-03.png") center/contain no-repeat;
  opacity: 0.22;
}

.home-intro-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 24px;
  padding: 28px 24px;
}

.home-intro-copy {
  display: grid;
  align-content: center;
}

.home-intro-copy h1 {
  margin: 0 0 14px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.home-intro-copy p {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.02rem;
}

.home-intro-copy .chip-row {
  margin-top: 18px;
}

.video-card {
  position: relative;
  overflow: hidden;
  display: grid;
  border-radius: 28px;
  background: #12160d;
  border: 1px solid rgba(66, 70, 50, 0.18);
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.12);
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.hero-actions,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

button {
  cursor: pointer;
}

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

.button.primary {
  background: var(--brand);
  color: #1f2417;
  box-shadow: 0 16px 40px rgba(255, 182, 20, 0.28);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.button.ghost {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--olive);
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  padding: 20px;
  display: grid;
  gap: 18px;
  backdrop-filter: blur(10px);
}

.hero-card .stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stat {
  background: rgba(15, 17, 12, 0.28);
  border-radius: 18px;
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.7rem;
  font-family: "Roboto Condensed", sans-serif;
}

.section {
  padding: 42px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.section-heading p {
  max-width: 68ch;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.cols-2,
.grid.cols-3,
.grid.cols-4 {
  grid-template-columns: 1fr;
}

.card,
.feature-card,
.info-card,
.audience-card,
.price-card,
.summary-box,
.contact-card,
.timeline-card,
.faq-card,
.media-card {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.06);
}

.card,
.feature-card,
.info-card,
.audience-card,
.summary-box,
.contact-card,
.timeline-card,
.faq-card {
  padding: 24px;
}

.feature-card h3,
.info-card h3,
.audience-card h3,
.contact-card h3,
.timeline-card h3,
.price-card h3,
.faq-card summary {
  margin: 0 0 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.4rem;
  line-height: 1.05;
}

.feature-card p,
.info-card p,
.audience-card p,
.summary-box p,
.contact-card p,
.timeline-card p,
.price-card p {
  color: var(--muted);
}

.audience-card img,
.media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.audience-card .card-copy,
.media-card .card-copy {
  padding: 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 0;
  padding: 8px 12px;
  border-radius: 14px;
  border: 1px solid rgba(66, 70, 50, 0.12);
  background: rgba(255, 255, 255, 0.62);
  color: var(--olive);
  font-weight: 700;
  font-size: 0.88rem;
}

.chip::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand);
  flex: 0 0 auto;
}

.summary-box {
  display: grid;
  gap: 12px;
}

.summary-box ul {
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  padding: 28px 24px 20px;
  color: var(--text);
  border: 1px solid var(--line);
  background: linear-gradient(118deg, rgba(255, 255, 255, 0.96), rgba(247, 245, 239, 0.93));
  box-shadow: var(--shadow);
}

.inner-hero .page-hero {
  display: grid;
  gap: 24px;
  padding: 24px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.page-hero-media {
  display: none;
}

.page-hero-media img {
  display: block;
  width: 100%;
  height: auto;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -56px auto auto -24px;
  width: 180px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-02.png") center/contain no-repeat;
  opacity: 0.22;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto -44px -86px auto;
  width: 180px;
  aspect-ratio: 1;
  background: url("../images/macchiacolore-03.png") center/contain no-repeat;
  opacity: 0.2;
}

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

.page-hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  max-width: none;
}

.page-hero h1 {
  max-width: 11ch;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4.4vw, 3.8rem);
  line-height: 0.98;
}

.inner-hero .page-hero h1 {
  margin-bottom: 6px;
  font-size: clamp(1.65rem, 3.2vw, 2.8rem);
}

.page-hero p {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1rem;
}

.inner-hero .page-hero p {
  max-width: 44ch;
  font-size: 0.96rem;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(66, 70, 50, 0.72);
}

.inner-hero .breadcrumb {
  margin-bottom: 10px;
}

.inner-hero .page-hero > .container {
  order: 1;
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 0;
}

.inner-hero .page-hero > .container p {
  max-width: 28ch;
}

.inner-hero .page-hero-media {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.inner-hero .page-hero-media img {
  width: 100%;
  max-width: 320px;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

.content-shell {
  display: grid;
  gap: 18px;
}

.content-shell.two-col {
  grid-template-columns: 1fr;
}

.section.compact {
  padding: 20px 0 28px;
}

.pricing-hero-section {
  padding: 14px 0 28px;
}

.pricing-hero-shell {
  display: grid;
  gap: 24px;
  padding: 24px;
  border-radius: 36px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.94)),
    var(--surface-strong);
  box-shadow: var(--shadow);
}

.pricing-hero-copy {
  display: grid;
  align-content: start;
  gap: 10px;
}

.pricing-hero-copy h1 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
}

.pricing-hero-copy p {
  max-width: 28ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.pricing-hero-art {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  padding: 18px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.78);
}

.pricing-hero-art img {
  width: 100%;
  max-width: 320px;
  max-height: 180px;
  height: auto;
  object-fit: contain;
}

.section-flow .container {
  padding: 28px;
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 245, 239, 0.94)),
    var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.06);
}

.bambini-spotlight {
  display: grid;
  gap: 18px;
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(255, 182, 20, 0.16), rgba(255, 255, 255, 0.96));
  border: 1px solid rgba(255, 182, 20, 0.24);
}

.bambini-spotlight img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.spotlight-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 26px 24px 8px;
}

.spotlight-copy h3 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.spotlight-copy p {
  margin: 0;
  max-width: 60ch;
  color: var(--muted);
}

.spotlight-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--olive);
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.audience-flow {
  gap: 14px;
}

.section-flow .audience-card {
  box-shadow: none;
}

.bullet-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.bullet-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
}

.bullet-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--brand);
}

.price-grid {
  display: grid;
  gap: 18px;
}

.price-card {
  padding: 24px;
  display: grid;
  gap: 16px;
}

.price-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.price-value {
  text-align: right;
}

.price-value strong {
  display: block;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2.2rem;
  line-height: 0.95;
}

.price-card ul {
  color: var(--muted);
}

.price-note {
  border-left: 4px solid var(--brand);
  padding-left: 14px;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
}

.pricing-table th,
.pricing-table td {
  border-bottom: 1px solid var(--line);
  padding: 16px 14px;
  text-align: left;
  vertical-align: top;
}

.pricing-table th {
  font-family: "IBM Plex Mono", monospace;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: var(--muted);
}

.schedule-frame,
.map-frame,
.gift-frame {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: var(--shadow);
}

.schedule-frame iframe,
.map-frame iframe,
.gift-frame iframe {
  width: 100%;
  border: 0;
  display: block;
}

.schedule-frame iframe {
  min-height: 920px;
}

.gift-frame iframe {
  min-height: 860px;
}

.coupon-intro-shell {
  align-items: start;
}

.coupon-selection-panel {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 26px;
  border: 1px solid rgba(66, 70, 50, 0.14);
  background: rgba(255, 255, 255, 0.72);
}

.coupon-selection-panel h3 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1.02;
}

.coupon-selection-panel p {
  color: var(--muted);
}

.coupon-selection-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.coupon-products-grid {
  display: grid;
  gap: 18px;
}

.coupon-product-card {
  display: grid;
  gap: 16px;
  padding: 18px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: var(--surface-strong);
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.coupon-product-card:hover {
  transform: translateY(-2px);
}

.coupon-product-card.is-selected {
  border-color: rgba(216, 149, 0, 0.42);
  box-shadow: 0 22px 56px rgba(255, 182, 20, 0.16);
}

.coupon-product-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: contain;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 182, 20, 0.1), rgba(255, 255, 255, 0.94));
  padding: 12px;
}

.coupon-product-card h3 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.55rem;
  line-height: 1.04;
}

.coupon-product-description {
  color: var(--muted);
}

.coupon-product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.coupon-product-price {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.coupon-product-loading {
  padding: 18px 4px;
  text-align: center;
  color: var(--muted);
}

.coupon-products-feedback {
  margin-top: 14px;
}

.coupon-checkout {
  display: grid;
  gap: 16px;
}

.coupon-modal[hidden] {
  display: none;
}

.coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.coupon-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 22, 13, 0.62);
  backdrop-filter: blur(6px);
}

.coupon-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(720px, calc(100vw - 24px));
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 239, 0.97));
  box-shadow: 0 26px 70px rgba(18, 22, 13, 0.24);
}

.coupon-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--olive);
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
}

.coupon-modal-dialog h2 {
  margin: 0 0 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  line-height: 0.98;
}

.coupon-modal-description {
  color: var(--muted);
  margin-bottom: 8px;
}

.coupon-modal-price {
  margin-bottom: 18px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--brand-dark);
}

.coupon-form {
  display: grid;
  gap: 18px;
}

.coupon-form-grid {
  display: grid;
  gap: 14px;
}

.coupon-field {
  display: grid;
  gap: 8px;
}

.coupon-field span {
  font-weight: 700;
  color: var(--olive);
}

.coupon-field input {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid rgba(66, 70, 50, 0.16);
  background: rgba(255, 255, 255, 0.92);
  font: inherit;
  color: var(--text);
}

.coupon-field input:focus {
  outline: 2px solid rgba(255, 182, 20, 0.32);
  outline-offset: 1px;
  border-color: rgba(216, 149, 0, 0.42);
}

.coupon-submit-row {
  display: grid;
  gap: 10px;
}

.coupon-form-note {
  margin: -2px 0 0;
}

.coupon-submit-row .button[disabled] {
  cursor: not-allowed;
  opacity: 0.65;
  box-shadow: none;
}

body.coupon-modal-open {
  overflow: hidden;
}

.map-frame iframe {
  min-height: 420px;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-card details[open] {
  padding-bottom: 8px;
}

.faq-card summary {
  cursor: pointer;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card .answer {
  padding-top: 10px;
  color: var(--muted);
}

.callout {
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 182, 20, 0.12), rgba(66, 70, 50, 0.1)),
    var(--surface-strong);
  border: 1px solid rgba(255, 182, 20, 0.18);
}

.callout h2,
.callout h3 {
  margin-top: 0;
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-card {
  position: relative;
  padding-left: 68px;
}

.timeline-number {
  position: absolute;
  left: 22px;
  top: 22px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 700;
  background: rgba(255, 182, 20, 0.18);
  color: var(--brand-dark);
}

.media-strip {
  display: grid;
  gap: 18px;
}

.media-strip.cols-2 {
  grid-template-columns: 1fr;
}

.who-plays-grid {
  display: grid;
  gap: 18px;
}

.who-plays-card {
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 182, 20, 0.08), rgba(255, 255, 255, 0.95)),
    var(--surface-strong);
  border: 1px solid var(--line);
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.06);
}

.who-plays-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 18px;
}

.who-plays-card h3 {
  margin: 0 0 10px;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.5rem;
  line-height: 1.02;
}

.who-plays-card p {
  color: var(--muted);
}

.who-plays-list {
  margin-top: 16px;
}

.card-actions {
  margin-top: 18px;
}

.media-card img {
  aspect-ratio: 4 / 3;
}

.split-media-card {
  overflow: hidden;
}

.split-media-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 24px 24px 0 0;
}

.split-media-card .card-copy {
  padding: 20px;
}

.info-grid {
  display: grid;
  gap: 18px;
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-link {
  font-weight: 800;
  color: var(--olive);
}

.contact-band {
  display: grid;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.contact-band-intro p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-band-grid,
.contact-plain-list {
  display: grid;
  gap: 20px;
}

.contact-group {
  display: grid;
  gap: 10px;
  align-content: start;
}

.contact-group p {
  margin: 0;
  color: var(--muted);
}

.contact-page-layout {
  display: grid;
  gap: 28px;
  align-items: start;
}

.contact-page-main {
  display: grid;
  gap: 16px;
}

.contact-page-main h2 {
  margin: 0;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(2rem, 5vw, 3.1rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.contact-page-main p {
  max-width: 64ch;
  color: var(--muted);
}

.contact-page-aside {
  display: grid;
  gap: 24px;
  padding-top: 6px;
}

.site-footer {
  padding: 48px 0 36px;
}

.footer-panel {
  background: #202416;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 34px;
  padding: 28px 24px;
  display: grid;
  gap: 24px;
}

.footer-brand {
  display: grid;
  gap: 12px;
}

.footer-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  color: #fff;
}

.footer-brand p {
  margin: 0;
}

.footer-map-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 700;
}

.footer-map-link:hover {
  border-color: rgba(255, 182, 20, 0.5);
  color: var(--brand);
}

.footer-brand img {
  width: 180px;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.footer-links {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 10px;
}

.footer-links.site-map {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
}

.footer-links a:hover {
  color: var(--brand);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-social-link {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-social-link:hover {
  border-color: rgba(255, 182, 20, 0.5);
  color: var(--brand);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-band .social-link,
.contact-page-layout .social-link {
  border-color: var(--line);
  background: var(--surface-strong);
  color: var(--olive);
}

.social-link:hover {
  border-color: rgba(255, 182, 20, 0.5);
  color: var(--brand);
}

.legal-copy {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

.text-page {
  background: var(--surface-strong);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 18px 48px rgba(31, 36, 23, 0.06);
}

.text-page h2,
.text-page h3 {
  margin-top: 0;
  font-family: "Roboto Condensed", sans-serif;
}

.text-page h3 {
  margin-top: 32px;
}

.text-page p,
.text-page li {
  color: var(--muted);
}

.inline-icon {
  width: 24px;
  height: 24px;
}

.caption {
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 760px) {
  .hero-grid {
    padding: 56px 52px 44px;
  }

  .home-intro-grid {
    padding: 40px;
  }

  .page-hero {
    padding: 34px 34px 24px;
  }

  .inner-hero .page-hero {
    min-height: 220px;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    gap: 36px;
    align-items: center;
    padding: 28px 34px;
  }

  .inner-hero .page-hero::before {
    display: none;
  }

  .inner-hero .page-hero::after {
    display: none;
  }

  .inner-hero .page-hero > .container {
    justify-self: start;
    align-self: center;
  }

  .inner-hero .page-hero-media {
    justify-self: end;
    width: 100%;
  }

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

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

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

  .content-shell.two-col {
    grid-template-columns: 1.2fr 0.8fr;
  }

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

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

  .coupon-field-full {
    grid-column: 1 / -1;
  }

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

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

  .bambini-spotlight {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: stretch;
  }

  .spotlight-copy {
    padding: 34px 32px;
  }

  .contact-band-grid,
  .contact-plain-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-hero-shell {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 360px);
    align-items: center;
    gap: 36px;
    padding: 28px 34px;
  }

  .pricing-hero-copy {
    justify-self: start;
  }

  .pricing-hero-art {
    justify-self: end;
    width: 100%;
  }

  .contact-page-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  }

  .footer-grid {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
  }
}

@media (min-width: 1024px) {
  body {
    background:
      url("../images/macchiacolore-02.png") left -110px top 180px / 260px no-repeat,
      url("../images/macchiacolore-03.png") right -90px top 360px / 300px no-repeat,
      url("../images/macchiacolore-02.png") right 6% bottom 240px / 240px no-repeat,
      url("../images/macchiacolore-03.png") left 5% bottom 340px / 220px no-repeat,
      radial-gradient(circle at top left, rgba(255, 182, 20, 0.18), transparent 28%),
      radial-gradient(circle at bottom right, rgba(111, 123, 63, 0.14), transparent 26%),
      var(--bg);
  }

  .brand-copy {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .site-nav {
    position: static;
    display: block;
    background: transparent;
    border: 0;
    padding: 0;
    box-shadow: none;
  }

  .site-nav ul {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .site-nav a {
    min-height: 44px;
    padding-inline: 12px;
  }

  .hero-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: end;
  }

  .home-intro-grid {
    grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
    align-items: center;
    padding: 46px 52px;
  }

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

  .contact-plain-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .coupon-products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
