:root {
  --paper: #f8f2e6;
  --paper-2: #efe4cf;
  --ink: #161210;
  --ink-soft: #5c5245;
  --sapphire: #0f2a4a;
  --ruby: #e01145;
  --emerald: #00a86b;
  --emerald-deep: #007a4d;
  --mint-soft: #cfeede;
  --warm-accent: #e8c1a8;
  --blue: #0057ff;
  --blue-hover: #0040d6;
  --white: #fffdf9;
  --line: rgba(22, 18, 16, 0.14);
  --display: "Fraunces", serif;
  --body: "DM Sans", sans-serif;
  --pad: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  line-height: 1.05;
  letter-spacing: -0.01em;
  white-space: normal;
  overflow-wrap: break-word;
}

em {
  font-style: italic;
  color: var(--ruby);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
}

.skip-link {
  position: absolute;
  left: var(--pad);
  top: -4rem;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 0.6rem 1rem;
  border-radius: 2px;
}

.skip-link:focus {
  top: var(--pad);
}

/* Kicker unico: stessa misura/tracking ovunque; cambia solo il colore di contesto */
p.eyebrow,
.eyebrow {
  display: block;
  font-family: var(--body);
  font-size: 0.7rem;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--sapphire);
  margin: 0 0 1rem;
}

p.eyebrow--on-dark,
.eyebrow--on-dark {
  color: var(--warm-accent);
}

.wrap {
  max-width: 72rem;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ——— Header + mobile menu ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: var(--pad);
  background: rgba(248, 242, 230, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid var(--emerald);
  transition: box-shadow 0.35s, background 0.35s;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px -18px rgba(22, 18, 16, 0.35);
}

.brand {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto auto;
  column-gap: 0.5rem;
  align-items: center;
  min-height: 44px;
  line-height: 1;
  position: relative;
  z-index: 52;
}

.brand-logo {
  grid-row: 1 / 4;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.brand span:not(.brand-piva) {
  grid-column: 2;
  font-family: var(--display);
  font-size: 1.35rem;
}

.brand small {
  grid-column: 2;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sapphire);
  margin-top: 0.2rem;
}

.brand-piva {
  grid-column: 2;
  margin-top: 0.18rem;
  font-family: var(--body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.2;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.menu-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
  z-index: 52;
}

.menu-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: var(--ink);
  margin-inline: auto;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s;
}

.site-header.is-open .menu-toggle span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.site-header.is-open .menu-toggle span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.menu {
  display: none;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(0.65rem, 1.2vw, 1.35rem);
  font-size: 0.82rem;
  font-weight: 500;
}

.header-cta {
  display: none !important;
  border: 1px solid var(--blue);
  background: var(--blue);
  color: var(--white);
  padding: 0.5rem 0.95rem;
  border-radius: 2px;
  font-weight: 600;
  opacity: 1 !important;
  white-space: nowrap;
  transition: background 0.35s, transform 0.35s;
}

.menu a {
  opacity: 0.72;
  position: relative;
  padding-bottom: 2px;
}

.menu a:not(.header-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--emerald);
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.menu a:not(.header-cta):hover::after,
.menu a[aria-current="page"]:not(.header-cta)::after {
  width: 100%;
}

.menu a:hover,
.menu a[aria-current="page"] {
  opacity: 1;
}

.header-cta:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
}

.header-cta::after {
  display: none !important;
}

@media (max-width: 839px) {
  .menu {
    display: none;
    position: static;
    transform: none;
    flex: 1 1 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0;
    width: 100%;
    padding: 1.1rem 0 2rem;
    background: transparent;
    font-size: 1.35rem;
    z-index: auto;
    counter-reset: navitem;
  }

  .menu a {
    display: flex;
    align-items: baseline;
    gap: 0.85rem;
    width: 100%;
    min-height: 52px;
    padding: 0.7rem 0;
    opacity: 1;
    font-family: var(--display);
    font-size: clamp(1.65rem, 7vw, 2.15rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.15;
    border-bottom: 1px solid rgba(22, 18, 16, 0.1);
  }

  .menu a:not(.header-cta)::after {
    display: none;
  }

  .site-header.is-open .menu a::before {
    counter-increment: navitem;
    content: "0" counter(navitem);
    flex: 0 0 auto;
    font-family: var(--body);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: var(--emerald-deep);
    transform: translateY(-0.15em);
  }

  .site-header.is-open {
    position: fixed;
    inset: 0;
    z-index: 80;
    width: 100%;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    flex-wrap: wrap;
    align-content: flex-start;
    overflow-x: hidden;
    overflow-y: auto;
    background: var(--paper);
    backdrop-filter: none;
  }

  .site-header.is-open .menu {
    display: flex;
    max-width: 100%;
    min-width: 0;
  }

  .site-header.is-open .menu a {
    animation: menuLinkIn 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .site-header.is-open .menu a:nth-child(1) { animation-delay: 0.04s; }
  .site-header.is-open .menu a:nth-child(2) { animation-delay: 0.08s; }
  .site-header.is-open .menu a:nth-child(3) { animation-delay: 0.12s; }
  .site-header.is-open .menu a:nth-child(4) { animation-delay: 0.16s; }
  .site-header.is-open .menu a:nth-child(5) { animation-delay: 0.2s; }
  .site-header.is-open .menu a:nth-child(6) { animation-delay: 0.24s; }
  .site-header.is-open .menu a:nth-child(7) { animation-delay: 0.28s; }
}

@keyframes menuLinkIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 840px) {
  .menu-toggle {
    display: none;
  }

  .menu {
    display: flex;
    font-size: 0.78rem;
    gap: clamp(0.5rem, 1vw, 1.15rem);
  }
}

.wa-float {
  position: fixed;
  bottom: 1.4rem;
  right: 1.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--emerald);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px -10px rgba(22, 18, 16, 0.5);
  z-index: 60;
  transition: transform 0.3s;
}

.wa-float svg {
  width: 1.55rem;
  height: 1.55rem;
  fill: currentColor;
}

.wa-float:hover {
  transform: translateY(-3px) scale(1.05);
}

/* ——— Section shell ——— */
.block {
  padding: 5rem var(--pad);
  border-top: 3px solid var(--emerald);
}

.block--cream {
  background: var(--paper);
}

.block--cream-2 {
  background: var(--paper-2);
}

.block--ink {
  background: var(--ink);
  color: var(--paper);
}

.block--sapphire {
  background: var(--sapphire);
  color: var(--paper);
}

.block--emerald {
  background: var(--emerald);
  color: var(--paper);
  border-top-color: var(--emerald-deep);
}

.block--ink p.eyebrow,
.block--sapphire p.eyebrow,
.block--ink .eyebrow,
.block--sapphire .eyebrow,
.block--ink p.eyebrow--on-dark,
.block--sapphire p.eyebrow--on-dark,
.cta p.eyebrow,
.cta .eyebrow {
  color: var(--warm-accent);
}

.block--emerald p.eyebrow,
.block--emerald .eyebrow {
  color: var(--mint-soft);
}

.block--ink .lead,
.block--sapphire .lead {
  color: rgba(248, 242, 230, 0.68);
}

.block--emerald .lead {
  color: rgba(248, 242, 230, 0.88);
}

