*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; scroll-padding-top: 150px; }
@media (max-width: 768px) { html { scroll-padding-top: 104px; } }
body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #1c1c1c;
  background: #fff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
a { text-decoration: none; color: inherit; }

/* ACCESSIBILITY */
.skip-nav {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--gold);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 4px 4px;
  font-size: 14px;
  font-weight: 500;
  transition: top 0.2s;
}
.skip-nav:focus {
  top: 0;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
*:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
picture { display: block; width: 100%; height: 100%; }

:root {
  --dark:    #12212f;
  --navy:    #1b2f42;
  --text:    #1c1c1c;
  --muted:   #6b7280;
  --light:   #f7f6f3;
  --gold:    #b8965a;
  --gold-deep:#7d6125;
  --white:   #ffffff;
  --serif:   'Playfair Display', Georgia, serif;
  --sans:    'Jost', sans-serif;
  --radius:  3px;
}

/* NAVBAR */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 56px;
  height: 140px;
  transition: box-shadow 0.45s ease;
  background-color: transparent;
}
/* Frosted glass on a pseudo-element so #navbar itself never gets backdrop-filter.
   A backdrop-filter on the navbar would create a new stacking context, trapping
   position:fixed children (the mobile menu overlay) and breaking full-screen coverage. */
#navbar::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: background-color 0.45s ease, backdrop-filter 0.45s ease;
}
#navbar.is-top {
  box-shadow: none;
}
#navbar.is-scrolled {
  box-shadow: 0 2px 16px rgba(0,0,0,0.25);
}
#navbar.is-scrolled::before {
  background-color: #12212f;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.nav-logo {
  display: flex;
  align-items: center;
}
.nav-logo-svg {
  height: 126px;
  width: auto;
}
.nav-logo-name { display: none; }
.nav-logo-sub { display: none; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--white); }
.nav-cta a {
  background: var(--gold);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: var(--radius);
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: background 0.3s;
}
.nav-cta a:hover { background: #a6813e; }
/* nav CTA rendered as a Fillout popup trigger (proprietari page) */
.nav-cta .nav-fillout button, .nav-cta .nav-fillout a, .nav-cta .nav-fillout > div[role="button"] {
  all: unset !important; box-sizing: border-box !important; display: inline-flex !important; align-items: center !important;
  background: var(--gold) !important; color: var(--white) !important; padding: 10px 24px !important;
  border-radius: var(--radius) !important; font: 500 14px/1.4 var(--sans) !important; letter-spacing: 0.04em !important;
  cursor: pointer !important; transition: background 0.3s !important;
}
.nav-cta .nav-fillout button:hover, .nav-cta .nav-fillout a:hover, .nav-cta .nav-fillout > div[role="button"]:hover { background: #a6813e !important; }

/* HAMBURGER (mobile) */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* HERO SLIDESHOW */
#hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 600px;
}
.hero-slideshow {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.6s ease-in-out;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 28s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  0%   { transform: scale(1); }
  100% { transform: scale(1.08); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(18,33,47,0.6) 0%, rgba(18,33,47,0.4) 40%, rgba(18,33,47,0.35) 60%, rgba(18,33,47,0.75) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 0 24px;
  animation: heroFade 1.2s ease-out;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Slide location label */
.hero-location {
  position: absolute;
  bottom: 80px;
  left: 56px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.8s ease 0.4s;
}
.hero-location.visible { opacity: 1; }
.hero-location-pin {
  width: 14px;
  height: 14px;
  stroke: rgba(255,255,255,0.5);
  stroke-width: 2;
  fill: none;
}
.hero-location-text {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}

/* Slide indicators */
.hero-indicators {
  position: absolute;
  bottom: 80px;
  right: 56px;
  z-index: 3;
  display: flex;
  gap: 2px;
  align-items: center;
}
.hero-dot {
  width: 44px;            /* border-box: 32px bar + 6px side padding */
  height: 27px;           /* border-box: 3px bar + 12px vertical padding (larger hit area) */
  padding: 12px 6px;
  background-color: rgba(255,255,255,0.3);
  background-clip: content-box;
  border-radius: 3px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease, height 0.22s ease, width 0.22s ease;
}
.hero-dot.active { background-color: rgba(255,255,255,0.9); height: 28px; }
.hero-dot:hover { background-color: rgba(255,255,255,0.7); height: 31px; width: 52px; }
.hero-dot.active:hover { background-color: rgba(255,255,255,0.95); }
.hero-dot:focus-visible { outline-offset: 4px; }
.hero-eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  text-shadow: 1px 2px 4px rgba(0,0,0,0.3);
}
.hero-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 48px;
  text-shadow: 2px 3px 6px rgba(0,0,0,0.35);
}
.hero-title em {
  font-style: italic;
  color: var(--gold);
  text-shadow: 2px 3px 6px rgba(0,0,0,0.35);
}

/* Search bar */
.hero-search {
  position: relative;
  display: flex;
  align-items: stretch;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 56px;
  box-shadow: 0 14px 44px rgba(0,0,0,0.20);
  max-width: 820px;
  width: 100%;
}
/* single-tap CTA shown instead of the full search bar on phones */
.sf-mobile-cta { display: none; }
/* frosted glass on a pseudo-element so .hero-search itself has no backdrop-filter
   (a backdrop-filter ancestor would trap position:fixed popups, breaking the mobile sheet) */
.hero-search::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}
.sf {
  position: relative;
  flex: 1;
  display: flex;
  min-width: 0;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.sf:first-of-type { border-top-left-radius: 56px; border-bottom-left-radius: 56px; }
.sf:last-of-type { border-right: none; }

.sf-trigger {
  position: relative;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 15px 22px;
  background: transparent;
  border: none;
  border-radius: inherit;
  cursor: pointer;
  font-family: var(--sans);
  text-align: center;
  transition: background 0.25s;
}
.sf-trigger:hover { background: rgba(255,255,255,0.07); }
.sf-trigger[aria-expanded="true"] { background: rgba(255,255,255,0.12); }
.sf-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.sf-value {
  display: block;
  max-width: 100%;
  font-size: 14px;
  font-weight: 400;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sf-value.is-placeholder { color: rgba(255,255,255,0.55); font-weight: 300; }

/* "Ospiti" cell: inline +/- stepper instead of a popup */
.sf--stepper { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 7px; padding: 14px 22px; cursor: default; }
.sf--stepper .sf-label { font-family: var(--sans); font-size: 10px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.sf-stepper { display: flex; align-items: center; gap: 12px; }
.sf-step {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px; border-radius: 50%;
  background: transparent; border: 1px solid rgba(255,255,255,0.4); color: var(--white);
  cursor: pointer; padding: 0;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.sf-step:hover { background: rgba(255,255,255,0.14); border-color: rgba(255,255,255,0.8); }
.sf-step:active { transform: scale(0.92); }
.sf-step:disabled { opacity: 0.3; cursor: not-allowed; }
.sf-step svg { width: 12px; height: 12px; stroke: currentColor; stroke-width: 2.2; fill: none; stroke-linecap: round; stroke-linejoin: round; pointer-events: none; }
.sf--stepper .sf-value { font-size: 14px; font-weight: 400; color: var(--white); min-width: 70px; text-align: center; }
.sf--stepper .sf-value.is-placeholder { color: rgba(255,255,255,0.6); font-weight: 300; }

/* trailing icons on triggers */
.sf-trigger::after {
  content: '';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  opacity: 0.5;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  pointer-events: none;
}
.sf-trigger[aria-haspopup="listbox"]::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  transition: transform 0.25s;
}
.sf-trigger[aria-haspopup="listbox"][aria-expanded="true"]::after { transform: translateY(-50%) rotate(180deg); }
.sf-trigger[aria-haspopup="dialog"]::after {
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='18' height='18' rx='2'/%3E%3Cpath d='M16 2v4M8 2v4M3 10h18'/%3E%3C/svg%3E");
}

.sf-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  background: var(--gold);
  border: none;
  border-radius: 0 56px 56px 0;
  cursor: pointer;
  transition: background 0.3s;
  flex-shrink: 0;
}
.sf-btn:hover { background: #a6813e; }
.sf-btn svg {
  width: 20px;
  height: 20px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Search popups */
.sf-pop {
  position: absolute;
  left: 0;
  z-index: 200;
  background: rgba(16,29,40,0.97);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 14px;
  box-shadow: 0 26px 64px rgba(0,0,0,0.5);
}
.sf-pop[hidden] { display: none; }
.sf-pop.opens-up { bottom: calc(100% + 14px); animation: sfPopUp 0.2s ease; }
.sf-pop.opens-down { top: calc(100% + 14px); animation: sfPopDown 0.2s ease; }
@keyframes sfPopUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes sfPopDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sf-pop-cal {
  width: 320px;
  max-width: calc(100vw - 40px);
  padding: 16px;
}
.sf-pop-list {
  min-width: 100%;
  width: max-content;
  max-width: 280px;
  max-height: 320px;
  overflow-y: auto;
  padding: 8px;
}
.sf-pop-list::-webkit-scrollbar { width: 6px; }
.sf-pop-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.2); border-radius: 3px; }

/* option rows */
.opt {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  background: transparent;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 13.5px;
  color: rgba(255,255,255,0.85);
  text-align: left;
  transition: background 0.15s, color 0.15s;
}
.opt:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.opt[aria-selected="true"] { color: var(--gold); }
.opt-label { flex: 1; white-space: nowrap; }
.opt-check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  stroke: var(--gold);
  stroke-width: 2.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0;
  transition: opacity 0.15s;
}
.opt[aria-selected="true"] .opt-check { opacity: 1; }

/* calendar */
.cal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cal-title { font-size: 14px; font-weight: 500; color: var(--white); letter-spacing: 0.02em; }
.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.2s;
}
.cal-nav:hover:not(:disabled) { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.35); }
.cal-nav:disabled { opacity: 0.22; cursor: default; }
.cal-nav svg { pointer-events: none; display: block; }
.cal-weekdays { display: grid; grid-template-columns: repeat(7,1fr); margin-bottom: 6px; }
.cal-weekdays span {
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  padding: 4px 0;
}
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); }
.cal-day {
  aspect-ratio: 1;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-family: var(--sans);
  font-size: 13px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}
