/* Leon Service ? tech Milano ? nero + giallo */
:root {
  --ls-black: #0b0b0b;
  --ls-black-2: #141414;
  --ls-black-3: #1c1c1c;
  --ls-yellow: #ffd700;
  --ls-yellow-deep: #d4af37;
  --ls-yellow-soft: #ffe566;
  --ls-yellow-dim: rgba(255, 215, 0, 0.16);
  --ls-bg: #f4f4f1;
  --ls-surface: #ecece8;
  --ls-ink: #111111;
  --ls-muted: #5c5c5c;
  --ls-line: rgba(17, 17, 17, 0.12);
  --ls-line-light: rgba(255, 255, 255, 0.12);
  --ls-radius: 4px;
  --ls-max: 1180px;
  --ls-gap: 20px;
  --ls-font: "DM Sans", system-ui, sans-serif;
  --ls-display: "Space Grotesk", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .ls-reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

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

body {
  margin: 0;
  background: var(--ls-bg);
  color: var(--ls-ink);
  font-family: var(--ls-font);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.ls-wrap {
  width: min(100% - 40px, var(--ls-max));
  margin-inline: auto;
}

/* ??? Header ??? */
.ls-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(244, 244, 241, 0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.ls-header__inner {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.ls-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #111;
  font-family: var(--ls-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ls-header__brand img {
  width: auto !important;
  height: 64px !important;
  max-height: 64px !important;
  max-width: 220px !important;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.ls-header__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
  margin-left: auto;
}

.ls-header__nav a {
  text-decoration: none;
  color: #1a1a1a;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 8px 0;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.ls-header__nav a:hover,
.ls-header__nav a[aria-current="page"] {
  color: #8a7400;
}

.ls-header__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  background: #111;
  color: #ffd700 !important;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  border-radius: var(--ls-radius);
}

.ls-header__cta:hover {
  background: #000;
  color: #ffe566 !important;
}

.ls-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  background: transparent;
  border-radius: var(--ls-radius);
  padding: 10px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  margin-left: auto;
}

.ls-burger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #111;
}

.ls-drawer {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 8px 20px 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
  background: #f4f4f1;
}

.ls-drawer[hidden] {
  display: none !important;
}

.ls-drawer a {
  color: #111;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 4px;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.ls-drawer a:hover {
  color: #8a7400;
}

@media (max-width: 920px) {
  .ls-header__nav,
  .ls-header__cta {
    display: none;
  }
  .ls-burger {
    display: inline-flex;
  }
  .ls-drawer:not([hidden]) {
    display: flex;
  }
}

/* ??? Type & UI ??? */
.ls-kicker {
  margin: 0 0 12px;
  font-family: var(--ls-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ls-yellow);
}

.ls-kicker--dark {
  color: var(--ls-muted);
}

.ls-h1 {
  margin: 0;
  font-family: var(--ls-display);
  font-weight: 500;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ls-h2 {
  margin: 0 0 16px;
  font-family: var(--ls-display);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.ls-h3 {
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
}

.ls-lead {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--ls-muted);
  max-width: 62ch;
}

.ls-lead--light {
  color: rgba(255, 255, 255, 0.72);
}

.ls-p {
  margin: 0 0 14px;
  color: var(--ls-muted);
  max-width: 70ch;
}

.ls-p:last-child {
  margin-bottom: 0;
}

.ls-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.ls-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: var(--ls-radius);
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.ls-btn--primary {
  background: var(--ls-yellow);
  color: var(--ls-black) !important;
}

.ls-btn--primary:hover {
  background: var(--ls-yellow-soft);
}

.ls-btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: #fff !important;
}

.ls-btn--ghost:hover {
  border-color: var(--ls-yellow);
  color: var(--ls-yellow) !important;
}

.ls-btn--dark {
  background: var(--ls-black);
  color: #fff !important;
}

.ls-btn--outline {
  border-color: var(--ls-ink);
  color: var(--ls-ink) !important;
  background: transparent;
}

.ls-btn--outline:hover {
  background: var(--ls-black);
  color: #fff !important;
}

/* ??? Sections ??? */
.ls-section {
  padding: 72px 0;
}

@media (min-width: 900px) {
  .ls-section {
    padding: 96px 0;
  }
}

.ls-section--dark {
  background: var(--ls-black);
  color: #fff;
}

.ls-section--dark .ls-p,
.ls-section--dark .ls-lead {
  color: rgba(255, 255, 255, 0.72);
}

.ls-section--surface {
  background: var(--ls-surface);
}

.ls-section__head {
  margin-bottom: 40px;
  max-width: 720px;
}

.ls-section__head--center {
  text-align: center;
  margin-inline: auto;
}

/* ??? Hero tech ??? */
.ls-hero {
  position: relative;
  background: var(--ls-black);
  color: #fff;
  overflow: hidden;
  min-height: min(88vh, 820px);
  display: grid;
  align-items: stretch;
}

.ls-hero__grid {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  display: grid;
  gap: 40px;
  padding: 88px 0 56px;
  align-items: center;
}

@media (min-width: 960px) {
  .ls-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    padding: 100px 0 72px;
  }
}

.ls-hero__visual {
  position: relative;
  border: 1px solid var(--ls-line-light);
  border-radius: var(--ls-radius);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 520px;
  background: var(--ls-black-2);
}

.ls-hero__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: contrast(1.05) saturate(0.92);
}

.ls-hero__badge {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 8px 12px;
  background: var(--ls-yellow);
  color: var(--ls-black);
  font-family: var(--ls-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ls-hero__scan {
  pointer-events: none;
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0 48%, rgba(232, 197, 71, 0.08) 50%, transparent 52% 100%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(255, 255, 255, 0.03) 3px,
      rgba(255, 255, 255, 0.03) 4px
    );
  mix-blend-mode: screen;
}

.ls-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.ls-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid var(--ls-line-light);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.8);
}

.ls-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ls-yellow);
}

/* ??? Split ??? */
.ls-split {
  display: grid;
  gap: 32px;
  align-items: center;
}

@media (min-width: 900px) {
  .ls-split {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 56px;
  }
  .ls-split--flip {
    grid-template-columns: 1.05fr 0.95fr;
  }
  .ls-split--flip .ls-split__media {
    order: 2;
  }
}

.ls-split__media {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  background: var(--ls-surface);
}

.ls-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ??? Method / steps ??? */
.ls-method {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .ls-method {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ls-method__item {
  padding: 24px;
  border: 1px solid var(--ls-line-light);
  border-radius: var(--ls-radius);
  background: var(--ls-black-2);
}

.ls-method__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  border: 1px solid var(--ls-yellow);
  color: var(--ls-yellow);
  font-family: var(--ls-display);
  font-size: 13px;
  font-weight: 700;
}

.ls-method__item h3 {
  color: #fff;
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 600;
}

.ls-method__item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.55;
}

/* ??? Timeline ??? */
.ls-timeline {
  display: grid;
  gap: 12px;
}

@media (min-width: 900px) {
  .ls-timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ls-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px;
  border-left: 2px solid var(--ls-yellow);
  background: rgba(255, 255, 255, 0.03);
}

.ls-step__n {
  font-family: var(--ls-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--ls-yellow);
  line-height: 1;
}

.ls-step h4 {
  margin: 0 0 6px;
  font-family: var(--ls-display);
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

.ls-step p {
  margin: 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.45;
}

/* ??? Benefits strip ??? */
.ls-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 700px) {
  .ls-benefits {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1100px) {
  .ls-benefits {
    grid-template-columns: repeat(7, 1fr);
  }
}

.ls-benefit {
  padding: 16px 12px;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  text-align: left;
  min-height: 88px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
}

.ls-benefit__mark {
  width: 18px;
  height: 2px;
  background: var(--ls-yellow);
}

.ls-benefit p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  font-family: var(--ls-display);
}

.ls-section--dark .ls-benefit {
  background: var(--ls-black-2);
  border-color: var(--ls-line-light);
  color: #fff;
}

/* ??? Service / feature lists ??? */
.ls-features {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .ls-features {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-feature {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
}

.ls-feature__idx {
  font-family: var(--ls-display);
  font-size: 13px;
  font-weight: 700;
  color: var(--ls-yellow);
  background: var(--ls-black);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: var(--ls-radius);
}

.ls-feature h3 {
  margin: 0 0 6px;
  font-family: var(--ls-display);
  font-size: 17px;
}

.ls-feature p {
  margin: 0;
  font-size: 15px;
  color: var(--ls-muted);
  line-height: 1.5;
}

.ls-pillars {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .ls-pillars {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-pillar {
  padding: 24px;
  border-top: 2px solid var(--ls-yellow);
  background: #fff;
  border-right: 1px solid var(--ls-line);
  border-bottom: 1px solid var(--ls-line);
  border-left: 1px solid var(--ls-line);
}

.ls-pillar h3 {
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: 18px;
}

.ls-pillar p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 15px;
}

/* ??? Apartment cards ??? */
.ls-listings {
  display: grid;
  gap: 16px;
}

@media (min-width: 800px) {
  .ls-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-card {
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

a.ls-card:hover {
  border-color: var(--ls-black);
  transform: translateY(-2px);
}

.ls-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ls-black-2);
}

.ls-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ls-card__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ls-muted);
}

.ls-card h3 {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 22px;
  font-weight: 600;
}

.ls-card p {
  margin: 0;
  color: var(--ls-muted);
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ls-card__link {
  margin-top: auto;
  padding-top: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ls-black);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ls-card__link::after {
  content: "?";
  color: var(--ls-yellow);
  font-size: 16px;
}

/* ??? FAQ ??? */
.ls-faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
  margin-inline: auto;
}

.ls-faq details {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  padding: 0;
}

.ls-section--dark .ls-faq details {
  background: var(--ls-black-2);
  border-color: var(--ls-line-light);
}

.ls-faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 20px;
  font-family: var(--ls-display);
  font-weight: 600;
  font-size: 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.ls-faq summary::after {
  content: "+";
  color: var(--ls-yellow);
  font-size: 20px;
  font-weight: 500;
  flex-shrink: 0;
}

.ls-faq details[open] summary::after {
  content: "?";
}

.ls-faq details p {
  margin: 0;
  padding: 0 20px 18px;
  color: var(--ls-muted);
  font-size: 15px;
  line-height: 1.6;
}

.ls-section--dark .ls-faq details p {
  color: rgba(255, 255, 255, 0.7);
}

/* ??? Form ??? */
.ls-form {
  display: grid;
  gap: 14px;
  max-width: 720px;
}

.ls-form__row {
  display: grid;
  gap: 14px;
}

@media (min-width: 700px) {
  .ls-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.ls-field label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--ls-display);
}

.ls-field input,
.ls-field select,
.ls-field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  font: inherit;
  color: var(--ls-ink);
}

.ls-field textarea {
  min-height: 140px;
  resize: vertical;
}

.ls-field input:focus,
.ls-field select:focus,
.ls-field textarea:focus {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 1px;
  border-color: var(--ls-black);
}

.ls-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ls-muted);
}

.ls-check input {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.ls-form__status {
  min-height: 24px;
  font-size: 14px;
  font-weight: 600;
}

.ls-form__status[data-state="ok"] {
  color: #1a7a3c;
}

.ls-form__status[data-state="err"] {
  color: #b42318;
}

/* ??? Contact channels ??? */
.ls-channels {
  display: grid;
  gap: 12px;
}

@media (min-width: 800px) {
  .ls-channels {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ls-channel {
  padding: 22px;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
}

.ls-channel span {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ls-muted);
  margin-bottom: 8px;
}

.ls-channel a,
.ls-channel strong {
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.ls-channel a:hover {
  color: #8a6f12;
}

/* ??? Apartment detail ??? */
.ls-apt-hero {
  background: var(--ls-black);
  color: #fff;
  padding: 72px 0 40px;
}

.ls-apt-grid {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

@media (min-width: 800px) {
  .ls-apt-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 220px 220px;
  }
  .ls-apt-grid__main {
    grid-row: 1 / span 2;
  }
  .ls-apt-grid--large {
    grid-template-rows: 300px 300px;
  }
}

.ls-apt-grid--large figure {
  min-height: 200px;
}

.ls-apt-grid figure {
  margin: 0;
  overflow: hidden;
  border-radius: var(--ls-radius);
  border: 1px solid var(--ls-line-light);
  height: 100%;
  min-height: 180px;
}

.ls-apt-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ls-specs {
  display: grid;
  gap: 10px;
  margin: 28px 0;
}

@media (min-width: 700px) {
  .ls-specs {
    grid-template-columns: repeat(2, 1fr);
  }
}

.ls-spec {
  padding: 14px 16px;
  border: 1px solid var(--ls-line);
  background: #fff;
  border-radius: var(--ls-radius);
  font-size: 14px;
}

.ls-spec strong {
  display: block;
  font-family: var(--ls-display);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--ls-muted);
  font-weight: 700;
}

.ls-prose h3 {
  margin: 28px 0 10px;
  font-family: var(--ls-display);
  font-size: 22px;
}

.ls-prose p {
  margin: 0 0 14px;
  color: var(--ls-muted);
  max-width: 75ch;
}

.ls-prose ul {
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--ls-muted);
}

.ls-prose li {
  margin-bottom: 6px;
}

/* ??? CTA band ??? */
.ls-cta {
  background: var(--ls-black);
  color: #fff;
  padding: 64px 0;
  border-top: 1px solid var(--ls-line-light);
}

.ls-cta__inner {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  display: grid;
  gap: 20px;
}

@media (min-width: 800px) {
  .ls-cta__inner {
    grid-template-columns: 1.4fr auto;
    align-items: center;
  }
}

.ls-cta h2 {
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-size: clamp(26px, 3.5vw, 36px);
  font-weight: 500;
}

.ls-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  max-width: 52ch;
}

/* ??? Footer ??? */
.ls-footer {
  background: var(--ls-black);
  color: rgba(255, 255, 255, 0.75);
  padding: 48px 0 28px;
  border-top: 1px solid var(--ls-line-light);
  font-size: 14px;
}

.ls-footer__grid {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

@media (min-width: 800px) {
  .ls-footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr;
  }
}

.ls-footer strong {
  color: #fff;
  font-family: var(--ls-display);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ls-footer a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.ls-footer a:hover {
  color: var(--ls-yellow);
}

.ls-footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ls-footer__legal {
  width: min(100% - 40px, var(--ls-max));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--ls-line-light);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-content: space-between;
  font-size: 13px;
}

.ls-footer__prefs {
  appearance: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ls-footer__prefs:focus-visible {
  outline: 2px solid var(--ls-yellow, #ffd700);
  outline-offset: 3px;
}

.ls-footer__credit a {
  color: var(--ls-yellow);
}

.ls-footer__prefs {
  appearance: none;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  padding: 0;
  margin: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.ls-footer__prefs:hover,
.ls-footer__prefs:focus-visible {
  color: var(--ls-yellow);
}
.ls-footer__prefs:focus-visible {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 3px;
}

/* ??? Page hero compact ??? */
.ls-page-hero {
  background: var(--ls-black);
  color: #fff;
  padding: 72px 0 48px;
  border-bottom: 1px solid var(--ls-line-light);
}

.ls-page-hero .ls-h1 {
  max-width: 18ch;
}

.ls-page-hero .ls-lead {
  margin-top: 16px;
}

/* ??? Portals / coverage ??? */
.ls-cover {
  display: grid;
  gap: 28px;
  align-items: center;
}

@media (min-width: 900px) {
  .ls-cover {
    grid-template-columns: 1fr 1fr;
  }
}

.ls-cover__visual {
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  overflow: hidden;
  background: #fff;
  padding: 20px;
  min-height: 180px;
  display: grid;
  place-items: center;
}

.ls-cover__visual img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
}

/* ??? Motion ??? */
.ls-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.ls-reveal.is-in {
  opacity: 1;
  transform: none;
}

.ls-marquee {
  overflow: hidden;
  border-block: 1px solid var(--ls-line-light);
  background: var(--ls-black-2);
  color: rgba(255, 255, 255, 0.55);
  font-family: var(--ls-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ls-marquee__track {
  display: flex;
  gap: 40px;
  width: max-content;
  padding: 12px 0;
  animation: ls-marquee 28s linear infinite;
}

@keyframes ls-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ls-marquee__track {
    animation: none;
  }
}

/* ========== LEON MAX ? bold cinematic layer ========== */
.ls-h1 {
  font-size: clamp(42px, 7.5vw, 88px) !important;
  letter-spacing: -0.04em !important;
}

.ls-h2 {
  font-size: clamp(34px, 5vw, 56px) !important;
}

.ls-hero--cinema {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #000;
}

.ls-hero--cinema .ls-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.ls-hero--cinema .ls-hero__bg {
  overflow: hidden;
}
.ls-hero--cinema .ls-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  filter: contrast(1.08) saturate(0.9) brightness(0.72);
}
@media (max-width: 700px) {
  .ls-hero--cinema .ls-hero__bg img {
    transform: none;
  }
}

.ls-hero--cinema .ls-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.25) 100%),
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, transparent 35%, rgba(0,0,0,.75) 100%);
}

.ls-hero--cinema .ls-hero__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: 120px 0 72px;
  max-width: 920px;
}

.ls-hero--cinema .ls-h1 {
  max-width: 14ch;
  text-shadow: 0 10px 40px rgba(0,0,0,.45);
}

.ls-hero--cinema .ls-brandline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-family: var(--ls-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ls-yellow);
}