.block--emerald h2 {
  color: var(--paper);
}

.block--emerald h2 em {
  color: var(--mint-soft);
}

.block--sapphire h2,
.block--ink h2 {
  color: var(--paper);
}

.block--sapphire h2 em,
.block--ink h2 em {
  color: var(--warm-accent);
}

main {
  overflow-x: clip;
}

.inner {
  max-width: 72rem;
  min-width: 0;
  margin: 0 auto;
}

.lead {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 36rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.9rem 1.75rem;
  border-radius: 14px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.button::after {
  content: "→";
  font-size: 1.05em;
  line-height: 1;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.button:hover::after {
  transform: translateX(3px);
}

.button:focus-visible {
  outline: 2px solid var(--emerald);
  outline-offset: 3px;
}

.button-primary {
  background: linear-gradient(165deg, #12b87a 0%, var(--emerald) 48%, var(--emerald-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.22) inset,
    0 14px 28px -14px rgba(0, 122, 77, 0.55);
}

.button-primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(165deg, #1cc48a 0%, #00b574 45%, #008a57 100%);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.28) inset,
    0 18px 34px -14px rgba(0, 122, 77, 0.6);
  color: var(--white);
}

.button-primary:active {
  transform: translateY(0);
}

.button-light {
  background: var(--white);
  color: var(--ink);
  border-color: rgba(22, 18, 16, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 28px -16px rgba(22, 18, 16, 0.35);
}

.button-light:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 168, 107, 0.35);
  color: var(--emerald-deep);
}

.button-outline {
  border-color: rgba(22, 18, 16, 0.22);
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.button-outline:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

.button-outline--light {
  color: var(--white);
  border-color: rgba(255, 253, 248, 0.55);
  background: rgba(255, 253, 248, 0.06);
  backdrop-filter: blur(6px);
}

.button-outline--light:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--ink);
}

.button-outline::after,
.button-outline--light::after {
  opacity: 0.85;
}

.text-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
  border-bottom: 1.5px solid rgba(0, 168, 107, 0.45);
  padding-bottom: 3px;
  transition: color 0.3s, border-color 0.3s, gap 0.3s;
}

.text-link:hover {
  opacity: 1;
  color: var(--emerald-deep);
  border-bottom-color: var(--emerald);
}