.cal-day.is-empty { visibility: hidden; pointer-events: none; }
.cal-day.is-disabled { color: rgba(255,255,255,0.18); cursor: default; }
.cal-day:not(.is-disabled):not(.is-empty):not(.is-start):not(.is-end):hover { background: rgba(255,255,255,0.12); }
.cal-day.is-today:not(.is-start):not(.is-end) { box-shadow: inset 0 0 0 1px rgba(255,255,255,0.3); }
.cal-day.in-range { background: rgba(184,150,90,0.28); border-radius: 0; }
.cal-day.is-start, .cal-day.is-end { background: var(--gold); color: #fff; font-weight: 600; }
.cal-day.is-start { border-radius: 8px 0 0 8px; }
.cal-day.is-end { border-radius: 0 8px 8px 0; }
.cal-day.is-start.is-end { border-radius: 8px; }
.cal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cal-clear {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.6);
  font-family: var(--sans);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}
.cal-clear:hover { color: var(--white); }
.cal-hint { font-size: 11px; color: rgba(255,255,255,0.4); }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.scroll-track {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 0.4; }
  50%     { opacity: 1; }
}

/* EDITORIAL */
#editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100svh;
  max-height: 100svh;
  min-height: 600px;
  overflow: hidden;
}
.ed-text {
  padding: 50px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 20px;
}
.ed-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 24px;
  color: var(--dark);
}
.ed-title em { font-style: italic; }
.ed-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 480px;
}
.btn-solid {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--dark);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.3s;
  width: fit-content;
}
.btn-solid:hover { background: var(--navy); }
.btn-solid svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.ed-img {
  position: relative;
  overflow: hidden;
}
.ed-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.8s ease;
}
.ed-img:hover img { transform: scale(1.04); }

/* DESTINATIONS CAROUSEL */
#destinations {
  background: var(--dark);
  padding: 80px 0 80px 56px;
  overflow: hidden;
  margin-top: -1px;
}
.dest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  padding-right: 56px;
}
.dest-header h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}
.dest-header h2 em { font-style: italic; color: var(--gold); }
.dest-nav {
  display: flex;
  gap: 12px;
}
.dest-nav button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}
.dest-nav button:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.4);
}
.dest-nav button svg {
  width: 18px;
  height: 18px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.dest-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-right: 56px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.dest-track::-webkit-scrollbar { display: none; }

.dest-card {
  flex: 0 0 340px;
  height: 420px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
  cursor: pointer;
  scroll-snap-align: start;
}
.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.dest-card:hover img { transform: scale(1.06); }
.dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.05) 50%);
  pointer-events: none;
}
.dest-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.45);
}
.dest-card-name {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.55);
}
.dest-card-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.9);
  font-weight: 300;
  line-height: 1.5;
}
.dest-card-count {
  font-size: 11px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 10px;
}
.dest-card-count[data-type="experience"] {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

/* ──────────────────────────────────────────────────
   Hover-reveal "scheda" — fact sheet che emerge dalla
   card al passaggio del mouse. Testo sempre nel DOM
   (crawlabile SEO), rivelato con micro-animazione.
   ────────────────────────────────────────────────── */
.dest-card-overlay { transition: background 0.5s ease; }
.dest-card:hover .dest-card-overlay,
.dest-card:focus-within .dest-card-overlay {
  background: linear-gradient(to top,
    rgba(7,12,18,0.95) 0%,
    rgba(7,12,18,0.90) 42%,
    rgba(7,12,18,0.58) 70%,
    rgba(7,12,18,0.18) 100%);
}
.dest-card-info { transition: transform 0.5s cubic-bezier(.4,0,.2,1); }
.dest-card-facts {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin: 0;
  transition:
    max-height 0.55s cubic-bezier(.4,0,.2,1),
    opacity 0.4s ease 0.05s,
    margin 0.5s cubic-bezier(.4,0,.2,1);
}
.dest-card:hover .dest-card-facts,
.dest-card:focus-within .dest-card-facts {
  max-height: 220px;
  opacity: 1;
  margin: 16px 0 4px;
}
.dest-card-facts dl { margin: 0; padding: 0; }
.dest-card-fact {
  display: flex;
  gap: 14px;
  padding: 9px 0;
  border-top: 1px solid rgba(255,255,255,0.22);
}
.dest-card-fact:first-child { border-top: none; padding-top: 2px; }
.dest-card-fact dt {
  flex: 0 0 80px;
  margin: 0;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #e6c78c;
  padding-top: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
.dest-card-fact dd {
  margin: 0;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.5;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
/* il "Scopri le case" guadagna una sottolineatura animata al hover */
.dest-card-count {
  display: inline-block;
  position: relative;
}
.dest-card-count::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.45s cubic-bezier(.4,0,.2,1);
}
.dest-card:hover .dest-card-count::after,
.dest-card:focus-within .dest-card-count::after { width: 100%; }
@media (hover: none) {
  /* Su touch: niente hover. Mostriamo la scheda in modo compatto
     e statico (sempre leggibile, niente testo extra invasivo). */
  .dest-card-facts { max-height: 220px; opacity: 1; margin: 14px 0 2px; }
  .dest-card-fact { padding: 6px 0; }
  .dest-card-overlay {
    background: linear-gradient(to top,
      rgba(7,12,18,0.94) 0%,
      rgba(7,12,18,0.88) 44%,
      rgba(7,12,18,0.55) 72%,
      rgba(7,12,18,0.16) 100%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .dest-card-facts, .dest-card-overlay, .dest-card-count::after,
  .dest-card-info, .dest-card img { transition: none; }
}

/* DISCOVER GRID */
#discover {
  background: #1e3448;
  padding: 80px 56px;
}
.discover-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 48px;
  text-align: center;
}
.discover-title em { font-style: italic; color: var(--gold); }
.d-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 20px;
}
.d-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.d-card img { transition: transform 0.7s ease; }
.d-card:hover img { transform: scale(1.06); }
.d-card:first-child { grid-row: 1 / 3; }
.d-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
  pointer-events: none;
}
.d-card-label {
  position: absolute;
  bottom: 24px;
  left: 24px;
  font-family: var(--serif);
  font-size: 20px;
  color: var(--white);
  font-weight: 400;
  z-index: 2;
}

/* GIFT CARDS */
#gift {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
  background: #f0ece4;
  padding: 80px 64px;
}
.gift-text h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--dark);
}
.gift-text h2 em { font-style: italic; }
.gift-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 32px;
}
.gift-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-card {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  height: 240px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.g-card img { transition: transform 0.6s ease; }
.g-card:hover img { transform: scale(1.05); }
.g-card-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: rgba(18,33,47,0.85);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.04em;
}

/* OWNERS */
#owners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}
.owners-text {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #0e1c28;
}
.owners-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 16px;
}
.owners-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.75;
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 0.3s;
  width: fit-content;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}
.btn-outline svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
}
.owners-img {
  overflow: hidden;
  position: relative;
  min-height: 400px;
}
.owners-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s ease;
}
.owners-img:hover img { transform: scale(1.04); }

