:root {
  --notte: #131f1e;
  --notte-light: #1e2f2d;
  --sabbia: #f4eedf;
  --sabbia-2: #e8ddd0;
  --bronzo: #c96840;
  --bronzo-light: #d98c62;
  --terra: #a84030;
  --onda: #2c6660;
  --onda-light: #7fc7bc;
  --inchiostro: #1a1614;
  --font-display: "Fraunces", serif;
  --font-body: "Work Sans", sans-serif;
  --font-label: "Jost", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--inchiostro);
  background: var(--sabbia);
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  display: block;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.eyebrow {
  font-family: var(--font-label);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.72rem;
  font-weight: 500;
}

.eyebrow::before,
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1.5px;
  background: var(--bronzo-light);
  vertical-align: middle;
  margin: 0 0.6em;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

.wrap .logotype {
  display: flex;
  align-items: center;
  gap: 8px;
}

.color-onda {
  color: var(--onda);
}

/* ---------- HEADER ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 22px 0;
  animation: heroFadeDown 0.55s cubic-bezier(0.16, 1, 0.3, 1) both;
  transition:
    background 0.4s ease,
    padding 0.4s ease,
    box-shadow 0.4s ease;
}
.site-header.scrolled {
  background: rgba(19, 31, 30, 0.94);
  padding: 14px 0;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logotype {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--sabbia);
}
.logotype span {
  color: var(--bronzo-light);
  font-style: italic;
  font-weight: 400;
}

.main-nav ul {
  display: flex;
  gap: 38px;
}
.main-nav a {
  font-family: var(--font-label);
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  letter-spacing: 0.06em;
  color: var(--sabbia);
  text-transform: uppercase;
  position: relative;
  padding-bottom: 4px;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--bronzo-light);
  transition: width 0.3s ease;
}
.main-nav a:hover::after {
  width: 100%;
}
.main-nav a.menu-link {
  color: var(--bronzo-light);
}
.main-nav .eyebrow {
  display: none;
}
.hero-social-nav {
  display: none;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  flex-shrink: 0;
  z-index: 1100;
}
.nav-toggle span {
  height: 2px;
  background: var(--sabbia);
  border-radius: 2px;
  transition: 0.3s ease;
}
.nav-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---------- ANIMAZIONI HERO IN INGRESSO ---------- */
@keyframes heroFadeDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroPopIn {
  from {
    opacity: 0;
    transform: scale(0.78);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--sabbia);
  background: #121c18;
}

/* ---------- HERO BUBBLES ---------- */
.hero-bubble {
  position: absolute;
  margin: 0;
  z-index: 0;
}

/* Alone luminoso dietro la bolla */
.bubble-glow {
  position: absolute;
  inset: -16%;
  border-radius: 50%;
  background: conic-gradient(
    from 210deg,
    var(--bronzo-light),
    transparent 35%,
    transparent 65%,
    var(--onda-light),
    var(--bronzo-light)
  );
  filter: blur(30px);
  opacity: 0.5;
  mix-blend-mode: screen;
  pointer-events: none;
}

/* Ring con bordo a gradiente */
.bubble-ring {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  padding: 2.5px;
  background: linear-gradient(135deg, var(--bronzo) 0%, var(--onda) 100%);
  box-shadow: 0 20px 52px -14px rgba(0, 0, 0, 0.65);
}

/* Frame immagine */
.bubble-frame {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: var(--notte-light);
  border-bottom: 7px solid #121c18;
  border-right: 7px solid #121c18;
}

.bubble-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.04);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-bubble:hover .bubble-frame img {
  transform: scale(1.1);
}

/* Riflesso lucido */
.bubble-shine {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: linear-gradient(
    118deg,
    rgba(255, 255, 255, 0.42) 0%,
    rgba(255, 255, 255, 0) 30%
  );
  mix-blend-mode: screen;
  pointer-events: none;
}

/* --- Posizioni: gruppo alto-sinistra --- */
.hero-bubble--a {
  width: clamp(200px, 26vw, 360px);
  top: 3%;
  left: -6%;
  animation:
    heroPopIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both,
    heroFloat 6s ease-in-out infinite 1.1s;
}
.hero-bubble--b {
  width: clamp(130px, 17vw, 250px);
  top: 43%;
  left: 13%;
  animation:
    heroPopIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.5s both,
    heroFloat 5.2s ease-in-out infinite 1.4s;
}