.actions {
  display: flex;
  align-items: center;
  gap: 1rem 1.35rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.actions--center {
  justify-content: center;
}

.cal-scope-note {
  margin: 0.85rem 0 0;
  max-width: 36rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.actions--center + .cal-scope-note {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

/* ——— Hero ——— */
.hero {
  padding: 4.5rem var(--pad) 3.5rem;
  border-bottom: 3px solid var(--emerald);
  background: var(--paper);
}

.hero-grid {
  max-width: 72rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

.hero-mark {
  font-family: var(--display);
  font-style: italic;
  color: var(--ruby);
  font-size: 1.05rem;
  margin: 0 0 1.1rem;
  letter-spacing: 0.01em;
}

.hero h1 {
  white-space: normal;
  overflow: visible;
  overflow-wrap: break-word;
  max-width: 22ch;
  font-size: clamp(1.78rem, 4.1vw, 3.35rem);
  line-height: 1.12;
  margin-bottom: 1.3rem;
}

.hero .lead {
  max-width: 32rem;
}

.hero-glow {
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, var(--emerald) 0%, rgba(0, 168, 107, 0) 70%);
  opacity: 0.35;
  z-index: 0;
  pointer-events: none;
}

.stars {
  margin-top: 1.8rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.hero-radius {
  font-family: var(--display);
  font-style: italic;
  color: var(--emerald);
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.hero-radius span {
  color: var(--ruby);
}

.hero-visual {
  position: relative;
  height: 34rem;
}

@media (max-width: 960px) {
  .hero-visual {
    height: 24rem;
    margin-top: 0.5rem;
  }
}

.photo {
  margin: 0;
  position: absolute;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 36px 70px -28px rgba(22, 18, 16, 0.5);
}

.photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}

.photo-main {
  width: 78%;
  height: 88%;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 18px 18px 8px 18px;
}

.photo-main img {
  object-position: 48% 16%;
  animation: kenburns 16s ease-in-out infinite alternate;
}

@keyframes kenburns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

.photo-small {
  width: 50%;
  height: 44%;
  right: 0;
  bottom: 0;
  z-index: 2;
  border: 6px solid var(--paper);
  border-radius: 14px;
  box-shadow: 0 26px 50px -20px rgba(22, 18, 16, 0.5);
}

.photo-small img {
  object-position: center 30%;
}

.photo-small--dog img {
  object-position: 50% 26%;
}

.hand-note {
  position: absolute;
  top: auto;
  right: auto;
  left: -0.4rem;
  bottom: 36%;
  z-index: 4;
  margin: 0;
  width: 8.75rem;
  height: 8.75rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 28%, #ffffff 0%, #fffdf8 58%, #f3ebe0 100%);
  border: 2px solid rgba(255, 255, 255, 0.95);
  box-shadow:
    0 0 0 3px var(--emerald),
    0 0 0 6px rgba(255, 253, 249, 0.95),
    0 18px 40px -12px rgba(22, 18, 16, 0.45),
    0 4px 12px rgba(224, 17, 69, 0.12);
  transform: rotate(-8deg);
  text-align: center;
  animation: handNoteIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.25s both;
  pointer-events: none;
}

.hand-note span {
  display: block;
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.2;
  color: var(--ruby);
  letter-spacing: -0.01em;
  max-width: 6.4rem;
}

@keyframes handNoteIn {
  from {
    opacity: 0;
    transform: rotate(-18deg) scale(0.72);
  }
  to {
    opacity: 1;
    transform: rotate(-8deg) scale(1);
  }
}

@media (max-width: 960px) {
  .hand-note {
    top: 0.45rem;
    left: 0.45rem;
    right: auto;
    bottom: auto;
    width: 6.6rem;
    height: 6.6rem;
    animation: none;
  }

  .hand-note span {
    font-size: 0.86rem;
    max-width: 5rem;
  }

  .photo-small--dog img {
    object-position: 48% 12%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hand-note {
    animation: none;
  }
}

/* Pet Signal Lab — compatto e identitario */
.hero,
.character-lab {
  overflow-x: clip;
}
.character-lab {
  --mood: var(--sapphire);
  margin: 0;
  padding: 42px var(--gutter);
  background: var(--mood);
  color: #fff;
  transition: background-color .45s ease;
}
.character-lab[data-mood="energico"] { --mood: #b42e52; }
.character-lab[data-mood="senior"] { --mood: var(--emerald); }
.character-lab[data-mood="curioso"] { --mood: #176f86; }
.character-lab__intro {
  max-width: var(--max);
  margin: 0 auto 26px;
  display: grid;
  grid-template-columns: .42fr 1.58fr;
  gap: 30px;
  align-items: end;
}
.character-lab__intro .eyebrow {
  color: #fff;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.character-lab__intro .eyebrow-logo {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.character-lab__intro h2 { max-width: 760px; margin: 0; color: #fff; font-size: clamp(28px, 3.3vw, 48px); line-height: 1; }
.character-lab__intro div > p { margin: 10px 0 0; color: rgba(255,255,255,.72); line-height: 1.45; max-width: 42rem; }
.character-lab__stage {
  max-width: var(--max);
  min-height: 360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: .86fr .78fr .7fr;
  border: 1px solid rgba(255,255,255,.26);
}
.character-lab__answer { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.character-lab__answer > span { font-size: 10px; letter-spacing: .16em; opacity: .65; }
.character-lab__answer > p:first-of-type { margin: 28px 0 0; font-size: 12px; opacity: .72; }
.character-lab__answer h3 { margin: 0 0 20px; color: #fff; font-family: var(--display); font-size: clamp(42px, 5vw, 68px); line-height: .9; }
.character-lab__answer strong { font-size: 19px; }
.character-lab__answer > p:last-child { max-width: 460px; margin: 9px 0 0; color: rgba(255,255,255,.76); font-size: 13px; }
.character-lab__photo {
  position: relative;
  min-height: 360px;
  height: 360px;
  margin: 0;
  padding: 24px;
  border-inline: 1px solid rgba(255,255,255,.26);
  box-sizing: border-box;
  overflow: hidden;
  background-color: rgba(0,0,0,.12);
  background-image: none;
}
.character-lab__frame {
  display: none !important;
}
.character-lab__photo > img,
.character-lab__img,
.character-lab [data-character-image] {
  position: absolute;
  top: 24px;
  left: 24px;
  right: auto;
  bottom: auto;
  inset: auto;
  z-index: 1;
  display: block;
  width: calc(100% - 48px);
  height: calc(100% - 48px);
  max-width: none;
  max-height: none;
  object-fit: cover;
  object-position: center 45%;
  border-radius: 50% 50% 8px 8px;
  opacity: 1;
  visibility: visible;
}
.character-orbit { position: absolute; z-index: 2; inset: 10px; pointer-events: none; animation: character-spin 18s linear infinite; }
.character-orbit span { position: absolute; width: max-content; padding: 5px 9px; border-radius: 99px; background: #fff; color: var(--mood); font-size: 8px; font-weight: 700; letter-spacing: .11em; text-transform: uppercase; transition: color .45s ease; }
.character-orbit span:nth-child(1) { top: 0; left: 50%; }
.character-orbit span:nth-child(2) { right: -3px; top: 48%; }
.character-orbit span:nth-child(3) { bottom: 0; left: 14%; }
@keyframes character-spin { to { transform: rotate(360deg); } }
.character-lab__controls { display: grid; grid-template-rows: repeat(4, 1fr); }
.character-lab__controls button { padding: 0 18px; display: flex; justify-content: space-between; align-items: center; gap: 0.75rem; border: 0; border-bottom: 1px solid rgba(255,255,255,.26); background: transparent; color: #fff; font-weight: 700; cursor: pointer; }
.character-lab__controls button:last-child { border-bottom: 0; }
.character-lab__controls button img {
  position: relative;
  inset: auto;
  z-index: 0;
  width: 40px;
  height: 40px;
  max-width: 40px;
  max-height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 45%;
  flex: 0 0 auto;
  opacity: 1;
  visibility: visible;
}
.character-lab__controls button span { font-size: 9px; opacity: .65; margin-left: auto; }
.character-lab__controls button:hover,
.character-lab__controls button.is-active { background: #fff; color: var(--mood); }
@media (max-width: 760px) {
  .character-lab { padding: 34px 20px; }
  .character-lab__intro { grid-template-columns: 1fr; gap: 12px; }
  .character-lab__intro h2 { font-size: 31px; }
  .character-lab__stage { grid-template-columns: 1fr 1fr; }
  .character-lab__answer { padding: 24px 18px; }
  .character-lab__answer h3 { font-size: 44px; }
  .character-lab__photo { min-height: 320px; height: 320px; border-right: 0; }
  .character-lab__controls { grid-column: 1 / -1; grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .character-lab__controls button { min-height: 54px; border-top: 1px solid rgba(255,255,255,.26); border-bottom: 0; }
}
@media (max-width: 520px) {
  .character-lab__stage { display: block; }
  .character-lab__photo { min-height: 330px; height: 330px; border: 0; border-top: 1px solid rgba(255,255,255,.26); }
  .character-lab__photo > img,
  .character-lab__img,
  .character-lab [data-character-image] {
    top: 20px;
    left: 20px;
    width: calc(100% - 40px);
    height: calc(100% - 40px);
  }
}
@media (prefers-reduced-motion: reduce) { .character-orbit { animation: none; } }

/* Ritmo compatto approvato: padding verticale; laterali unificati */
main > section {
  padding-block: 20px;
  padding-inline: var(--pad);
}
main > section.hero {
  padding-block: 4.5rem 3.5rem;
}

@media (max-width: 839px) {
  main > section.hero,
  .hero {
    margin-top: 0;
    padding-block: 1.15rem 2.4rem;
  }
}
.cta-inner { padding: 0; }
.character-lab { padding-block: 20px; padding-inline: var(--pad); }

/* Griglia e allineamenti intenzionali — stessa colonna ovunque */
.inner,
.hero-grid,
.character-lab__intro,
.character-lab__stage,
.cta-inner {
  width: min(100%, 72rem);
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.section-heading {
  width: 100%;
}
.section-heading--center {
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-heading--center .eyebrow {
  justify-content: center;
}
.section-heading--center .lead {
  margin-left: auto;
  margin-right: auto;
}
.character-lab__intro {
  display: block;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.character-lab__intro .eyebrow {
  justify-content: center;
  margin-bottom: 12px;
}
.character-lab__intro h2,
.character-lab__intro div > p {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  white-space: normal;
  overflow: visible;
}
.character-lab__intro h2 {
  max-width: 18ch;
}
.character-lab__intro div > p {
  max-width: 34rem;
}

.ribbon {
  background: var(--ruby);
  color: var(--paper);
  padding: 1.1rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  text-align: center;
  border-bottom: 3px solid var(--emerald);
}

.ribbon strong {
  font-family: var(--display);
  font-weight: 500;
}

.ribbon a {
  border-bottom: 1px solid rgba(248, 242, 230, 0.6);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 0.85rem;
  border-bottom: 3px solid var(--emerald);
  padding: 1.35rem var(--pad);
  background: var(--paper-2);
}

.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-radius: 999px;
  padding: 0.55rem 1rem 0.55rem 0.75rem;
  line-height: 1.3;
  max-width: 100%;
}

.trust-ico {
  font-size: 1rem;
  line-height: 1;
  flex: 0 0 auto;
}

.trust-strip strong {
  color: var(--emerald-deep);
  font-weight: 700;
}

@media (max-width: 640px) {
  .trust-strip {
    justify-content: center;
    gap: 0.55rem;
  }

  .trust-item {
    justify-content: center;
    white-space: normal;
    font-size: 0.8rem;
    padding: 0.5rem 0.75rem 0.5rem 0.6rem;
  }
}

/* ——— Promise ——— */
.promise {
  text-align: center;
}

.promise p:first-child {
  font-size: 0.95rem;
  color: rgba(248, 242, 230, 0.6);
  margin: 0 0 0.6rem;
}

.promise h2 {
  font-size: clamp(1.35rem, 3.8vw, 2.15rem);
  max-width: 38rem;
  margin: 0 auto 2.2rem;
  color: var(--paper);
  line-height: 1.28;
}

.promise-points {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.promise-points span {
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--emerald);
  background: rgba(248, 242, 230, 0.92);
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
  margin: 0.3rem;
}

/* ——— Chi sono / marisol ——— */
.marisol {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3.5rem;
  align-items: center;
}

@media (max-width: 900px) {
  .marisol {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

.portrait-stack {
  position: relative;
  height: 26rem;
  margin-bottom: 2.4rem;
}

@media (max-width: 900px) {
  .portrait-stack {
    height: 20rem;
    margin-bottom: 1.6rem;
  }
}

.portrait-one {
  position: absolute;
  width: 68%;
  height: 92%;
  object-fit: cover;
  object-position: center 18%;
  top: 0;
  left: 0;
  border-radius: 4px;
  box-shadow: 0 30px 60px -26px rgba(22, 18, 16, 0.5);
}

.portrait-two {
  position: absolute;
  width: 44%;
  height: 46%;
  object-fit: cover;
  object-position: center 20%;
  right: 0;
  bottom: 0;
  border-radius: 4px;
  border: 6px solid var(--paper);
  box-shadow: 0 24px 46px -18px rgba(22, 18, 16, 0.5);
}

.portrait-caption {
  position: absolute;
  left: 0;
  bottom: -2rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1rem;
  color: var(--emerald);
}

.section-copy {
  text-align: left;
}

.section-copy h2 {
  font-size: clamp(1.2rem, 3.5vw, 2.9rem);
  margin: 0.35rem 0 1.3rem;
}

.section-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  margin-bottom: 1.1rem;
  max-width: 32rem;
}

/* ——— Servizi ——— */
/* Titoli di sezione: sempre a sinistra (editoriale). Centro solo promise + CTA. */
.section-heading {
  max-width: min(72rem, 100%);
  margin-bottom: 2.8rem;
  text-align: left;
}

.section-heading h2 {
  font-size: clamp(1.2rem, 3.5vw, 2.9rem);
  margin-top: 0.35rem;
  line-height: 1.15;
}

#servizi .section-heading h2 {
  max-width: 28ch;
}

.section-heading .lead {
  margin-top: 0.9rem;
  margin-bottom: 0;
  max-width: 36rem;
}

/* Home Beniamini: mosaico full-width → heading, lead e CTA tutti al centro */
#beniamini .section-heading,
#beniamini .section-heading .eyebrow,
#beniamini .section-heading h2,
#beniamini .section-heading .lead {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#beniamini .section-heading {
  max-width: 48rem;
}
#beniamini .section-heading .lead {
  max-width: 36rem;
}

.svc-list {
  border-top: 1px solid rgba(22, 18, 16, 0.16);
}

.svc {
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr) 5.5rem;
  gap: 1.6rem;
  align-items: center;
  padding: 1.8rem 0;
  border-bottom: 1px solid rgba(22, 18, 16, 0.16);
  transition: background 0.3s;
}

.svc-num {
  font-family: var(--display);
  font-style: italic;
  color: var(--ruby);
  font-size: 1.25rem;
}

.svc-ico {
  font-size: 1.45rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: start;
  margin-top: 0.2rem;
  width: 2.4rem;
}

.svc h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.svc p {
  color: var(--ink-soft);
  font-size: 0.94rem;
  max-width: 28rem;
  margin: 0;
}

.svc img {
  width: 5.5rem;
  height: 5.5rem;
  object-fit: cover;
  border-radius: 3px;
  box-shadow: 0 14px 26px -12px rgba(22, 18, 16, 0.4);
}

@media (max-width: 640px) {
  .svc {
    grid-template-columns: 2rem minmax(0, 1fr);
    gap: 1rem;
  }

  .svc-ico {
    width: 2rem;
    font-size: 1.25rem;
  }

  .svc img {
    display: none;
  }
}

/* ——— Quello che faccio (riga compatta Home) ——— */
.do-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.85rem, 2vw, 1.35rem);
  margin-top: 0.35rem;
  align-items: start;
}

.do-item {
  display: grid;
  gap: 0.75rem;
}

.do-item__photo {
  margin: 0;
  position: relative;
  border-radius: 3px;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: var(--paper);
  box-shadow: 0 14px 28px -18px rgba(22, 18, 16, 0.4);
}

.do-item:nth-child(2) .do-item__photo {
  aspect-ratio: 16 / 11;
}

.do-item:nth-child(3) .do-item__photo {
  aspect-ratio: 16 / 9.5;
}

.do-item__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-width: none;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.do-item:hover .do-item__photo img {
  transform: scale(1.05);
}

.do-item__num {
  position: absolute;
  left: 0.55rem;
  bottom: 0.4rem;
  z-index: 1;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 4px 14px rgba(22, 18, 16, 0.45);
  pointer-events: none;
}

.do-item__copy .status {
  margin-bottom: 0.35rem;
}

.do-item__copy h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  margin: 0 0 0.35rem;
  white-space: normal;
  max-width: none;
}

.do-item__copy p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.5;
}

.do-area {
  margin: 1.15rem 0 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

#servizi .preview-cta--center {
  margin-top: 1.15rem;
}

.preview-cta--center {
  justify-content: center;
  margin-top: 2.75rem;
}

.polaroid[data-gallery-item] {
  cursor: zoom-in;
}

.polaroid[data-gallery-item]:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

@media (max-width: 860px) {
  .do-row {
    grid-template-columns: 1fr;
    gap: 1.15rem;
  }

  .do-item__photo,
  .do-item:nth-child(2) .do-item__photo,
  .do-item:nth-child(3) .do-item__photo {
    aspect-ratio: 16 / 9;
  }
}

@media (prefers-reduced-motion: reduce) {
  .do-item__photo img {
    transition: none;
  }

  .do-item:hover .do-item__photo img {
    transform: none;
  }
}

.status {
  display: inline-block;
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 2px;
  margin-bottom: 0.4rem;
}

.status--open {
  background: rgba(0, 168, 107, 0.14);
  color: var(--emerald);
}

.status--wait {
  background: #f2e0c2;
  color: #7c5a2e;
}

.status--paused {
  background: rgba(22, 18, 16, 0.1);
  color: var(--ink-soft);
}

.service-area {
  margin-top: 2rem;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

/* ——— Steps / timeline ——— */
.steps ol,
.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  border-top: 1px solid rgba(248, 242, 230, 0.28);
  padding-top: 2.6rem;
  counter-reset: step;
}

.timeline.timeline--3 {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 900px) {
  .steps ol:not(.timeline) {
    grid-template-columns: 1fr;
  }

  .steps ol,
  .steps ol.timeline,
  .timeline,
  .timeline.timeline--3 {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: none;
    padding-top: 1.35rem;
    position: relative;
    max-width: 36rem;
  }

  .block.steps {
    padding-block: 3.4rem;
  }

  .block.steps .section-heading h2 {
    font-size: clamp(1.75rem, 7.2vw, 2.35rem);
    max-width: 14ch;
  }
}

.steps li {
  counter-increment: step;
}

.steps ol:not(.timeline) li::before {
  content: "0" counter(step);
  display: block;
  font-family: var(--display);
  font-style: italic;
  color: #e8c1a8;
  font-size: 1.4rem;
  margin-bottom: 0.9rem;
}

.block--emerald .steps ol:not(.timeline) li::before,
.block--emerald ol:not(.timeline) li::before {
  color: var(--mint-soft);
}

.steps strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}

.steps li p,
.steps ol p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(248, 242, 230, 0.78);
}

.steps--light ol {
  border-top-color: var(--line);
}

.steps--light li::before {
  color: var(--ruby);
}

.steps--light li p,
.steps--light ol p {
  color: var(--ink-soft);
}

/* Timeline (numbered circles) */
.timeline li {
  position: relative;
  padding-bottom: 0.4rem;
}

.tl-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--paper);
  color: var(--emerald-deep);
  font-family: var(--display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  box-shadow: 0 8px 18px -10px rgba(22, 18, 16, 0.45);
}

.timeline strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  color: var(--paper);
}

.timeline p {
  font-size: 0.9rem;
  margin: 0;
  color: rgba(248, 242, 230, 0.88);
  max-width: 14rem;
}

.timeline li:not(:last-child)::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

@media (min-width: 901px) and (max-width: 1100px) {
  .timeline,
  .timeline.timeline--3 {
    gap: 1rem;
  }

  .timeline p {
    font-size: 0.84rem;
  }
}

@media (min-width: 901px) {
  .timeline li:not(:last-child)::after {
    top: 1rem;
    right: -0.85rem;
    width: 0.55rem;
    height: 0.55rem;
    border-top: 2px solid var(--mint-soft);
    border-right: 2px solid var(--mint-soft);
    transform: rotate(45deg);
    opacity: 0.85;
  }
}

@media (max-width: 900px) {
  .timeline li {
    display: grid;
    grid-template-columns: 2.35rem minmax(0, 1fr);
    column-gap: 1rem;
    padding: 0 0 1.85rem 0;
    border-left: 2px solid rgba(248, 242, 230, 0.28);
    margin-left: 1.15rem;
    padding-left: 1.4rem;
  }

  .timeline li:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
  }

  .tl-num {
    grid-row: 1 / span 2;
    margin: 0 0 0 -2.65rem;
  }

  .timeline li:not(:last-child)::after {
    display: none;
  }

  .timeline strong {
    font-size: 1.28rem;
  }

  .timeline p {
    max-width: none;
    font-size: 1rem;
    line-height: 1.55;
  }
}

/* ——— Gallery ——— */
.gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.1rem;
  max-width: 72rem;
  margin-inline: auto;
}

@media (max-width: 720px) {
  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.g-card {
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 16px 30px -16px rgba(22, 18, 16, 0.4);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s;
  border: 0;
  padding: 0;
  text-align: left;
  color: inherit;
  cursor: default;
  width: 100%;
  display: block;
}

button.g-card {
  cursor: pointer;
}

.g-card:nth-child(odd) {
  transform: rotate(-1deg);
}

.g-card:nth-child(even) {
  transform: rotate(1deg);
}

.g-card:hover {
  transform: rotate(0) translateY(-7px) scale(1.03);
  z-index: 2;
  box-shadow: 0 26px 46px -18px rgba(22, 18, 16, 0.5);
}

.g-photo {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--paper-2);
}

.g-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 26%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ritagli mirati su soggetti decentrati */
.g-card:nth-child(1) .g-photo img { object-position: 42% 48%; } /* Nexi close-up */
.g-card:nth-child(4) .g-photo img { object-position: 50% 28%; } /* Jordan cane */
.g-card:nth-child(9) .g-photo img { object-position: 38% 72%; } /* Baileys basso */
.g-card:nth-child(10) .g-photo img { object-position: 50% 28%; } /* Jolie muso */

.g-card:hover .g-photo img {
  transform: scale(1.08);
}

.g-cap {
  padding: 0.7rem 0.8rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.5rem;
}

.g-cap span:first-child {
  font-family: var(--display);
  font-weight: 500;
  font-size: 0.95rem;
}

.g-cap span:last-child {
  font-size: 0.66rem;
  color: var(--ruby);
  font-weight: 700;
}

.gallery--full {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {
  .gallery--full {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .gallery--full {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ——— Friends bar ——— */
.friends-bar {
  max-width: 72rem;
  margin: 2.2rem auto 0;
  text-align: center;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--emerald-deep);
  padding: 0.85rem 1.2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.friends-bar-wrap {
  padding-top: 0;
  border-top: none;
}

.friends-bar-wrap .friends-bar {
  margin-top: 0;
}

.ig-band {
  max-width: 72rem;
  margin: 2.4rem auto 0;
  padding: 1.35rem 1.25rem 1.5rem;
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(0, 168, 107, 0.22);
  border-left: 3px solid var(--emerald);
  border-radius: 4px;
}

.ig-band .eyebrow {
  margin-bottom: 0.45rem;
}

.ig-band__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.6rem;
}

.ig-band a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 3.2vw, 1.55rem);
  font-weight: 500;
  color: var(--sapphire);
  border-bottom: 1px solid var(--emerald);
}

.ig-band a span {
  font-family: var(--body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--emerald-deep);
  margin-bottom: 0.15rem;
}

.ig-band a:hover {
  color: var(--emerald-deep);
}

.footer-links a[href*="instagram"],
.footer-links a[href*="tiktok"] {
  font-family: var(--display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--sapphire);
  border-bottom: 1px solid var(--emerald);
}

/* ——— Why choose ——— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
}

@media (max-width: 960px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

.why-card {
  background: var(--white);
  border: 1px solid rgba(22, 18, 16, 0.08);
  border-radius: 3px;
  padding: 1.5rem 1.35rem 1.6rem;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.3s,
    background 0.3s;
}

[data-reveal].in .why-card {
  opacity: 1;
  transform: none;
}

.why-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 107, 0.32);
  background: rgba(255, 253, 248, 0.96);
}

[data-reveal].in .why-card:hover {
  transform: translateY(-3px);
}

.why-ico {
  display: block;
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.15rem;
  margin: 0 0 0.55rem;
  color: var(--ink);
}

.why-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

/* ——— Zone / map ——— */
.zone {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.8rem;
  align-items: start;
}

.zone > * {
  min-width: 0;
}

@media (max-width: 900px) {
  .zone {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
}

.zone-copy {
  text-align: left;
}

.zone-copy h2 {
  font-size: clamp(1.2rem, 3.5vw, 2.9rem);
  margin: 0.35rem 0 1rem;
}

.listino-rule {
  max-width: 52rem;
  margin: 1rem 0 0;
  padding: 1rem 1.15rem;
  background: var(--white);
  border: 1px solid rgba(22, 18, 16, 0.1);
  border-left: 3px solid var(--emerald);
  border-radius: 3px;
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.55;
}

.zone-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.zone-list li {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(0, 168, 107, 0.25);
  border-radius: 2px;
  padding: 0.45rem 0.85rem;
}

.zone-map {
  position: relative;
  overflow: visible;
  min-height: 18rem;
  width: 100%;
  max-width: 100%;
}

.zone-map-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  width: 100%;
  min-height: 18rem;
  height: clamp(18rem, 58vw, 24rem);
  border: 3px solid var(--emerald);
  border-radius: 4px;
  padding: 1.5rem 1.25rem 1.75rem;
  background-color: #d5e4d6;
  background-image:
    radial-gradient(circle at 52% 46%, rgba(224, 17, 69, 0.16) 0 10px, transparent 11px),
    repeating-linear-gradient(0deg, transparent, transparent 23px, rgba(15, 42, 74, 0.07) 24px),
    repeating-linear-gradient(90deg, transparent, transparent 23px, rgba(15, 42, 74, 0.07) 24px);
}

.zone-map-pin {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50% 50% 50% 0;
  background: var(--ruby);
  transform: rotate(-45deg);
  box-shadow: 0 8px 16px -8px rgba(22, 18, 16, 0.45);
}

.zone-map-place {
  margin: 0;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--sapphire);
  text-align: center;
}

.zone-map-ph .button {
  min-height: 48px;
}

.zone-map iframe {
  width: 100%;
  max-width: 100%;
  min-height: 18rem;
  height: clamp(18rem, 58vw, 24rem);
  border: 3px solid var(--emerald);
  border-radius: 4px;
  background: #d5e4d6;
  display: block;
}

.zone-map-link {
  display: inline-block;
  margin-top: 0.85rem;
  min-height: 44px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--sapphire);
  border-bottom: 1px solid var(--emerald);
}

@media (max-width: 640px) {
  .zone-map {
    min-height: 20rem;
  }

  .zone-map iframe,
  .zone-map-ph {
    min-height: 20rem;
    height: 20.5rem;
    width: 100%;
  }
}

/* ——— Visit diary ——— */
.visit-diary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 860px) {
  .visit-diary {
    grid-template-columns: 1fr;
  }
}

.visit-card {
  background: var(--white);
  border: 1px solid rgba(22, 18, 16, 0.08);
  border-radius: 3px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s;
}

.visit-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 168, 107, 0.28);
}

