/* =========================================================
   LA PIRAMIDE — HOSPITALITY
   FILE: css/hospitality.css

   Stile:
   - luminoso e accogliente
   - avorio, sabbia e tramonto
   - elegante ma meno scuro
   - responsive computer, tablet e telefono
========================================================= */


/* =========================================================
   VARIABILI
========================================================= */

:root {
  --avorio: #f3ecdf;
  --avorio-chiaro: #fffaf3;
  --avorio-scuro: #dfd0ba;

  --sabbia: #d8c1a2;
  --sabbia-chiara: #eadbc7;
  --terracotta: #a86143;
  --terracotta-scura: #74402e;

  --verde: #536b5c;
  --verde-scuro: #34483c;
  --verde-chiaro: #789080;

  --oro-scuro: #8d652d;
  --oro: #c39a58;
  --oro-chiaro: #e8c98e;

  --marrone: #34271f;
  --marrone-2: #49372c;
  --marrone-3: #665044;

  --bianco: #ffffff;
  --testo: #332b26;
  --testo-morbido: #655b53;
  --testo-chiaro: #f7f3ee;

  --bordo: rgba(141, 101, 45, 0.22);
  --bordo-forte: rgba(141, 101, 45, 0.46);

  --ombra-sezione: 0 28px 75px rgba(69, 48, 31, 0.16);
  --ombra-card: 0 19px 45px rgba(69, 48, 31, 0.13);
  --ombra-foto: 0 28px 65px rgba(58, 38, 24, 0.23);

  --raggio-sezione: 32px;
  --raggio-card: 23px;
  --raggio-foto: 25px;

  --larghezza-massima: 1500px;
}


/* =========================================================
   RESET
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;

  color: var(--testo);

  font-family: "Montserrat", sans-serif;

  background:
    radial-gradient(
      circle at 10% 2%,
      rgba(255, 255, 255, 0.96),
      transparent 28%
    ),
    radial-gradient(
      circle at 92% 10%,
      rgba(216, 193, 162, 0.27),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      var(--avorio-chiaro),
      var(--avorio) 55%,
      #eadfce
    );
}

body.menu-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

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

figure {
  margin: 0;
}

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

::selection {
  color: var(--bianco);
  background: var(--terracotta);
}


/* =========================================================
   SCROLLBAR
========================================================= */

::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--avorio);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--avorio);
  border-radius: 999px;

  background: linear-gradient(
    180deg,
    var(--terracotta-scura),
    var(--terracotta),
    var(--oro-chiaro)
  );
}


/* =========================================================
   TITOLI
========================================================= */

h1,
h2,
h3,
.brand-name,
.footer-brand strong {
  font-family: "Cinzel", serif;
}

h1,
h2 {
  color: var(--marrone);

  background: linear-gradient(
    105deg,
    var(--terracotta-scura) 0%,
    var(--terracotta) 24%,
    var(--oro-scuro) 48%,
    var(--marrone) 72%,
    var(--terracotta-scura) 100%
  );

  background-size: 180% auto;
  background-position: center;

  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;

  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

p {
  overflow-wrap: break-word;
}


/* =========================================================
   ETICHETTE
========================================================= */

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  color: var(--terracotta);

  font-family: "Cinzel", serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.section-label::before {
  content: "";

  flex: 0 0 auto;

  width: 34px;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--terracotta)
  );
}


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

.nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;

  width: 100%;
  min-height: 84px;
  padding: 10px clamp(22px, 4vw, 66px);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;

  border-bottom: 1px solid rgba(141, 101, 45, 0.22);

  background: rgba(255, 250, 243, 0.94);

  box-shadow:
    0 12px 35px rgba(69, 48, 31, 0.1),
    inset 0 -1px 0 rgba(255, 255, 255, 0.65);

  backdrop-filter: blur(17px);
  -webkit-backdrop-filter: blur(17px);

  transition:
    min-height 0.3s ease,
    background 0.3s ease,
    box-shadow 0.3s ease;
}

.nav.scrolled {
  min-height: 74px;

  background: rgba(255, 250, 243, 0.985);

  box-shadow: 0 15px 40px rgba(69, 48, 31, 0.16);
}

.brand {
  min-width: max-content;

  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  width: 82px;
  height: 58px;

  object-fit: contain;

  border-radius: 5px;

  filter:
    brightness(1.04)
    contrast(1.03)
    drop-shadow(0 5px 10px rgba(80, 52, 28, 0.15));

  transition:
    transform 0.35s ease,
    filter 0.35s ease;
}

.brand:hover .brand-logo {
  transform: scale(1.05);

  filter:
    brightness(1.08)
    contrast(1.05)
    drop-shadow(0 7px 16px rgba(168, 97, 67, 0.22));
}

.brand-text {
  min-width: 0;

  display: flex;
  flex-direction: column;
}

.brand-name {
  color: var(--marrone);

  font-size: 20px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0.8px;
  white-space: nowrap;
}

.brand-text small {
  margin-top: 4px;

  color: var(--terracotta);

  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}

.nav-links {
  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 25px);
}

.nav-links a {
  position: relative;

  padding: 12px 0;

  color: var(--testo-morbido);

  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;

  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";

  position: absolute;
  bottom: 4px;
  left: 50%;

  width: 0;
  height: 1px;

  background: linear-gradient(
    90deg,
    transparent,
    var(--terracotta),
    transparent
  );

  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
}

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

.nav-cta {
  min-width: max-content;
  padding-inline: 19px;

  font-size: 11px;
}

.menu-btn {
  display: none;

  width: 46px;
  height: 46px;
  padding: 11px;

  cursor: pointer;

  border: 1px solid rgba(168, 97, 67, 0.28);
  border-radius: 50%;

  background: rgba(168, 97, 67, 0.05);
}