/* PARTNERS STRIP — continuous horizontal marquee (home + proprietari) */
.partners { background: var(--light); padding: 46px 0; border-top: 1px solid rgba(0,0,0,0.05); border-bottom: 1px solid rgba(0,0,0,0.05); overflow: hidden; }
.partners-label { display: block; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 24px 26px; }
.partners-marquee {
  overflow: hidden; width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.partners-marquee-inner { display: flex; width: max-content; animation: partnersMarq 36s linear infinite; }
.partners-track { display: flex; align-items: center; gap: 56px; padding-right: 56px; flex-shrink: 0; }
.partners-marquee:hover .partners-marquee-inner { animation-play-state: paused; }
@keyframes partnersMarq { to { transform: translateX(-50%); } }
.partners-marquee .pl { display: inline-flex; align-items: center; justify-content: center; line-height: 1; flex-shrink: 0; }
.partners-marquee .pl img { height: 38px; width: auto; max-width: 170px; object-fit: contain; opacity: 0.78; filter: saturate(0.55); transition: opacity 0.35s ease, filter 0.35s ease; }
.partners-marquee .pl:hover img { opacity: 1; filter: saturate(1); }
.partners-marquee .pl-name { display: none; font-family: var(--serif); font-size: clamp(15px, 1.7vw, 20px); color: #8a929a; transition: color 0.3s; }
.partners-marquee .pl--txt .pl-name { display: inline; }
.partners-marquee .pl--txt:hover .pl-name { color: var(--dark); }
@media (max-width: 1024px) { .partners { padding: 36px 0; } .partners-track { gap: 44px; padding-right: 44px; } .partners-marquee-inner { animation-duration: 28s; } }
@media (max-width: 768px) { .partners { padding: 28px 0; } .partners-track { gap: 36px; padding-right: 36px; } .partners-marquee .pl img { height: 30px; max-width: 130px; } .partners-marquee-inner { animation-duration: 22s; } }

/* FOOTER */
footer {
  background: #091219;
  color: rgba(255,255,255,0.55);
  padding: 72px 56px 40px;
}
.ft-top {
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 1.05fr 0.85fr 1.5fr;
  gap: 40px;
  margin-bottom: 48px;
  align-items: start;
}
.ft-logo {
  height: 80px;
  width: auto;
  margin-bottom: 16px;
  object-fit: contain;
}
.ft-contact { font-size: 13px; line-height: 2; }
.ft-contact a:hover { color: var(--white); }
.ft-col h4 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.ft-col h4:not(:first-of-type) { margin-top: 32px; }
.ft-col a {
  display: block;
  font-size: 13px;
  line-height: 2.2;
  transition: color 0.25s;
}
.ft-col a:hover { color: var(--white); }

/* Destinazioni: link su due sotto-colonne per non allungare il footer */
.ft-dest { column-count: 2; column-gap: 28px; }
.ft-dest h4 { column-span: all; }
.ft-dest a { break-inside: avoid; }

/* footer Fillout-popup triggers: make the embed button blend in with the text links */
.ft-col .ft-fillout { display: block; line-height: 2.2; }
.ft-col .ft-fillout button,
.ft-col .ft-fillout a,
.ft-col .ft-fillout > div[role="button"] {
  all: unset !important;
  box-sizing: border-box !important;
  display: block !important;
  font: 400 13px/2.2 var(--sans) !important;
  color: rgba(255,255,255,0.55) !important;
  text-align: left !important;
  white-space: normal !important;
  cursor: pointer !important;
  transition: color 0.25s !important;
}
.ft-col .ft-fillout button:hover,
.ft-col .ft-fillout a:hover,
.ft-col .ft-fillout > div[role="button"]:hover { color: var(--white) !important; }

.ft-soon {
  display: block;
  font-size: 13px;
  line-height: 2.2;
  color: rgba(255,255,255,0.34);
}
.ft-soon em {
  font-style: normal;
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  margin-left: 4px;
}
.ft-newsletter {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 30px;
}
.ft-newsletter h4 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--white);
  margin-bottom: 10px;
}
.ft-newsletter p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}
.ft-newsletter-form {
  display: flex;
}
.ft-newsletter-form input[type="email"] {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-right: none;
  border-radius: 3px 0 0 3px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
}
.ft-newsletter-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.ft-newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--white);
  padding: 12px 20px;
  border-radius: 0 3px 3px 0;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
}
.ft-newsletter-form button:hover { background: #a6813e; }
.ft-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 12px;
  font-size: 11px;
  line-height: 1.5;
  color: rgba(255,255,255,0.35);
}
.ft-gdpr input { margin-top: 3px; }
.ft-div {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 24px;
}
.ft-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}
.ft-copy { font-size: 12px; }
.ft-copy a:hover { color: var(--white); }
.ft-legal {
  display: flex;
  gap: 24px;
  font-size: 12px;
}
.ft-legal a:hover { color: var(--white); }
.ft-updated {
  width: 100%;
  margin: 16px 0 0;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--muted);
  opacity: 0.75;
}
.ft-updated time {
  white-space: nowrap;
  color: var(--gold-deep);
  font-weight: 400;
}

/* ──────────────────────────────────────────────────
   "Filo dorato" — sintesi destinazione
   Sempre visibile, niente box né intestazione: filo
   d'oro verticale sfumato ai capi, etichetta in
   Playfair corsivo oro, testo in serif. È la prima
   cosa che si vede sulla pagina.
   ────────────────────────────────────────────────── */
.keyfacts {
  position: relative;
  max-width: 720px;
  margin: 52px auto 44px;
  padding-left: 30px;
  font-family: var(--serif);
}
.keyfacts::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  bottom: 2px;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--gold) 14%, var(--gold) 86%, transparent);
}
.keyfacts > div {
  margin-bottom: 26px;
}
.keyfacts > div:last-child {
  margin-bottom: 0;
}
.keyfacts dt {
  display: inline;
  font-family: var(--serif);
  font-style: italic;
  font-size: 16.5px;
  color: var(--gold-deep);
}
.keyfacts dt::after {
  content: " · ";
  font-style: normal;
  color: var(--gold);
}
.keyfacts dd {
  display: inline;
  margin: 0;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.74;
  color: var(--dark);
  text-wrap: pretty;
}
@media (max-width: 768px) {
  .keyfacts { margin: 40px 20px 32px; padding-left: 22px; }
  .keyfacts dt { font-size: 15.5px; }
  .keyfacts dd { font-size: 16.5px; }
}

/* ──────────────────────────────────────────────────
   Comparison table — editorial guide style
   Esce dal contenitore .prose (720px) per respirare:
   breakout centrato sul viewport fino a 1080px
   ────────────────────────────────────────────────── */
.comp-table-wrap {
  margin: 48px 0;
  overflow-x: auto;
  border: 1px solid rgba(0,0,0,0.06);
}
.prose > .comp-table-wrap {
  width: min(1080px, 92vw);
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .prose > .comp-table-wrap { width: 100%; left: 0; transform: none; }
}
.comp-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
  font-family: var(--sans);
  font-size: 14px;
  background: var(--white);
}
.comp-table thead {
  background: var(--dark);
  color: var(--white);
}
.comp-table th {
  padding: 16px 16px;
  text-align: left;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  vertical-align: middle;
}
.comp-table td {
  padding: 16px 16px;
  text-align: left;
  border-bottom: 1px solid var(--light);
  vertical-align: top;
  color: var(--text);
  font-weight: 300;
  line-height: 1.55;
}
.comp-table tbody tr:nth-child(even) td { background: rgba(247,246,243,0.45); }
.comp-table tbody tr:hover td { background: var(--light); }
.comp-table td a {
  color: var(--gold-deep);
  font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.comp-table td a:hover { border-bottom-color: var(--gold); }
.comp-table td strong { font-weight: 500; color: var(--dark); }
@media (max-width: 768px) {
  .comp-table { font-size: 13.5px; min-width: 640px; }
  .comp-table th, .comp-table td { padding: 12px 12px; }
  .comp-table-wrap { position: relative; }
  .comp-table-wrap::after {
    content: "scorri →";
    position: absolute;
    top: -22px;
    right: 4px;
    font-family: var(--sans);
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 0.06em;
    pointer-events: none;
  }
}

/* ──────────────────────────────────────────────────
   Stat tiles — numeri grandi serif, etichetta sans
   Usato in chi-siamo per i numeri di Propertize
   ────────────────────────────────────────────────── */
.stat-tiles {
  list-style: none;
  padding: 0;
  margin: 28px 0 8px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 28px 32px;
}
.stat-tiles li {
  padding: 0;
  border-top: 1px solid var(--gold);
  padding-top: 14px;
}
.stat-tiles .stat-num {
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.05;
  color: var(--dark);
  letter-spacing: -0.01em;
}
.stat-tiles .stat-num em { font-style: italic; color: var(--gold-deep); }
.stat-tiles .stat-label {
  display: block;
  margin-top: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.4;
}
@media (max-width: 600px) {
  .stat-tiles { grid-template-columns: repeat(2, 1fr); gap: 22px 18px; }
  .stat-tiles .stat-num { font-size: 26px; }
}

/* TESTIMONIALS */
#testimonials {
  background: var(--light);
  padding: 80px 56px;
}
.test-header {
  text-align: center;
  margin-bottom: 48px;
}
.test-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
.test-title em { font-style: italic; color: var(--gold); }
.test-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.test-card {
  background: var(--white);
  border-radius: 6px;
  padding: 36px 32px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.test-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.test-quote {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  flex: 1;
}
.test-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border-top: 1px solid rgba(0,0,0,0.06);
  padding-top: 16px;
}
.test-name {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
}
.test-location {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.02em;
}

/* FAQ */
#faq {
  background: var(--white);
  padding: 80px 56px;
}
.faq-header {
  text-align: center;
  margin-bottom: 48px;
}
.faq-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
.faq-title em { font-style: italic; color: var(--gold); }
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.faq-question {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  padding: 24px 0;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 16px;
}
.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  font-size: 16px;
  line-height: 1.85;
  color: var(--text);
  padding: 0 0 26px;
  max-width: 680px;
}

/* SOCIAL LINKS */
.ft-social {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.ft-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  transition: border-color 0.3s, background 0.3s;
}
.ft-social a:hover {
  border-color: var(--gold);
  background: rgba(184,150,90,0.1);
}
.ft-social svg {
  width: 16px;
  height: 16px;
  stroke: rgba(255,255,255,0.55);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s;
}
.ft-social a:hover svg { stroke: var(--gold); }