.visit-photo {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-2);
}

.visit-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}

/* Keep faces / animals in frame (portrait + landscape sources) */
.visit-card:nth-child(1) .visit-photo img {
  object-position: center 18%;
}

.visit-card:nth-child(2) .visit-photo img {
  object-position: 42% 48%;
}

.visit-card:nth-child(3) .visit-photo img {
  object-position: center 22%;
}

.visit-card p {
  margin: 0;
  padding: 1.15rem 1.2rem 1.35rem;
  font-family: var(--display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--ink);
}

/* ——— Reviews: featured + list, not italic card-grid ——— */
.reviews {
  display: block;
  max-width: none;
  min-width: 0;
  text-align: left;
}

.reviews__head {
  max-width: 22ch;
  margin-bottom: 2.6rem;
}

.reviews__head h2 {
  font-size: clamp(2.1rem, 4vw, 3.35rem);
  line-height: 1.08;
}

.review-track {
  min-width: 0;
  max-width: 100%;
}

.review-desk {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2.6rem;
}

.review-main {
  margin: 0;
  padding: 0 0 2.2rem;
  border-bottom: 1px solid var(--line);
}

.review-main p {
  margin: 0;
  font-family: var(--body);
  font-style: normal;
  font-size: 1.12rem;
  line-height: 1.7;
  max-width: 62ch;
  color: var(--ink);
}