.menu-btn span {
  display: block;

  width: 100%;
  height: 2px;
  margin: 5px 0;

  border-radius: 999px;

  background: var(--terracotta);

  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}


/* =========================================================
   BOTTONI
========================================================= */

.btn {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: 49px;
  padding: 14px 27px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--bianco);

  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;

  cursor: pointer;

  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;

  background: linear-gradient(
    125deg,
    var(--terracotta-scura),
    var(--terracotta) 46%,
    #c88665 67%,
    var(--terracotta-scura)
  );

  box-shadow:
    0 13px 30px rgba(168, 97, 67, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.23);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.btn::before {
  content: "";

  position: absolute;
  z-index: -1;
  top: -70%;
  left: -45%;

  width: 43px;
  height: 250%;

  opacity: 0.45;

  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.78),
    transparent
  );

  transform: rotate(24deg);

  animation: buttonShine 3.2s linear infinite;
}

.btn:hover {
  transform: translateY(-3px);

  box-shadow:
    0 18px 38px rgba(168, 97, 67, 0.33),
    0 0 22px rgba(195, 154, 88, 0.11);
}

.btn-light {
  color: var(--terracotta-scura);

  border: 1px solid rgba(168, 97, 67, 0.3);

  background: rgba(255, 255, 255, 0.68);

  box-shadow:
    0 12px 28px rgba(69, 48, 31, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.btn-light::before {
  opacity: 0.18;
}

.btn-light:hover {
  background: var(--bianco);
}


/* =========================================================
   STRUTTURA GENERALE
========================================================= */

main {
  width: 100%;
  padding: 1px 0 24px;
}

.section,
.hero,
.visual-chapter,
.hospitality-statement,
.experience-section,
.owner-relationship-section {
  width: min(calc(100% - 12%), var(--larghezza-massima));
  margin: 38px auto;
}

.section,
.hero {
  border: 1px solid var(--bordo);
  border-radius: var(--raggio-sezione);

  background:
    radial-gradient(
      circle at 88% 9%,
      rgba(216, 193, 162, 0.2),
      transparent 30%
    ),
    radial-gradient(
      circle at 8% 100%,
      rgba(120, 144, 128, 0.08),
      transparent 30%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.96),
      rgba(255, 250, 243, 0.92)
    );

  box-shadow: var(--ombra-sezione);
}

.section {
  position: relative;
  overflow: hidden;

  padding:
    clamp(60px, 7vw, 100px)
    clamp(27px, 6vw, 90px);
}

.section::before {
  content: "";

  position: absolute;
  top: 0;
  left: 11%;

  width: 78%;
  height: 1px;

  opacity: 0.48;

  background: linear-gradient(
    90deg,
    transparent,
    var(--oro),
    transparent
  );
}

.section-head {
  width: min(100%, 930px);
  margin: 0 auto clamp(38px, 5vw, 62px);

  text-align: center;
}

.section-head .section-label,
.closing-content .section-label,
.contact-heading .section-label {
  justify-content: center;
}

.section-head .section-label::after,
.closing-content .section-label::after,
.contact-heading .section-label::after {
  content: "";

  width: 34px;
  height: 1px;

  background: linear-gradient(
    90deg,
    var(--terracotta),
    transparent
  );
}

.section-head h2,
.owners-heading h2,
.extras-content h2,
.protection-heading h2,
.relationship-content h2,
.closing-content h2,
.contact-heading h2 {
  width: 100%;
  max-width: 100%;
  margin-top: 16px;

  font-size: clamp(33px, 4vw, 59px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
}

.section-head h2 span,
.owners-heading h2 span,
.extras-content h2 span,
.protection-heading h2 span,
.relationship-content h2 span,
.closing-content h2 span,
.contact-heading h2 span {
  display: block;
}

.section-head > p {
  max-width: 800px;
  margin: 20px auto 0;

  color: var(--testo-morbido);

  font-size: 16px;
  font-weight: 500;
  line-height: 1.75;
}


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

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;

  min-height: calc(100vh - 116px);
  margin-top: 110px;

  padding:
    clamp(52px, 6vw, 85px)
    clamp(29px, 6vw, 88px);

  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  align-items: center;
  gap: clamp(42px, 6vw, 86px);
}

.hero-background,
.hero-background span {
  position: absolute;
  pointer-events: none;
}

.hero-background {
  z-index: -1;
  inset: 0;
}

.hero-glow {
  border-radius: 50%;
  filter: blur(6px);
}

.hero-glow-one {
  top: -140px;
  right: -110px;

  width: 500px;
  height: 500px;

  background: radial-gradient(
    circle,
    rgba(232, 201, 142, 0.22),
    rgba(216, 193, 162, 0.08) 48%,
    transparent 74%
  );
}

.hero-glow-two {
  bottom: -210px;
  left: 7%;

  width: 480px;
  height: 480px;

  background: radial-gradient(
    circle,
    rgba(120, 144, 128, 0.14),
    transparent 70%
  );
}

.hero-content {
  position: relative;
  z-index: 3;

  min-width: 0;
}

.hero-content h1 {
  width: 100%;
  max-width: 850px;
  margin: 19px 0 24px;

  font-size: clamp(42px, 4.8vw, 71px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.6px;
}

.hero-content h1 span {
  display: block;
}

.hero-lead {
  max-width: 750px;

  color: var(--marrone);

  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 650;
  line-height: 1.7;
}

.hero-secondary {
  max-width: 720px;
  margin-top: 15px;

  color: var(--testo-morbido);

  font-size: 14px;
  font-weight: 500;
  line-height: 1.73;
}

.furnished-notice {
  max-width: 730px;
  margin-top: 24px;
  padding: 18px 20px;

  border: 1px solid rgba(83, 107, 92, 0.24);
  border-left: 4px solid var(--verde);
  border-radius: 15px;

  background: rgba(120, 144, 128, 0.08);
}

.furnished-notice span {
  display: block;

  color: var(--verde-scuro);

  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.furnished-notice p {
  margin-top: 7px;

  color: var(--testo-morbido);

  font-size: 13px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 30px;

  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.hero-points {
  max-width: 740px;
  margin-top: 40px;
  padding-top: 25px;

  display: grid;
  grid-template-columns: repeat(3, 1fr);

  border-top: 1px solid rgba(141, 101, 45, 0.2);
}

.hero-point {
  position: relative;

  min-width: 0;
  min-height: 72px;

  padding: 5px 18px;
}

.hero-point:first-child {
  padding-left: 0;
}

.hero-point:not(:last-child)::after {
  content: "";

  position: absolute;
  top: 5px;
  right: 0;

  width: 1px;
  height: calc(100% - 10px);

  background: linear-gradient(
    180deg,
    transparent,
    rgba(168, 97, 67, 0.32),
    transparent
  );
}

.hero-point strong {
  display: block;

  color: var(--terracotta-scura);

  font-family: "Cinzel", serif;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.2;
}

.hero-point span {
  display: block;
  margin-top: 7px;

  color: var(--testo-morbido);

  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =========================================================
   HERO — IMMAGINE
========================================================= */

.hero-visual {
  position: relative;

  min-width: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-hospitality-image {
  position: relative;
  overflow: hidden;

  width: min(100%, 610px);
  min-height: 610px;

  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 30px;

  background: var(--marrone);

  box-shadow:
    0 35px 85px rgba(72, 46, 28, 0.28),
    0 0 50px rgba(195, 154, 88, 0.08);

  transform: rotate(1.2deg);

  transition:
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease;
}

.hero-hospitality-image:hover {
  transform: rotate(0deg) translateY(-7px);

  box-shadow:
    0 42px 95px rgba(72, 46, 28, 0.34),
    0 0 45px rgba(195, 154, 88, 0.12);
}

.hero-hospitality-image::before {
  content: "";

  position: absolute;
  z-index: 2;
  inset: 0;

  pointer-events: none;

  background:
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.01) 38%,
      rgba(31, 20, 13, 0.12) 62%,
      rgba(31, 20, 13, 0.84) 100%
    ),
    linear-gradient(
      130deg,
      rgba(255, 228, 183, 0.14),
      transparent 38%
    );
}

.hero-hospitality-image img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-hospitality-image:hover img {
  transform: none;
}

.hero-hospitality-image figcaption {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 32px;
  left: 34px;
}

.hero-hospitality-image figcaption span {
  display: block;

  color: #f2d39b;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.hero-hospitality-image figcaption strong {
  display: block;

  max-width: 470px;
  margin-top: 9px;

  color: var(--bianco);

  font-family: "Cinzel", serif;
  font-size: clamp(22px, 2.1vw, 31px);
  font-weight: 700;
  line-height: 1.32;
}

.hero-hospitality-badge {
  position: absolute;
  z-index: 5;
  right: -20px;
  bottom: 54px;

  min-width: 190px;
  padding: 18px 21px;

  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 18px;

  background: rgba(255, 250, 243, 0.93);

  box-shadow:
    0 18px 42px rgba(72, 46, 28, 0.19),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  animation: badgeFloat 4s ease-in-out infinite;
}

.hero-hospitality-badge span {
  display: block;

  color: var(--testo-morbido);

  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

.hero-hospitality-badge strong {
  display: block;
  margin-top: 6px;

  color: var(--terracotta-scura);

  font-family: "Cinzel", serif;
  font-size: 18px;
}


/* =========================================================
   MANIFESTO
========================================================= */

.hospitality-statement {
  position: relative;
  overflow: hidden;

  padding:
    clamp(65px, 8vw, 110px)
    clamp(28px, 7vw, 100px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--raggio-sezione);

  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(232, 201, 142, 0.2),
      transparent 48%
    ),
    linear-gradient(
      140deg,
      var(--verde-scuro),
      #405448 55%,
      #2f4036
    );

  box-shadow: var(--ombra-sezione);
}

.hospitality-statement::before,
.hospitality-statement::after {
  content: "";

  position: absolute;
  left: 50%;

  width: 68%;
  height: 1px;

  transform: translateX(-50%);

  background: linear-gradient(
    90deg,
    transparent,
    rgba(232, 201, 142, 0.55),
    transparent
  );
}

.hospitality-statement::before {
  top: 29px;
}

.hospitality-statement::after {
  bottom: 29px;
}

.statement-content {
  position: relative;

  max-width: 1030px;
  margin: 0 auto;

  text-align: center;
}

.statement-content > span {
  position: absolute;
  top: -65px;
  left: 50%;

  color: rgba(255, 255, 255, 0.1);

  font-family: Georgia, serif;
  font-size: 180px;
  line-height: 1;

  transform: translateX(-50%);
}

.statement-content blockquote {
  position: relative;
  z-index: 2;

  color: var(--testo-chiaro);

  font-family: "Cinzel", serif;
  font-size: clamp(24px, 3vw, 43px);
  font-weight: 650;
  line-height: 1.5;
}

.statement-content p {
  margin-top: 25px;

  color: var(--oro-chiaro);

  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
}


/* =========================================================
   PROPRIETARI
========================================================= */

.owners-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 7vw, 105px);
}

.owners-heading,
.owners-content {
  min-width: 0;
}

.owners-content > p {
  color: var(--testo-morbido);

  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
}

.owners-content > p + p {
  margin-top: 18px;
}

.owners-lead {
  color: var(--marrone) !important;

  font-size: clamp(18px, 1.65vw, 23px) !important;
  font-weight: 650 !important;
  line-height: 1.62 !important;
}

.owners-grid {
  grid-column: 1 / -1;

  margin-top: 15px;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.owner-card,
.service-card,
.protection-card {
  min-width: 0;
  min-height: 235px;
  padding: 26px 22px;

  border: 1px solid var(--bordo);
  border-radius: 21px;

  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(216, 193, 162, 0.17),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.62);

  box-shadow: var(--ombra-card);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.owner-card:hover,
.service-card:hover,
.protection-card:hover {
  transform: translateY(-7px);

  border-color: var(--bordo-forte);

  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(232, 201, 142, 0.26),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.82);
}

.owner-card > span,
.service-card > span,
.protection-card > span {
  color: var(--terracotta);

  font-family: "Cinzel", serif;
  font-size: 24px;
  font-weight: 800;
}

.owner-card h3,
.service-card h3,
.protection-card h3 {
  margin-top: 26px;

  color: var(--marrone);

  font-size: 19px;
  font-weight: 800;
  line-height: 1.35;
}

.owner-card p,
.service-card p,
.protection-card p {
  margin-top: 12px;

  color: var(--testo-morbido);

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   CAPITOLO VISIVO
========================================================= */

.visual-chapter {
  position: relative;
  overflow: hidden;

  height: clamp(540px, 66vw, 800px);

  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--raggio-sezione);

  background: var(--marrone);

  box-shadow: var(--ombra-foto);
}

.visual-chapter-image {
  position: relative;

  width: 100%;
  height: 100%;
}

.visual-chapter-image::before {
  content: "";

  position: absolute;
  z-index: 3;
  inset: 0;

  pointer-events: none;

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 0 90px rgba(48, 28, 16, 0.25);
}

.visual-chapter-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  filter:
    brightness(0.98)
    contrast(1.01)
    saturate(1);

  transition:
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.7s ease;
}

.visual-chapter:hover .visual-chapter-image img {
  transform: none;

  filter:
    brightness(1)
    contrast(1.01)
    saturate(1);
}

.visual-chapter-overlay {
  position: absolute;
  z-index: 2;
  inset: 0;

  background:
    linear-gradient(
      90deg,
      rgba(45, 29, 20, 0.91) 0%,
      rgba(45, 29, 20, 0.66) 34%,
      rgba(45, 29, 20, 0.12) 68%,
      rgba(45, 29, 20, 0.16) 100%
    ),
    linear-gradient(
      180deg,
      rgba(45, 29, 20, 0.08),
      transparent 42%,
      rgba(45, 29, 20, 0.32)
    );
}

.visual-chapter-content {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: clamp(30px, 7vw, 105px);

  width: min(630px, 52%);
  padding-left: 30px;

  border-left: 1px solid rgba(232, 201, 142, 0.62);

  transform: translateY(-50%);
}

.visual-chapter-content .section-label {
  color: var(--oro-chiaro);
}

.visual-chapter-content .section-label::before {
  background: linear-gradient(
    90deg,
    transparent,
    var(--oro-chiaro)
  );
}

.chapter-number {
  display: block;
  margin-bottom: 20px;

  color: rgba(232, 201, 142, 0.55);

  font-family: "Cinzel", serif;
  font-size: clamp(46px, 6vw, 84px);
  font-weight: 800;
  line-height: 0.8;
}

.visual-chapter-content h2 {
  margin-top: 18px;

  color: var(--bianco);
  background: none;

  -webkit-text-fill-color: initial;

  font-size: clamp(34px, 4.3vw, 65px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -1.2px;
}

.visual-chapter-content h2 span {
  display: block;
}

.visual-chapter-content p {
  max-width: 580px;
  margin-top: 22px;

  color: var(--testo-chiaro);

  font-size: clamp(14px, 1.35vw, 18px);
  font-weight: 500;
  line-height: 1.75;
}


/* =========================================================
   PROCESSO
========================================================= */

.process-list {
  max-width: 1160px;
  margin: 0 auto;

  display: grid;
  gap: 17px;
}

.process-step {
  position: relative;
  overflow: hidden;

  min-height: 180px;
  padding: 30px 35px;

  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;
  gap: 28px;

  border: 1px solid var(--bordo);
  border-radius: var(--raggio-card);

  background:
    radial-gradient(
      circle at 92% 8%,
      rgba(216, 193, 162, 0.18),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.68);

  box-shadow: var(--ombra-card);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.process-step::after {
  content: "";

  position: absolute;
  top: 50%;
  right: -65px;

  width: 165px;
  height: 165px;

  border: 1px solid rgba(168, 97, 67, 0.09);
  border-radius: 50%;

  transform: translateY(-50%);

  transition:
    transform 0.5s ease,
    border-color 0.35s ease;
}

.process-step:hover {
  transform: translateX(7px);

  border-color: var(--bordo-forte);
}

.process-step:hover::after {
  transform: translateY(-50%) scale(1.2);

  border-color: rgba(168, 97, 67, 0.2);
}

.process-number {
  color: var(--terracotta);

  font-family: "Cinzel", serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  text-align: center;
}

.process-content {
  min-width: 0;
}

.process-content small {
  color: var(--verde);

  font-family: "Cinzel", serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.process-content h3 {
  max-width: 790px;
  margin-top: 9px;

  color: var(--marrone);

  font-size: clamp(20px, 2vw, 27px);
  font-weight: 700;
  line-height: 1.35;
}

.process-content p {
  max-width: 850px;
  margin-top: 11px;

  color: var(--testo-morbido);

  font-size: 14px;
  line-height: 1.68;
}


/* =========================================================
   ESPERIENZA OSPITE
========================================================= */

.experience-section {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 17px;
}

.experience-image {
  position: relative;
  overflow: hidden;

  min-height: 520px;

  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--raggio-foto);

  background: var(--marrone);

  box-shadow: var(--ombra-foto);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.experience-image:hover {
  transform: translateY(-7px);

  box-shadow: 0 36px 75px rgba(58, 38, 24, 0.3);
}

.experience-image::before {
  content: "";

  position: absolute;
  z-index: 2;
  inset: 0;

  background: linear-gradient(
    180deg,
    transparent 46%,
    rgba(41, 26, 17, 0.15) 65%,
    rgba(41, 26, 17, 0.88) 100%
  );
}

.experience-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition: transform 0.8s ease;
}

.experience-image:hover img {
  transform: none;
}

.experience-image figcaption {
  position: absolute;
  z-index: 3;
  right: 24px;
  bottom: 23px;
  left: 24px;
}

.experience-image figcaption span {
  color: var(--oro-chiaro);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

.experience-image figcaption strong {
  display: block;
  margin-top: 8px;

  color: var(--bianco);

  font-family: "Cinzel", serif;
  font-size: clamp(18px, 1.8vw, 25px);
  line-height: 1.35;
}


/* =========================================================
   SERVIZI
========================================================= */

.services-grid {
  max-width: 1240px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
}


/* =========================================================
   SERVIZI AGGIUNTIVI
========================================================= */

.extras-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(480px, 1.14fr);
  align-items: center;
  gap: clamp(45px, 7vw, 90px);
}

.extras-content,
.extras-grid {
  min-width: 0;
}

.extras-content > p {
  margin-top: 18px;

  color: var(--testo-morbido);

  font-size: 15px;
  line-height: 1.78;
}

.extras-lead {
  color: var(--marrone) !important;

  font-size: clamp(18px, 1.65vw, 23px) !important;
  font-weight: 650;
  line-height: 1.62 !important;
}

.extras-notice {
  margin-top: 28px;
  padding: 22px;

  border: 1px solid rgba(168, 97, 67, 0.24);
  border-left: 4px solid var(--terracotta);
  border-radius: 17px;

  background: rgba(168, 97, 67, 0.06);
}

.extras-notice strong {
  color: var(--terracotta-scura);

  font-family: "Cinzel", serif;
  font-size: 17px;
}

.extras-notice p {
  margin-top: 8px;

  color: var(--testo-morbido);

  font-size: 13px;
  line-height: 1.65;
}

.extras-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.extras-grid article {
  min-width: 0;
  min-height: 215px;
  padding: 27px 23px;

  border: 1px solid rgba(83, 107, 92, 0.2);
  border-radius: 21px;

  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(120, 144, 128, 0.15),
      transparent 32%
    ),
    rgba(255, 255, 255, 0.65);

  box-shadow: var(--ombra-card);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease;
}

.extras-grid article:hover {
  transform: translateY(-7px);

  border-color: rgba(83, 107, 92, 0.45);
}

.extras-grid article > span {
  color: var(--verde);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.extras-grid article strong {
  display: block;
  margin-top: 19px;

  color: var(--marrone);

  font-family: "Cinzel", serif;
  font-size: 19px;
}

.extras-grid article p {
  margin-top: 12px;

  color: var(--testo-morbido);

  font-size: 13px;
  line-height: 1.65;
}


/* =========================================================
   GALLERIA IMMOBILE
========================================================= */

.property-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  grid-auto-rows: 270px;
  gap: 17px;
}

.property-image {
  position: relative;
  overflow: hidden;

  min-width: 0;
  min-height: 0;

  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 21px;

  background: var(--marrone);

  box-shadow: var(--ombra-card);

  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease;
}

.property-image:hover {
  z-index: 3;

  transform: translateY(-7px);

  box-shadow: 0 30px 62px rgba(58, 38, 24, 0.28);
}

.property-image-large {
  grid-column: span 2;
  grid-row: span 2;
}

.property-image-wide {
  grid-column: span 2;
}

.property-image::before {
  content: "";

  position: absolute;
  z-index: 2;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 46%,
      rgba(42, 27, 18, 0.12) 65%,
      rgba(42, 27, 18, 0.88) 100%
    ),
    linear-gradient(
      135deg,
      rgba(255, 229, 189, 0.1),
      transparent 30%
    );
}

.property-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;

  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.4s ease;
}