.ls-hero--cinema .ls-brandline::before {
  content: "";
  width: 36px;
  height: 2px;
  background: var(--ls-yellow);
}

/* Half-bleed stage: 50/50 image + copy */
.ls-stage {
  display: grid;
  min-height: min(62vh, 640px);
  background: var(--ls-black);
  color: #fff;
}

@media (min-width: 960px) {
  .ls-stage {
    grid-template-columns: 1fr 1fr;
  }
  .ls-stage--img-right .ls-stage__media { order: 2; }
  .ls-stage--img-right .ls-stage__copy { order: 1; }
}

.ls-stage__media {
  position: relative;
  min-height: 48vh;
  overflow: hidden;
}

.ls-stage__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: contrast(1.05);
}

.ls-stage__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(40px, 6vw, 80px) clamp(24px, 5vw, 64px);
  background: var(--ls-black);
}

.ls-stage__copy .ls-h2 {
  margin-bottom: 20px;
}

/* Full-bleed immersive band */
.ls-bleed {
  position: relative;
  min-height: 70vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.ls-bleed__bg {
  position: absolute;
  inset: 0;
}

.ls-bleed__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.08);
}

.ls-bleed__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15), rgba(0,0,0,.82));
}

.ls-bleed__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: 64px 0;
}

.ls-bleed__content .ls-h2 {
  max-width: 16ch;
}

/* Giant typography statement */
.ls-statement {
  padding: clamp(64px, 10vw, 120px) 0;
  background: var(--ls-black);
  color: #fff;
  overflow: hidden;
}

.ls-statement__line {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  font-family: var(--ls-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 500;
  line-height: 0.95;
  letter-spacing: -0.045em;
}

.ls-statement__line em {
  font-style: normal;
  color: var(--ls-yellow);
}

/* Mosaic strip */
.ls-mosaic {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  min-height: 62vh;
  padding: 10px;
  background: var(--ls-black);
}

.ls-mosaic figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.ls-mosaic figure:first-child {
  grid-row: 1 / span 2;
}

.ls-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s ease;
}

.ls-mosaic figure:hover img {
  transform: scale(1.05);
}

/* Page hero cinematic */
.ls-page-hero--photo {
  position: relative;
  min-height: 58vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 0 !important;
  border: 0 !important;
}

.ls-page-hero--photo .ls-page-hero__bg {
  position: absolute;
  inset: 0;
}

.ls-page-hero--photo .ls-page-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.06);
}

.ls-page-hero--photo .ls-page-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.78) 100%);
}

.ls-page-hero--photo .ls-wrap {
  position: relative;
  z-index: 2;
  padding: 100px 0 48px;
}

/* Bigger listing cards */
.ls-card__media {
  aspect-ratio: 16 / 11 !important;
  min-height: 240px;
}

.ls-listings {
  gap: 20px !important;
}

@media (min-width: 800px) {
  .ls-listings.ls-listings--bold {
    grid-template-columns: 1fr 1fr;
  }
}

.ls-card--xl .ls-card__media {
  min-height: 320px;
  aspect-ratio: 16 / 10 !important;
}

/* Overlap panel */
.ls-overlap {
  position: relative;
  margin-top: -80px;
  z-index: 3;
}

.ls-overlap__panel {
  width: min(100% - 40px, 980px);
  margin: 0 auto;
  padding: clamp(28px, 4vw, 48px);
  background: rgba(11,11,11,.92);
  border: 1px solid rgba(232,197,71,.35);
  backdrop-filter: blur(16px);
  color: #fff;
}

.ls-overlap__panel .ls-p,
.ls-overlap__panel .ls-lead {
  color: rgba(255,255,255,.72);
}

/* CTA immersive */
.ls-cta--photo {
  position: relative;
  overflow: hidden;
  border: 0;
  padding: 0;
}

.ls-cta--photo .ls-cta__bg {
  position: absolute;
  inset: 0;
}

.ls-cta--photo .ls-cta__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.35);
}

.ls-cta--photo .ls-cta__inner {
  position: relative;
  z-index: 2;
  padding: 96px 0;
}

/* Method glass on dark with more punch */
.ls-method__item {
  background: rgba(255,255,255,.04) !important;
  border-color: rgba(232,197,71,.28) !important;
  min-height: 220px;
}

.ls-benefit {
  min-height: 110px !important;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0,0,0,.04);
}

.ls-section {
  padding: 88px 0 !important;
}

@media (min-width: 900px) {
  .ls-section {
    padding: 120px 0 !important;
  }
}

.ls-btn--primary {
  box-shadow: 0 0 0 0 rgba(232,197,71,.5);
  animation: ls-pulse 2.8s ease-in-out infinite;
}

@keyframes ls-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232,197,71,.35); }
  50% { box-shadow: 0 0 0 10px rgba(232,197,71,0); }
}

@media (prefers-reduced-motion: reduce) {
  .ls-btn--primary { animation: none; }
  .ls-mosaic figure:hover img { transform: none; }
}

/* ========== CODE-BLOCK DNA (nero + oro Ornella) ========== */
.ls-kicker,
.ls-brandline,
.ls-hero--cinema .ls-brandline {
  color: #ffd700 !important;
}

.ls-section--dark .ls-h2,
.ls-stage__copy .ls-h2,
.ls-bleed__content .ls-h2,
.ls-statement__line em,
.ls-cta h2 {
  color: #ffd700;
}

.ls-section--goldhead .ls-h2 {
  color: #ffd700;
  text-align: center;
  letter-spacing: 0.04em;
}

/* Metodo: 3 colonne come i code block */
.ls-method {
  text-align: center;
}

.ls-method__item {
  background: #000 !important;
  border: 1px solid rgba(255, 215, 0, 0.35) !important;
  padding: 36px 24px !important;
  min-height: 260px;
}

.ls-method__item .ls-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #222;
  color: #ffd700;
  font-size: 1.85rem;
}

.ls-method__num {
  display: none;
}

.ls-method__item h3 {
  color: #fff !important;
  font-size: 1.25rem !important;
  margin-bottom: 12px !important;
}

.ls-method__item p {
  color: #ccc !important;
}

/* Timeline cerchi oro gradient */
.ls-timeline {
  gap: 28px !important;
}

.ls-step {
  display: flex !important;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 0 !important;
  background: transparent !important;
  padding: 10px !important;
  gap: 0 !important;
}