/* --- Posizioni: gruppo basso-destra --- */
.hero-bubble--c {
  width: clamp(200px, 26vw, 360px);
  bottom: -5%;
  right: -5%;
  animation:
    heroPopIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.35s both,
    heroFloat 6.5s ease-in-out infinite 1.25s;
}
.hero-bubble--d {
  width: clamp(130px, 17vw, 250px);
  bottom: 37%;
  right: 13%;
  animation:
    heroPopIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.65s both,
    heroFloat 5.5s ease-in-out infinite 1.55s;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-11px);
  }
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  padding: 0 24px;
}
.hero-content .eyebrow {
  color: var(--bronzo-light);
  display: block;
  margin-bottom: 22px;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.7s both;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  line-height: 1.08;
  margin-bottom: 22px;
  animation: heroFadeUp 0.75s cubic-bezier(0.16, 1, 0.3, 1) 0.85s both;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(
    100deg,
    var(--bronzo-light) 10%,
    var(--onda-light) 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--sabbia-2);
  max-width: 520px;
  margin: 0 auto 40px;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1s both;
}
.hero-ctas {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  animation: heroFadeUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 1.1s both;
}
.btn {
  font-family: var(--font-label);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 30px;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
  display: inline-block;
}
.btn-primary {
  background: var(--bronzo);
  color: var(--notte);
}
.btn-primary:hover {
  background: var(--bronzo-light);
  transform: translateY(-2px);
}
.btn-outline {
  border: 1px solid var(--onda-light);
  color: var(--onda-light);
}
.btn-outline:hover {
  border-color: var(--onda-light);
  background: rgba(127, 199, 188, 0.12);
  transform: translateY(-2px);
}

.hero-social {
  display: flex;
  gap: 20px;
  justify-content: center;
  animation: heroFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both;
}
.hero-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(244, 238, 223, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}
.hero-social a:hover {
  background: var(--bronzo);
  border-color: var(--bronzo);
}
.hero-social svg {
  width: 16px;
  height: 16px;
  fill: var(--sabbia);
}

.scroll-cue {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px;
  height: 44px;
  background: rgba(244, 238, 223, 0.4);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--bronzo-light);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0% {
    top: -100%;
  }
  60% {
    top: 100%;
  }
  100% {
    top: 100%;
  }
}

/* ---------- HORIZON DIVIDER (signature element) ---------- */
.horizon {
  position: relative;
  height: 90px;
  background: var(--sabbia);
  overflow: hidden;
}
.horizon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.horizon path {
  fill: none;
  stroke: var(--onda);
  stroke-width: 1.4;
  stroke-dasharray: 1400;
  stroke-dashoffset: 1400;
  transition: stroke-dashoffset 1.6s ease;
}
.horizon.in-view path {
  stroke-dashoffset: 0;
}
.horizon.flip {
  transform: scaleY(-1);
}

/* ---------- SECTION BASE ---------- */
.section {
  padding: 120px 0;
}
.section-dark {
  background: var(--notte);
  color: var(--sabbia);
}
.section-head {
  /* max-width: 620px; */
  margin-bottom: 64px;
}
.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-head .eyebrow {
  color: var(--onda);
  display: block;
  margin-bottom: 16px;
}
.section-dark .section-head .eyebrow {
  color: var(--bronzo-light);
}
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  line-height: 1.15;
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--onda);
}

.section-title span {
  font-style: italic;
  font-weight: 300;
  color: var(--bronzo);
}

.section-dark .section-title em {
  color: var(--bronzo-light);
}

/* ---------- CHI SIAMO ---------- */
.chi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.chi-grid .section-head {
  margin-bottom: 26px;
}
.chi-text p {
  color: #3d3228;
  margin-bottom: 20px;
  font-weight: 300;
  font-size: 1.02rem;
}
.chi-duo {
  display: flex;
  gap: 16px;
  margin-top: 30px;
}
.chi-duo div {
  flex: 1;
  padding: 20px 22px;
  border-left: 2px solid var(--onda);
  background: var(--sabbia-2);
}
.chi-duo h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.chi-duo p {
  font-size: 0.9rem;
  color: #4a3c30;
  margin: 0;
}
.chi-images {
  position: relative;
  height: 460px;
}
.chi-images img {
  position: absolute;
  object-fit: cover;
  border-radius: 2px;
}
.chi-images img:nth-child(1) {
  width: 70%;
  height: 78%;
  top: 0;
  left: 0;
  box-shadow: 0 24px 50px rgba(19, 31, 30, 0.25);
}
.chi-images img:nth-child(2) {
  width: 52%;
  height: 52%;
  bottom: 0;
  right: 0;
  border: 6px solid var(--sabbia);
  box-shadow: 0 20px 44px rgba(19, 31, 30, 0.3);
}