.review-main footer,
.review-stack footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 0.85rem;
  margin-top: 1.25rem;
  font-size: 0.86rem;
  line-height: 1.3;
}

.review-main footer {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.85rem;
  align-items: center;
}

.review-main footer img {
  grid-row: 1 / span 2;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  object-position: 50% 30%;
}

.review-main footer b,
.review-stack footer b {
  font-family: var(--body);
  font-weight: 600;
  font-style: normal;
}

.review-main footer small,
.review-stack footer small {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.review-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 3.2rem;
  row-gap: 0;
}

.review-stack blockquote {
  margin: 0;
  padding: 1.35rem 0 1.45rem;
  border-top: 1px solid var(--line);
}

.review-stack p {
  margin: 0;
  font-family: var(--body);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink);
}

.review-note {
  color: var(--ink-soft);
  font-size: 0.92rem;
  margin: 2rem 0 0;
}

.review-note .text-link {
  margin-left: 0.35rem;
}

@media (max-width: 900px) {
  .reviews__head {
    max-width: 28ch;
  }

  .review-stack {
    grid-template-columns: 1fr;
    column-gap: 0;
  }
}

@media (max-width: 700px) {
  .reviews__head {
    max-width: none;
    margin-bottom: 1.5rem;
  }

  .review-track {
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    max-width: 100%;
  }

  .review-desk {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 100%;
    width: 100%;
    gap: 0;
  }

  .review-stack {
    display: contents;
  }

  .review-desk > blockquote,
  .review-stack blockquote {
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border: 0;
    margin: 0;
    padding: 0 0.15rem 0.35rem 0;
    box-sizing: border-box;
  }

  .review-main p,
  .review-stack p {
    font-size: 1.12rem;
    line-height: 1.55;
    max-width: none;
  }

  .review-main footer,
  .review-stack footer {
    margin-top: 1.2rem;
  }
}