.ls-step__n {
  background: linear-gradient(135deg, #ffd700, #b8860b);
  color: #000 !important;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem !important;
  font-weight: 800 !important;
  margin: 0 auto 12px;
}

.ls-step h4 {
  color: #fff !important;
  margin: 8px 0 6px !important;
}

.ls-step p {
  color: #ccc !important;
  font-size: 14px !important;
}

/* Benefit: cerchi neri come code 7 icone */
.ls-benefits {
  gap: 24px !important;
  justify-items: center;
}

.ls-benefit {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  min-height: auto !important;
  align-items: center !important;
  text-align: center !important;
  width: 120px;
  padding: 0 !important;
}

.ls-benefit__mark {
  display: none !important;
}

.ls-benefit .ls-ico {
  width: 70px;
  height: 70px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: #222;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
}

.ls-section--dark .ls-benefit .ls-ico {
  background: #222;
  color: #ffd700;
}

.ls-benefit p {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: inherit;
}

/* Card servizi oro (ispirazione code proprietari) */
.ls-features.ls-features--gold {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 22px !important;
}

.ls-features--gold .ls-feature {
  background: #ffd700;
  border: 0;
  color: #000;
  text-align: center;
  padding: 30px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.ls-features--gold .ls-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(255, 215, 0, 0.45);
}

.ls-features--gold .ls-feature__idx {
  display: none;
}

.ls-features--gold .ls-feature .ls-ico {
  font-size: 2.4rem;
  color: #000;
  margin-bottom: 14px;
}

.ls-features--gold .ls-feature h3 {
  color: #000;
  font-size: 1.25rem;
}

.ls-features--gold .ls-feature p {
  color: #222;
  text-align: center;
}

/* Pillars su nero con bordo oro */
.ls-pillars.ls-pillars--dark .ls-pillar {
  background: #111;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-top: 3px solid #ffd700;
  color: #eee;
}

.ls-pillars--dark .ls-pillar h3 {
  color: #ffd700;
}

.ls-pillars--dark .ls-pillar p {
  color: #ccc;
}

/* FAQ scura bordo oro ? DNA code block */
.ls-faq.ls-faq--dark {
  max-width: 720px;
}

.ls-faq--dark details {
  background: #222 !important;
  border: 0 !important;
  border-left: 4px solid #ffd700 !important;
  border-radius: 8px !important;
  margin-bottom: 16px;
  color: #fff;
}

.ls-faq--dark summary {
  color: #fff;
  text-align: center;
  justify-content: center;
}

.ls-faq--dark summary::after {
  display: none;
}

.ls-faq--dark details p {
  color: #ddd !important;
  text-align: left;
}

.ls-section--black {
  background: #000 !important;
  color: #fff;
}

.ls-section--black .ls-h2 {
  color: #ffd700;
}

.ls-section--greybox {
  background: #ebeaea;
}

.ls-welcome {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 30px;
  background: #ebeaea;
  border-radius: 12px;
}

.ls-welcome h2 {
  color: #ffd700;
  font-family: var(--ls-display);
  font-size: clamp(28px, 4vw, 40px);
  margin: 0 0 12px;
}

.ls-welcome p {
  margin: 0;
  color: #111;
  font-size: 1.15rem;
}

.ls-welcome + .ls-welcome-contact {
  max-width: 700px;
  margin: 12px auto 0;
  text-align: center;
  padding: 22px 20px;
  background: #ddd;
  border-radius: 12px;
}

.ls-welcome-contact a {
  color: #000;
  font-weight: 700;
  text-decoration: none;
}

.ls-header__cta,
.ls-btn--primary {
  background: #ffd700 !important;
  color: #000 !important;
}

.ls-chip::before,
.ls-benefit__mark,
.ls-feature__idx {
  background: #ffd700;
}

.ls-feature__idx {
  color: #000 !important;
}

/* Testi bianchi su superfici scure */
.ls-section--dark,
.ls-section--black,
.ls-stage,
.ls-stage__copy,
.ls-bleed,
.ls-bleed__content,
.ls-hero--cinema,
.ls-hero--cinema .ls-hero__content,
.ls-page-hero,
.ls-page-hero--photo,
.ls-cta,
.ls-cta--photo,
.ls-statement,
.ls-footer,
.ls-faq--dark,
.ls-method__item,
.ls-step,
.ls-pillars--dark .ls-pillar {
  color: #fff !important;
}

.ls-section--dark .ls-p,
.ls-section--dark .ls-lead,
.ls-section--dark .ls-lead--light,
.ls-section--black .ls-p,
.ls-section--black .ls-lead,
.ls-section--black .ls-lead--light,
.ls-stage__copy .ls-p,
.ls-stage__copy .ls-lead,
.ls-stage__copy .ls-lead--light,
.ls-bleed__content .ls-p,
.ls-bleed__content .ls-lead,
.ls-bleed__content .ls-lead--light,
.ls-hero--cinema .ls-lead,
.ls-hero--cinema .ls-lead--light,
.ls-page-hero .ls-lead,
.ls-page-hero .ls-lead--light,
.ls-page-hero--photo .ls-lead,
.ls-cta p,
.ls-cta--photo p,
.ls-method__item p,
.ls-step p,
.ls-faq--dark details p,
.ls-pillars--dark .ls-pillar p,
.ls-prose p,
.ls-section--dark .ls-prose p,
.ls-benefit p,
.ls-section--black .ls-benefit p,
.ls-section--dark .ls-benefit p,
.ls-chip,
.ls-footer a,
.ls-footer p,
.ls-footer__links a {
  color: #fff !important;
}

.ls-method__item h3,
.ls-step h4,
.ls-faq--dark summary,
.ls-pillars--dark .ls-pillar h3,
.ls-h1,
.ls-page-hero .ls-h1,
.ls-hero--cinema .ls-h1 {
  color: #fff !important;
}

/* Titoli sezione oro restano oro (come nei code block) */
.ls-section--black .ls-h2,
.ls-section--goldhead .ls-h2,
.ls-section--dark .ls-h2,
.ls-bleed__content .ls-h2,
.ls-stage__copy .ls-h2,
.ls-cta h2,
.ls-welcome h2 {
  color: #ffd700 !important;
}

.ls-kicker,
.ls-brandline {
  color: #ffd700 !important;
}

/* Non forzare bianco sui fondi chiari */
.ls-section:not(.ls-section--dark):not(.ls-section--black) .ls-prose p,
.ls-section:not(.ls-section--dark):not(.ls-section--black) .ls-p,
.ls-section--surface .ls-p,
.ls-section--greybox .ls-p,
.ls-welcome p,
.ls-welcome-contact,
.ls-welcome-contact a,
.ls-features--gold .ls-feature h3,
.ls-features--gold .ls-feature p {
  color: inherit !important;
}

.ls-welcome p { color: #111 !important; }
.ls-welcome-contact, .ls-welcome-contact a { color: #000 !important; }
.ls-features--gold .ls-feature h3,
.ls-features--gold .ls-feature p { color: #000 !important; }

.ls-section:not(.ls-section--dark):not(.ls-section--black) .ls-h2 {
  color: #111 !important;
}
.ls-section:not(.ls-section--dark):not(.ls-section--black) .ls-kicker--dark {
  color: #5c5c5c !important;
}

/* Level-10 polish */
.ls-features--ink .ls-feature {
  background: #111;
  border: 1px solid rgba(255,215,0,.28);
  color: #fff;
}
.ls-features--ink .ls-feature p {
  margin: 0;
  color: #fff !important;
  font-size: 16px;
  line-height: 1.45;
}
.ls-features--ink .ls-feature__idx {
  background: #ffd700;
  color: #000 !important;
}
.ls-faq--dark summary {
  text-align: left !important;
  justify-content: space-between !important;
}
.ls-faq--dark summary::after {
  display: inline !important;
  content: "+" !important;
  color: #ffd700;
}
.ls-faq--dark details[open] summary::after {
  content: "?" !important;
}
.ls-pillars--dark {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .ls-pillars--dark {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ls-benefits--row {
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 32px !important;
}
.ls-benefits--row .ls-benefit {
  width: 110px;
}
.ls-page-hero--photo {
  min-height: 72vh !important;
}
.ls-statement .ls-p {
  color: #fff !important;
  max-width: 62ch;
}

/* Ritmo sezioni: cambio colore + divisori */
.ls-section--ink {
  background: #171717;
  color: #fff;
}
.ls-section--ink .ls-h2 { color: #ffd700 !important; }
.ls-section--ink .ls-p,
.ls-section--ink .ls-lead,
.ls-section--ink .ls-step p,
.ls-section--ink .ls-step h4 { color: #fff !important; }

.ls-section--ruled {
  border-top: 1px solid rgba(255, 215, 0, 0.35);
}

.ls-stage + .ls-section,
.ls-section + .ls-stage,
.ls-bleed + .ls-section,
.ls-section + .ls-bleed,
.ls-stage + .ls-stage {
  border-top: 1px solid rgba(255, 215, 0, 0.28);
}

.ls-section--surface .ls-h2 {
  color: #111 !important;
}
.ls-section--surface.ls-section--ruled {
  border-top-color: rgba(17, 17, 17, 0.12);
}

/* Metodo su fondo chiaro: card nere restano */
.ls-section--surface .ls-method__item {
  background: #000 !important;
}
.ls-section--surface .ls-method__item h3,
.ls-section--surface .ls-method__item p {
  color: #fff !important;
}

/* Benefit su chiaro */
.ls-benefits--onlight .ls-benefit p {
  color: #111 !important;
}
.ls-benefits--onlight .ls-ico {
  background: #111;
  color: #ffd700;
}

/* HEADER FINALE: nero + logo bianco 64px */
.ls-header {
  background: rgba(11, 11, 11, 0.96) !important;
  border-bottom: 1px solid rgba(255, 215, 0, 0.22) !important;
}
.ls-header__inner { min-height: 84px !important; }
.ls-header__brand img,
.vg-assembled .ls-header__brand img {
  width: auto !important;
  height: 64px !important;
  max-height: 64px !important;
  max-width: 220px !important;
  filter: brightness(0) invert(1) !important;
}
.ls-header__nav a { color: rgba(255, 255, 255, 0.88) !important; }
.ls-header__nav a:hover,
.ls-header__nav a[aria-current="page"] { color: #ffd700 !important; }
.ls-header__cta { background: #ffd700 !important; color: #000 !important; }
.ls-drawer { background: #0b0b0b !important; border-top-color: rgba(255, 215, 0, 0.22) !important; }
.ls-drawer a { color: #fff !important; }
.ls-drawer a:hover { color: #ffd700 !important; }
.ls-burger { border-color: rgba(255, 255, 255, 0.25) !important; }
.ls-burger span { background: #fff !important; }

/* Stage compatto (no vuoto Italia) */
.ls-stage--compact {
  min-height: 0 !important;
}
.ls-stage--compact .ls-stage__media {
  min-height: 360px;
  aspect-ratio: 4 / 5;
}
@media (min-width: 960px) {
  .ls-stage--compact .ls-stage__media {
    min-height: 100%;
    aspect-ratio: auto;
    align-self: stretch;
  }
  .ls-stage--compact {
    align-items: stretch;
  }
}

/* Benefit row: allineamento fisso 7 icone */
.ls-benefits--row {
  display: grid !important;
  grid-template-columns: repeat(7, minmax(0, 1fr)) !important;
  gap: 16px 12px !important;
  align-items: start !important;
  justify-items: center !important;
}
.ls-benefits--row .ls-benefit {
  width: 100% !important;
  max-width: 120px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  text-align: center !important;
  min-height: 118px !important;
}
.ls-benefits--row .ls-ico {
  width: 64px !important;
  height: 64px !important;
  margin: 0 auto 12px !important;
  flex: 0 0 64px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 1.4rem !important;
  line-height: 1 !important;
}
.ls-benefits--row .ls-benefit p {
  margin: 0 !important;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  text-align: center;
  line-height: 1.3 !important;
}
@media (max-width: 900px) {
  .ls-benefits--row {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 560px) {
  .ls-benefits--row {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

/* ===== Chi siamo layout ===== */
.ls-about-intro {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .ls-about-intro {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 48px;
  }
}
.ls-about-intro__media {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(17,17,17,.12);
  aspect-ratio: 5 / 4;
}
.ls-about-intro__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ls-about-prose {
  margin-top: 28px;
  max-width: 68ch;
  display: grid;
  gap: 12px;
}
.ls-about-prose .ls-p { max-width: none; }

.ls-about-duo {
  display: grid;
  gap: 16px;
}
@media (min-width: 900px) {
  .ls-about-duo {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    align-items: stretch;
  }
}
.ls-about-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.1);
  border-top: 3px solid #ffd700;
}
.ls-about-card .ls-h2 {
  color: #111 !important;
  font-size: clamp(26px, 3vw, 34px) !important;
  margin-bottom: 14px;
}
.ls-about-card .ls-p { color: #333 !important; }
.ls-about-card--dark {
  background: #0b0b0b;
  border-color: rgba(255,215,0,.35);
  color: #fff;
}
.ls-about-card--dark .ls-h2 { color: #ffd700 !important; }
.ls-about-card--dark .ls-p { color: #fff !important; }
.ls-about-card--dark strong { color: #ffd700; }

.ls-about-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
@media (min-width: 800px) {
  .ls-about-list {
    grid-template-columns: 1fr 1fr;
  }
}
.ls-about-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,215,0,.28);
  background: #111;
}
.ls-about-list span {
  font-family: var(--ls-display);
  font-weight: 700;
  color: #ffd700;
  font-size: 14px;
}
.ls-about-list p {
  margin: 0;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.4;
}

.ls-about-distinct {
  display: grid;
  gap: 12px;
}
@media (min-width: 800px) {
  .ls-about-distinct {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ls-about-distinct article {
  padding: 22px 18px;
  background: #fff;
  border: 1px solid rgba(17,17,17,.1);
  border-bottom: 3px solid #ffd700;
  min-height: 140px;
}
.ls-about-distinct h3 {
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-size: 18px;
  color: #111;
}
.ls-about-distinct p {
  margin: 0;
  color: #444;
  font-size: 15px;
  line-height: 1.45;
}

/* Chi siamo � fix impegni + wow distingue */
.ls-about-list--light li {
  background: #fff !important;
  border: 1px solid rgba(17,17,17,.12) !important;
  border-left: 4px solid #ffd700 !important;
}
.ls-about-list--light span {
  color: #111 !important;
  background: #ffd700;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  font-size: 13px;
}
.ls-about-list--light p {
  color: #111 !important;
}

.ls-about-wow {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .ls-about-wow {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
}
.ls-about-wow article {
  text-align: center;
  padding: 32px 20px 28px;
  background: linear-gradient(180deg, #1a1a1a 0%, #0b0b0b 100%);
  border: 1px solid rgba(255,215,0,.35);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.ls-about-wow article:hover {
  transform: translateY(-4px);
  border-color: #ffd700;
  box-shadow: 0 12px 28px rgba(255,215,0,.15);
}
.ls-about-wow__ico {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #222;
  color: #ffd700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  border: 1px solid rgba(255,215,0,.4);
}
.ls-about-wow h3 {
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: 20px;
  color: #ffd700;
  font-weight: 600;
}
.ls-about-wow p {
  margin: 0;
  color: #fff !important;
  font-size: 15px;
  line-height: 1.45;
}

/* ========== HOME rhythm + CHI SIAMO craft (Valentina) ========== */

/* Beige stage under hero */
.ls-stage--beige,
.ls-stage--beige .ls-stage__copy {
  background: var(--ls-surface) !important;
  color: #111 !important;
}
.ls-stage--beige .ls-h2 {
  color: #111 !important;
}
.ls-stage--beige .ls-p,
.ls-stage--beige .ls-lead {
  color: #333 !important;
}
.ls-stage--beige .ls-kicker--dark {
  color: #111 !important;
}

/* White stage (Italia Chi siamo) */
.ls-stage--white,
.ls-stage--white .ls-stage__copy {
  background: #fff !important;
  color: #111 !important;
}
.ls-stage--white .ls-h2 {
  color: #111 !important;
}
.ls-stage--white .ls-p,
.ls-stage--white .ls-lead {
  color: #333 !important;
}
.ls-stage--white .ls-kicker--dark {
  color: #111 !important;
}

.ls-btn--ghost-dark {
  border-color: rgba(17, 17, 17, 0.28);
  color: #111 !important;
  background: transparent;
}
.ls-btn--ghost-dark:hover {
  border-color: #111;
  color: #000 !important;
  background: rgba(17, 17, 17, 0.04);
}

/* Metodo on full black */
.ls-method--onblack .ls-method__item {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 215, 0, 0.28) !important;
}
.ls-method--onblack .ls-method__item h3 {
  color: #fff !important;
}
.ls-method--onblack .ls-method__item p {
  color: rgba(255, 255, 255, 0.72) !important;
}
.ls-method--onblack .ls-ico {
  background: rgba(255, 215, 0, 0.12);
  color: #ffd700;
  border: 1px solid rgba(255, 215, 0, 0.35);
}

/* Bleed: dark to light transition (clearer photo, readable copy) */
.ls-bleed--lift {
  align-items: center;
  min-height: 64vh;
}
.ls-bleed--lift .ls-bleed__bg img {
  filter: brightness(0.78) contrast(1.03) saturate(1.04);
}
.ls-bleed--lift .ls-bleed__veil {
  background:
    linear-gradient(180deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.28) 38%, rgba(244, 244, 241, 0.2) 72%, rgba(244, 244, 241, 0.88) 100%),
    linear-gradient(90deg, rgba(11, 11, 11, 0.55) 0%, rgba(11, 11, 11, 0.18) 70%, transparent 100%);
}
.ls-bleed--lift .ls-bleed__content {
  padding: 72px 0 96px;
  max-width: min(100% - 40px, 720px);
  margin-left: max(20px, calc((100% - var(--ls-max)) / 2));
  margin-right: auto;
  width: auto;
}
.ls-bleed--lift .ls-bleed__content .ls-h2 {
  color: #fff !important;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.45);
}
.ls-bleed--lift .ls-bleed__content .ls-lead,
.ls-bleed--lift .ls-bleed__content .ls-p {
  color: rgba(255, 255, 255, 0.94) !important;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.4);
  max-width: 54ch;
}
.ls-bleed--lift .ls-bleed__content strong {
  color: #ffd700;
}

/* Italia / copertura home � portals strip in white stage; icons under CTA */
.ls-section--white {
  background: #fff !important;
  color: #111;
}
.ls-section--white .ls-h2 {
  color: #111 !important;
}
.ls-section--white .ls-p {
  color: #333 !important;
}
.ls-section--white.ls-section--ruled {
  border-top-color: rgba(17, 17, 17, 0.1);
}

/* Partners strip: client PNG has transparent canvas + brand-color logos */
.ls-stage--white:has(+ .ls-portals-band) .ls-stage__copy {
  padding-bottom: 28px;
}
.ls-portals-band {
  background: #fff;
  border-top: none;
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
  padding: 12px 0 44px;
}
.ls-portals-band .ls-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ls-portals,
.vg-assembled .ls-portals {
  margin: 0;
  width: min(100%, 760px);
  max-width: 100%;
  padding: 0 16px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-sizing: border-box;
  line-height: 0;
}
.ls-portals img,
.vg-assembled .ls-portals img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1822 / 173;
  object-fit: contain;
  object-position: center;
}
@media (max-width: 799px) {
  .ls-portals-band {
    padding: 8px 0 32px;
  }
  .ls-portals,
  .vg-assembled .ls-portals {
    width: 100%;
    padding: 0 8px;
  }
}

/* Icons band under black CTA � Leon ink + gold on white */
.ls-cta + .ls-cover-it {
  padding-top: 44px !important;
  padding-bottom: 60px !important;
  border-top: none;
}
.ls-benefits--inkbox {
  gap: 24px 20px !important;
}
.ls-benefits--inkbox .ls-benefit {
  background: transparent !important;
  box-shadow: none !important;
  min-height: 0 !important;
  max-width: 132px !important;
}
.ls-benefits--inkbox .ls-ico {
  background: #111 !important;
  color: #ffd700 !important;
  border: 1px solid rgba(255, 215, 0, 0.35);
  border-radius: 10px !important;
  box-shadow: none !important;
}
.ls-benefits--inkbox .ls-benefit p {
  color: #111 !important;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  line-height: 1.25 !important;
}
@media (max-width: 900px) {
  .ls-cta + .ls-cover-it {
    padding-top: 36px !important;
    padding-bottom: 52px !important;
  }
  .ls-benefits--inkbox {
    gap: 22px 14px !important;
  }
}

/* CTA photographic */
.ls-cta--photo {
  min-height: min(58vh, 560px);
  display: grid;
  align-items: center;
}
.ls-cta--photo .ls-cta__bg img {
  filter: brightness(0.42) contrast(1.06);
}
.ls-cta__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(0, 0, 0, 0.78) 0%,
    rgba(0, 0, 0, 0.55) 48%,
    rgba(0, 0, 0, 0.4) 100%
  );
  pointer-events: none;
}
.ls-cta--photo .ls-cta__inner {
  z-index: 2;
  padding: clamp(72px, 10vw, 110px) 0;
}
.ls-cta--photo h2 {
  color: #ffd700 !important;
}
.ls-cta--photo p {
  color: rgba(255, 255, 255, 0.9) !important;
}

/* Contatti hero readability: photo visible + copy clear */
.ls-page-hero--readable .ls-page-hero__bg img {
  filter: brightness(0.62) contrast(1.08) saturate(1.05);
}
.ls-page-hero--readable .ls-page-hero__veil {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.58) 45%,
    rgba(0, 0, 0, 0.86) 100%
  );
}
.ls-page-hero--readable .ls-h1 {
  color: #fff !important;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}
.ls-page-hero--readable .ls-lead,
.ls-page-hero--readable .ls-lead--light {
  color: rgba(255, 255, 255, 0.92) !important;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
}
.ls-page-hero--readable .ls-kicker {
  color: #ffd700 !important;
}

/* Chi siamo intro: no frame, slightly larger photo */
.ls-about-intro--open .ls-about-intro__media {
  border: 0 !important;
  border-radius: 2px;
  aspect-ratio: 4 / 3;
  transform: scale(1.04);
  transform-origin: center left;
}
@media (min-width: 900px) {
  .ls-about-intro--open {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 52px;
  }
}

/* Visione & Missione � dynamic composition */
.ls-vm {
  position: relative;
  background: #f4f4f1;
  padding: clamp(64px, 9vw, 120px) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
}
.ls-vm::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: min(46vw, 560px);
  height: 100%;
  background: #0b0b0b;
  z-index: 0;
}
.ls-vm__grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 36px;
}
@media (min-width: 960px) {
  .ls-vm__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 48px;
    align-items: stretch;
  }
}
.ls-vm__vision {
  padding: clamp(8px, 2vw, 24px) 0;
  max-width: 52ch;
}
.ls-vm__vision .ls-h2 {
  color: #111 !important;
  font-size: clamp(34px, 4.6vw, 52px) !important;
  line-height: 1.05 !important;
  margin: 0 0 22px;
  max-width: 14ch;
}
.ls-vm__vision .ls-p {
  color: #333 !important;
}
.ls-vm__mission {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 44px);
  border-left: 4px solid #ffd700;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.22);
}
@media (min-width: 960px) {
  .ls-vm__mission {
    margin-top: 48px;
    margin-bottom: -24px;
    transform: translateY(12px);
  }
}
.ls-vm__mission .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 3.8vw, 42px) !important;
  margin: 0 0 18px;
  max-width: 12ch;
}
.ls-vm__mission .ls-p {
  color: rgba(255, 255, 255, 0.86) !important;
}
.ls-vm__mission strong {
  color: #ffd700;
}
.ls-vm__label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
}
.ls-vm__label--light {
  color: #ffd700;
}
.ls-vm__body {
  display: grid;
  gap: 12px;
}
@media (max-width: 959px) {
  .ls-vm::before {
    display: none;
  }
  .ls-vm__mission {
    margin: 0;
    transform: none;
  }
}

/* Impegni: 7 intentional (3+3+1) */
.ls-about-list--seven {
  display: grid;
  gap: 12px;
}
@media (min-width: 900px) {
  .ls-about-list--seven {
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
  }
  .ls-about-list--seven li {
    grid-column: span 4;
  }
  .ls-about-list--seven li:nth-child(7) {
    grid-column: 5 / 9;
  }
}
@media (max-width: 899px) and (min-width: 600px) {
  .ls-about-list--seven {
    grid-template-columns: 1fr 1fr;
  }
  .ls-about-list--seven li:nth-child(7) {
    grid-column: 1 / -1;
    max-width: 420px;
    margin-inline: auto;
    width: 100%;
  }
}

/* ========== HOME ELEVATION 2026 � scoped components (safe for internal pages) ========== */

/* Header: sticky sophistication */
.ls-header {
  transition: background 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.ls-header.is-scrolled {
  background: rgba(8, 8, 8, 0.98) !important;
  border-bottom-color: rgba(255, 215, 0, 0.32) !important;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.ls-header__nav {
  gap: 4px 22px;
}
.ls-header__nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}
.ls-header__nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 6px;
  height: 1px;
  background: #ffd700;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}
.ls-header__nav a:hover::after,
.ls-header__nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.ls-header__nav a:hover,
.ls-header__nav a[aria-current="page"] {
  color: #ffd700 !important;
}
.ls-header__cta {
  min-height: 42px;
  padding: 0 18px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
  box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.ls-header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px #ffd700, 0 8px 24px rgba(255, 215, 0, 0.18);
}

/* Mobile drawer � Leon panel (home structure; legacy link-list still works) */
.ls-drawer {
  position: relative;
}
@media (max-width: 920px) {
  .ls-drawer:not([hidden]):has(.ls-drawer__panel) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 90;
    padding: 0;
    border: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
  }
  .ls-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin-left: auto;
    width: min(100%, 380px);
    min-height: 100svh;
    height: 100%;
    background: #0b0b0b;
    border-left: 1px solid rgba(255, 215, 0, 0.28);
    padding: 96px 28px 32px;
    display: flex;
    flex-direction: column;
    overflow: auto;
    animation: ls-drawer-in 0.28s ease;
  }
}
@keyframes ls-drawer-in {
  from { transform: translateX(16px); opacity: 0.6; }
  to { transform: translateX(0); opacity: 1; }
}
.ls-drawer__label {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #ffd700;
  font-weight: 700;
}
.ls-drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.ls-drawer__nav a {
  color: #fff !important;
  text-decoration: none;
  font-family: var(--ls-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 0;
  min-height: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
}
.ls-drawer__nav a:hover,
.ls-drawer__nav a[aria-current="page"] {
  color: #ffd700 !important;
}
.ls-drawer__foot {
  margin-top: auto;
  padding-top: 28px;
  display: grid;
  gap: 14px;
}
.ls-drawer a.ls-drawer__wa,
.ls-drawer__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  background: #ffd700;
  color: #000 !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 0;
}
.ls-drawer a.ls-drawer__wa:hover,
.ls-drawer__wa:hover {
  background: #ffe566;
  color: #000 !important;
}
.ls-drawer__meta {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55) !important;
}
body.ls-nav-open {
  overflow: hidden;
}
body.ls-nav-open .ls-header {
  z-index: 110;
}
body.ls-nav-open .ls-drawer:not([hidden]):has(.ls-drawer__panel) {
  z-index: 105;
}
.ls-burger {
  position: relative;
  z-index: 100;
}
.ls-burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.ls-burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.ls-burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.ls-burger span {
  transition: transform 0.22s ease, opacity 0.22s ease;
}
.ls-header__brand {
  position: relative;
  z-index: 100;
}

/* Hero cinema enrichment */
.ls-hero--cinema .ls-hero__frame {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: 120px 0 56px;
  display: grid;
  gap: 28px;
}
@media (min-width: 960px) {
  .ls-hero--cinema .ls-hero__frame {
    grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.45fr);
    align-items: end;
    padding: 132px 0 64px;
    min-height: calc(100svh - 84px);
  }
}
.ls-hero--cinema .ls-hero__content {
  width: auto;
  margin: 0;
  padding: 0;
  max-width: none;
}
.ls-hero--cinema .ls-h1 {
  max-width: 15ch;
}
.ls-hero__lede {
  margin-top: 26px;
  display: grid;
  gap: 12px;
  max-width: 46ch;
}
.ls-hero__line {
  margin: 0;
  color: rgba(255, 255, 255, 0.9) !important;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
  padding-left: 14px;
  border-left: 2px solid rgba(255, 215, 0, 0.7);
}
.ls-hero--cinema .ls-actions {
  margin-top: 28px;
}
.ls-hero__aside {
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  padding-top: 18px;
  max-width: 220px;
}
@media (min-width: 960px) {
  .ls-hero__aside {
    border-top: 0;
    border-left: 1px solid rgba(255, 215, 0, 0.35);
    padding: 8px 0 8px 22px;
    justify-self: end;
    margin-bottom: 72px;
  }
}
.ls-hero__aside-k {
  margin: 0 0 12px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffd700 !important;
  font-weight: 700;
}
.ls-hero__aside-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ls-hero__aside-list li {
  color: rgba(255, 255, 255, 0.88) !important;
  font-family: var(--ls-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.ls-hero__scroll {
  position: absolute;
  left: 0;
  bottom: 8px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.ls-hero__scroll::after {
  content: "";
  width: 1px;
  height: 28px;
  background: linear-gradient(#ffd700, transparent);
}
@media (max-width: 700px) {
  .ls-hero__scroll { display: none; }
}

/* Perch� Leon � editorial asymmetric */
.ls-why {
  background: var(--ls-surface);
  color: #111;
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-why__grid {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 960px) {
  .ls-why__grid {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: 56px;
    align-items: stretch;
  }
}
.ls-why__media {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
  align-self: stretch;
}
@media (min-width: 960px) {
  .ls-why__media {
    height: 100%;
    min-height: 100%;
    box-shadow: 24px 24px 0 rgba(11, 11, 11, 0.08);
  }
}
/* Mobile/base: proportional crop � do not force a tall frame */
.ls-why__media img {
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 42%;
  display: block;
}
/*
 * Desktop: photo column tied to grid/section height.
 * Specificity must beat .vg-assembled img { height: auto }.
 */
@media (min-width: 960px) {
  .vg-assembled .ls-why__media img,
  .ls-why__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
    max-height: none;
    aspect-ratio: auto;
    object-fit: cover;
    object-position: center 42%;
  }
}
.ls-why__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  margin: 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ls-why__mark {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  font-family: var(--ls-display);
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: rgba(255, 215, 0, 0.85);
  line-height: 1;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}
.ls-why__copy .ls-h2 {
  color: #111 !important;
  max-width: 14ch;
  margin-bottom: 18px;
}
.ls-why__lead {
  margin: 0 0 18px;
  font-family: var(--ls-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #111 !important;
  max-width: 38ch;
}
.ls-why__body {
  display: grid;
  gap: 14px;
  max-width: 58ch;
}
.ls-why__body .ls-p {
  color: #333 !important;
  margin: 0;
}
.ls-why__note {
  margin: 22px 0 26px;
  padding: 16px 18px;
  border-left: 3px solid #ffd700;
  background: rgba(255, 215, 0, 0.12);
  max-width: 46ch;
}
.ls-why__note p {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 16px;
  font-weight: 500;
  color: #111 !important;
  line-height: 1.4;
}
.ls-why .ls-kicker--dark {
  color: #5c5c5c !important;
}

/* Metodo editorial � kill card grid */
.ls-method-ed {
  padding: clamp(72px, 10vw, 120px) 0 !important;
}
.ls-method-ed__head {
  max-width: 52ch;
  margin-bottom: 48px;
}
.ls-method-ed__head .ls-h2 {
  max-width: 14ch;
  margin-bottom: 16px;
}
.ls-method-ed__intro {
  margin: 0;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 18px;
  line-height: 1.55;
  max-width: 48ch;
}
.ls-method-ed__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255, 215, 0, 0.28);
}
.ls-method-ed__item {
  display: grid;
  gap: 16px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
@media (min-width: 900px) {
  .ls-method-ed__item {
    grid-template-columns: 120px 1fr;
    gap: 40px;
    padding: 44px 0;
    align-items: start;
  }
}
.ls-method-ed__n {
  font-family: var(--ls-display);
  font-size: clamp(56px, 8vw, 88px);
  font-weight: 500;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: #ffd700;
}
.ls-method-ed__body h3 {
  margin: 0 0 12px;
  font-family: var(--ls-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #fff !important;
}
.ls-method-ed__lead {
  margin: 0 0 14px;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.92) !important;
  max-width: 48ch;
}
.ls-method-ed__body > p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.72) !important;
  max-width: 62ch;
  font-size: 17px;
  line-height: 1.6;
}
.ls-method-ed__why {
  margin-top: 8px !important;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 215, 0, 0.22);
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 15px !important;
}
.ls-method-ed__why strong {
  color: #ffd700;
  font-weight: 600;
}

/* Photo pause � text integrated, no black slab */
.ls-pause {
  position: relative;
  min-height: min(78vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}
.ls-pause__bg {
  position: absolute;
  inset: 0;
}
.ls-pause__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.82) contrast(1.04) saturate(1.02);
}
.ls-pause__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.72) 0%, rgba(8, 8, 8, 0.28) 55%, rgba(8, 8, 8, 0.1) 100%),
    linear-gradient(180deg, rgba(8, 8, 8, 0.15) 0%, rgba(8, 8, 8, 0.55) 100%);
}
.ls-pause__content {
  position: relative;
  z-index: 2;
  width: min(100% - 40px, 720px);
  margin: 0 0 0 max(20px, calc((100% - var(--ls-max)) / 2));
  padding: clamp(56px, 8vw, 96px) 0;
}
.ls-pause__content .ls-h2 {
  color: #fff !important;
  max-width: 12ch;
  margin-bottom: 20px;
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
}
.ls-pause__text {
  display: grid;
  gap: 14px;
  max-width: 52ch;
}
.ls-pause__text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.94) !important;
  font-size: 17px;
  line-height: 1.6;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.35);
}
@media (max-width: 700px) {
  .ls-pause {
    min-height: 70vh;
  }
  .ls-pause__veil {
    background:
      linear-gradient(180deg, rgba(8, 8, 8, 0.2) 0%, rgba(8, 8, 8, 0.78) 70%, rgba(8, 8, 8, 0.9) 100%);
  }
  .ls-pause__content {
    margin-left: 20px;
    margin-right: 20px;
    width: auto;
  }
}