/* ---------- GALLERY ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 14px;
}
.gallery-grid a {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
}
.gallery-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-grid a:hover img {
  transform: scale(1.08);
}
.gallery-grid a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(19, 31, 30, 0.55));
  opacity: 0;
  transition: opacity 0.4s ease;
}
.gallery-grid a:hover::after {
  opacity: 1;
}
.g-tall {
  grid-row: span 2;
}
.g-wide {
  grid-column: span 2;
}

/* ---------- MENU TEASER ---------- */
.menu-teaser {
  background: var(--notte);
  color: var(--sabbia);
  position: relative;
  overflow: hidden;
}
.menu-teaser::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -10%;
  width: 55%;
  background: linear-gradient(90deg, transparent, rgba(201, 104, 64, 0.08));
}
.menu-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  margin: 60px auto;
  position: relative;
  z-index: 1;
}
.menu-copy {
  max-width: 480px;
}
.menu-copy .eyebrow {
  color: var(--bronzo-light);
  display: block;
  margin-bottom: 16px;
}
.menu-copy h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  font-weight: 500;
  margin-bottom: 20px;
  line-height: 1.18;
}
.menu-copy h2 em {
  color: var(--bronzo-light);
  font-style: italic;
  font-weight: 300;
}
.menu-copy p {
  color: var(--sabbia-2);
  font-weight: 300;
  margin-bottom: 34px;
}
.menu-sample {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}
.menu-sample-card {
  flex: 1;
  min-width: 180px;
  border: 1px solid rgba(244, 238, 223, 0.18);
  padding: 26px 22px;
}
.menu-sample-card .tag {
  font-family: var(--font-label);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 10px;
  display: block;
}
.menu-sample-card.mare .tag {
  color: var(--onda-light);
}
.menu-sample-card.terra .tag {
  color: var(--bronzo-light);
}
.menu-sample-card h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  margin-bottom: 8px;
}
.menu-sample-card p {
  font-size: 0.86rem;
  color: var(--sabbia-2);
  margin: 0;
}

/* ---------- DOVE SIAMO ---------- */
.dove-grid {
  display: grid !important;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0;
  box-shadow: 0 30px 70px rgba(19, 31, 30, 0.12);
}
.dove-info {
  background: var(--sabbia-2);
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dove-info h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 22px;
}
.dove-line {
  margin-bottom: 22px;
}
.dove-line .tag {
  font-family: var(--font-label);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--onda);
  display: block;
  margin-bottom: 6px;
}
.dove-line p {
  margin: 0;
  color: #3a2e26;
  font-weight: 400;
}
.map-frame {
  min-height: 420px;
  width: 100%;
  border: 0;
  filter: grayscale(0.25) contrast(1.05);
}

/* ---------- CONTATTI ---------- */
.contatti-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.contatti-card {
  background: var(--sabbia-2);
  padding: 44px 38px;
  border-top: 3px solid var(--bronzo);
  text-align: center;
}
.contatti-card .tag {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terra);
  display: block;
  margin-bottom: 14px;
}
.contatti-card a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--inchiostro);
  transition: color 0.25s ease;
}
.contatti-card a:hover {
  color: var(--onda);
}