.property-image:hover img {
  transform: none;
  filter: none;
}

.property-image figcaption {
  position: absolute;
  z-index: 3;
  right: 20px;
  bottom: 18px;
  left: 20px;
}

.property-image figcaption span {
  color: var(--oro-chiaro);

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2.3px;
  text-transform: uppercase;
}

.property-image figcaption strong {
  display: block;
  margin-top: 6px;

  color: var(--bianco);

  font-family: "Cinzel", serif;
  font-size: 16px;
  line-height: 1.35;
}


/* =========================================================
   PROTEZIONE E PORTALI
========================================================= */

.protection-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(45px, 7vw, 105px);
}

.protection-heading,
.protection-content {
  min-width: 0;
}

.protection-content p {
  color: var(--testo-morbido);

  font-size: 15px;
  line-height: 1.8;
}

.protection-content p + p {
  margin-top: 18px;
}

.protection-lead {
  color: var(--marrone) !important;

  font-size: clamp(18px, 1.65vw, 23px) !important;
  font-weight: 650;
  line-height: 1.62 !important;
}

.protection-values {
  grid-column: 1 / -1;

  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}


/* =========================================================
   RAPPORTO CON PROPRIETARIO
========================================================= */

.owner-relationship-section {
  overflow: hidden;

  min-height: 630px;

  display: grid;
  grid-template-columns: minmax(430px, 1.04fr) minmax(0, 0.96fr);
  align-items: stretch;

  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: var(--raggio-sezione);

  background: rgba(255, 255, 255, 0.75);

  box-shadow: var(--ombra-sezione);
}