/* MOBILE MENU */
.nav-hamburger {
  background: none;
  border: none;
  padding: 0;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* REVEAL ANIMATIONS: only hidden when JS is active, so content stays visible if main.js fails */
.reveal { transition: opacity 0.7s ease, transform 0.7s ease; }
.js .reveal { opacity: 0; transform: translateY(28px); }
.js .reveal.visible { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

@keyframes sfSheetIn {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion: respect user preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .dest-track, .op-reviews-track, .op-steps-list { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; }
  .reveal, .reveal.visible { transition: none; }
  .hero-slide img { animation: none; }
  .scroll-track { animation: none; }
  .sf-pop.opens-up, .sf-pop.opens-down { animation: none; }
  .hero-content { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  #navbar { padding: 0 32px; }
  .nav-links { gap: 18px; }
  #destinations { padding: 60px 0 60px 32px; }
  .dest-header { padding-right: 32px; }
  .dest-track { padding-right: 32px; }
  #discover { padding: 60px 32px; }
  .ed-text { padding: 60px 40px; }
  #gift { padding: 60px 40px; }
  .owners-text { padding: 60px 40px; }
  footer { padding: 56px 32px 36px; }
  .ft-top { grid-template-columns: 1fr 1fr 1fr; gap: 36px; }
  .ft-brand { grid-column: 1 / -1; }
  .ft-newsletter { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  #navbar { padding: 0 22px; height: 96px; }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 1100;
    padding: clamp(48px, 12vh, 80px) 32px clamp(32px, 6vh, 40px);
    overflow-y: auto;
  }
  .nav-links.mobile-open { display: flex; }
  .nav-links.mobile-open a { font-size: 22px; color: var(--white); letter-spacing: 0.02em; }
  .nav-links.mobile-open li { width: 100%; text-align: center; }
  .nav-links.mobile-open .nav-cta { margin-top: 8px; }
  .nav-links.mobile-open .nav-cta a { font-size: 16px; display: block; padding: 14px 32px; }
  body.nav-open { overflow: hidden; }
  .nav-logo-svg { height: 84px; }
  .nav-hamburger { display: flex; position: relative; z-index: 1200; width: 40px; height: 40px; align-items: center; justify-content: center; }

  /* on phones the bottom decorations (location label, slide dots, "Scorri" cue)
     just add clutter — hide them so the hero photo + CTA breathe */
  .hero-location, .hero-indicators, .hero-scroll { display: none; }

  /* on phones the search bar collapses to one tap that opens the booking engine */
  .hero-search { display: block; border-radius: 56px; max-width: 340px; }
  .hero-search .sf, .hero-search .sf-btn { display: none; }
  .sf-mobile-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 17px 24px;
    background: transparent;
    border: none;
    border-radius: inherit;
    color: var(--white);
    font-family: var(--sans);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
  }
  .sf-mobile-cta svg {
    width: 17px;
    height: 17px;
    stroke: var(--gold);
    stroke-width: 2.2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
  }

  /* popups become a full-width bottom sheet on mobile */
  .sf-pop,
  .sf-pop.opens-up,
  .sf-pop.opens-down {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    width: auto;
    min-width: 0;
    max-width: none;
    max-height: 82vh;
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    z-index: 300;
    animation: sfSheetIn 0.24s ease;
  }
  .sf-pop-cal { width: auto; padding: 18px 16px calc(18px + env(safe-area-inset-bottom, 0px)); }
  .sf-pop-list { padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px)); }
  .opt { padding: 13px 14px; font-size: 15px; }
  .opt-check { width: 16px; height: 16px; }
  .cal-day { font-size: 15px; }
  .cal-nav { width: 36px; height: 36px; }
  .cal-clear, .cal-hint { font-size: 13px; }

  #editorial { grid-template-columns: 1fr; height: auto; max-height: none; min-height: 0; }
  .ed-text { padding: 56px 24px 32px; order: 1; }
  .ed-img { min-height: 280px; max-height: 56vw; order: 2; }

  #destinations { padding: 48px 0 48px 16px; }
  .dest-header { padding-right: 16px; flex-direction: column; align-items: flex-start; gap: 20px; }
  .dest-track { padding-right: 16px; gap: 12px; }
  .dest-card { flex: 0 0 85vw; max-width: 85vw; height: 420px; }

  #discover { padding: 48px 24px; }
  .d-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .d-card:first-child { grid-row: auto; grid-column: 1 / 3; }
  .d-card { height: 200px; }
  .d-card:first-child { height: 260px; }

  #gift { grid-template-columns: 1fr; padding: 48px 24px; gap: 36px; }
  .gift-cards { grid-template-columns: 1fr; }
  .g-card { height: 200px; }

  #owners { grid-template-columns: 1fr; }
  .owners-text { padding: 48px 24px; }
  .owners-actions {
    flex-direction: column; align-items: flex-start;
    align-self: flex-start; /* anchor the action block to the left edge of the column */
    max-width: none; gap: 12px;
    margin-left: 0; margin-right: auto;
  }
  .owners-actions > * { align-self: flex-start !important; margin-left: 0 !important; margin-right: auto !important; }
  /* primary (gold) is the bigger, more prominent button */
  .owners-actions .op-fillout { display: inline-block; }
  .owners-actions .op-fillout button,
  .owners-actions .op-fillout a,
  .owners-actions .op-fillout > div[role="button"] {
    width: auto !important; max-width: none !important;
    padding: 19px 32px !important; font-size: 14px !important;
    justify-content: flex-start !important; gap: 10px !important;
    margin: 0 !important;
  }
  /* secondary (outline) is smaller / less prominent */
  .owners-actions .btn-outline {
    width: auto; max-width: none; padding: 13px 24px;
    font-size: 11.5px; justify-content: flex-start;
    margin: 0;
  }
  .owners-img { min-height: 280px; }

  #testimonials { padding: 48px 24px; }
  .test-grid { grid-template-columns: 1fr; gap: 20px; }
  .test-card { padding: 28px 22px; }
  .test-quote { font-size: 17px; line-height: 1.85; }
  .test-name { font-size: 15px; }

  #faq { padding: 48px 24px; }

  /* Mobile typography — minimum 16px for all reading text */
  .ed-body, .owners-sub { font-size: 18px; line-height: 1.85; }

  /* Destination card text */
  .dest-card-name { font-size: 24px; }
  .dest-card-desc { font-size: 14px; line-height: 1.5; color: rgba(255,255,255,0.8); }
  .dest-card-count { font-size: 13px; letter-spacing: 0.04em; }
  .dest-card-info { padding: 22px; }

  /* Discover (beyond stays) card label */
  .d-card-label { font-size: 18px; }

  /* Destinazioni hub page: single-column full-width grid on mobile */
  .destinations .dest-track {
    display: grid !important;
    grid-template-columns: 1fr !important;
    padding: 0 16px 60px !important;
    gap: 16px !important;
    overflow-x: visible !important;
  }
  .destinations .dest-card {
    flex: none;
    max-width: 100%;
    height: 360px;
    scroll-snap-align: none;
  }

  /* ---- FOOTER MOBILE ---- */
  footer { padding: 48px 20px 28px; }
  .ft-top {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: 36px 24px;
    margin-bottom: 36px;
  }
  /* brand: full width top row */
  .ft-brand { grid-column: 1 / -1; }
  .ft-logo { height: 90px; margin-bottom: 14px; }
  .ft-contact { font-size: 14px; line-height: 1.95; }
  .ft-social { margin-top: 20px; }
  .ft-social a { width: 44px; height: 44px; }
  /* link utili + collabora: 2 columns, middle row */
  .ft-col h4 { font-size: 12px; margin-bottom: 16px; }
  .ft-col a, .ft-soon { font-size: 15px; line-height: 2.3; }
  .ft-col .ft-fillout button,
  .ft-col .ft-fillout a,
  .ft-col .ft-fillout > div[role="button"] { font-size: 15px !important; line-height: 2.3 !important; }
  /* destinazioni: torna a colonna singola nel cell stretto */
  .ft-dest { column-count: 1; }
  /* newsletter: full width bottom row */
  .ft-newsletter { grid-column: 1 / -1; padding: 24px; }
  .ft-newsletter p { font-size: 14px; line-height: 1.65; margin-bottom: 14px; }
  .ft-newsletter-form { flex-direction: column; gap: 8px; }
  .ft-newsletter-form input[type="email"] {
    border-right: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    font-size: 16px;
    padding: 14px 16px;
    width: 100%;
  }
  .ft-newsletter-form button {
    border-radius: 4px;
    width: 100%;
    padding: 14px 20px;
    font-size: 13px;
  }
  .ft-gdpr { font-size: 12px; margin-top: 14px; }
  /* bottom legal: wrap on multiple lines */
  .ft-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
  .ft-legal { flex-wrap: wrap; gap: 10px 20px; font-size: 12px; }
}

@media (max-width: 480px) {
  .d-grid { grid-template-columns: 1fr; }
  .d-card:first-child { grid-column: 1; }
  .gift-cards { grid-template-columns: 1fr; }
  /* on smallest phones, single-column footer */
  .ft-top { grid-template-columns: 1fr; }
  .ft-newsletter { grid-column: 1; }
}

/* ============================================================
   STATIC PAGES (Chi Siamo)
   ============================================================ */