.contatti-card-mare {
  background: var(--sabbia-2);
  padding: 44px 38px;
  border-top: 3px solid var(--onda);
  text-align: center;
}
.contatti-card-mare .tag {
  font-family: var(--font-label);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--onda);
  display: block;
  margin-bottom: 14px;
}
.contatti-card-mare a {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--inchiostro);
  transition: color 0.25s ease;
}
.contatti-card-mare a:hover {
  color: var(--terra);
}
/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--notte);
  color: var(--sabbia-2);
  padding: 70px 0 30px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  border-bottom: 1px solid rgba(244, 238, 223, 0.14);
  margin-bottom: 26px;
}
.footer-logo a {
  display: flex !important;
  align-items: center;
}
.footer-brand .logotype {
  margin-bottom: 14px;
  display: inline-block;
}
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(244, 238, 223, 0.6);
  max-width: 280px;
  font-weight: 300;
}
.footer-nav {
  display: flex;
  gap: 60px;
  flex-wrap: wrap;
}
.footer-col h5 {
  font-family: var(--font-label);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bronzo-light);
  margin-bottom: 16px;
}
.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.9rem;
  color: rgba(244, 238, 223, 0.75);
  margin-bottom: 10px;
  font-weight: 300;
}
.footer-col a:hover {
  color: var(--sabbia);
}
.footer-social {
  display: flex;
  gap: 14px;
  margin-top: 6px;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(244, 238, 223, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover {
  background: var(--bronzo);
  border-color: var(--bronzo);
}
.footer-social svg {
  width: 15px;
  height: 15px;
  fill: var(--sabbia);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.78rem;
  color: rgba(244, 238, 223, 0.45);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .chi-grid,
  .dove-grid,
  .contatti-grid {
    grid-template-columns: 1fr;
  }
  .chi-images {
    height: 340px;
    margin-top: 20px;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-flow: dense;
  }
  .g-tall {
    grid-row: span 1;
  }
  .g-wide {
    grid-column: span 2;
  }
  .dove-info {
    padding: 44px 30px;
  }
  .hero-bubble--d {
    bottom: 53%;
    right: 7%;
  }
  .hero-bubble--b {
    top: 51%;
    left: 7%;
  }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--notte);
    padding: 110px 40px 40px;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 1050;
  }
  .main-nav.open {
    transform: translateX(0);
  }
  .main-nav ul {
    flex-direction: column;
    gap: 28px;
  }
  .nav-toggle {
    display: flex;
  }
  .section {
    padding: 80px 0;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: center;
  }
  .hero-bubble--b,
  .hero-bubble--c {
    display: none;
  }
  .hero-bubble--a {
    width: clamp(150px, 42vw, 220px);
    top: -8%;
    left: -10%;
  }
  .hero-bubble--d {
    width: clamp(150px, 42vw, 220px);
    bottom: -8%;
    right: -10%;
  }

  .hero-content {
    margin-top: 145px;
  }

  .hero-social {
    display: none;
  }

  .menu-inner {
    flex-direction: column;
    gap: 40px;
  }
  .menu-copy {
    max-width: 100%;
  }

  .cookie-banner__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .main-nav .eyebrow {
    color: var(--bronzo-light);
    display: block;
    margin: 25px 0;
    justify-content: center;
    text-align: center;
  }
  .hero-social-nav {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: heroFadeUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) 1.25s both;
  }
  .hero-social-nav a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(244, 238, 223, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.25s ease;
  }
  .hero-social-nav a:hover {
    background: var(--bronzo);
    border-color: var(--bronzo);
  }
  .hero-social-nav svg {
    width: 16px;
    height: 16px;
    fill: var(--sabbia);
  }
  .contatti-card {
    margin-top: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* Disabilita tutte le animazioni in ingresso e il float */
  .hero-bubble {
    animation: none !important;
    opacity: 1;
  }
  .site-header,
  .hero-content .eyebrow,
  .hero-title,
  .hero-sub,
  .hero-ctas,
  .hero-social {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
  .scroll-cue::after {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .horizon path {
    transition: none;
    stroke-dashoffset: 0;
  }
  .cookie-banner {
    animation: none;
  }
}

/* ---------- COOKIE BANNER ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  background: rgba(19, 31, 30, 0.97);
  color: var(--sabbia);
  padding: 18px 0;
  border-top: 1px solid rgba(201, 104, 64, 0.35);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: cookieSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}
@keyframes cookieSlideUp {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.cookie-banner__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--sabbia-2);
  line-height: 1.55;
}
.cookie-link {
  color: var(--bronzo-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-link:hover {
  color: var(--sabbia);
}
.cookie-banner__accept {
  padding: 10px 26px;
  font-size: 0.78rem;
  flex-shrink: 0;
}

/* ---------- LEGAL PAGES (privacy-policy.html, cookie-policy.html) ---------- */
.legal-page-body .site-header {
  background: var(--notte);
}
.legal-page {
  padding: 140px 0 100px;
  min-height: 60vh;
}
.legal-content {
  max-width: 760px;
  margin: 0 auto;
}
.legal-content__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 32px;
  color: var(--notte);
  line-height: 1.15;
}
.legal-content h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--notte);
}
.legal-content p {
  font-size: 0.9rem;
  font-weight: 300;
  color: #3d3228;
  line-height: 1.72;
  margin-bottom: 12px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 14px;
}
.legal-content ul li {
  font-size: 0.9rem;
  font-weight: 300;
  color: #3d3228;
  line-height: 1.65;
  margin-bottom: 8px;
}
.legal-content a {
  color: var(--onda);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.legal-content a:hover {
  color: var(--bronzo);
}
.legal-content__updated {
  font-size: 0.78rem;
  color: rgba(19, 31, 30, 0.45);
  margin-top: 28px;
  border-top: 1px solid var(--sabbia-2);
  padding-top: 16px;
}

/* Footer legal links */
.footer-legal-links {
  display: flex;
  gap: 16px;
  align-items: center;
}
.footer-legal-link {
  color: rgba(244, 238, 223, 0.45);
  font-family: var(--font-body);
  font-size: 0.78rem;
  transition: color 0.25s ease;
}
.footer-legal-link:hover {
  color: var(--sabbia-2);
}

@media (max-width: 600px) {
  .legal-page {
    padding: 120px 0 60px;
  }
  .wrap {
    padding: 0 20px;
  }
  .footer-legal-links {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }

  .chi-duo {
    flex-direction: column;
  }
}