.relationship-image {
  min-width: 0;
  min-height: 630px;
}

.relationship-image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
  object-position: center;
}

.relationship-content {
  min-width: 0;
  padding:
    clamp(55px, 7vw, 95px)
    clamp(35px, 6vw, 80px);

  display: flex;
  justify-content: center;
  flex-direction: column;

  background:
    radial-gradient(
      circle at 100% 0%,
      rgba(216, 193, 162, 0.19),
      transparent 34%
    ),
    rgba(255, 250, 243, 0.95);
}

.relationship-content > p {
  margin-top: 18px;

  color: var(--testo-morbido);

  font-size: 15px;
  line-height: 1.78;
}

.text-link {
  margin-top: 28px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--terracotta-scura);

  font-size: 13px;
  font-weight: 800;
}

.text-link span {
  font-size: 19px;

  transition: transform 0.3s ease;
}

.text-link:hover span {
  transform: translateX(6px);
}


/* =========================================================
   CTA
========================================================= */

.closing-section {
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 5%,
      rgba(232, 201, 142, 0.21),
      transparent 38%
    ),
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.98),
      rgba(244, 236, 223, 0.95)
    );
}

.closing-content {
  max-width: 930px;
  margin: 0 auto;
}

.closing-content p {
  max-width: 780px;
  margin: 19px auto 0;

  color: var(--testo-morbido);

  font-size: 16px;
  line-height: 1.76;
}