/* 6-phase process � sticky numeric + scroll content */
.ls-process {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(72px, 10vw, 120px) 0;
  border-top: 1px solid rgba(255, 215, 0, 0.28);
}
.ls-process__inner {
  display: grid;
  gap: 40px;
}
@media (min-width: 960px) {
  .ls-process__inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
    gap: 64px;
    align-items: start;
  }
  .ls-process__sticky {
    position: sticky;
    top: 112px;
  }
}
.ls-process__sticky .ls-h2 {
  max-width: 12ch;
  margin-bottom: 16px;
}
.ls-process__intro {
  margin: 0 0 28px;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 17px;
  line-height: 1.55;
  max-width: 38ch;
}
.ls-process__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  gap: 0;
  border-left: 1px solid rgba(255, 215, 0, 0.28);
}
@media (min-width: 960px) {
  .ls-process__nav {
    display: grid;
  }
}
.ls-process__nav a {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 12px 0 12px 18px;
  color: rgba(255, 255, 255, 0.55) !important;
  text-decoration: none;
  font-family: var(--ls-display);
  font-size: 15px;
  font-weight: 500;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.ls-process__nav a span {
  color: inherit;
  font-size: 13px;
  letter-spacing: 0.06em;
}
.ls-process__nav a:hover,
.ls-process__nav a[aria-current="true"] {
  color: #ffd700 !important;
  border-left-color: #ffd700;
}
.ls-process__flow {
  display: grid;
  gap: 0;
}
.ls-process__phase {
  padding: 32px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  scroll-margin-top: 120px;
}
.ls-process__phase:last-child {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ls-process__n {
  display: block;
  font-family: var(--ls-display);
  font-size: clamp(40px, 6vw, 56px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 10px;
}
.ls-process__phase h3 {
  margin: 0 0 12px;
  font-family: var(--ls-display);
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 500;
  color: #fff !important;
  letter-spacing: -0.02em;
}
.ls-process__phase p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76) !important;
  font-size: 17px;
  line-height: 1.6;
  max-width: 54ch;
}

/* Italia */
.ls-italia {
  background: #fff;
  color: #111;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-italia__grid {
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  display: grid;
  gap: 36px;
  padding: clamp(56px, 8vw, 104px) 0 28px;
  align-items: center;
}
@media (min-width: 960px) {
  .ls-italia__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
  }
}
.ls-italia__copy .ls-h2 {
  color: #111 !important;
  max-width: 14ch;
  margin-bottom: 18px;
}
.ls-italia__body {
  display: grid;
  gap: 14px;
  max-width: 58ch;
  margin-bottom: 26px;
}
.ls-italia__body .ls-p {
  margin: 0;
  color: #333 !important;
}
.ls-italia .ls-kicker--dark {
  color: #5c5c5c !important;
}
.ls-italia__media {
  margin: 0;
  overflow: hidden;
  min-height: 380px;
}
.ls-italia__media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  max-height: 640px;
  object-fit: cover;
}
.ls-italia .ls-portals-band {
  padding-top: 8px;
  border-bottom: 1px solid rgba(255, 215, 0, 0.35);
}
.ls-portals-band__label {
  margin: 0 0 14px;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5c5c5c;
}

/* Tre mondi */
.ls-worlds {
  background: var(--ls-surface);
  padding: clamp(64px, 9vw, 110px) 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-worlds__head {
  max-width: 52ch;
  margin-bottom: 40px;
}
.ls-worlds__head .ls-h2 {
  color: #111 !important;
  max-width: 16ch;
  margin-bottom: 14px;
}
.ls-worlds__lead {
  margin: 0;
  color: #333 !important;
  font-size: 18px;
  line-height: 1.55;
}
.ls-worlds .ls-kicker--dark {
  color: #5c5c5c !important;
}
.ls-worlds__band {
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-worlds__band--ink {
  background: #0b0b0b;
  color: #fff;
}
.ls-worlds__band--beige {
  background: #e8e4dc;
  color: #111;
}
.ls-worlds__band--white {
  background: #fff;
  color: #111;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-worlds__row {
  display: grid;
  gap: 20px;
  align-items: start;
}
@media (min-width: 900px) {
  .ls-worlds__row {
    grid-template-columns: minmax(180px, 0.38fr) minmax(0, 0.62fr);
    gap: 48px;
    align-items: center;
  }
  .ls-worlds__row--invert {
    grid-template-columns: minmax(0, 0.62fr) minmax(180px, 0.38fr);
  }
  .ls-worlds__row--invert .ls-worlds__word { order: 2; }
  .ls-worlds__row--invert .ls-worlds__text { order: 1; }
}
.ls-worlds__word {
  margin: 0;
  font-family: var(--ls-display);
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.95;
}
.ls-worlds__band--ink .ls-worlds__word {
  color: #ffd700;
}
.ls-worlds__band--beige .ls-worlds__word,
.ls-worlds__band--white .ls-worlds__word {
  color: #111;
}
.ls-worlds__text {
  display: grid;
  gap: 14px;
  max-width: 58ch;
}
.ls-worlds__text p {
  margin: 0;
  font-size: 17px;
  line-height: 1.6;
}
.ls-worlds__band--ink .ls-worlds__text p {
  color: rgba(255, 255, 255, 0.82) !important;
}
.ls-worlds__band--beige .ls-worlds__text p,
.ls-worlds__band--white .ls-worlds__text p {
  color: #333 !important;
}

/* Benefits before CTA � editorial 4+3 (Home) */
.ls-cover-it.ls-gain {
  padding: 0 !important;
  border-top: none;
  background: #fff;
}

/* Thin yellow Leon band � visual detach from Tre mondi */
.ls-gain-marquee {
  overflow: hidden;
  width: 100%;
  background: var(--ls-yellow);
  color: #111;
  border-block: 1px solid rgba(17, 17, 17, 0.12);
}
.ls-gain-marquee__track {
  display: flex;
  width: max-content;
  animation: ls-gain-marquee 42s linear infinite;
}
.ls-gain-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0;
  padding: 10px 0;
  white-space: nowrap;
}
.ls-gain-marquee__group > span:not(.ls-gain-marquee__sep) {
  font-family: var(--ls-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0 4px 0 0;
}
.ls-gain-marquee__sep {
  display: inline-block;
  padding: 0 1.75rem;
  opacity: 0.45;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
}
@keyframes ls-gain-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ls-gain-marquee__track {
    animation: none;
  }
}

.ls-gain__head {
  padding-top: clamp(48px, 6vw, 72px);
  margin-bottom: 28px;
  max-width: none;
}
.ls-gain__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4.2vw, 46px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-gain__head .ls-kicker--dark {
  color: #5c5c5c !important;
}
.ls-gain__main {
  list-style: none;
  margin: 0;
  padding: 0 0 clamp(40px, 6vw, 64px);
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.12);
}
@media (min-width: 800px) {
  .ls-gain__main {
    grid-template-columns: 1fr 1fr;
    column-gap: 48px;
    padding-bottom: calc(clamp(40px, 6vw, 64px) + 18px);
  }
  .ls-gain__main li:nth-child(2),
  .ls-gain__main li:nth-child(4) {
    transform: translateY(18px);
  }
}
@media (min-width: 800px) and (prefers-reduced-motion: reduce) {
  .ls-gain__main li:nth-child(2),
  .ls-gain__main li:nth-child(4) {
    transform: none;
  }
  .ls-gain__main {
    padding-bottom: clamp(40px, 6vw, 64px);
  }
}
.ls-gain__main li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  margin: 0;
}
.ls-gain__main span {
  font-family: var(--ls-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #c9a800;
}
.ls-gain__main p {
  margin: 0;
  font-family: var(--ls-display);
  font-size: clamp(22px, 2.6vw, 30px);
  font-weight: 500;
  line-height: 1.2;
  color: #111 !important;
  letter-spacing: -0.01em;
}
.ls-gain__band {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  padding: clamp(28px, 4vw, 40px) 0;
}
.ls-gain__keywords {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px 32px;
}
@media (min-width: 800px) {
  .ls-gain__keywords {
    grid-template-columns: repeat(3, 1fr);
    align-items: baseline;
  }
}
.ls-gain__keywords li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 10px;
  align-items: baseline;
  margin: 0;
}
.ls-gain__keywords span {
  font-family: var(--ls-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffd700;
}
.ls-gain__keywords p {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 19px);
  font-weight: 500;
  line-height: 1.3;
  color: #fff !important;
}

/* Final CTA hierarchy */
.ls-cta--home {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  padding: clamp(64px, 8vw, 96px) 0;
}
.ls-cta--home .ls-cta__inner {
  display: grid;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) {
  .ls-cta--home .ls-cta__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}
.ls-cta--home h2 {
  color: #ffd700 !important;
  font-size: clamp(32px, 4.5vw, 48px) !important;
  max-width: 14ch;
  margin: 0 0 14px;
}
.ls-cta--home p {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 48ch;
  margin: 0;
}
.ls-cta__contacts {
  margin-top: 16px !important;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 12px;
  align-items: center;
}
.ls-cta__contacts a {
  color: #ffd700 !important;
  text-decoration: none;
  font-weight: 600;
}
.ls-cta__contacts a:hover {
  text-decoration: underline;
}
.ls-cta__paths {
  display: grid;
  gap: 12px;
  margin: 0;
  justify-items: stretch;
}
.ls-cta__paths .ls-btn {
  width: 100%;
  justify-content: center;
}
.ls-cta__wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  color: #ffd700 !important;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 215, 0, 0.45);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.ls-cta__wa:hover {
  border-bottom-color: #ffd700;
  color: #ffe566 !important;
}