/* ——— FAQ ——— */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid rgba(248, 242, 230, 0.2);
  margin-top: 2rem;
}

.faq-item {
  border-bottom: 1px solid rgba(248, 242, 230, 0.2);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    background 0.4s,
    box-shadow 0.4s,
    border-color 0.4s;
  position: relative;
}

.faq-item.in {
  opacity: 1;
  transform: none;
}

.faq-item[aria-expanded="true"] {
  background: rgba(248, 242, 230, 0.08);
  box-shadow: inset 3px 0 0 var(--emerald);
}

.faq-q {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1rem 1.25rem;
  background: none;
  border: none;
  text-align: left;
  padding: 1.55rem 0.85rem 1.55rem 0.85rem;
  cursor: pointer;
  color: var(--paper);
  font-family: var(--body);
  min-height: 4.2rem;
  transition: background 0.3s;
}

.faq-q:hover {
  background: rgba(248, 242, 230, 0.05);
}

.faq-num {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  color: var(--warm-accent);
  min-width: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

.faq-q h3 {
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  font-weight: 500;
  font-family: var(--display);
  color: var(--paper);
  margin: 0;
  transition: color 0.3s, letter-spacing 0.35s;
  line-height: 1.3;
  letter-spacing: -0.01em;
}

.faq-q:hover h3 {
  color: var(--warm-accent);
}

.faq-q:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.faq-icon {
  position: relative;
  width: 1.55rem;
  height: 1.55rem;
  flex: 0 0 auto;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--warm-accent);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.3s;
}

.faq-icon::before {
  width: 1.15rem;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 2px;
  height: 1.15rem;
  transform: translate(-50%, -50%);
}

.faq-item[aria-expanded="true"] .faq-icon::before,
.faq-item[aria-expanded="true"] .faq-icon::after {
  background: var(--paper);
}

.faq-item[aria-expanded="true"] .faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg) scale(0);
}

.faq-item[aria-expanded="true"] .faq-icon::before {
  transform: translate(-50%, -50%) rotate(180deg);
}