.closing-actions {
  margin-top: 31px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}


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

.contact-heading {
  max-width: 880px;
  margin: 0 auto;

  text-align: center;
}

.contact-heading p {
  max-width: 710px;
  margin: 21px auto 0;

  color: var(--testo-morbido);

  font-size: 16px;
  line-height: 1.76;
}

.contact-grid {
  max-width: 1000px;
  margin: 42px auto 0;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 19px;
}

.contact-card {
  min-width: 0;
  min-height: 155px;
  padding: 24px;

  display: flex;
  align-items: center;

  border: 1px solid var(--bordo);
  border-radius: 23px;

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(216, 193, 162, 0.15),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.66);

  box-shadow: var(--ombra-card);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}

.contact-card:hover {
  transform: translateY(-6px);

  border-color: var(--bordo-forte);

  background:
    radial-gradient(
      circle at 92% 10%,
      rgba(232, 201, 142, 0.23),
      transparent 30%
    ),
    rgba(255, 255, 255, 0.85);
}

.contact-details {
  min-width: 0;
}

.contact-details > span {
  display: block;

  color: var(--terracotta);

  font-family: "Cinzel", serif;
  font-size: 17px;
  font-weight: 800;
}

.contact-details strong {
  display: block;
  overflow-wrap: anywhere;

  margin-top: 7px;

  color: var(--marrone);

  font-size: clamp(14px, 1.25vw, 17px);
  font-weight: 700;
  line-height: 1.4;
}