.page-header {
  background: #0e1c28;
  padding: 220px 56px 80px;     /* clear the 140px fixed navbar */
  text-align: center;
}
.page-header h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
}
.page-header h1 em { font-style: italic; color: var(--gold); }
/* Evita "vedove" tipografiche (poche parole orfane a fine riga) sui titoli */
.page-header h1, .page-header .ph-sub, .hero-title, .hero-sub,
.story-title, .ed-title, .op-hero-title, .op-cta-title, .op-h2,
.team-title, .discover-title, .owners-title, .test-title, .faq-title,
.story-sub, .op-cta-sub {
  text-wrap: balance;
}
.page-header .ph-sub {
  margin-top: 16px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

/* Story / philosophy (prose) */
.story {
  background: var(--white);
  padding: 96px 56px;
}
.story-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.25;
  color: var(--dark);
  text-align: center;
  max-width: 780px;
  margin: 0 auto 56px;
}
.cl-showcase + .story { padding-top: 44px; }
.story-title em { font-style: italic; }
.story-sub {
  font-family: var(--serif);
  font-size: clamp(20px, 1.7vw, 24px);
  font-weight: 500;
  color: var(--dark);
  line-height: 1.3;
  margin: 36px 0 14px;
}
.prose a { color: var(--gold-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose { max-width: 720px; margin: 0 auto; }
.prose p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 22px;
}
.prose p:last-child { margin-bottom: 0; }
.prose-lead {
  font-size: 19px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 28px;
}

/* Team */
.team {
  background: var(--light);
  padding: 96px 56px;
  text-align: center;
}
.team .eyebrow { color: var(--gold-deep); }
.team-title {
  font-family: var(--serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
  margin-bottom: 48px;
}
.team-title em { font-style: italic; }
.team-group {
  max-width: 1000px;
  margin: 0 auto 64px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 2;
  box-shadow: 0 18px 50px rgba(0,0,0,0.12);
}
.team-group img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.founders {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}
.founder { text-align: left; }
.founder-photo {
  aspect-ratio: 4 / 5;
  border-radius: 8px;
  overflow: hidden;
  background: var(--navy);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform 0.7s ease; }
.founder:hover .founder-photo img { transform: scale(1.05); }
.founder figcaption { margin-top: 16px; }
.founder figcaption h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  color: var(--dark);
  line-height: 1.25;
}
.founder-role {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.founder-bio {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--muted);
}

/* Instagram CTA */
.ig-cta {
  background: var(--dark);
  padding: 96px 56px;
  text-align: center;
}
.ig-cta .ig-icon {
  display: block;
  width: 46px;
  height: 46px;
  margin: 0 auto 22px;
  stroke: var(--gold);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.ig-cta .eyebrow { color: var(--gold); }
.ig-cta h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  line-height: 1.2;
  color: var(--white);
  margin-bottom: 14px;
}
.ig-cta h2 em { font-style: italic; color: var(--gold); }
.ig-cta p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.55);
  max-width: 460px;
  margin: 0 auto 32px;
}

@media (max-width: 1024px) {
  .page-header { padding: 196px 32px 56px; }
  .story { padding: 72px 32px; }
  .team { padding: 72px 32px; }
  .team-group { margin-bottom: 48px; }
  .founders { grid-template-columns: repeat(2, 1fr); gap: 36px 28px; }
  .ig-cta { padding: 72px 32px; }
}
@media (max-width: 768px) {
  .page-header { padding: 158px 24px 48px; }
  .story { padding: 56px 24px; }
  .story-title { margin-bottom: 36px; }
  .prose p { font-size: 18px; line-height: 1.9; }
  .prose-lead { font-size: 18px; }
  .team { padding: 56px 24px; }
  .team-title { margin-bottom: 36px; }
  .team-group { aspect-ratio: 4 / 3; margin-bottom: 36px; }
  .founders { grid-template-columns: repeat(2, 1fr); gap: 30px 18px; }
  .ig-cta { padding: 56px 24px; }
}
@media (max-width: 520px) {
  .founders { grid-template-columns: 1fr; gap: 36px; }
  .founder-photo { aspect-ratio: 1; }   /* full-width: a wider crop reads better than tall portrait */
}

/* ============================================================
   OWNERS LANDING PAGE (/proprietari/)
   ============================================================ */

/* shared button variants */
.btn-gold {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold); color: var(--white);
  padding: 16px 34px; border-radius: var(--radius);
  font-size: 13px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  transition: background 0.3s; width: fit-content; border: 1px solid var(--gold);
}
.btn-gold:hover { background: #a6813e; border-color: #a6813e; }
.btn-gold svg { width: 16px; height: 16px; stroke: currentColor; stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: 16px 30px; border-radius: var(--radius);
  font-size: 13px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  border: 1px solid rgba(255,255,255,0.4); transition: background 0.3s, border-color 0.3s; width: fit-content;
}
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.7); }

/* shared headings */
.op-h2 { font-family: var(--serif); font-size: clamp(28px, 3.4vw, 46px); font-weight: 400; line-height: 1.18; color: var(--dark); }
.op-h2 em { font-style: italic; color: var(--gold-deep); }
.op-h2--light { color: var(--white); }
.op-h2--light em { color: var(--gold); }
.op-lead { font-size: 17px; line-height: 1.75; color: var(--muted); max-width: 680px; }
.op-lead--light { color: rgba(255,255,255,0.6); }
/* eyebrow with a short centred gold rule under it (centred section heads) */
.op-kicker { position: relative; }
.op-kicker::after { content: ''; display: block; width: 34px; height: 2px; background: var(--gold); margin: 12px auto 0; opacity: 0.85; }
.op-kicker--gold { color: var(--gold) !important; }
/* let <picture> wrappers fill their box so object-fit works */
.op-case-img > picture, .op-story-media > picture, .op-about-media > picture, .op-cta-media > picture { display: block; width: 100%; height: 100%; }

/* ---- HERO ---- */
.op-hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; }
.op-hero-bg, .op-hero-bg img { position: absolute; inset: 0; width: 100%; height: 100%; }
.op-hero-bg img { object-fit: cover; object-position: center; animation: heroZoom 30s ease-in-out infinite alternate; }
.op-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(14,28,40,0.6) 0%, rgba(14,28,40,0.4) 38%, rgba(14,28,40,0.42) 60%, rgba(14,28,40,0.82) 100%);
}
.op-hero-content {
  position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; justify-content: center;
  height: 100%; text-align: center; padding: 0 24px; animation: heroFade 1.2s ease-out;
}
.op-hero-eyebrow { font-family: var(--sans); font-size: 12px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 22px; text-shadow: 1px 2px 4px rgba(0,0,0,0.3); }
.op-hero-title { font-family: var(--serif); font-size: clamp(32px, 5.2vw, 64px); font-weight: 400; color: var(--white); line-height: 1.14; margin-bottom: 24px; text-shadow: 2px 3px 6px rgba(0,0,0,0.35); }
.op-hero-title em { font-style: italic; color: var(--gold); text-shadow: 2px 3px 6px rgba(0,0,0,0.35); }
.op-hero-sub { font-size: 18px; line-height: 1.65; color: rgba(255,255,255,0.85); max-width: 620px; margin-bottom: 36px; text-shadow: 1px 2px 5px rgba(0,0,0,0.3); }
.op-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.op-hero-trust {
  list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px;
  margin-top: 26px; font-size: 12px; letter-spacing: 0.04em; color: rgba(255,255,255,0.78);
  text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
}
.op-hero-trust li { position: relative; padding-left: 18px; }
.op-hero-trust li::before {
  content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-radius: 50%; border: 1.5px solid var(--gold);
}
.op-hero-phone { margin-top: 20px; font-size: 14px; color: rgba(255,255,255,0.7); }
.op-hero-phone a { color: var(--gold); }
.op-hero-phone a:hover { color: var(--white); }
.op-hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 110px; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(255,255,255,0) 0%, rgba(255,255,255,0.8) 78%, var(--white) 100%);
}
.op-hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 3; width: 24px; height: 38px; border: 1.5px solid rgba(18,33,47,0.35); border-radius: 12px; display: flex; justify-content: center; padding-top: 7px; }
.op-hero-scroll span { width: 3px; height: 7px; border-radius: 2px; background: rgba(18,33,47,0.5); animation: opScroll 1.8s ease-in-out infinite; }
@keyframes opScroll { 0%,100% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } }

/* ---- PARTNERS STRIP ---- */
.op-partners { background: var(--white); padding: 34px 0; border-bottom: 1px solid #ece9e2; overflow: hidden; }
.op-partners-label { display: block; text-align: center; font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); margin: 0 24px 22px; }
.op-partners-logos { list-style: none; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 28px 52px; max-width: 1100px; margin: 0 auto; }
.op-partners-logos img { height: 26px; width: auto; opacity: 0.55; filter: grayscale(1); transition: opacity 0.3s, filter 0.3s; }
.op-partners-logos li:hover img { opacity: 1; filter: grayscale(0); }
.op-partners-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px 30px; max-width: 1080px; margin: 0 auto; }
.op-partners-row span {
  position: relative; font-family: var(--serif); font-size: clamp(15px, 1.6vw, 19px); color: #9aa3ab;
  letter-spacing: 0.01em; transition: color 0.3s;
}
.op-partners-row span:hover { color: var(--dark); }
.op-partners-row span + span::before {
  content: ''; position: absolute; left: -16px; top: 50%; transform: translateY(-50%);
  width: 4px; height: 4px; border-radius: 50%; background: #d6d2c8;
}