.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-a p {
  color: rgba(248, 242, 230, 0.72);
  font-size: 1rem;
  max-width: 38rem;
  padding: 0.15rem 0.85rem 1.7rem 3.15rem;
  margin: 0;
  line-height: 1.7;
  position: relative;
}

.faq-a p::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.35rem;
  width: 1.4rem;
  height: 2px;
  background: var(--warm-accent);
  opacity: 0.85;
}

.faq-item[aria-expanded="true"] .faq-a {
  grid-template-rows: 1fr;
}

.faq-item[aria-expanded="true"] .faq-a-inner {
  opacity: 1;
  transform: none;
  transition-delay: 0.1s;
}

.faq-item[aria-expanded="true"] .faq-q h3 {
  letter-spacing: 0.005em;
}

@media (max-width: 640px) {
  .faq-q {
    align-items: start;
    gap: 0.75rem 0.9rem;
    padding: 1.35rem 0.2rem;
  }

  .faq-num,
  .faq-icon {
    margin-top: 0.2rem;
  }

  .faq-q h3 {
    font-size: 1rem;
  }
}

.faq-list--light {
  border-top-color: var(--line);
}

.faq-list--light .faq-item {
  border-bottom-color: var(--line);
}

.faq-list--light .faq-item[aria-expanded="true"] {
  background: rgba(0, 168, 107, 0.06);
  box-shadow: inset 3px 0 0 var(--emerald);
}

.faq-list--light .faq-q:hover {
  background: rgba(0, 168, 107, 0.04);
}

.faq-list--light .faq-q,
.faq-list--light .faq-q h3 {
  color: var(--ink);
}

.faq-list--light .faq-num {
  color: var(--emerald-deep);
}

.faq-list--light .faq-q:hover h3 {
  color: var(--emerald-deep);
}

.faq-list--light .faq-q:focus-visible {
  outline-color: var(--blue);
}

.faq-list--light .faq-icon::before,
.faq-list--light .faq-icon::after {
  background: var(--emerald);
}

.faq-list--light .faq-item[aria-expanded="true"] .faq-icon::before,
.faq-list--light .faq-item[aria-expanded="true"] .faq-icon::after {
  background: var(--emerald-deep);
}

.faq-list--light .faq-a p {
  color: var(--ink-soft);
}

.faq-list--light .faq-a p::before {
  background: var(--emerald);
}

/* ——— Home FAQ — dialogue board (non accordion) ——— */
.home-faq {
  overflow: hidden;
}

.home-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
  gap: clamp(1.75rem, 4vw, 3.5rem);
  align-items: start;
}

.home-faq__rail h2 {
  white-space: normal;
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0.35rem 0 1rem;
}

.home-faq__lead {
  margin: 0 0 1.5rem;
  color: rgba(248, 242, 230, 0.72);
  max-width: 28rem;
  line-height: 1.65;
}

.home-faq__board {
  display: grid;
  gap: 1rem;
}

.home-faq__tabs {
  display: grid;
  gap: 0.55rem;
}

.home-faq__tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  text-align: left;
  width: 100%;
  min-height: 3.6rem;
  padding: 0.95rem 1.1rem;
  border: 1px solid rgba(248, 242, 230, 0.18);
  border-radius: 3px;
  background: rgba(248, 242, 230, 0.04);
  color: var(--paper);
  cursor: pointer;
  font-family: var(--body);
  transition:
    background 0.35s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.35s,
    transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.home-faq__tab span {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--warm-accent);
  line-height: 1;
}

.home-faq__tab strong {
  font-weight: 500;
  font-size: 0.98rem;
  line-height: 1.35;
  font-family: var(--display);
}

.home-faq__tab:hover {
  background: rgba(248, 242, 230, 0.08);
  transform: translateX(4px);
}

.home-faq__tab.is-active {
  background: rgba(248, 242, 230, 0.12);
  border-color: rgba(232, 193, 168, 0.55);
  box-shadow: inset 3px 0 0 var(--emerald);
  transform: none;
}

.home-faq__tab:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.home-faq__stage {
  position: relative;
  min-height: 14rem;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border-radius: 4px;
  background:
    linear-gradient(135deg, rgba(248, 242, 230, 0.12), rgba(248, 242, 230, 0.04));
  border: 1px solid rgba(248, 242, 230, 0.16);
  overflow: hidden;
}

.home-faq__stage.is-swap .home-faq__index,
.home-faq__stage.is-swap h3,
.home-faq__stage.is-swap p:not(.home-faq__index) {
  opacity: 0;
  transform: translateY(10px);
}

.home-faq__index {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(3rem, 7vw, 4.5rem);
  line-height: 0.9;
  color: var(--warm-accent);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-faq__stage h3 {
  margin: 0 0 1rem;
  font-size: clamp(1.35rem, 2.5vw, 1.85rem);
  white-space: normal;
  max-width: 18ch;
  color: var(--paper);
  transition: opacity 0.28s ease, transform 0.28s ease;
}

.home-faq__stage p:not(.home-faq__index) {
  margin: 0;
  max-width: 38rem;
  color: rgba(248, 242, 230, 0.78);
  font-size: 1.08rem;
  line-height: 1.7;
  transition: opacity 0.28s ease, transform 0.28s ease;
}

@media (max-width: 900px) {
  .home-faq__grid {
    grid-template-columns: 1fr;
  }

  .home-faq__rail h2 {
    max-width: none;
  }

  .home-faq__tab:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-faq__tab,
  .home-faq__stage.is-swap .home-faq__index,
  .home-faq__stage.is-swap h3,
  .home-faq__stage.is-swap p:not(.home-faq__index),
  .home-faq__index,
  .home-faq__stage h3,
  .home-faq__stage p:not(.home-faq__index) {
    transition: none;
  }
}

.text-link--on-dark {
  color: var(--paper);
  border-color: rgba(248, 242, 230, 0.5);
}

/* ——— CTA full-bleed ——— */
.cta {
  position: relative;
  min-height: clamp(22rem, 58vh, 34rem);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid var(--emerald);
}

.cta-bg {
  position: absolute;
  inset: 0;
}

.cta-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
}

.cta--chi .cta-bg img {
  object-position: 50% 28%;
}

.cta--chi .cta-bg::after {
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.42), rgba(22, 18, 16, 0.78));
}

.cta-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(22, 18, 16, 0.48), rgba(22, 18, 16, 0.84));
}

.cta-inner {
  position: relative;
  z-index: 2;
  padding: 4.5rem var(--pad);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.35rem, 3.8vw, 3rem);
  max-width: none;
  margin: 0 auto 1rem;
}

.cta p:not(.eyebrow) {
  color: rgba(255, 253, 248, 0.85);
  max-width: 26rem;
  margin: 0 auto;
}

.cta .actions {
  justify-content: center;
  margin-top: 1.4rem;
  gap: 0.9rem 1.2rem;
}

.cta p.eyebrow,
.cta .eyebrow {
  margin: 0 auto 1rem;
}