/* Footer elevate (home modifier; harmless if reused) */
.ls-footer--home {
  border-top: 1px solid rgba(255, 215, 0, 0.28);
  padding-top: 56px;
}
.ls-footer--home .ls-footer__brand strong {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
.ls-footer--home .ls-footer__brand strong::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 28px;
  height: 2px;
  background: #ffd700;
}
.ls-footer--home .ls-footer__brand p,
.ls-footer--home .ls-footer__contact p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px;
  line-height: 1.55;
}
.ls-footer--home .ls-footer__links {
  gap: 10px;
}
.ls-footer--home .ls-footer__links a {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 600;
}
.ls-footer--home .ls-footer__contact {
  display: grid;
  gap: 8px;
}
.ls-footer--home .ls-footer__contact a {
  color: #ffd700 !important;
  text-decoration: none;
  font-weight: 600;
}
.ls-footer--home .ls-footer__legal {
  margin-top: 36px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Motion refinements */
.ls-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.ls-reveal.is-in {
  opacity: 1;
  transform: none;
}
.ls-method-ed__item.ls-reveal,
.ls-process__phase.ls-reveal {
  transition-duration: 0.85s;
}
.ls-why__media img,
.ls-italia__media img,
.ls-pause__bg img,
.ls-hero--cinema .ls-hero__bg img {
  transition: transform 1.4s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .ls-why__media.is-in img,
  .ls-italia__media.is-in img {
    transform: scale(1.03);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ls-reveal,
  .ls-reveal.is-in {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  @keyframes ls-drawer-in {
    from, to { transform: none; opacity: 1; }
  }
}

/* Mobile rhythm + overflow safety */
@media (max-width: 700px) {
  .ls-hero--cinema .ls-hero__frame {
    padding: 100px 0 40px;
  }
  .ls-hero--cinema .ls-h1 {
    font-size: clamp(34px, 10vw, 48px) !important;
  }
  .ls-hero__lede {
    gap: 10px;
    margin-top: 18px;
  }
  .ls-hero__line {
    font-size: 15px;
  }
  .ls-hero--cinema .ls-actions {
    margin-top: 20px;
  }
  .ls-hero__aside {
    max-width: none;
    margin-top: 8px;
  }
  .ls-why__media img {
    min-height: 0;
    max-height: none;
    aspect-ratio: 5 / 6;
  }
  .ls-method-ed__item {
    padding: 28px 0;
  }
  .ls-process__phase {
    padding: 24px 0 28px;
  }
  .ls-worlds__word {
    font-size: clamp(34px, 12vw, 48px);
  }
  .ls-cta__paths .ls-btn,
  .ls-cta__wa {
    width: 100%;
  }
  .ls-drawer__panel {
    width: 100%;
    max-width: 100%;
    padding-top: 88px;
  }
}
.ls-why,
.ls-process,
.ls-italia,
.ls-worlds,
.ls-pause,
.ls-gain,
.ls-method-ed,
.ls-inst-hero,
.ls-about-deep,
.ls-team-sig,
.ls-vision-band,
.ls-mission-band,
.ls-impegni,
.ls-distinct,
.ls-cover-local {
  overflow-x: clip;
}

/* ========== CHI SIAMO ELEVATION � institutional, not Home twin ========== */

.ls-inst-hero .ls-brandline {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.ls-inst-hero .ls-brandline::before {
  content: "";
  width: 28px;
  height: 2px;
  background: #ffd700;
}
.ls-brandline--ink {
  color: #111 !important;
}

.ls-inst-hero {
  background: #f4f4f1;
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
  padding: clamp(48px, 7vw, 88px) 0 clamp(40px, 6vw, 72px);
}
.ls-inst-hero__grid {
  width: min(100% - 40px, var(--ls-max));
  margin-inline: auto;
  display: grid;
  gap: 32px;
  align-items: end;
}
@media (min-width: 960px) {
  .ls-inst-hero__grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
  }
}
.ls-inst-hero__copy .ls-h1 {
  color: #111 !important;
  font-size: clamp(36px, 5.2vw, 56px) !important;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 14ch;
  margin: 12px 0 0;
}
.ls-inst-hero__lead {
  margin: 20px 0 0;
  font-family: var(--ls-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.3;
  color: #111 !important;
  max-width: 34ch;
}
.ls-inst-hero__deck {
  margin: 18px 0 0;
  max-width: 48ch;
  color: #333 !important;
  font-size: 17px;
  line-height: 1.65;
}
.ls-inst-hero__media {
  margin: 0;
  position: relative;
}
.ls-inst-hero__media img {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  object-fit: cover;
  border-radius: 2px;
}
.ls-inst-hero__media figcaption {
  margin-top: 10px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: #5c5c5c;
}

.ls-about-deep {
  background: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-about-deep__inner {
  display: grid;
  gap: 36px;
}
.ls-about-deep__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  max-width: 16ch;
  margin: 0;
}
.ls-about-deep__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ls-about-deep__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: start;
  }
}
.ls-about-deep__prose {
  display: grid;
  gap: 14px;
  max-width: 62ch;
}
.ls-about-deep__prose .ls-p {
  color: #333 !important;
  margin: 0;
}
.ls-about-deep__aside {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(24px, 3vw, 36px);
  border-left: 3px solid #ffd700;
}
.ls-about-deep__aside-k {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd700;
}
.ls-about-deep__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.ls-about-deep__aside li {
  padding-left: 14px;
  border-left: 1px solid rgba(255, 215, 0, 0.4);
  font-size: 15px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
}
.ls-about-deep__note {
  margin: 22px 0 0;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(255, 215, 0, 0.85);
}
.ls-about-deep__photo {
  margin: 4px 0 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  width: 100%;
}
.ls-about-deep__photo img {
  display: block;
  width: 100%;
  height: clamp(280px, 40vw, 480px);
  object-fit: cover;
  object-position: center 40%;
}

/* SIGNATURE: asymmetric team */
.ls-team-sig {
  background: #0b0b0b;
  color: #fff;
  padding: 0;
}
.ls-team-sig__frame {
  display: grid;
  min-height: min(90vh, 860px);
}
@media (min-width: 960px) {
  .ls-team-sig__frame {
    grid-template-columns: 1.12fr 0.88fr;
  }
}
.ls-team-sig__media {
  margin: 0;
  min-height: 400px;
  overflow: hidden;
}
.ls-team-sig__media img {
  width: 100%;
  height: 100%;
  min-height: 400px;
  object-fit: cover;
  object-position: center 45%;
}
.ls-team-sig__panel {
  padding: clamp(44px, 6.5vw, 80px) clamp(28px, 4.5vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(180deg, #141414 0%, #0b0b0b 100%);
  border-left: 1px solid rgba(255, 215, 0, 0.28);
}
.ls-team-sig__panel .ls-kicker {
  margin: 0 0 10px;
}
.ls-team-sig__panel .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(32px, 4.4vw, 48px) !important;
  font-weight: 500;
  line-height: 1.05;
  max-width: 12ch;
  margin: 0 0 28px;
}
.ls-team-sig__body {
  display: grid;
  gap: 16px;
  max-width: 44ch;
}
.ls-team-sig__body .ls-p {
  color: rgba(255, 255, 255, 0.86) !important;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}
.ls-team-sig__mark {
  margin: 32px 0 0;
  padding-top: 4px;
  font-family: var(--ls-display);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd700;
}

.ls-vision-band {
  background: #ebeaea;
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}
.ls-vision-band__inner {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ls-vision-band__inner {
    grid-template-columns: 180px 1fr;
    gap: 48px;
    align-items: start;
  }
}
.ls-vision-band__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-vision-band__n {
  font-family: var(--ls-display);
  font-size: 42px;
  font-weight: 500;
  color: rgba(17, 17, 17, 0.18);
  line-height: 1;
}
.ls-vision-band__copy .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 500;
  max-width: 16ch;
  margin: 0 0 22px;
}
.ls-vision-band__copy .ls-p {
  color: #333 !important;
  max-width: 58ch;
  margin: 0 0 12px;
}

.ls-mission-band {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(64px, 9vw, 110px) 0;
  border-top: 3px solid #ffd700;
}
.ls-mission-band__inner {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ls-mission-band__inner {
    grid-template-columns: 1fr 180px;
    gap: 48px;
    align-items: start;
  }
  .ls-mission-band__label {
    order: 2;
    text-align: right;
    align-items: flex-end;
  }
  .ls-mission-band__copy {
    order: 1;
  }
}
.ls-mission-band__label {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ls-mission-band__n {
  font-family: var(--ls-display);
  font-size: 42px;
  font-weight: 500;
  color: rgba(255, 215, 0, 0.28);
  line-height: 1;
}
.ls-mission-band__copy .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 500;
  max-width: 12ch;
  margin: 0 0 22px;
}
.ls-mission-band__copy .ls-p {
  color: rgba(255, 255, 255, 0.86) !important;
  max-width: 54ch;
  margin: 0 0 12px;
}
.ls-mission-band__goal {
  margin: 18px 0 0;
  max-width: 42ch;
  font-size: 18px;
  line-height: 1.5;
  color: #fff;
}
.ls-mission-band__goal strong {
  color: #ffd700;
}

.ls-impegni {
  background: #f4f4f1;
  padding: clamp(56px, 8vw, 96px) 0;
}
.ls-impegni__head {
  margin-bottom: 36px;
  max-width: 48ch;
}
.ls-impegni__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-impegni__lead {
  margin: 14px 0 0;
  color: #444 !important;
  font-size: 17px;
}
.ls-impegni__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17, 17, 17, 0.14);
}
@media (min-width: 900px) {
  .ls-impegni__list {
    grid-template-columns: 1fr;
    max-width: 820px;
  }
}
.ls-impegni__list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.12);
}
.ls-impegni__list span {
  font-family: var(--ls-display);
  font-size: 13px;
  font-weight: 700;
  color: #111;
  background: transparent;
  width: auto;
  height: auto;
  display: block;
  padding-top: 2px;
  letter-spacing: 0.06em;
}
.ls-impegni__text p {
  margin: 0;
  color: #111;
  font-size: 17px;
  line-height: 1.4;
  font-weight: 500;
}
.ls-impegni__micro {
  margin: 6px 0 0 !important;
  color: #555 !important;
  font-size: 15px !important;
  line-height: 1.45 !important;
  font-weight: 400 !important;
  max-width: 52ch;
}

/* Graphic signature rail � not cards */
.ls-distinct {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid rgba(255, 215, 0, 0.28);
}
.ls-distinct__inner {
  display: grid;
  gap: 36px;
}
@media (min-width: 900px) {
  .ls-distinct__inner {
    grid-template-columns: 0.7fr 1.3fr;
    gap: 56px;
    align-items: start;
  }
}
.ls-distinct__head .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  max-width: 10ch;
  margin: 0;
}
.ls-distinct__rail {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
}
.ls-distinct__rail li {
  display: grid;
  gap: 8px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
@media (min-width: 700px) {
  .ls-distinct__rail li {
    grid-template-columns: 180px 1fr;
    gap: 24px;
    align-items: baseline;
  }
}
.ls-distinct__word {
  font-family: var(--ls-display);
  font-size: clamp(22px, 2.8vw, 28px);
  font-weight: 500;
  color: #ffd700;
  letter-spacing: -0.02em;
}
.ls-distinct__rail p {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
  max-width: 40ch;
}

.ls-cover-local {
  background: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
}
.ls-cover-local__grid {
  width: min(100% - 40px, var(--ls-max));
  margin-inline: auto;
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .ls-cover-local__grid {
    grid-template-columns: 1fr 1fr;
    gap: 56px;
  }
}
.ls-cover-local__copy .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 18px;
}
.ls-cover-local__lead {
  font-size: 18px !important;
  line-height: 1.6 !important;
  max-width: 52ch !important;
  margin-bottom: 16px !important;
}
.ls-cover-local__copy .ls-p {
  color: #333 !important;
  max-width: 52ch;
  margin: 0 0 14px;
}
.ls-cover-local__media {
  margin: 0;
  overflow: hidden;
  border-radius: 2px;
}
.ls-cover-local__media img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}

.ls-cta--about {
  background: #0b0b0b;
  border-top: 1px solid rgba(255, 215, 0, 0.35);
  padding: clamp(64px, 8vw, 96px) 0;
}
.ls-cta--about .ls-cta__inner {
  display: grid;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) {
  .ls-cta--about .ls-cta__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}
.ls-cta--about h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4.2vw, 46px) !important;
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 14px;
}
.ls-cta--about p {
  color: rgba(255, 255, 255, 0.82) !important;
  max-width: 48ch;
  margin: 0;
}
/* Paths: stacked like Home CTA; WhatsApp = yellow primary (Home hero/header style) */
.ls-cta--about .ls-cta__paths {
  display: grid;
  gap: 12px;
  margin: 0;
  justify-items: stretch;
}
.ls-cta--about .ls-cta__paths .ls-btn {
  width: 100%;
  justify-content: center;
}
.ls-cta--about .ls-cta__paths .ls-btn--primary {
  order: 3;
}
.ls-cta--about .ls-cta__paths .ls-btn--ghost:nth-of-type(1) {
  order: 1;
}
.ls-cta--about .ls-cta__paths .ls-btn--ghost:nth-of-type(2) {
  order: 2;
}

/* Chi siamo: restore preferred Impegni grid (3+3+1), not editorial micros */
.ls-impegni-restore {
  padding: clamp(56px, 8vw, 96px) 0 !important;
}
.ls-impegni-restore .ls-section__head {
  margin-bottom: 28px;
}
.ls-impegni-restore .ls-about-list--seven {
  margin-top: 0;
}

@media (max-width: 700px) {
  .ls-inst-hero__copy .ls-h1 {
    font-size: clamp(32px, 9vw, 42px);
  }
  .ls-team-sig__panel {
    border-left: 0;
    border-top: 1px solid rgba(255, 215, 0, 0.28);
    padding-block: 48px;
  }
  .ls-team-sig__media {
    min-height: 320px;
  }
  .ls-team-sig__media img {
    min-height: 320px;
    object-position: center 42%;
  }
  .ls-team-sig__body {
    gap: 14px;
  }
  .ls-mission-band__label {
    text-align: left;
    align-items: flex-start;
  }
}



/* ========== PROPRIETARI REDESIGN � editorial commercial ========== */