/* ---- PERFORMANCE / PERKS ---- */
.op-perf { background: var(--white); padding: 104px 56px; }
.op-perf-head { max-width: 880px; margin: 0 auto 52px; text-align: center; }
.op-perf-head .op-h2 { margin: 0 auto 22px; }
.op-perf-head .op-lead { margin: 0 auto; }
/* ── Owner perks · essential editorial typography ────────────── */
.op-perks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 1120px; margin: 0 auto 60px; }
.op-perk { position: relative; padding: 6px 48px; text-align: left; }
.op-perk:first-child { padding-left: 0; }
.op-perk:last-child { padding-right: 0; }
.op-perk-ic { display: none; }
.op-perk h3 {
  position: relative;
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(26px, 2.5vw, 38px); line-height: 1.12;
  letter-spacing: -0.015em; color: var(--dark);
  margin: 0 0 18px; padding-top: 28px;
}
.op-perk h3::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 30px; height: 2px; background: var(--gold);
  transition: width 0.55s cubic-bezier(.2,.6,.2,1);
}
.op-perk:hover h3::before { width: 68px; }
.op-perk h3 em { font-style: italic; color: var(--gold-deep); }
.op-perk p { font-size: 16px; line-height: 1.8; color: var(--muted); margin: 0; max-width: 30ch; }
.op-perf-cta { text-align: center; }
.op-perf-cta .btn-gold { margin: 0 auto; }

/* ---- RISULTATI ---- */
.op-results { background: var(--dark); padding: 104px 56px; }
.op-results-head { max-width: 860px; margin: 0 auto 52px; text-align: center; }
.op-results-head .op-h2 { margin: 0 auto 22px; }
.op-results-head .op-lead { margin: 0 auto; }
.op-results-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 1180px; margin: 0 auto 32px; }
.op-case { display: flex; flex-direction: column; background: #16293a; border: 1px solid rgba(255,255,255,0.07); border-radius: 10px; overflow: hidden; transition: transform 0.4s ease, box-shadow 0.4s ease; }
.op-case:hover { transform: translateY(-4px); box-shadow: 0 18px 40px rgba(0,0,0,0.35); }
.op-case-img { position: relative; aspect-ratio: 10 / 7; overflow: hidden; flex-shrink: 0; }
.op-case-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.op-case:hover .op-case-img img { transform: scale(1.06); }
.op-case-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--white); font-family: var(--sans); font-size: 14px; font-weight: 700; padding: 7px 13px; border-radius: 999px; box-shadow: 0 6px 18px rgba(184,150,90,0.4); letter-spacing: 0.01em; }
.op-case-body { flex: 1; display: flex; flex-direction: column; padding: 22px 22px 24px; }
.op-case-name { font-family: var(--serif); font-size: 19px; font-weight: 500; color: var(--white); line-height: 1.25; }
.op-case-loc { margin-top: 5px; font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 0.02em; }
.op-case-figs { display: flex; align-items: stretch; gap: 12px; margin-top: auto; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.08); }
.op-case-fig { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 4px; }
.op-case-fig-lbl { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.op-case-before { font-size: 15px; color: rgba(255,255,255,0.45); text-decoration: line-through; }
.op-case-after { font-family: var(--serif); font-size: clamp(20px, 2vw, 26px); font-weight: 600; color: var(--gold); white-space: nowrap; }
.op-case-arrow { display: flex; align-items: center; justify-content: center; align-self: center; flex-shrink: 0; }
.op-case-arrow svg { width: 20px; height: 20px; stroke: var(--gold); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.op-results-disclaimer { max-width: 720px; margin: 0 auto; text-align: center; font-size: 12.5px; line-height: 1.6; color: rgba(255,255,255,0.72); }

/* ---- CASE STUDY IN EVIDENZA (video) ---- */
.op-story { background: var(--light); display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: stretch; }
.op-story-media { position: relative; overflow: hidden; min-height: 460px; background: #000; }
.op-story-media video, .op-story-vid { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }
/* centred play button overlaid on the poster; hidden once playback starts */
.op-play {
  position: absolute; inset: 0; margin: auto;
  width: 92px; height: 92px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.95); box-shadow: 0 14px 40px rgba(0,0,0,0.45);
  border: none; cursor: pointer; z-index: 3;
  transition: transform 0.3s cubic-bezier(.2,.6,.2,1), background 0.3s ease;
}
.op-play::before {
  content: ''; position: absolute; inset: -8px; border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.45); animation: opPlayPulse 2.4s ease-out infinite;
}
.op-play:hover { transform: scale(1.08); background: var(--gold); }
.op-play svg { width: 34px; height: 34px; margin-left: 5px; fill: var(--dark); transition: fill 0.3s ease; }
.op-play:hover svg { fill: var(--white); }
.op-story-media.playing .op-play, .op-story-media.playing .op-story-badge { display: none; }
@keyframes opPlayPulse {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.25); opacity: 0; }
}
.op-story-badge { position: absolute; top: 16px; left: 16px; z-index: 2; background: rgba(0,0,0,0.6); color: #fff; font-size: 10.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; padding: 7px 13px; border-radius: 3px; }
.op-story-text { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.op-story-text .eyebrow { color: var(--gold-deep); }
.op-story-text .op-h2 { margin-bottom: 22px; }
.op-story-place { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; }
.op-story-quote { position: relative; font-family: var(--serif); font-size: clamp(18px, 1.8vw, 22px); font-style: italic; line-height: 1.7; color: var(--text); margin-bottom: 16px; }
.op-story-author { font-size: 15px; color: var(--muted); margin-bottom: 28px; }
.op-story-author strong { color: var(--text); font-weight: 600; }

/* ---- OWNER REVIEWS ---- */
.op-reviews { background: var(--white); padding: 104px 56px; }
.op-reviews-head { text-align: center; margin-bottom: 48px; }
.op-reviews-head .eyebrow { color: var(--gold-deep); }
.op-reviews-head .op-h2 { max-width: 820px; margin: 0 auto; }
.op-reviews-track {
  display: flex; gap: 24px;
  overflow-x: auto; overflow-y: hidden;
  touch-action: pan-x; overscroll-behavior-x: contain; overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory; scroll-behavior: smooth; -webkit-overflow-scrolling: touch;
  padding: 6px 6px 16px; margin: 0 auto; max-width: 1180px;
  scrollbar-width: none; -ms-overflow-style: none;
}
.op-reviews-track::-webkit-scrollbar { display: none; }
.op-reviews-track:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.op-reviews-track .op-review { flex: 0 0 min(86vw, 456px); scroll-snap-align: start; }
.op-reviews-nav { display: flex; justify-content: center; gap: 14px; margin-top: 26px; }
.op-reviews-nav button {
  width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(0,0,0,0.16); background: transparent;
  cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.3s, border-color 0.3s;
}
.op-reviews-nav button:hover { background: rgba(0,0,0,0.04); border-color: var(--gold); }
.op-reviews-nav button svg { width: 18px; height: 18px; stroke: var(--dark); stroke-width: 2; fill: none; stroke-linecap: round; stroke-linejoin: round; }
.op-review { position: relative; background: var(--light); border: 1px solid #ece9e2; border-radius: 12px; padding: 32px 32px 28px; display: flex; flex-direction: column; transition: transform 0.35s ease, box-shadow 0.35s ease; }
.op-review:hover { transform: translateY(-3px); box-shadow: 0 16px 36px rgba(18,33,47,0.08); }
.op-review::before { content: '\201C'; position: absolute; top: 14px; right: 24px; font-family: var(--serif); font-size: 72px; line-height: 1; color: rgba(184,150,90,0.16); pointer-events: none; }
.op-review-stars { color: var(--gold); letter-spacing: 2px; font-size: 14px; margin-bottom: 14px; position: relative; }
.op-review-quote { font-size: 16px; line-height: 1.8; color: var(--text); flex: 1; margin-bottom: 22px; position: relative; }
.op-review-author { display: flex; align-items: center; gap: 13px; }
.op-review-avatar {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: #efe7d6; color: var(--gold-deep);
  font-family: var(--serif); font-size: 16px; font-weight: 600; letter-spacing: 0.02em;
}
.op-review-name { display: block; font-family: var(--serif); font-size: 16px; color: var(--dark); line-height: 1.2; }
.op-review-role { display: block; font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

/* ---- SERVIZI ---- */
.op-services { background: #1e3448; padding: 104px 56px; }
.op-services-head { text-align: center; max-width: 820px; margin: 0 auto 52px; }
.op-services-head .op-h2 { margin: 0 auto 22px; }
.op-services-head .op-lead { margin: 0 auto; }
.op-services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1120px; margin: 0 auto; }
/* service cards: photo at top, copy below on dark panel */
.op-service {
  position: relative; overflow: hidden; background-color: #16293a;
  border: 1px solid rgba(255,255,255,0.06); border-radius: 14px;
  display: flex; flex-direction: column;
  transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}
.op-service:hover { transform: translateY(-5px); border-color: rgba(184,150,90,0.5); box-shadow: 0 22px 50px rgba(0,0,0,0.3); }
.op-service-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.op-service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; display: block; }
.op-service:hover .op-service-img img { transform: scale(1.06); }
.op-service-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(22,41,58,0) 55%, rgba(22,41,58,0.55) 100%); pointer-events: none; }
.op-service-body { padding: 26px 28px 30px; flex: 1; display: flex; flex-direction: column; }
.op-service-body::before { content: ''; display: block; width: 36px; height: 2px; background: var(--gold); margin-bottom: 18px; opacity: 0.9; }
.op-service h3 { font-family: var(--serif); font-size: 21px; font-weight: 500; color: var(--white); margin-bottom: 10px; line-height: 1.25; }
.op-service p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.75); }