.cta-tertiary {
  margin-top: 1.25rem !important;
  font-size: 0.9rem;
  color: rgba(255, 253, 248, 0.78);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.cta-tertiary a {
  color: rgba(255, 253, 248, 0.8);
  border-bottom: 1px solid rgba(255, 253, 248, 0.35);
}

.cta-tertiary a:hover {
  color: var(--white);
  border-bottom-color: var(--white);
}

/* Sapphire band CTA (contatti closing) */
.block--sapphire .actions--center {
  justify-content: center;
}

.block--sapphire .cta-tertiary {
  text-align: center;
  margin-top: 1rem !important;
}

.block--sapphire .cta-tertiary a {
  color: rgba(255, 253, 248, 0.8);
}

/* ——— Page hero (inner) ——— */
.page-hero {
  text-align: left;
  padding: 4rem var(--pad) 3.2rem;
  background: var(--paper);
  border-bottom: 3px solid var(--emerald);
}

.page-hero .inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.page-hero--solo .inner {
  grid-template-columns: 1fr;
  max-width: 40rem;
}

.page-hero h1 {
  white-space: normal;
  overflow: visible;
  overflow-wrap: break-word;
  max-width: 22ch;
  font-size: clamp(1.85rem, 4.4vw, 3.35rem);
  margin: 0.4rem 0 1.1rem;
}

.page-hero-lead {
  font-size: 1.12rem;
  color: var(--ink-soft);
  max-width: 34rem;
  margin: 0;
}

.page-hero .actions {
  margin-top: 1.5rem;
}

.page-hero-visual {
  position: relative;
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--paper-2);
  box-shadow: 0 30px 60px -26px rgba(22, 18, 16, 0.5);
  aspect-ratio: 4 / 5;
  min-height: 18rem;
  width: 100%;
}

.page-hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 38%;
}

@media (max-width: 860px) {
  .page-hero .inner {
    grid-template-columns: 1fr;
  }

  .page-hero-visual {
    max-width: 22rem;
    aspect-ratio: 1 / 1;
  }
}

/* ——— Values / tariffs / contacts ——— */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 2.5rem;
}

@media (max-width: 700px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
}

.values-grid h3 {
  font-size: 1.25rem;
  margin-bottom: 0.45rem;
}

.values-grid p {
  color: var(--ink-soft);
  margin: 0;
  max-width: 28rem;
}

.tariff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

@media (max-width: 700px) {
  .tariff-grid {
    grid-template-columns: 1fr;
  }
}

.tariff-card {
  background: var(--white);
  border: 1px solid rgba(22, 18, 16, 0.1);
  border-radius: 3px;
  padding: 1.6rem 1.5rem;
  box-shadow: 0 16px 30px -18px rgba(22, 18, 16, 0.3);
}

.tariff-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tariff-card .price {
  font-family: var(--display);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--ruby);
  margin: 0 0 0.7rem;
}

.tariff-card p:last-child {
  color: var(--ink-soft);
  margin: 0;
  font-size: 0.95rem;
}

.tariff-note {
  max-width: 40rem;
}

.tariff-note h2 {
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.tariff-note ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--ink-soft);
}

.tariff-note li {
  margin-bottom: 0.55rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

@media (max-width: 800px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.2rem;
  }
}

.contact-meta {
  color: var(--ink-soft);
  margin: 0.85rem 0 0;
}

.contact-meta a {
  border-bottom: 1px solid var(--emerald);
  font-weight: 600;
}

.contact-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.contact-steps li {
  padding: 1.3rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-steps strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 1.15rem;
  margin-bottom: 0.35rem;
}

.contact-steps p {
  margin: 0;
  color: var(--ink-soft);
}

.preview-cta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.2rem;
}

main figure,
.polaroid,
.page-hero-visual,
.article-figure,
.article-mosaic figure,
.photo,
.lp-photo,
.lp-featured-photo {
  cursor: zoom-in;
}

/* ——— Lightbox ——— */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(22, 18, 16, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--pad);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s, visibility 0.35s;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox img {
  max-width: min(94vw, 64rem);
  max-height: 82vh;
  object-fit: contain;
  border-radius: 3px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.55);
  display: block;
}

.lightbox-figure {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  max-width: 100%;
}

.lightbox-caption {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.15rem, 2.5vw, 1.55rem);
  font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.01em;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.8rem;
  height: 2.8rem;
  border: 0;
  border-radius: 2px;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

.lightbox-close:focus-visible {
  outline: 2px solid var(--warm-accent);
  outline-offset: 3px;
}

/* ——— Footer ——— */
footer {
  padding: 3rem var(--pad) 2rem;
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.88rem;
  border-top: 3px solid var(--emerald);
  background: var(--paper);
}

.f-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--ink);
  font-weight: 500;
}

.footer-logo {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-note {
  margin-top: 0.4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.1rem 1.5rem;
  margin: 1.1rem 0;
}

.footer-links a:hover {
  color: var(--ink);
  border-bottom: 1px solid var(--emerald);
}

footer small {
  display: block;
  margin-top: 0.4rem;
}

/* ——— Reveal ——— */
[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal].in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header.is-open .menu a {
    animation: none;
  }

  html {
    scroll-behavior: auto;
  }

  .photo-main img {
    animation: none;
  }

  [data-reveal],
  .faq-item,
  .why-card,
  .faq-a-inner {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .g-card,
  .g-card:nth-child(odd),
  .g-card:nth-child(even),
  .g-card:hover {
    transform: none;
  }

  .g-card:hover .g-photo img {
    transform: none;
  }

  .button-primary:hover,
  .button-light:hover,
  .button-outline:hover,
  .button-outline--light:hover,
  .wa-float:hover,
  .why-card:hover,
  .visit-card:hover,
  [data-reveal].in .why-card:hover {
    transform: none;
  }

  .button:hover::after {
    transform: none;
  }
}

/* Kit cookie VG */
.footer-kit .footer-pref {
  display: inline;
  margin: 0 0 0 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
  min-height: 44px;
}

.footer-kit .footer-pref::before {
  content: " · ";
  text-decoration: none;
}

.vg-cookie {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 10000;
  max-width: 560px;
}

.vg-cookie[hidden] {
  display: none !important;
}

.vg-cookie__panel {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 22px 50px rgba(22, 18, 16, 0.16);
  padding: 22px;
}

.vg-cookie__title {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
}

.vg-cookie__text {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.55;
}

.vg-cookie__text a {
  color: var(--ruby);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.vg-cookie__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.vg-cookie__btn {
  min-height: 44px;
  padding: 0 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  font-family: var(--body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}

.vg-cookie__btn--primary {
  background: var(--emerald);
  color: var(--white);
}

.vg-cookie__btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}

.vg-cookie__prefs[hidden],
.vg-cookie__main[hidden] {
  display: none !important;
}

.vg-cookie__cats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.vg-cookie__cat {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px;
}

.vg-cookie__cat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}

.vg-cookie__cat-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.vg-cookie__cat-badge {
  font-size: 0.7rem;
  color: var(--ink-soft);
  margin-left: auto;
  margin-right: 8px;
}

.vg-cookie__cat-desc {
  margin: 8px 0 0;
  font-size: 0.78rem;
  color: var(--ink-soft);
  line-height: 1.45;
}

body.has-cookie .wa-float {
  bottom: var(--vg-cookie-lift, 280px);
}

@media (max-width: 760px) {
  .vg-cookie {
    inset: auto 12px 12px 12px;
  }

  .vg-cookie__actions {
    flex-direction: column;
  }

  .vg-cookie__btn {
    width: 100%;
  }
}