/* 01 Hero */
.ls-own-hero {
  position: relative;
  min-height: min(88vh, 860px);
  display: grid;
  align-items: end;
  color: #fff;
  background: #0b0b0b;
  overflow: hidden;
}
.ls-own-hero__bg { position: absolute; inset: 0; }
.ls-own-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.52) contrast(1.04);
}
.ls-own-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.88) 100%),
    linear-gradient(105deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 70%);
  pointer-events: none;
}
.ls-own-hero__frame {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(110px, 14vw, 160px) 0 clamp(52px, 8vw, 88px);
}
.ls-own-hero__copy .ls-h1 {
  color: #fff;
  font-size: clamp(34px, 5.2vw, 64px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -0.03em;
  max-width: 18ch;
  margin: 12px 0 0;
}
.ls-own-hero__lead {
  margin: 22px 0 0;
  max-width: 62ch;
  color: rgba(255,255,255,.9);
  font-size: clamp(16px, 1.35vw, 18px);
  line-height: 1.7;
}
.ls-own-hero .ls-actions { margin-top: 30px; }

/* 02 Intro editorial beige */
.ls-own-intro {
  background: #ebeaea;
  padding: clamp(64px, 9vw, 120px) 0;
}
.ls-own-intro__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 960px) {
  .ls-own-intro__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
  }
}
.ls-own-intro__copy .ls-h2 {
  color: #111;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.ls-own-intro__lead {
  margin: 0 0 28px;
  max-width: 62ch;
  color: #222;
  font-size: 18px;
  line-height: 1.7;
}
.ls-own-intro__micro {
  margin: 28px 0 8px;
  font-family: var(--ls-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #111;
}
.ls-own-intro__copy .ls-p {
  margin: 0 0 10px;
  max-width: 68ch;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}
.ls-own-intro__highlight {
  margin: 32px 0 0;
  padding: 18px 0 0;
  border-top: 2px solid #ffd700;
  max-width: 48ch;
  font-family: var(--ls-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: #111;
}
.ls-own-intro__media {
  margin: 0;
  position: sticky;
  top: 96px;
}
.ls-own-intro__media img {
  width: 100%;
  height: clamp(380px, 52vw, 640px);
  object-fit: cover;
}
.ls-own-intro__media figcaption {
  margin-top: 12px;
  font-size: 13px;
  color: #666;
  letter-spacing: 0.02em;
}
@media (max-width: 959px) {
  .ls-own-intro__media { position: static; }
}

/* 03 Economic model white */
.ls-own-model {
  background: #fff;
  padding: clamp(64px, 9vw, 120px) 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.ls-own-model__head {
  max-width: 62ch;
  margin-bottom: 40px;
}
.ls-own-model__head .ls-h2 {
  color: #111;
  font-size: clamp(30px, 4.2vw, 48px);
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.03em;
  max-width: 18ch;
}
.ls-own-model__intro {
  margin: 18px 0 0;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
  max-width: 62ch;
}
.ls-own-model__accent {
  margin: 28px 0 0;
}
.ls-own-model__accent span {
  display: inline-block;
  font-family: var(--ls-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #111;
  background: #ffd700;
  padding: 10px 16px;
}
.ls-own-model__split {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17,17,17,.14);
}
@media (min-width: 900px) {
  .ls-own-model__split {
    grid-template-columns: 1fr 1fr;
  }
}
.ls-own-model__col {
  padding: 32px 0;
}
@media (min-width: 900px) {
  .ls-own-model__col--you {
    padding-right: 40px;
    border-right: 1px solid rgba(17,17,17,.12);
  }
  .ls-own-model__col--leon {
    padding-left: 40px;
  }
}
@media (max-width: 899px) {
  .ls-own-model__col {
    border-bottom: 1px solid rgba(17,17,17,.12);
  }
  .ls-own-model__col:last-child { border-bottom: 0; }
}
.ls-own-model__who {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
}
.ls-own-model__col h3 {
  margin: 0 0 14px;
  font-family: var(--ls-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 500;
  color: #111;
  letter-spacing: -0.02em;
}
.ls-own-model__col p {
  margin: 0 0 12px;
  color: #333;
  font-size: 16px;
  line-height: 1.65;
  max-width: 48ch;
}
.ls-own-model__quiet {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(17,17,17,.12);
  font-size: 15px;
  color: #444;
}
.ls-own-model__note {
  margin-top: 36px;
  padding: 24px 0 0;
  border-top: 1px solid rgba(17,17,17,.12);
  display: grid;
  gap: 12px;
}
.ls-own-model__note p {
  margin: 0;
  max-width: 72ch;
  color: #444;
  font-size: 15px;
  line-height: 1.6;
}
.ls-own-model__note strong { color: #111; }

/* 04 Big photographic moment */
.ls-own-moment {
  position: relative;
  min-height: min(72vh, 720px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.ls-own-moment__bg { position: absolute; inset: 0; }
.ls-own-moment__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.58) contrast(1.04);
}
.ls-own-moment__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.72) 100%);
  pointer-events: none;
}
.ls-own-moment__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(80px, 12vw, 120px) 0 clamp(48px, 7vw, 72px);
}
.ls-own-moment__content .ls-h2 {
  color: #fff;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.ls-own-moment__content p {
  margin: 0;
  max-width: 46ch;
  color: rgba(255,255,255,.88);
  font-size: 17px;
  line-height: 1.65;
}

/* 05 Process signature � 8 phases, sticky left, NOT Home clone */
.ls-oproc {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(72px, 10vw, 128px) 0;
  border-top: 1px solid rgba(255,215,0,.28);
}
.ls-oproc__inner {
  display: grid;
  gap: 40px;
}
@media (min-width: 980px) {
  .ls-oproc__inner {
    grid-template-columns: minmax(240px, 0.38fr) minmax(0, 0.62fr);
    gap: 72px;
    align-items: start;
  }
  .ls-oproc__sticky {
    position: sticky;
    top: 112px;
  }
}
.ls-oproc__sticky .ls-h2 {
  color: #fff;
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 500;
  max-width: 12ch;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
}
.ls-oproc__intro {
  margin: 0 0 28px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.6;
  max-width: 36ch;
}
.ls-oproc__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  border-left: 1px solid rgba(255,215,0,.28);
}
@media (min-width: 980px) {
  .ls-oproc__nav { display: grid; }
}
.ls-oproc__nav a {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: baseline;
  padding: 10px 0 10px 18px;
  color: rgba(255,255,255,.5);
  text-decoration: none;
  font-family: var(--ls-display);
  font-size: 14px;
  font-weight: 500;
  border-left: 2px solid transparent;
  margin-left: -1px;
  transition: color .2s ease, border-color .2s ease;
}
.ls-oproc__nav a span {
  color: inherit;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.ls-oproc__nav a:hover,
.ls-oproc__nav a[aria-current="true"] {
  color: #ffd700;
  border-left-color: #ffd700;
}
.ls-oproc__flow { display: grid; gap: 0; }
.ls-oproc__phase {
  padding: 36px 0 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  scroll-margin-top: 120px;
}
.ls-oproc__phase:last-child {
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.ls-oproc__n {
  display: block;
  font-family: var(--ls-display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 500;
  letter-spacing: -0.04em;
  color: #ffd700;
  line-height: 1;
  margin-bottom: 10px;
}
.ls-oproc__phase h3 {
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #fff;
  letter-spacing: -0.02em;
}
.ls-oproc__phase p {
  margin: 0 0 12px;
  color: rgba(255,255,255,.76);
  font-size: 16px;
  line-height: 1.65;
  max-width: 58ch;
}
.ls-oproc__phase .ls-oproc__lead {
  margin: 0 0 14px;
  color: rgba(255,255,255,.92);
  font-size: 18px;
  line-height: 1.45;
  max-width: 42ch;
  font-weight: 500;
}
.ls-oproc__phase .ls-oproc__for {
  margin: 0 0 8px;
  color: rgba(255,255,255,.7);
  font-size: 15px;
  line-height: 1.55;
  max-width: 54ch;
}
.ls-oproc__for strong {
  color: #ffd700;
  font-weight: 600;
}
.ls-oproc__phase a {
  color: #ffd700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.ls-oproc__shot {
  margin: 8px 0 28px;
  overflow: hidden;
}
.ls-oproc__shot img {
  width: 100%;
  height: clamp(220px, 32vw, 360px);
  object-fit: cover;
  filter: saturate(0.92);
}

/* 06 Control beige */
.ls-own-control {
  background: #ebeaea;
  padding: clamp(64px, 9vw, 112px) 0;
}
.ls-own-control__grid {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .ls-own-control__grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
  }
}
.ls-own-control__copy .ls-h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  max-width: 16ch;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.ls-own-control__copy .ls-p {
  margin: 0 0 14px;
  max-width: 58ch;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}
.ls-own-control__soft {
  color: #555;
  font-size: 15px;
}
.ls-own-control__aside {
  background: #fff;
  padding: clamp(24px, 3vw, 36px);
  border-top: 3px solid #ffd700;
}
.ls-own-control__aside-k {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
}
.ls-own-control__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.ls-own-control__aside li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(17,17,17,.1);
}
.ls-own-control__aside li:last-child { border-bottom: 0; padding-bottom: 0; }
.ls-own-control__aside strong {
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 500;
  color: #111;
}
.ls-own-control__aside span {
  color: #555;
  font-size: 15px;
}

/* 07 Payments white */
.ls-own-pay {
  background: #fff;
  padding: clamp(64px, 9vw, 112px) 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.ls-own-pay__inner {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .ls-own-pay__inner {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 56px;
    align-items: start;
  }
}
.ls-own-pay__copy .ls-h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
}
.ls-own-pay__copy .ls-p {
  margin: 0 0 14px;
  max-width: 62ch;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}
.ls-own-pay__flags {
  margin: 0 0 16px;
  padding-left: 1.2em;
  max-width: 58ch;
  color: #333;
  font-size: 16px;
  line-height: 1.65;
}
.ls-own-pay__flags li { margin-bottom: 8px; }
.ls-own-pay__aside {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(24px, 3vw, 36px);
  border-top: 3px solid #ffd700;
}
.ls-own-pay__aside-k {
  margin: 0 0 18px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: #ffd700;
}
.ls-own-pay__aside ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.ls-own-pay__aside li {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.ls-own-pay__aside li:last-child { border-bottom: 0; padding-bottom: 0; }
.ls-own-pay__aside strong {
  color: #ffd700;
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 500;
}
.ls-own-pay__aside span {
  color: rgba(255,255,255,.8);
  font-size: 15px;
}

/* 08 Oltre affitto breve � major narrative beat */
.ls-oltre {
  position: relative;
  min-height: min(68vh, 640px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.ls-oltre__bg { position: absolute; inset: 0; }
.ls-oltre__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.38) contrast(1.05);
}
.ls-oltre__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.88) 0%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.4) 100%);
  pointer-events: none;
}
.ls-oltre__content {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 10vw, 120px) 0;
}
.ls-oltre__content .ls-h2 {
  color: #fff;
  font-size: clamp(34px, 5.2vw, 58px);
  font-weight: 500;
  max-width: 16ch;
  margin: 0 0 24px;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ls-oltre__body {
  display: grid;
  gap: 14px;
  max-width: 58ch;
}
.ls-oltre__body p {
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.7;
}

/* 09 Coverage compact white */
.ls-own-cover {
  background: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.ls-own-cover__inner {
  max-width: 68ch;
}
.ls-own-cover__inner .ls-h2 {
  color: #111;
  font-size: clamp(28px, 3.8vw, 42px);
  font-weight: 500;
  margin: 0 0 16px;
  letter-spacing: -0.03em;
  max-width: 22ch;
}
.ls-own-cover__inner .ls-p {
  margin: 0 0 12px;
  color: #333;
  font-size: 17px;
  line-height: 1.7;
}

/* 10 FAQ beige � shared pattern, keep for other pages */
.ls-own-faq {
  background: #ebeaea;
  padding: clamp(56px, 8vw, 100px) 0;
  border-top: 1px solid rgba(17,17,17,.08);
}
.ls-own-faq__grid {
  display: grid;
  gap: 32px;
}
@media (min-width: 960px) {
  .ls-own-faq__grid {
    grid-template-columns: 0.75fr 1.25fr;
    gap: 48px;
    align-items: start;
  }
}
.ls-own-faq__head .ls-h2 {
  color: #111;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
  margin: 0;
}
.ls-own-faq__lead {
  margin: 14px 0 0;
  color: #444;
  max-width: 36ch;
  font-size: 16px;
  line-height: 1.55;
}
.ls-own-faq__list {
  border-top: 1px solid rgba(17,17,17,.14);
}
.ls-own-faq__list details {
  border-bottom: 1px solid rgba(17,17,17,.14);
  background: transparent;
}
.ls-own-faq__list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: var(--ls-display);
  font-size: 17px;
  font-weight: 500;
  color: #111;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 44px;
}
.ls-own-faq__list summary::-webkit-details-marker { display: none; }
.ls-own-faq__list summary::after {
  content: "+";
  font-size: 22px;
  color: #111;
  flex: 0 0 auto;
}
.ls-own-faq__list details[open] summary::after { content: "�"; }
.ls-own-faq__list details p {
  margin: 0 0 18px;
  max-width: 58ch;
  color: #333;
  font-size: 16px;
  line-height: 1.55;
}

/* 11 CTA owners */
.ls-cta--owners {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,215,0,.35);
  padding: clamp(64px, 8vw, 96px) 0;
}
.ls-cta--owners .ls-cta__inner {
  display: grid;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) {
  .ls-cta--owners .ls-cta__inner {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
  }
}
.ls-cta--owners h2 {
  color: #fff;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}
.ls-cta--owners p {
  color: rgba(255,255,255,.82);
  max-width: 48ch;
  margin: 0;
}

.ls-own-hero,
.ls-own-intro,
.ls-own-model,
.ls-own-moment,
.ls-oproc,
.ls-own-control,
.ls-own-pay,
.ls-oltre,
.ls-own-cover,
.ls-own-faq {
  overflow-x: clip;
}

@media (max-width: 700px) {
  .ls-own-hero__copy .ls-h1 {
    font-size: clamp(30px, 8.5vw, 40px);
  }
  .ls-own-hero__lead {
    font-size: 16px;
  }
  .ls-cta--owners .ls-cta__paths .ls-btn,
  .ls-cta--owners .ls-cta__wa {
    width: 100%;
  }
  .ls-oproc__phase { padding: 28px 0 32px; }
}

/* ========== PULIZIE ELEVATION � hospitality cleaning ========== */

.ls-clean-hero {
  position: relative;
  min-height: min(72vh, 700px);
  display: grid;
  align-items: end;
  color: #fff;
  background: #0b0b0b;
  overflow: hidden;
}
.ls-clean-hero__bg { position: absolute; inset: 0; }
.ls-clean-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.52) contrast(1.06);
}
.ls-clean-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.72) 70%, rgba(0,0,0,.9) 100%);
  pointer-events: none;
}
.ls-clean-hero__frame {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 140px) 0 clamp(48px, 7vw, 72px);
}
.ls-clean-hero__frame .ls-h1 {
  color: #fff !important;
  font-size: clamp(34px, 5vw, 54px) !important;
  font-weight: 500;
  max-width: 16ch;
  margin: 10px 0 0;
  line-height: 1.05;
}
.ls-clean-hero__lead {
  margin: 18px 0 0;
  max-width: 48ch;
  color: rgba(255,255,255,.9) !important;
  font-size: 17px;
  line-height: 1.65;
}

.ls-clean-intro {
  background: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
}
.ls-clean-intro__grid {
  width: min(100% - 40px, var(--ls-max));
  margin-inline: auto;
  display: grid;
  gap: 32px;
  align-items: center;
}
@media (min-width: 900px) {
  .ls-clean-intro__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 56px;
  }
}
.ls-clean-intro__copy .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  max-width: 14ch;
  margin: 0 0 18px;
}
.ls-clean-intro__copy .ls-p {
  color: #333 !important;
  max-width: 54ch;
  margin: 0 0 12px;
}
.ls-clean-intro__media { margin: 0; overflow: hidden; border-radius: 2px; }
.ls-clean-intro__media img {
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  object-fit: cover;
}

/* Servizi asymmetric � turnover dominant */
.ls-clean-svc {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(56px, 8vw, 100px) 0;
}
.ls-clean-svc__head { max-width: 52ch; margin-bottom: 36px; }
.ls-clean-svc__head .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-clean-svc__lead {
  margin: 14px 0 0;
  color: rgba(255,255,255,.8) !important;
  max-width: 52ch;
}
.ls-clean-svc__layout {
  display: grid;
  gap: 28px;
}
@media (min-width: 960px) {
  .ls-clean-svc__layout {
    grid-template-columns: 1.55fr .85fr;
    gap: 28px;
    align-items: stretch;
  }
}
.ls-clean-svc__main {
  border: 1px solid rgba(255,215,0,.28);
  padding: clamp(22px, 3vw, 32px);
  display: grid;
  gap: 22px;
  background: #111;
}
.ls-clean-svc__main-top { display: grid; gap: 10px; }
.ls-clean-svc__label {
  display: flex;
  gap: 14px;
  align-items: baseline;
}
.ls-clean-svc__label span {
  font-family: var(--ls-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #111;
  background: #ffd700;
  padding: 4px 8px;
}
.ls-clean-svc__label h3 {
  margin: 0;
  font-family: var(--ls-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  color: #fff;
}
.ls-clean-svc__main-note {
  margin: 0;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px;
  line-height: 1.55;
  max-width: 56ch;
}
.ls-clean-svc__photo {
  margin: 0;
  overflow: hidden;
}
.ls-clean-svc__photo img {
  width: 100%;
  height: clamp(200px, 28vw, 300px);
  object-fit: cover;
  display: block;
}
.ls-clean-svc__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
@media (min-width: 700px) {
  .ls-clean-svc__items { grid-template-columns: 1fr 1fr; gap: 18px 24px; }
}
.ls-clean-svc__items h4 {
  margin: 0 0 6px;
  font-family: var(--ls-display);
  font-size: 17px;
  font-weight: 500;
  color: #ffd700;
}
.ls-clean-svc__items p {
  margin: 0;
  color: rgba(255,255,255,.84) !important;
  font-size: 14px;
  line-height: 1.5;
  max-width: 40ch;
}
.ls-clean-svc__side {
  display: grid;
  gap: 20px;
}
@media (min-width: 960px) {
  .ls-clean-svc__side { grid-template-rows: 1fr 1fr; }
}
.ls-clean-svc__mod {
  padding: clamp(22px, 3vw, 28px);
  display: grid;
  gap: 10px;
  align-content: start;
}
.ls-clean-svc__mod--beige {
  background: #ebeaea;
  color: #111;
}
.ls-clean-svc__mod--beige .ls-clean-svc__label h3 { color: #111; }
.ls-clean-svc__mod--beige h4 { color: #111; margin: 8px 0 0; font-family: var(--ls-display); font-size: 18px; font-weight: 500; }
.ls-clean-svc__mod--beige p { margin: 0; color: #333 !important; font-size: 15px; line-height: 1.55; max-width: 38ch; }
.ls-clean-svc__mod--ink {
  background: #141414;
  border: 1px solid rgba(255,215,0,.2);
}
.ls-clean-svc__mod--ink h4 {
  margin: 8px 0 0;
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 500;
  color: #ffd700;
}
.ls-clean-svc__mod--ink p {
  margin: 0;
  color: rgba(255,255,255,.84) !important;
  font-size: 15px;
  line-height: 1.55;
  max-width: 38ch;
}

/* Come funziona � sequenza editoriale orizzontale */
.ls-clean-how {
  background: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.ls-clean-how__head { margin-bottom: 28px; max-width: 28ch; }
.ls-clean-how .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 40px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-clean-how__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17,17,17,.12);
}
@media (min-width: 900px) {
  .ls-clean-how__steps {
    grid-template-columns: repeat(3, 1fr);
    border-top: none;
    gap: 0;
  }
}
.ls-clean-how__steps li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,17,17,.12);
}
@media (min-width: 900px) {
  .ls-clean-how__steps li {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 28px;
    border-bottom: none;
    border-right: 1px solid rgba(17,17,17,.12);
  }
  .ls-clean-how__steps li:first-child { padding-left: 0; }
  .ls-clean-how__steps li:last-child {
    border-right: none;
    padding-right: 0;
  }
}
.ls-clean-how__steps span {
  font-family: var(--ls-display);
  font-weight: 700;
  color: #111;
  background: #ffd700;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  font-size: 13px;
}
.ls-clean-how__steps h3 {
  margin: 0 0 6px;
  font-family: var(--ls-display);
  font-size: 20px;
  font-weight: 500;
  color: #111;
}
.ls-clean-how__steps p {
  margin: 0;
  color: #333 !important;
  font-size: 15px;
  line-height: 1.55;
  max-width: 36ch;
}

.ls-clean-quality {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}
.ls-clean-quality__bg { position: absolute; inset: 0; }
.ls-clean-quality__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.45);
}
.ls-clean-quality__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.45) 100%);
}
.ls-clean-quality__content {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 720px);
  margin: 0 auto 0 max(20px, calc((100% - var(--ls-max)) / 2));
  padding: clamp(48px, 8vw, 80px) 0;
}
.ls-clean-quality__content .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4vw, 44px) !important;
  font-weight: 500;
  margin: 0 0 16px;
}
.ls-clean-quality__claim {
  margin: 0 0 16px;
  font-family: var(--ls-display);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 500;
  color: #fff !important;
  max-width: 22ch;
}
.ls-clean-quality__content .ls-p {
  color: rgba(255,255,255,.88) !important;
  max-width: 48ch;
  margin: 0 0 10px;
}