/* ---- METODO / 5 STEP ---- */
.op-steps { background: #f0ece4; padding: 104px 56px; }
.op-steps-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.op-steps-head .eyebrow { color: var(--gold-deep); }
.op-steps-head .op-h2 { margin: 0 auto 18px; }
.op-steps-head .op-lead { margin: 0 auto; }
/* 5 step "metodo": white cards on a cream band, with the step number as a giant gold watermark */
.op-steps-list {
  list-style: none; display: grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
  max-width: 1320px; margin: 0 auto; padding: 0;
  overflow: visible; scroll-snap-type: none;
}
.op-step {
  position: relative; overflow: hidden;
  background: var(--white); border: 1px solid #ece4d4; border-radius: 14px;
  padding: 34px 28px 32px;
  display: flex; flex-direction: column; text-align: left;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
  scroll-snap-align: none;
}
.op-step::before {
  /* small gold accent bar at the top-left of each card */
  content: ''; position: relative; z-index: 1; display: block;
  width: 34px; height: 2px; background: var(--gold); margin-bottom: 22px;
  transition: width 0.4s ease;
}
.op-step:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(18,33,47,0.1); border-color: rgba(184,150,90,0.45); }
.op-step:hover::before { width: 56px; }
.op-step-num {
  position: absolute; top: -28px; right: -8px; z-index: 0;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(110px, 11vw, 180px); line-height: 1;
  color: rgba(184,150,90,0.14); letter-spacing: -0.03em;
  pointer-events: none; user-select: none;
  /* reset legacy circle styling */
  width: auto; height: auto; background: none; border: none; border-radius: 0; box-shadow: none; padding: 0; margin: 0;
  transition: color 0.4s ease, transform 0.5s ease;
}
.op-step:hover .op-step-num { color: rgba(184,150,90,0.24); transform: translate(-2px, 2px); }
.op-step h3 {
  position: relative; z-index: 1;
  font-family: var(--serif); font-size: clamp(19px, 1.6vw, 23px); font-weight: 500;
  color: var(--dark); line-height: 1.25; margin-bottom: 12px;
}
.op-step p {
  position: relative; z-index: 1;
  font-size: 15.5px; line-height: 1.7; color: #3a4450;
}
.op-steps-foot { text-align: center; margin-top: 56px; }
.op-steps-foot h3 { font-family: var(--serif); font-size: 22px; font-weight: 500; color: var(--dark); margin-bottom: 6px; }
.op-steps-foot p { font-size: 15px; color: var(--muted); margin-bottom: 22px; }
.op-steps-foot .btn-gold { margin: 0 auto; }

/* ---- VOLETE SAPERNE DI PIU ---- */
.op-about { background: var(--white); display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch; }
.op-about-media { position: relative; overflow: hidden; min-height: 420px; }
.op-about-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 0.8s ease; }
.op-about-media:hover img { transform: scale(1.04); }
.op-about-text { padding: 96px 64px; display: flex; flex-direction: column; justify-content: center; }
.op-about-text .eyebrow { color: var(--gold-deep); }
.op-about-text .op-h2 { margin-bottom: 18px; }
.op-about-body { font-size: 16px; line-height: 1.8; color: var(--muted); margin-bottom: 28px; }

/* ---- FAQ ---- */
.op-faq { background: var(--light); padding: 104px 56px; }
.op-faq-head { text-align: center; margin-bottom: 44px; }
.op-faq-head .op-h2 em { font-style: italic; color: var(--gold-deep); }
.op-faq-list { max-width: 840px; margin: 0 auto; }
.op-faq-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
.op-faq-item summary { list-style: none; cursor: pointer; padding: 22px 38px 22px 0; position: relative; font-family: var(--serif); font-size: 18px; color: var(--dark); }
.op-faq-item summary::-webkit-details-marker { display: none; }
.op-faq-item summary::after { content: '+'; position: absolute; right: 4px; top: 22px; font-family: var(--sans); font-size: 22px; font-weight: 300; color: var(--gold-deep); transition: transform 0.3s; }
.op-faq-item[open] summary::after { transform: rotate(45deg); }
.op-faq-answer { padding: 0 38px 26px 0; }
.op-faq-answer p { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 12px; }
.op-faq-answer p:last-child { margin-bottom: 0; }
.op-faq-answer ul { list-style: none; margin: 6px 0 14px; }
.op-faq-answer li { font-size: 16px; line-height: 1.75; color: var(--text); padding-left: 20px; position: relative; margin-bottom: 7px; }
.op-faq-answer li::before { content: ''; position: absolute; left: 2px; top: 10px; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.op-faq-answer ul.op-faq-x li { padding-left: 0; }
.op-faq-answer ul.op-faq-x li::before { content: none; display: none; }
.op-faq-answer .op-faq-cta { margin-top: 14px; }
.op-faq-answer .op-faq-cta a { display: inline-flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--gold-deep); }
.op-faq-answer .op-faq-cta a:hover { color: var(--gold); }
.op-faq-item summary:hover { color: var(--gold-deep); }
.op-faq-item summary:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.op-faq-item[open] .op-faq-answer { animation: opFaqIn 0.32s ease; }
@keyframes opFaqIn { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: translateY(0); } }

/* ---- CONTATTI / FINAL CTA ---- */
.op-cta { background: #0e1c28; padding: 0; }
.op-cta-grid {
  display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: stretch;
  background: #0e1c28;
  min-height: 82vh; max-height: 860px;
}
.op-cta-text { padding: 72px 64px; display: flex; flex-direction: column; justify-content: center; }
.op-cta-text > * { max-width: 580px; }
.op-cta-text .eyebrow { color: var(--gold); }
.op-cta-title { font-family: var(--serif); font-size: clamp(26px, 3vw, 40px); font-weight: 400; color: var(--white); line-height: 1.2; margin-bottom: 14px; }
.op-cta-sub { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 28px; }
.op-cta-actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 20px; }
.op-cta-contact { font-size: 14px; color: rgba(255,255,255,0.55); }
.op-cta-contact a { color: var(--gold); }
.op-cta-contact a:hover { color: var(--white); }
.op-cta-media { position: relative; overflow: hidden; min-height: 420px; background: var(--navy); }
.op-cta-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
/* Fillout popup trigger styled as a button (default: solid gold) */
.op-fillout button, .op-fillout a, .op-fillout > div[role="button"] {
  all: unset !important; box-sizing: border-box !important; display: inline-flex !important;
  align-items: center !important; justify-content: center !important; gap: 8px !important;
  background: var(--gold) !important; color: var(--white) !important; border: 1px solid var(--gold) !important;
  padding: 16px 34px !important; border-radius: 3px !important; font: 600 13px/1 var(--sans) !important;
  letter-spacing: 0.06em !important; text-transform: uppercase !important; cursor: pointer !important;
  transition: background 0.3s, color 0.3s, border-color 0.3s !important;
}
.op-fillout button:hover, .op-fillout a:hover, .op-fillout > div[role="button"]:hover { background: #a6813e !important; border-color: #a6813e !important; }
/* outline variant (on light backgrounds) */
.op-fillout--outline button, .op-fillout--outline a, .op-fillout--outline > div[role="button"] {
  background: transparent !important; color: var(--gold-deep) !important; border: 1px solid var(--gold) !important;
}
.op-fillout--outline button:hover, .op-fillout--outline a:hover, .op-fillout--outline > div[role="button"]:hover {
  background: var(--gold) !important; color: var(--white) !important; border-color: var(--gold) !important;
}
/* arrow after the label */
.op-fillout button::after, .op-fillout a::after, .op-fillout > div[role="button"]::after { content: '\2192'; font-size: 1.1em; line-height: 1; }
/* home "Per i proprietari" section: two CTAs side by side */
.owners-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }

/* ---- RESPONSIVE: owners page ---- */
@media (max-width: 1024px) {
  .op-partners { padding: 28px 32px; }
  .op-perf, .op-results, .op-reviews, .op-services, .op-steps, .op-faq { padding: 80px 32px; }
  .op-perks { grid-template-columns: 1fr; max-width: 620px; gap: 0; }
  .op-perk { padding: 0; }
  .op-perk + .op-perk { margin-top: 44px; }
  .op-results-grid { grid-template-columns: repeat(2, 1fr); }
  .op-services-grid { grid-template-columns: repeat(2, 1fr); }
  .op-story, .op-about, .op-cta-grid { grid-template-columns: 1fr; }
  .op-cta-grid { min-height: 0; max-height: none; }
  .op-story-media { min-height: 300px; order: 1; }
  .op-story-text { order: 2; padding: 64px 32px; }
  .op-about-media { min-height: 300px; }
  .op-about-text { padding: 64px 32px; }
  .op-cta-text { padding: 56px 32px; order: 2; }
  .op-cta-text > * { max-width: none; }
  .op-cta-media { min-height: 320px; order: 1; }
  .op-results-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  /* steps stay horizontal but become a swipeable row */
  .op-steps-list { grid-template-columns: repeat(3, 1fr); gap: 18px; }
}
@media (max-width: 768px) {
  #hero { min-height: 0; height: 100svh; height: 100dvh; }
  .op-hero { min-height: 0; height: 100svh; height: 100dvh; }
  .hero-content { justify-content: flex-end; padding-bottom: 14vh; }
  .op-hero-content { justify-content: flex-end; padding-bottom: 12vh; }
  /* buttons: a touch larger and softer-cornered on phones, with a press feedback */
  .btn-gold, .btn-ghost, .btn-outline, .btn-solid { padding: 17px 28px; border-radius: 8px; }
  .btn-gold:active, .btn-ghost:active, .btn-outline:active, .btn-solid:active { transform: scale(0.97); }
  .op-fillout button, .op-fillout a, .op-fillout > div[role="button"] { padding: 17px 28px !important; border-radius: 8px !important; }
  .op-fillout button:active, .op-fillout a:active, .op-fillout > div[role="button"]:active { transform: scale(0.97) !important; }
  .op-hero-actions { flex-direction: column; width: 100%; max-width: 320px; }
  .op-hero-actions .btn-gold, .op-hero-actions .btn-ghost, .op-hero-actions .op-fillout { width: 100%; }
  .op-hero-actions .btn-gold, .op-hero-actions .btn-ghost { justify-content: center; }
  .op-hero-actions .op-fillout button, .op-hero-actions .op-fillout a { width: 100% !important; justify-content: center !important; }
  .op-hero-title { font-size: clamp(28px, 8vw, 40px); }
  .op-hero-trust { gap: 8px 18px; font-size: 11px; }
  .op-partners { padding: 26px 24px; }
  .op-partners-row { gap: 12px 22px; }
  .op-perf, .op-results, .op-reviews, .op-services, .op-steps, .op-faq { padding: 64px 24px; }
  .op-cta-media { min-height: 240px; }
  .op-perf-cta { margin-top: 4px; }
  .op-case-figs { gap: 8px; }
  .op-case-arrow svg { width: 16px; height: 16px; }
  .op-perf-head, .op-results-head, .op-services-head, .op-steps-head { margin-bottom: 40px; }
  .op-results-grid { grid-template-columns: 1fr; }
  .op-services-grid { grid-template-columns: 1fr; }
  .op-reviews-grid { grid-template-columns: 1fr; }
  .op-reviews-nav { display: none; }  /* swipe is enough on phones */
  .ft-newsletter-form input[type="email"] { font-size: 16px; }  /* prevent iOS zoom-on-focus */
  .op-story-text, .op-about-text, .op-cta-text { padding: 48px 24px; }
  .op-steps-list { grid-template-columns: 1fr; max-width: 520px; gap: 18px; }
  .op-step { padding: 30px 26px; }
  .op-step-num { font-size: 120px; top: -22px; right: -4px; }
  .op-step h3 { font-size: 20px; }
  .op-step p { font-size: 16px; }
  .op-perk p { font-size: 16px; line-height: 1.78; color: var(--muted); }
  .op-perk h3 { font-size: clamp(25px, 7vw, 32px); }
  .op-story-author { font-size: 15px; }
  .op-review-quote { font-size: 17px; line-height: 1.8; }
  .op-service p { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,0.78); }
  .op-faq-answer p, .op-faq-answer li { font-size: 17px; line-height: 1.85; }
  .op-cta-actions { flex-direction: column; align-items: stretch; }
  .op-cta-actions .btn-ghost, .op-cta-actions .op-fillout { width: 100%; max-width: 320px; }
  .op-cta-actions .btn-ghost { justify-content: center; }
  .op-fillout button, .op-fillout a, .op-fillout > div[role="button"] { width: 100% !important; max-width: 320px !important; justify-content: center !important; }
}
@media (prefers-reduced-motion: reduce) {
  .op-hero-bg img { animation: none; }
  .op-hero-scroll span { animation: none; }
  .op-hero-content { animation: none; }
}

/* ---- Sticky mobile CTA (proprietari page) ---- */
.op-sticky-cta { display: none; }
@media (max-width: 768px) {
  .op-sticky-cta {
    display: block; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: rgba(255,255,255,0.94);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(0,0,0,0.07);
    box-shadow: 0 -10px 30px rgba(14,28,40,0.12);
    transform: translateY(0); transition: transform 0.4s ease, opacity 0.4s ease;
  }
  .op-sticky-cta.is-hidden { transform: translateY(120%); opacity: 0; pointer-events: none; }
  .op-sticky-fillout { display: block; width: 100%; }
  .op-sticky-fillout button, .op-sticky-fillout a, .op-sticky-fillout > div[role="button"] {
    all: unset !important; box-sizing: border-box !important; display: flex !important;
    align-items: center !important; justify-content: center !important;
    width: 100% !important; padding: 15px 24px !important;
    background: var(--gold) !important; color: var(--white) !important;
    border-radius: 999px !important; font: 600 14px/1 var(--sans) !important;
    letter-spacing: 0.06em !important; text-transform: uppercase !important;
    cursor: pointer !important;
    box-shadow: 0 8px 22px rgba(184,150,90,0.4) !important;
  }
  body:has(.op-sticky-cta) { padding-bottom: 78px; }
}

/* ── Cagliari destination: photo sections ─────────────────────────── */

/* 2-photo showcase hero (foto9 + foto8) */
.cl-showcase {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 40px;
  height: 520px;
}
.cl-showcase figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.cl-showcase figure img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.cl-showcase figure:hover img { transform: scale(1.03); }

/* Single inline contextual image (foto3) */
.cl-inline {
  max-width: 960px;
  margin: 40px auto 48px;
  padding: 0 40px;
}
.cl-inline figure {
  margin: 0;
  overflow: hidden;
  border-radius: 14px;
}
.cl-inline figure img {
  width: 100%; height: 420px;
  object-fit: cover; display: block;
}
.cl-inline figcaption {
  text-align: center;
  font: 400 13px/1.6 var(--sans);
  color: var(--muted);
  padding: 10px 0 0;
  font-style: italic;
}

/* 6-photo uniform mosaic (3-col × 2-row) */
.cl-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 1280px;
  margin: 0 auto 64px;
  padding: 0 40px;
}
.cl-mosaic figure {
  margin: 0;
  height: 300px;
  overflow: hidden;
  border-radius: 14px;
}
.cl-mosaic figure img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform 0.6s ease;
}
.cl-mosaic figure:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .cl-showcase { grid-template-columns: 1fr; height: auto; padding: 0 20px; gap: 8px; }
  .cl-showcase figure { height: 300px; }
  .cl-showcase figure:last-child { height: 220px; }
  .cl-inline { padding: 0 20px; }
  .cl-inline figure img { height: 280px; }
  .cl-mosaic { grid-template-columns: repeat(2, 1fr); padding: 0 20px; gap: 8px; }
  .cl-mosaic figure { height: 220px; }
}
@media (max-width: 480px) {
  .cl-showcase { padding: 0 16px; margin-bottom: 24px; }
  .cl-showcase figure { height: 260px; }
  .cl-showcase figure:last-child { height: 180px; }
  .cl-inline { padding: 0 16px; margin-bottom: 32px; }
  .cl-inline figure img { height: 220px; }
  .cl-mosaic { padding: 0 16px; gap: 6px; margin-bottom: 40px; }
  .cl-mosaic figure { height: 180px; }
}

/* ── Breadcrumb navigation ────────────────────────────────────────── */
.bc-nav {
  margin-bottom: 28px;
}
.bc-nav ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  justify-content: center;
}
.bc-nav li {
  display: flex;
  align-items: center;
  font: 400 11px/1 var(--sans);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
}
.bc-nav li + li::before {
  content: '/';
  margin: 0 9px;
  opacity: 0.35;
}
.bc-nav a {
  color: rgba(255,255,255,0.52);
  text-decoration: none;
  transition: color 0.2s;
}
.bc-nav a:hover { color: rgba(255,255,255,0.88); }
.bc-nav [aria-current="page"] { color: rgba(255,255,255,0.72); }

/* ── Legal pages (/legal/*, /en/legal/*) ── */
.legal h2 {
  font-family: var(--serif);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  line-height: 1.3;
  color: var(--dark);
  margin: 46px 0 14px;
}
.legal h3 {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 600;
  color: var(--dark);
  margin: 30px 0 10px;
}
.legal p { font-size: 16px; line-height: 1.85; color: var(--text); margin-bottom: 18px; }
.legal ul { margin: 0 0 20px; padding-left: 22px; }
.legal li { font-size: 16px; line-height: 1.8; color: var(--text); margin-bottom: 8px; }
.legal strong { color: var(--dark); font-weight: 600; }
.legal .legal-updated { color: var(--muted); font-style: italic; font-size: 15px; margin-bottom: 34px; }