.contact-details small {
  display: block;
  margin-top: 8px;

  color: var(--testo-morbido);

  font-size: 12px;
  line-height: 1.55;
}


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

.footer {
  width: 100%;
  margin-top: 38px;
  padding:
    55px
    clamp(25px, 6vw, 92px)
    24px;

  color: rgba(255, 255, 255, 0.7);

  border-top: 1px solid rgba(232, 201, 142, 0.25);

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(232, 201, 142, 0.09),
      transparent 31%
    ),
    var(--verde-scuro);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 1fr 1fr;
  align-items: start;
  gap: 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-brand img {
  width: 84px;
  height: 62px;

  object-fit: contain;

  border-radius: 4px;
}

.footer-brand strong {
  color: var(--oro-chiaro);

  font-size: 18px;
  font-weight: 800;
}

.footer-brand p {
  max-width: 280px;
  margin-top: 6px;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;
  line-height: 1.55;
}

.footer-navigation,
.footer-company,
.footer-contacts {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-navigation > span,
.footer-company > span,
.footer-contacts > span {
  margin-bottom: 5px;

  color: var(--oro-chiaro);

  font-family: "Cinzel", serif;
  font-size: 13px;
  font-weight: 800;
}

.footer-navigation a,
.footer-company a,
.footer-contacts a,
.footer-bottom a {
  overflow-wrap: anywhere;

  color: rgba(255, 255, 255, 0.68);

  font-size: 12px;
  font-weight: 600;

  transition: color 0.3s ease;
}

.footer-navigation a:hover,
.footer-company a:hover,
.footer-contacts a:hover,
.footer-bottom a:hover {
  color: var(--oro-chiaro);
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 22px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  border-top: 1px solid rgba(232, 201, 142, 0.16);
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.48);

  font-size: 11px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}


/* =========================================================
   WHATSAPP
========================================================= */

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 990;

  width: 61px;
  height: 61px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--bianco);

  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;

  background: linear-gradient(
    135deg,
    var(--verde-scuro),
    var(--verde),
    var(--verde-chiaro)
  );

  box-shadow:
    0 0 0 0 rgba(83, 107, 92, 0.48),
    0 14px 35px rgba(69, 48, 31, 0.24);

  animation: whatsappPulse 1.7s infinite;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.09);

  box-shadow:
    0 0 28px rgba(83, 107, 92, 0.32),
    0 17px 40px rgba(69, 48, 31, 0.28);
}

.whatsapp-float svg {
  width: 31px;
  height: 31px;
}