.ls-clean-faq { background: #fff; }
.ls-cta--clean {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,215,0,.35);
  padding: clamp(64px, 8vw, 96px) 0;
}
.ls-cta--clean .ls-cta__inner {
  display: grid;
  gap: 32px;
  align-items: end;
}
@media (min-width: 900px) {
  .ls-cta--clean .ls-cta__inner {
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
  }
}
.ls-cta--clean h2 {
  color: #ffd700 !important;
  font-size: clamp(30px, 4.2vw, 44px) !important;
  font-weight: 500;
  max-width: 18ch;
  margin: 0 0 14px;
}
.ls-cta--clean p { color: rgba(255,255,255,.82) !important; margin: 0; max-width: 48ch; }
.ls-cta__hours { margin-top: 14px !important; color: #fff !important; }
.ls-cta__hours strong { color: #ffd700; }

.ls-clean-hero,
.ls-clean-intro,
.ls-clean-svc,
.ls-clean-how,
.ls-clean-quality { overflow-x: clip; }

/* ========== ALLOGGI + SCHEDE + PROPONI + CONTATTI + LEGAL ========== */

.ls-stay-hero {
  position: relative;
  background: #0b0b0b;
  color: #fff;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,215,0,.28);
}
.ls-stay-hero__mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  grid-template-rows: 1.15fr .85fr;
  gap: 8px;
  padding: 8px;
}
.ls-stay-hero__shot {
  margin: 0;
  overflow: hidden;
  background: #1a1a1a;
}
.ls-stay-hero__shot--a {
  grid-row: 1 / -1;
}
.ls-stay-hero__shot--b { grid-column: 2; grid-row: 1; }
.ls-stay-hero__shot--c { grid-column: 2; grid-row: 2; }
.ls-stay-hero__shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
}
.ls-stay-hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.55) 42%, rgba(0,0,0,.22) 72%, rgba(0,0,0,.35) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 70%, rgba(0,0,0,.82) 100%);
  pointer-events: none;
}
.ls-stay-hero__inner {
  position: relative;
  z-index: 1;
  padding: clamp(88px, 12vw, 120px) 0 clamp(40px, 6vw, 64px);
  max-width: 58ch;
}
.ls-stay-hero__inner .ls-h1 {
  color: #fff !important;
  font-size: clamp(36px, 6vw, 64px) !important;
  font-weight: 500;
  max-width: 14ch;
  margin: 10px 0 0;
  line-height: 1.05;
}
.ls-stay-hero__lead {
  margin: 18px 0 0;
  max-width: 52ch;
  color: rgba(255,255,255,.9) !important;
  font-size: 17px;
  line-height: 1.65;
}
.ls-stay-hero__inner .ls-actions { margin-top: 26px; }
@media (max-width: 767px) {
  .ls-stay-hero { min-height: min(78vh, 640px); }
  .ls-stay-hero__mosaic {
    grid-template-columns: 1.4fr .7fr;
    grid-template-rows: 1fr;
    gap: 6px;
    padding: 0;
  }
  .ls-stay-hero__shot--a { grid-row: 1; }
  .ls-stay-hero__shot--b { grid-row: 1; }
  .ls-stay-hero__shot--c { display: none; }
  .ls-stay-hero__veil {
    background:
      linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.72) 55%, rgba(0,0,0,.9) 100%);
  }
}

.ls-stay-intro {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0;
}
.ls-stay-intro__grid {
  display: grid;
  gap: 24px;
}
@media (min-width: 900px) {
  .ls-stay-intro__grid {
    grid-template-columns: .9fr 1.1fr;
    gap: 56px;
    align-items: start;
  }
}
.ls-stay-intro .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0;
  max-width: 18ch;
  line-height: 1.15;
}
.ls-stay-intro .ls-p {
  color: #333 !important;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.65;
  max-width: 62ch;
}
.ls-stay-intro .ls-p:last-child { margin-bottom: 0; }

.ls-stay-list { background: #f4f4f1; padding: clamp(40px, 6vw, 72px) 0 0; }
.ls-stay-list__head { margin-bottom: clamp(28px, 4vw, 40px); }
.ls-stay-list__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-stay-list__lead {
  margin: 12px 0 0;
  max-width: 48ch;
  color: #5c5c5c !important;
  font-size: 16px;
  line-height: 1.55;
}

.ls-stay-apt {
  display: grid;
  gap: 0;
  background: #fff;
  border-top: 1px solid rgba(17,17,17,.1);
}
.ls-stay-apt__media {
  display: block;
  overflow: hidden;
  min-height: 280px;
}
.ls-stay-apt__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform 1.2s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .ls-stay-apt.is-in .ls-stay-apt__media img { transform: scale(1.03); }
}
.ls-stay-apt__copy {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ls-stay-apt__tag {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #5c5c5c;
}
.ls-stay-apt__facts {
  margin: 0 0 14px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
  letter-spacing: .01em;
  color: #5c5c5c !important;
  max-width: 46ch;
}
.ls-stay-apt__copy h3 {
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
}
.ls-stay-apt__copy h3 a {
  color: #111;
  text-decoration: none;
}
.ls-stay-apt__copy h3 a:hover { color: #000; border-bottom: 2px solid #ffd700; }
.ls-stay-apt__copy p {
  margin: 0 0 12px;
  color: #333 !important;
  font-size: 16px;
  line-height: 1.65;
  max-width: 50ch;
}
.ls-stay-apt__link {
  margin-top: 10px;
  align-self: flex-start;
  color: #111 !important;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 2px;
}

/* Rhythm: wide / vertical / overlap / finale */
@media (min-width: 900px) {
  .ls-stay-apt--wide {
    grid-template-columns: 1.35fr .85fr;
    min-height: 480px;
    align-items: stretch;
  }
  .ls-stay-apt--wide .ls-stay-apt__media { min-height: 480px; }
  .ls-stay-apt--wide .ls-stay-apt__media img { min-height: 480px; }

  .ls-stay-apt--vert {
    grid-template-columns: .78fr 1.22fr;
    min-height: 520px;
    background: #f4f4f1;
  }
  .ls-stay-apt--vert .ls-stay-apt__media { order: 2; min-height: 520px; }
  .ls-stay-apt--vert .ls-stay-apt__copy { order: 1; padding-left: clamp(32px, 5vw, 64px); }
  .ls-stay-apt--vert .ls-stay-apt__media img {
    min-height: 520px;
    object-position: center 30%;
  }

  .ls-stay-apt--overlap {
    grid-template-columns: 1.05fr .95fr;
    min-height: 440px;
    padding: 28px 28px 28px 0;
    background: #ebeaea;
    align-items: center;
  }
  .ls-stay-apt--overlap .ls-stay-apt__media {
    min-height: 400px;
    margin-right: -36px;
    z-index: 1;
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
  }
  .ls-stay-apt--overlap .ls-stay-apt__media img { min-height: 400px; }
  .ls-stay-apt--overlap .ls-stay-apt__copy {
    background: #fff;
    min-height: 340px;
    padding-left: clamp(40px, 5vw, 64px);
    border: 1px solid rgba(17,17,17,.08);
  }

  .ls-stay-apt--finale {
    grid-template-columns: .95fr 1.05fr;
    min-height: 460px;
    background: #0b0b0b;
    color: #fff;
  }
  .ls-stay-apt--finale .ls-stay-apt__media { order: 2; min-height: 460px; }
  .ls-stay-apt--finale .ls-stay-apt__copy { order: 1; }
  .ls-stay-apt--finale .ls-stay-apt__media img { min-height: 460px; }
  .ls-stay-apt--finale .ls-stay-apt__tag { color: rgba(255,255,255,.65); }
  .ls-stay-apt--finale .ls-stay-apt__facts { color: rgba(255,255,255,.62) !important; }
  .ls-stay-apt--finale .ls-stay-apt__copy h3 a { color: #fff; }
  .ls-stay-apt--finale .ls-stay-apt__copy h3 a:hover {
    color: #ffd700;
    border-bottom-color: #ffd700;
  }
  .ls-stay-apt--finale .ls-stay-apt__copy p { color: rgba(255,255,255,.84) !important; }
  .ls-stay-apt--finale .ls-stay-apt__link {
    color: #fff !important;
    border-bottom-color: #ffd700;
  }
}
@media (max-width: 899px) {
  .ls-stay-apt--overlap {
    background: #ebeaea;
    padding-bottom: 8px;
  }
  .ls-stay-apt--finale {
    background: #0b0b0b;
  }
  .ls-stay-apt--finale .ls-stay-apt__tag { color: rgba(255,255,255,.65); }
  .ls-stay-apt--finale .ls-stay-apt__facts { color: rgba(255,255,255,.62) !important; }
  .ls-stay-apt--finale .ls-stay-apt__copy h3 a { color: #fff; }
  .ls-stay-apt--finale .ls-stay-apt__copy p { color: rgba(255,255,255,.84) !important; }
  .ls-stay-apt--finale .ls-stay-apt__link {
    color: #fff !important;
    border-bottom-color: #ffd700;
  }
}

.ls-stay-book {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(56px, 8vw, 96px) 0;
}
.ls-stay-book__inner {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ls-stay-book__inner { grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
}
.ls-stay-book .ls-h2 {
  color: #ffd700 !important;
  font-size: clamp(28px, 3.8vw, 40px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-stay-book__steps {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.ls-stay-book__steps li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: rgba(255,255,255,.9);
  font-size: 16px;
  font-weight: 500;
}
.ls-stay-book__steps span {
  font-family: var(--ls-display);
  font-size: 13px;
  letter-spacing: .08em;
  color: #ffd700;
  min-width: 1.8em;
}
.ls-stay-book__body .ls-p {
  color: rgba(255,255,255,.86) !important;
  margin: 0 0 12px;
  max-width: 58ch;
  font-size: 16px;
  line-height: 1.65;
}

.ls-stay-xp {
  background: #ebeaea;
  padding: clamp(48px, 7vw, 88px) 0;
}
.ls-stay-xp__grid {
  display: grid;
  gap: 28px;
  align-items: center;
}
@media (min-width: 900px) {
  .ls-stay-xp__grid {
    grid-template-columns: 1.15fr .85fr;
    gap: 56px;
  }
}
.ls-stay-xp .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0 0 18px;
}
.ls-stay-xp__editorial p {
  margin: 0 0 16px;
  color: #333 !important;
  font-size: 17px;
  line-height: 1.65;
  max-width: 58ch;
}
.ls-stay-xp__editorial p:last-child { margin-bottom: 0; }
.ls-stay-xp__editorial strong {
  display: inline;
  font-weight: 700;
  color: #111;
  letter-spacing: .02em;
}
.ls-stay-xp__media {
  margin: 0;
  overflow: hidden;
  min-height: 280px;
  max-height: 560px;
}
.ls-stay-xp__media img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
}
.ls-stay-faq { background: #fff; }
.ls-cta--stay,
.ls-cta--apt,
.ls-cta--prop,
.ls-cta--contact {
  background: #0b0b0b;
  border-top: 1px solid rgba(255,215,0,.35);
  padding: clamp(56px, 8vw, 88px) 0;
}
.ls-cta--stay .ls-cta__inner,
.ls-cta--apt .ls-cta__inner,
.ls-cta--prop .ls-cta__inner,
.ls-cta--contact .ls-cta__inner {
  display: grid;
  gap: 28px;
  align-items: end;
}
@media (min-width: 900px) {
  .ls-cta--stay .ls-cta__inner,
  .ls-cta--apt .ls-cta__inner,
  .ls-cta--prop .ls-cta__inner,
  .ls-cta--contact .ls-cta__inner {
    grid-template-columns: 1.15fr .85fr;
    gap: 48px;
  }
}
.ls-cta--stay h2,
.ls-cta--apt h2,
.ls-cta--prop h2,
.ls-cta--contact h2 {
  color: #ffd700 !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 500;
  margin: 0 0 12px;
}
.ls-cta--stay p,
.ls-cta--apt p,
.ls-cta--prop p,
.ls-cta--contact p {
  color: rgba(255,255,255,.82) !important;
  margin: 0;
  max-width: 48ch;
}

/* Apartment detail system */
.ls-apt-hero {
  position: relative;
  min-height: min(62vh, 580px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.ls-apt-hero__bg { position: absolute; inset: 0; }
.ls-apt-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.5);
}
.ls-apt-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2) 0%, rgba(0,0,0,.78) 100%);
}
.ls-apt-hero__frame {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(100px, 12vw, 130px) 0 40px;
}
.ls-apt-hero__frame .ls-h1 {
  color: #fff !important;
  font-size: clamp(32px, 4.8vw, 52px) !important;
  font-weight: 500;
  margin: 8px 0 0;
  max-width: 16ch;
}
.ls-apt-hero__sub {
  margin: 12px 0 0;
  color: #ffd700 !important;
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 500;
}

.ls-apt-mosaic {
  background: #0b0b0b;
  padding: 0 0 clamp(40px, 6vw, 64px);
}
.ls-apt-mosaic__grid {
  display: grid;
  gap: 8px;
}
@media (min-width: 800px) {
  .ls-apt-mosaic__grid {
    grid-template-columns: 1.35fr 1fr 1fr;
    grid-auto-rows: minmax(200px, 28vh);
    gap: 10px;
  }
  .ls-apt-mosaic__main {
    grid-row: span 2;
  }
  .ls-apt-mosaic__grid--duo {
    grid-template-columns: 1.35fr 1fr;
    grid-auto-rows: minmax(320px, 48vh);
  }
  .ls-apt-mosaic__grid--duo .ls-apt-mosaic__main {
    grid-row: auto;
  }
}
.ls-apt-mosaic figure { margin: 0; overflow: hidden; }
.ls-apt-mosaic img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  display: block;
}
@media (max-width: 799px) {
  .ls-apt-mosaic__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding-bottom: 8px;
  }
  .ls-apt-mosaic figure {
    flex: 0 0 82%;
    scroll-snap-align: start;
  }
  .ls-apt-mosaic img { min-height: 240px; max-height: 320px; }
}

.ls-apt-facts {
  background: #ebeaea;
  padding: 28px 0;
  border-bottom: 1px solid rgba(17,17,17,.08);
}
.ls-apt-facts__grid {
  display: grid;
  gap: 14px;
}
@media (min-width: 800px) {
  .ls-apt-facts__grid { grid-template-columns: repeat(4, 1fr); gap: 18px; }
}
.ls-apt-facts__item {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 2px solid #ffd700;
}
.ls-apt-facts__item strong {
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #5c5c5c;
}
.ls-apt-facts__item span {
  color: #111;
  font-size: 15px;
  line-height: 1.4;
}

.ls-apt-body {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0;
}
.ls-apt-body__grid {
  display: grid;
  gap: 36px;
}
@media (min-width: 960px) {
  .ls-apt-body__grid {
    grid-template-columns: 1.25fr .75fr;
    gap: 56px;
    align-items: start;
  }
}
.ls-apt-body__main .ls-p {
  color: #333 !important;
  margin: 0 0 12px;
  max-width: 65ch;
}
.ls-apt-body__main .ls-h2 {
  color: #111 !important;
  font-size: clamp(26px, 3.4vw, 36px) !important;
  font-weight: 500;
  margin: 28px 0 14px;
}
.ls-apt-space h3,
.ls-apt-hood h3 {
  margin: 18px 0 8px;
  font-family: var(--ls-display);
  font-size: 18px;
  font-weight: 500;
  color: #111;
}
.ls-apt-services ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #333;
  display: grid;
  gap: 8px;
  max-width: 58ch;
}
.ls-apt-aside {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(24px, 3vw, 32px);
  border-top: 3px solid #ffd700;
  position: sticky;
  top: 96px;
}
.ls-apt-aside__title {
  margin: 0 0 16px;
  font-family: var(--ls-display);
  font-size: 20px;
  font-weight: 500;
  color: #ffd700;
}
.ls-apt-aside p {
  margin: 0 0 14px;
  color: rgba(255,255,255,.86) !important;
  font-size: 14px;
  line-height: 1.5;
}
.ls-apt-aside strong { color: #ffd700; }

/* Proponi */
/* �� Proponi immobile (polish) �� */
.ls-prop-hero {
  position: relative;
  min-height: min(72vh, 700px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.ls-prop-hero__bg { position: absolute; inset: 0; }
.ls-prop-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  filter: brightness(.55);
}
.ls-prop-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,.84) 0%, rgba(0,0,0,.38) 100%);
}
.ls-prop-hero__frame {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(110px, 13vw, 140px) 0 56px;
}
.ls-prop-hero__frame .ls-h1 {
  color: #fff !important;
  font-size: clamp(36px, 5.4vw, 64px) !important;
  font-weight: 500;
  max-width: 14ch;
  margin: 12px 0 0;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.ls-prop-hero__lead {
  margin: 18px 0 0;
  max-width: 46ch;
  color: rgba(255,255,255,.9) !important;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.6;
}
.ls-prop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.ls-prop-hero__actions .ls-btn--ghost {
  color: #fff;
  border-color: rgba(255,255,255,.45);
}
.ls-prop-hero__actions .ls-btn--ghost:hover {
  border-color: #ffd700;
  color: #ffd700;
}

.ls-prop-intro {
  background: #fff;
  padding: clamp(56px, 8vw, 104px) 0;
}
.ls-prop-intro__grid {
  display: grid;
  gap: 36px;
  align-items: start;
}
@media (min-width: 960px) {
  .ls-prop-intro__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 64px;
    align-items: center;
  }
}
.ls-prop-intro__copy .ls-h2 {
  color: #111 !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 500;
  margin: 0 0 20px;
  letter-spacing: -0.03em;
  max-width: 16ch;
}
.ls-prop-intro__copy .ls-p {
  color: #333 !important;
  max-width: 58ch;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
}
.ls-prop-intro__media {
  margin: 0;
  overflow: hidden;
}
.ls-prop-intro__media img {
  width: 100%;
  height: clamp(320px, 48vw, 560px);
  object-fit: cover;
  display: block;
}

.ls-prop-process {
  background: #f4f4f1;
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid rgba(17,17,17,.06);
}
.ls-prop-process__head {
  max-width: 58ch;
  margin-bottom: 40px;
}
.ls-prop-process__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.ls-prop-process__head .ls-p { color: #333 !important; }
.ls-prop-process__path {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 820px;
  border-top: 1px solid rgba(17,17,17,.14);
}
.ls-prop-process__path li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(17,17,17,.12);
  align-items: start;
}
.ls-prop-process__n {
  font-family: var(--ls-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: #111;
  background: #ffd700;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}
.ls-prop-process__path h3 {
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-size: clamp(20px, 2.4vw, 24px);
  font-weight: 500;
  color: #111;
  letter-spacing: -0.02em;
}
.ls-prop-process__path p {
  margin: 0;
  color: #333 !important;
  font-size: 16px;
  line-height: 1.65;
  max-width: 62ch;
}

.ls-prop-econ {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(56px, 8vw, 104px) 0;
}
.ls-prop-econ__head { max-width: 40ch; margin-bottom: 36px; }
.ls-prop-econ__head .ls-kicker { color: #ffd700; }
.ls-prop-econ .ls-h2 {
  color: #fff !important;
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 500;
  margin: 0;
  letter-spacing: -0.03em;
}
.ls-prop-econ__grid {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,215,0,.28);
}
@media (min-width: 800px) {
  .ls-prop-econ__grid { grid-template-columns: 1fr 1fr; }
}
.ls-prop-econ__grid article {
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
@media (min-width: 800px) {
  .ls-prop-econ__grid article:nth-child(odd) {
    padding-right: 32px;
    border-right: 1px solid rgba(255,255,255,.12);
  }
  .ls-prop-econ__grid article:nth-child(even) {
    padding-left: 32px;
  }
  .ls-prop-econ__grid article:nth-child(-n+2) {
    border-top: 0;
  }
}
.ls-prop-econ__grid h3 {
  margin: 0 0 10px;
  font-family: var(--ls-display);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 500;
  color: #ffd700;
}
.ls-prop-econ__grid p {
  margin: 0;
  color: rgba(255,255,255,.84);
  font-size: 16px;
  line-height: 1.6;
  max-width: 40ch;
}
.ls-prop-econ__claim {
  margin: 40px 0 0;
  display: inline-block;
  max-width: 28ch;
  font-family: var(--ls-display);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 500;
  line-height: 1.2;
  color: #111;
  background: #ffd700;
  padding: 18px 22px;
}
.ls-prop-econ__claim em {
  font-style: normal;
  border-bottom: 3px solid #111;
}

.ls-prop-types {
  background: #ebeaea;
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-prop-types .ls-h2 {
  color: #111 !important;
  font-size: clamp(26px, 3.6vw, 36px) !important;
  font-weight: 500;
  margin: 0 0 12px;
}
.ls-prop-types .ls-p {
  color: #333 !important;
  max-width: 58ch;
  margin: 0;
  font-size: 17px;
  line-height: 1.65;
}

.ls-prop-paths {
  background: #fff;
  padding: clamp(56px, 8vw, 104px) 0;
}
.ls-prop-paths__grid {
  display: grid;
  gap: 36px;
  align-items: center;
}
@media (min-width: 960px) {
  .ls-prop-paths__grid {
    grid-template-columns: .95fr 1.05fr;
    gap: 64px;
  }
}
.ls-prop-paths__media { margin: 0; overflow: hidden; }
.ls-prop-paths__media img {
  width: 100%;
  height: clamp(300px, 42vw, 520px);
  object-fit: cover;
  display: block;
}
.ls-prop-paths__copy .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0 0 18px;
  letter-spacing: -0.03em;
  max-width: 14ch;
}
.ls-prop-paths__copy .ls-p {
  color: #333 !important;
  max-width: 56ch;
  margin: 0 0 14px;
  font-size: 17px;
  line-height: 1.7;
}

.ls-prop-form {
  background: #f4f4f1;
  padding: clamp(56px, 8vw, 104px) 0;
  border-top: 1px solid rgba(17,17,17,.06);
}
.ls-prop-form__head { max-width: 56ch; margin-bottom: 32px; }
.ls-prop-form__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.8vw, 42px) !important;
  font-weight: 500;
  margin: 0 0 12px;
  letter-spacing: -0.03em;
}
.ls-prop-form__head .ls-p { color: #333 !important; margin: 0 0 10px; }
.ls-prop-form__note {
  font-size: 15px !important;
  color: #555 !important;
}
.ls-form--prop {
  max-width: 720px;
  background: transparent;
  border: 0;
  padding: 0;
  box-shadow: none;
}
.ls-form--prop .ls-form__group {
  border: 0;
  margin: 0 0 32px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(17,17,17,.12);
  background: transparent;
}
.ls-form--prop .ls-form__group:last-of-type {
  border-bottom: 0;
  margin-bottom: 24px;
}
.ls-form__group {
  border: 0;
  margin: 0 0 28px;
  padding: 0 0 8px;
  border-bottom: 1px solid rgba(17,17,17,.1);
}
.ls-form__group legend {
  padding: 0;
  margin: 0 0 16px;
  font-family: var(--ls-display);
  font-size: 13px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  color: #111;
}
.ls-form--prop .ls-field input,
.ls-form--prop .ls-field textarea {
  background: #fff;
  border-color: rgba(17,17,17,.18);
}
.ls-form--prop .ls-check { margin: 8px 0 20px; }

.ls-prop-next {
  background: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-prop-next__inner { max-width: 54ch; }
.ls-prop-next .ls-h2 {
  color: #111 !important;
  font-size: clamp(24px, 3.2vw, 32px) !important;
  font-weight: 500;
  margin: 0 0 12px;
}
.ls-prop-next .ls-p { color: #333 !important; margin: 0; line-height: 1.65; }
.ls-prop-faq { background: #f4f4f1; }

/* Contatti */
.ls-contact-hero {
  position: relative;
  min-height: min(58vh, 520px);
  display: grid;
  align-items: end;
  color: #fff;
  overflow: hidden;
  background: #0b0b0b;
}
.ls-contact-hero__bg { position: absolute; inset: 0; }
.ls-contact-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55) contrast(1.05);
}
.ls-contact-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.25) 0%, rgba(0,0,0,.82) 100%);
}
.ls-contact-hero__frame {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, var(--ls-max));
  margin: 0 auto;
  padding: clamp(96px, 12vw, 120px) 0 40px;
}
.ls-contact-hero__frame .ls-h1 {
  color: #fff !important;
  font-size: clamp(30px, 4.4vw, 48px) !important;
  font-weight: 500;
  max-width: 18ch;
  margin: 10px 0 0;
  line-height: 1.12;
}
.ls-contact-hero__lead {
  margin: 14px 0 0;
  max-width: 46ch;
  color: rgba(255,255,255,.9) !important;
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.55;
}
.ls-contact-paths {
  background: #ebeaea;
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-contact-paths__head { margin-bottom: 8px; }
.ls-contact-paths__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.6vw, 40px) !important;
  font-weight: 500;
  margin: 0;
}
.ls-contact-paths__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(17,17,17,.14);
}
.ls-contact-paths__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 20px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(17,17,17,.14);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
@media (min-width: 900px) {
  .ls-contact-paths__item {
    gap: 28px 36px;
    padding: 28px 0;
  }
  .ls-contact-paths__item--01 .ls-contact-paths__body { max-width: 54ch; }
  .ls-contact-paths__item--02 {
    padding-left: clamp(24px, 6vw, 72px);
  }
  .ls-contact-paths__item--02 .ls-contact-paths__body { max-width: 48ch; }
  .ls-contact-paths__item--03 {
    padding-left: clamp(48px, 12vw, 140px);
  }
  .ls-contact-paths__item--03 .ls-contact-paths__body { max-width: 44ch; }
}
.ls-contact-paths__n {
  margin: 4px 0 0;
  font-family: var(--ls-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: .04em;
  color: #111;
  line-height: 1;
  background: none;
  width: auto;
  height: auto;
  display: block;
}
.ls-contact-paths__body h3 {
  margin: 0 0 8px;
  font-family: var(--ls-display);
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 500;
  color: #111;
  line-height: 1.1;
}
.ls-contact-paths__body > p {
  margin: 0 0 12px;
  color: #333 !important;
  font-size: 16px;
  line-height: 1.55;
  max-width: 48ch;
}
.ls-contact-paths__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  margin: 0 !important;
}
.ls-contact-paths__links span {
  color: rgba(17,17,17,.35);
}
.ls-contact-paths__links a {
  color: #111 !important;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .02em;
  text-decoration: none;
  border-bottom: 2px solid #ffd700;
  padding-bottom: 1px;
}
.ls-contact-paths__links a:hover { color: #000 !important; }
.ls-contact-direct {
  background: #0b0b0b;
  color: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-contact-direct__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 900px) {
  .ls-contact-direct__grid {
    grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
    gap: 48px;
    align-items: end;
  }
}
.ls-contact-direct .ls-h2 {
  color: #fff !important;
  font-size: clamp(28px, 3.6vw, 40px) !important;
  font-weight: 500;
  margin: 0 0 12px;
  max-width: 14ch;
}
.ls-contact-direct__hours {
  margin: 0 !important;
  color: rgba(255,255,255,.78) !important;
  font-size: 15px;
}
.ls-contact-direct__hours strong {
  color: #ffd700;
  font-weight: 700;
  margin-right: 8px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 12px;
}
.ls-contact-direct__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.18);
}
.ls-contact-direct__list li {
  display: grid;
  grid-template-columns: 7.5rem 1fr;
  gap: 12px 20px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}
@media (max-width: 560px) {
  .ls-contact-direct__list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }
}
.ls-contact-direct__list span {
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,.55);
}
.ls-contact-direct__list a {
  color: #fff !important;
  text-decoration: none;
  font-size: clamp(17px, 2vw, 20px);
  font-weight: 500;
  word-break: break-word;
}
.ls-contact-direct__list a:hover { color: #ffd700 !important; }
.ls-contact-form {
  background: #fff;
  padding: clamp(40px, 6vw, 72px) 0;
}
.ls-contact-form__head { max-width: 48ch; margin-bottom: 22px; }
.ls-contact-form__head .ls-h2 {
  color: #111 !important;
  font-size: clamp(28px, 3.6vw, 40px) !important;
  font-weight: 500;
  margin: 0 0 10px;
}
.ls-contact-form__head .ls-p { color: #333 !important; margin: 0; }
.ls-contact-form .ls-form { max-width: 640px; }
.ls-contact-form select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(17,17,17,.18);
  background: #fff;
  font: inherit;
  color: #111;
  border-radius: 2px;
}
.ls-contact-faq {
  background: #f4f4f1;
  padding: clamp(36px, 5vw, 56px) 0 !important;
}
.ls-contact-faq .ls-own-faq__head .ls-h2 {
  font-size: clamp(24px, 3vw, 32px) !important;
}
.ls-cta--contact {
  padding: clamp(40px, 6vw, 64px) 0;
}
.ls-cta--contact h2 {
  max-width: 16ch;
}
.ls-cta--contact p {
  max-width: 36ch;
}

/* Legal pages */
.ls-legal {
  background: #fff;
  padding: clamp(48px, 7vw, 88px) 0;
}
.ls-legal__inner { max-width: 52rem; }
.ls-legal .ls-h1 {
  color: #111 !important;
  font-size: clamp(32px, 4.5vw, 48px) !important;
  font-weight: 500;
  margin: 0 0 12px;
}
.ls-legal__lead {
  margin: 0 0 28px;
  color: #444 !important;
  max-width: 48ch;
}
.ls-legal__body {
  color: #333;
  font-size: 16px;
  line-height: 1.7;
}
.ls-legal__body :is(h2, .h2) {
  font-family: var(--ls-display);
  font-size: 1.35rem;
  font-weight: 500;
  color: #111;
  margin: 1.75rem 0 .65rem;
  padding-top: .5rem;
  border-top: 1px solid rgba(17,17,17,.1);
}
.ls-legal__body :is(h3, .h3) {
  font-family: var(--ls-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: #111;
  margin: 1.25rem 0 .5rem;
}
.ls-legal__body :is(p, li, .lead) {
  color: #444 !important;
  line-height: 1.65;
}
.ls-legal__body a { color: #111; border-bottom: 1px solid #ffd700; text-decoration: none; }
.ls-legal__body a:hover { color: #000; }

.ls-stay-hero,
.ls-stay-intro,
.ls-stay-list,
.ls-stay-book,
.ls-stay-xp,
.ls-apt-hero,
.ls-apt-mosaic,
.ls-prop-hero,
.ls-contact-hero,
.ls-contact-paths { overflow-x: clip; }

/* Leon WhatsApp composer float — LS_WA_CHIPS_V2 (icon-only FAB + chip panel) */
.ls-wa {
  --ls-wa-fab-size: 3.35rem;
  font-family: var(--ls-font);
}

.ls-wa__overlay {
  position: fixed;
  inset: 0;
  z-index: 9988;
  background: rgba(11, 11, 11, 0.42);
  pointer-events: auto;
}

/* Icon-only FAB at all breakpoints (yellow + house); label never visible */
.ls-wa__fab {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 9991;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: var(--ls-wa-fab-size);
  height: var(--ls-wa-fab-size);
  min-width: 44px;
  min-height: 44px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: var(--ls-yellow);
  color: var(--ls-black);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(11, 11, 11, 0.22);
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  pointer-events: auto;
}

.ls-wa__fab:hover {
  background: var(--ls-yellow-soft);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(11, 11, 11, 0.26);
}

.ls-wa__fab:focus-visible {
  outline: 2px solid var(--ls-black);
  outline-offset: 3px;
}

.ls-wa__icon {
  width: 1.45rem;
  height: 1.45rem;
  flex-shrink: 0;
  color: var(--ls-black);
}

/* Never show float text labels on Leon (all breakpoints, incl. desktop) */
.ls-wa__fab-label,
body .vg-float__label {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ls-wa__panel {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: calc(var(--ls-wa-fab-size) + 0.75rem + env(safe-area-inset-bottom, 0px));
  z-index: 9990;
  width: min(22.5rem, calc(100vw - 2rem));
  max-width: calc(100vw - 2rem);
  max-height: min(78vh, 36rem);
  overflow: auto;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1px solid var(--ls-line);
  border-radius: 12px;
  background: #fff;
  color: var(--ls-ink);
  box-shadow: 0 18px 40px rgba(11, 11, 11, 0.2);
  overscroll-behavior: contain;
  pointer-events: auto;
}

.ls-wa__panel[hidden],
.ls-wa__overlay[hidden] {
  display: none !important;
}

.ls-wa__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.ls-wa__eyebrow {
  margin: 0 0 0.2rem;
  font-family: var(--ls-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ls-muted);
}

.ls-wa__title {
  margin: 0;
  font-family: var(--ls-display);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--ls-black);
}

.ls-wa__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin: -0.35rem -0.35rem 0 0;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-surface);
  color: var(--ls-black);
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
}

.ls-wa__close:hover {
  background: var(--ls-bg);
}

.ls-wa__close:focus-visible {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 2px;
}

.ls-wa__lead {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--ls-muted);
}

.ls-wa__form {
  display: grid;
  gap: 0.85rem;
}

.ls-wa__field label,
.ls-wa__label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--ls-display);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ls-black);
}

.ls-wa__hint {
  margin: 0.4rem 0 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--ls-muted);
}

.ls-wa__field select {
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: #fff;
  color: var(--ls-ink);
  font: inherit;
  font-size: 0.95rem;
}

.ls-wa__field select:focus {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 1px;
  border-color: var(--ls-black);
}

.ls-wa__field[hidden],
.ls-wa__preview[hidden] {
  display: none !important;
}

/* Precompiled message chips (no free-form textarea) */
.ls-wa__chips {
  display: grid;
  gap: 0.45rem;
}

.ls-wa__chip {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-surface);
  color: var(--ls-ink);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.ls-wa__chip:hover {
  border-color: var(--ls-black);
  background: #fff;
}

.ls-wa__chip:focus-visible {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 2px;
}

.ls-wa__chip.is-selected {
  border-color: var(--ls-black);
  background: var(--ls-yellow);
  color: var(--ls-black);
  box-shadow: inset 0 0 0 1px rgba(11, 11, 11, 0.08);
}

.ls-wa__preview {
  margin: 0;
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--ls-line);
  border-radius: var(--ls-radius);
  background: var(--ls-bg);
}

.ls-wa__preview-label {
  margin: 0 0 0.35rem;
  font-family: var(--ls-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ls-muted);
}

.ls-wa__preview-text {
  margin: 0;
  font-family: inherit;
  font-size: 0.82rem;
  line-height: 1.45;
  color: var(--ls-ink);
  white-space: pre-wrap;
  word-break: break-word;
}

.ls-wa__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  margin-top: 0.15rem;
  padding: 0.75rem 1rem;
  border: none;
  border-radius: var(--ls-radius);
  background: var(--ls-black);
  color: var(--ls-yellow);
  font-family: var(--ls-display);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease;
}

.ls-wa__submit:hover:not(:disabled) {
  background: var(--ls-black-3);
}

.ls-wa__submit:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.ls-wa__submit:focus-visible {
  outline: 2px solid var(--ls-yellow);
  outline-offset: 2px;
}

@media (max-width: 520px) {
  .ls-wa__fab {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
  }

  .ls-wa__panel {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: calc(var(--ls-wa-fab-size) + 0.65rem + env(safe-area-inset-bottom, 0px));
    width: min(100vw - 1.5rem, 22.5rem);
    max-height: min(72vh, 30rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ls-wa__fab,
  .ls-wa__submit,
  .ls-wa__chip {
    transition: none;
  }

  .ls-wa__fab:hover {
    transform: none;
  }
}