/* =========================================================
   REVEAL
========================================================= */

.reveal {
  opacity: 0;
  transform: translateY(37px);

  transition:
    opacity 0.85s ease,
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.image-loaded {
  opacity: 1;
}

.image-error {
  opacity: 0.3;
}

.keyboard-activated {
  transform: scale(0.97);
}


/* =========================================================
   ANIMAZIONI
========================================================= */

@keyframes buttonShine {
  0% {
    left: -45%;
  }

  48%,
  100% {
    left: 135%;
  }
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes whatsappPulse {
  0% {
    box-shadow:
      0 0 0 0 rgba(83, 107, 92, 0.48),
      0 14px 35px rgba(69, 48, 31, 0.24);
  }

  70% {
    box-shadow:
      0 0 0 18px rgba(83, 107, 92, 0),
      0 14px 35px rgba(69, 48, 31, 0.24);
  }

  100% {
    box-shadow:
      0 0 0 0 rgba(83, 107, 92, 0),
      0 14px 35px rgba(69, 48, 31, 0.24);
  }
}


/* =========================================================
   RESPONSIVE — COMPUTER MEDIO
========================================================= */

@media (max-width: 1300px) {
  .nav {
    gap: 17px;
    padding-inline: 27px;
  }

  .nav-links {
    gap: 11px;
  }

  .nav-links a,
  .nav-cta {
    font-size: 10px;
  }

  .hero {
    grid-template-columns:
      minmax(0, 1.04fr)
      minmax(350px, 0.96fr);
  }

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

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

  .extras-section {
    grid-template-columns: 1fr;
  }

  .extras-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
  }

  .extras-content .section-label {
    justify-content: center;
  }

  .extras-grid {
    width: min(100%, 930px);
    margin: 0 auto;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.8fr 1fr;
  }

  .footer-contacts {
    grid-column: 2 / 4;
  }
}


/* =========================================================
   RESPONSIVE — TABLET
========================================================= */

@media (max-width: 1050px) {
  html {
    scroll-padding-top: 85px;
  }

  .nav {
    min-height: 76px;

    grid-template-columns: 1fr auto;
  }

  .brand-logo {
    width: 72px;
    height: 52px;
  }

  .nav-cta {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 76px;
    right: -100%;
    z-index: 999;

    width: min(86%, 390px);
    height: calc(100vh - 76px);
    padding: 34px 30px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;

    overflow-y: auto;

    border-left: 1px solid rgba(168, 97, 67, 0.23);

    background:
      radial-gradient(
        circle at 100% 0%,
        rgba(216, 193, 162, 0.22),
        transparent 30%
      ),
      rgba(255, 250, 243, 0.995);

    box-shadow: -20px 30px 55px rgba(69, 48, 31, 0.17);

    transition: right 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    width: 100%;
    padding: 16px 4px;

    color: var(--marrone);

    font-family: "Cinzel", serif;
    font-size: 16px;

    border-bottom: 1px solid rgba(168, 97, 67, 0.13);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    margin-top: 96px;

    grid-template-columns: 1fr;
  }

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

  .hero-content .section-label {
    justify-content: center;
  }

  .hero-content .section-label::after {
    content: "";

    width: 34px;
    height: 1px;

    background: linear-gradient(
      90deg,
      var(--terracotta),
      transparent
    );
  }

  .hero-content h1,
  .hero-lead,
  .hero-secondary,
  .furnished-notice,
  .hero-points {
    margin-inline: auto;
  }

  .furnished-notice {
    text-align: left;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-hospitality-image {
    width: min(100%, 730px);
    min-height: 520px;

    transform: none;
  }

  .hero-hospitality-badge {
    right: 15px;
  }

  .owners-section,
  .protection-section {
    grid-template-columns: 1fr;
  }

  .owners-heading,
  .owners-content,
  .protection-heading,
  .protection-content {
    max-width: 850px;
    margin: 0 auto;

    text-align: center;
  }

  .owners-heading .section-label,
  .protection-heading .section-label {
    justify-content: center;
  }

  .owners-grid,
  .protection-values {
    grid-column: auto;
  }

  .visual-chapter {
    height: 650px;
  }

  .visual-chapter-overlay {
    background: linear-gradient(
      180deg,
      rgba(45, 29, 20, 0.1) 0%,
      rgba(45, 29, 20, 0.25) 38%,
      rgba(45, 29, 20, 0.9) 100%
    );
  }

  .visual-chapter-content {
    top: auto;
    right: clamp(28px, 6vw, 65px);
    bottom: clamp(35px, 6vw, 70px);
    left: clamp(28px, 6vw, 65px);

    width: auto;
    padding: 0 0 0 24px;

    transform: none;
  }

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

  .experience-image:first-child {
    grid-column: 1 / -1;
  }

  .owner-relationship-section {
    grid-template-columns: 1fr;
  }

  .relationship-image {
    min-height: 480px;
  }

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

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

  .footer-brand {
    grid-column: 1 / -1;

    justify-content: center;

    text-align: center;
  }

  .footer-brand p {
    margin-inline: auto;
  }

  .footer-contacts {
    grid-column: auto;
  }
}


/* =========================================================
   RESPONSIVE — TELEFONO
========================================================= */

@media (max-width: 700px) {
  :root {
    --raggio-sezione: 24px;
    --raggio-card: 20px;
    --raggio-foto: 20px;
  }

  .nav {
    min-height: 72px;
    padding: 8px 17px;
  }

  .brand {
    gap: 9px;
  }

  .brand-logo {
    width: 64px;
    height: 45px;
  }

  .brand-name {
    font-size: 15px;
  }

  .brand-text small {
    font-size: 7px;
    letter-spacing: 1.7px;
  }

  .menu-btn {
    width: 43px;
    height: 43px;
  }

  .nav-links {
    top: 72px;

    height: calc(100vh - 72px);
  }

  .section,
  .hero,
  .visual-chapter,
  .hospitality-statement,
  .experience-section,
  .owner-relationship-section {
    width: calc(100% - 26px);

    margin-block: 22px;
  }

  .section {
    padding: 53px 20px;
  }

  .hero {
    margin-top: 87px;
    padding: 38px 20px 48px;

    gap: 29px;
  }

  .section-label {
    gap: 8px;

    font-size: 9px;
    letter-spacing: 2px;
  }

  .section-label::before,
  .section-head .section-label::after,
  .hero-content .section-label::after,
  .closing-content .section-label::after,
  .contact-heading .section-label::after {
    width: 19px;
  }

  .hero-content h1 {
    margin-top: 15px;

    font-size: clamp(34px, 10vw, 47px);
    line-height: 1.07;
    letter-spacing: -1px;
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.66;
  }

  .hero-secondary {
    font-size: 13px;
    line-height: 1.67;
  }

  .furnished-notice {
    padding: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }

  .hero-point {
    min-height: auto;
    padding: 15px 0;

    text-align: center;

    border-bottom: 1px solid rgba(168, 97, 67, 0.14);
  }

  .hero-point:last-child {
    border-bottom: 0;
  }

  .hero-point:not(:last-child)::after {
    display: none;
  }

  .hero-hospitality-image {
    min-height: 410px;

    border-radius: 21px;
  }

  .hero-hospitality-image figcaption {
    right: 22px;
    bottom: 22px;
    left: 22px;
  }

  .hero-hospitality-image figcaption strong {
    font-size: 20px;
  }

  .hero-hospitality-badge {
    display: none;
  }

  .section-head h2,
  .owners-heading h2,
  .extras-content h2,
  .protection-heading h2,
  .relationship-content h2,
  .closing-content h2,
  .contact-heading h2 {
    font-size: clamp(29px, 8.5vw, 40px);
    line-height: 1.13;
    letter-spacing: -0.6px;
  }

  .section-head > p,
  .owners-content > p,
  .extras-content > p,
  .protection-content > p,
  .relationship-content > p,
  .closing-content p,
  .contact-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .owners-grid,
  .services-grid,
  .protection-values,
  .extras-grid {
    grid-template-columns: 1fr;
  }

  .owner-card,
  .service-card,
  .protection-card,
  .extras-grid article {
    min-height: auto;
  }

  .hospitality-statement {
    padding: 70px 21px;
  }

  .statement-content > span {
    top: -47px;

    font-size: 135px;
  }

  .statement-content blockquote {
    font-size: 21px;
    line-height: 1.55;
  }

  .statement-content p {
    font-size: 9px;
    line-height: 1.6;
  }

  .visual-chapter {
    height: 570px;
  }

  .visual-chapter-content {
    right: 21px;
    bottom: 31px;
    left: 21px;

    padding-left: 17px;
  }

  .chapter-number {
    margin-bottom: 15px;

    font-size: 47px;
  }

  .visual-chapter-content h2 {
    margin-top: 13px;

    font-size: clamp(29px, 8.7vw, 39px);
    line-height: 1.12;
  }

  .visual-chapter-content p {
    margin-top: 16px;

    font-size: 13px;
    line-height: 1.65;
  }

  .process-step {
    min-height: auto;
    padding: 26px 21px;

    grid-template-columns: 1fr;
    gap: 15px;
  }

  .process-number {
    text-align: left;
  }

  .experience-section {
    grid-template-columns: 1fr;
  }

  .experience-image:first-child {
    grid-column: auto;
  }

  .experience-image {
    min-height: 420px;
  }

  .property-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
    gap: 11px;
  }

  .property-image-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .property-image-wide {
    grid-column: span 2;
  }

  .relationship-image {
    min-height: 390px;
  }

  .relationship-content {
    padding: 52px 21px;
  }

  .closing-actions {
    flex-direction: column;
  }

  .closing-actions .btn {
    width: 100%;
  }

  .contact-card {
    min-height: auto;
    padding: 20px 17px;
  }

  .contact-details strong {
    font-size: 13px;
  }

  .footer {
    padding:
      43px
      20px
      23px;
  }

  .footer-main {
    grid-template-columns: 1fr;

    text-align: center;
  }

  .footer-brand {
    grid-column: auto;

    flex-direction: column;
  }

  .footer-navigation,
  .footer-company,
  .footer-contacts {
    align-items: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;

    text-align: center;
  }

  .whatsapp-float {
    right: 15px;
    bottom: 15px;

    width: 55px;
    height: 55px;
  }

  .whatsapp-float svg {
    width: 28px;
    height: 28px;
  }
}


/* =========================================================
   TELEFONI PICCOLI
========================================================= */

@media (max-width: 420px) {
  .brand-name {
    font-size: 14px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .section-head h2,
  .owners-heading h2,
  .extras-content h2,
  .protection-heading h2,
  .relationship-content h2,
  .closing-content h2,
  .contact-heading h2 {
    font-size: 28px;
  }

  .hero-hospitality-image {
    min-height: 360px;
  }

  .visual-chapter {
    height: 535px;
  }

  .visual-chapter-content h2 {
    font-size: 28px;
  }

  .experience-image {
    min-height: 370px;
  }

  .property-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 300px;
  }

  .property-image-large,
  .property-image-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .contact-card {
    align-items: flex-start;
  }
}


/* =========================================================
   RIDUZIONE ANIMAZIONI
========================================================= */

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;

    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

:where(a, button):focus-visible { outline: 3px solid currentColor; outline-offset: 4px; }
