/* ====================================================
   FONT LOCALI (self-hosted) — solo latin + latin-ext
==================================================== */
/* DM Sans 400 */
@font-face {
  font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/dmsans-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/dmsans-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* DM Sans 500 */
@font-face {
  font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(fonts/dmsans-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'DM Sans'; font-style: normal; font-weight: 500; font-display: swap;
  src: url(fonts/dmsans-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Lora 400 */
@font-face {
  font-family: 'Lora'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/lora-normal-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora'; font-style: normal; font-weight: 400; font-display: swap;
  src: url(fonts/lora-normal-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* Lora 400 italic */
@font-face {
  font-family: 'Lora'; font-style: italic; font-weight: 400; font-display: swap;
  src: url(fonts/lora-italic-latin-ext.woff2) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Lora'; font-style: italic; font-weight: 400; font-display: swap;
  src: url(fonts/lora-italic-latin.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --cream:       #F4F0E6;
  --cream-dark:  #EDE8D9;   /* slightly deeper cream for contrast */
  --navy:        #22343F;
  --navy-soft:   #2E4A59;   /* softer navy, less cold */
  --gold:        #CDBA66;
  --slate:       #586362;
  --charcoal:    #2C2926;   /* warm dark for video bg — not pitch black */
  --text-main:   #22343F;
  --text-muted:  rgba(34,52,63,0.55);
}

body {
  background: var(--cream);
  color: var(--text-main);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--navy); }
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); }

.label {
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}
.label-italic {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-style: italic;
  font-size: 1.1rem;
  letter-spacing: 0.03em;
}

/* Grain */
#grain {
  position: fixed; inset: 0;
  pointer-events: none; z-index: 300;
  opacity: 0.04; mix-blend-mode: multiply;
}

/* ====================================================
   NAV — always solid, gold bottom line for contrast
==================================================== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
  background: var(--cream);
  border-bottom: 1px solid rgba(205,186,102,0.35);
}
/* I due gruppi laterali hanno la stessa larghezza: così il logo
   resta centrato anche quando uno dei due si svuota (mobile). */
.nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links:last-of-type { justify-content: flex-end; }

/* Su mobile resta solo lo switch lingua: la CTA e i link spariscono */
@media (max-width: 760px) {
  .nav-links a:not(.nav-lang) { display: none; }
  nav { padding: 0 1.25rem; }
}

/* Switch lingua */
.nav-links .nav-lang {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  border: 1px solid rgba(34,52,63,0.22);
  padding: 0.35rem 0.62rem;
  transition: color 0.3s, border-color 0.3s;
}
.nav-links .nav-lang:hover { color: var(--navy); border-color: var(--navy); }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--navy); }
.nav-logo { height: 48px; width: auto; object-fit: contain; }
.nav-links .nav-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.6rem 1.4rem;
  background: var(--gold);
  color: var(--navy);
  border: 1px solid var(--gold);
  box-shadow: 0 2px 12px rgba(34,52,63,0.12);
  transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}
.nav-links .nav-cta:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); box-shadow: 0 3px 16px rgba(34,52,63,0.2); }

/* ====================================================
   HERO — full-bleed video with overlaid text
==================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 84px; /* nav offset */
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--charcoal); /* fallback dietro al video */
}
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
/* Scrim for text contrast — clear at top, dark at bottom */
.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom,
    rgba(0,0,0,0) 0%,
    rgba(15,22,28,0.10) 45%,
    rgba(15,22,28,0.72) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem;
  padding-bottom: clamp(3rem, 9vh, 7rem);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-label {
  color: var(--gold);
  margin-bottom: 1.4rem;
  text-shadow: 0 1px 14px rgba(0,0,0,0.4);
}

.hero-h1 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
  line-height: 1.15;
  color: #F7F4EC;
  letter-spacing: -0.01em;
  margin-bottom: 1.4rem;
  text-shadow: 0 2px 26px rgba(0,0,0,0.45);
}
.hero-h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
  max-width: 480px;
  margin-bottom: 2.2rem;
  text-shadow: 0 1px 18px rgba(0,0,0,0.5);
}

@media (max-width: 640px) {
  .hero-content { padding-bottom: clamp(2.5rem, 8vh, 4.5rem); }
  .hero-sub { font-size: 0.95rem; }
}

/* ====================================================
   TRUST — brand banner right after hero
==================================================== */
.trust {
  background: var(--cream-dark);
  padding: 3.8rem 2.5rem;
  border-top: 1px solid rgba(205,186,102,0.2);
  border-bottom: 1px solid rgba(205,186,102,0.2);
}
.trust-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.8rem;
}
.trust-label { color: var(--gold); font-size: 0.72rem; letter-spacing: 0.26em; }
.trust-brands {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-logo {
  width: auto;
  display: block;
  filter: grayscale(1);
  opacity: 0.62;
  transition: filter 0.4s, opacity 0.4s;
}
.trust-logo:hover { filter: grayscale(0); opacity: 1; }
.l-bmw     { height: 42px; }
.l-bulgari { height: 17px; }
.l-rowenta { height: 23px; }
.l-danjohn { height: 23px; }
@media (max-width: 600px) {
  .trust-brands { gap: 1.6rem 2.4rem; }
  .l-bmw     { height: 36px; }
  .l-bulgari { height: 15px; }
  .l-rowenta { height: 20px; }
  .l-danjohn { height: 20px; }
}

/* ====================================================
   ABOUT
==================================================== */
.about {
  background: var(--cream);
  padding: 6rem 2.5rem 5rem;
}
.about-inner { max-width: 1080px; margin: 0 auto; }

.about-header { margin-bottom: 2.4rem; }
.about-heading {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.4vw, 2.9rem);
  letter-spacing: -0.005em;
  color: var(--navy);
  line-height: 1.18;
  margin-top: 0.5rem;
}

.about-lead {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.15rem, 1.9vw, 1.45rem);
  line-height: 1.55;
  color: var(--navy);
  max-width: none;
  margin-bottom: 2.8rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.2rem 4rem;
  border-top: 1px solid rgba(34,52,63,0.12);
  padding-top: 2.6rem;
}
@media (max-width: 680px) { .about-grid { grid-template-columns: 1fr; } }

.about-grid p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(34,52,63,0.75);
}

/* Proof strip */
.proof-strip {
  max-width: 1080px;
  margin: 3.5rem auto 0;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(34,52,63,0.08);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 2rem 3rem;
}
.proof-rating { display: flex; align-items: center; gap: 0.85rem; }
.google-g { height: 22px; width: 22px; display: block; }
.stars { display: flex; gap: 2px; }
.stars svg { fill: var(--gold); }
.rating-num {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--gold);
  line-height: 1;
}
.vdiv {
  width: 1px; height: 32px;
  background: rgba(34,52,63,0.12);
}
@media (max-width: 600px) { .vdiv { display: none; } }
.brand-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem 2rem;
  align-items: center;
}
.brand-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.83rem;
  color: rgba(34,52,63,0.38);
  transition: color 0.3s;
  cursor: default;
}
.brand-name:hover { color: var(--gold); }

/* ====================================================
   SHOWCASE — alternating image / text rows
==================================================== */
.benefits {
  background: var(--cream);
  padding: 5.5rem 0 1rem;
}
.benefits-header {
  max-width: 1080px;
  margin: 0 auto 3rem;
  padding: 0 2.5rem;
}
.benefits-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}

.showcase-img {
  position: relative;
  min-height: 460px;
  background: rgba(34,52,63,0.09);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-img::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(205,186,102,0.05) 0%, transparent 60%);
}
.showcase-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.showcase-img-label {
  position: relative; z-index: 1;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(34,52,63,0.22);
}

.showcase-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem clamp(2rem, 5vw, 5.5rem);
}
.showcase-num {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.showcase-text h3 {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.5rem, 2.4vw, 2.1rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.showcase-text p {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(34,52,63,0.72);
  max-width: 440px;
}

/* alternate: reversed rows put image on the right */
.showcase-row.reverse .showcase-img { order: 2; }

@media (max-width: 820px) {
  .showcase-row { grid-template-columns: 1fr; }
  .showcase-img { order: -1 !important; min-height: 0; aspect-ratio: 4 / 3; }
  .showcase-text { padding: 2.6rem 1.6rem 3.2rem; }
}

/* ====================================================
   PRESS — dicono di noi
==================================================== */
.press {
  background: var(--cream-dark);
  padding: 5.5rem 2.5rem;
  border-top: 1px solid rgba(205,186,102,0.2);
}
.press-inner { max-width: 1080px; margin: 0 auto; }
.press-header { margin-bottom: 3rem; }
.press-title {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  color: var(--navy);
  line-height: 1.15;
}
.press-lead {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(34,52,63,0.72);
  max-width: 620px;
  margin-top: 0.9rem;
}
.press-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(34,52,63,0.45);
}
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(340px, 100%), 1fr));
  gap: 2.8rem 3rem;
}
.press-card {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(205,186,102,0.55);
  padding-top: 1.4rem;
}
.press-outlet {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.press-quote {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--navy);
  flex: 1;
}
.press-meta {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.6rem;
}
.press-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: rgba(34,52,63,0.5);
}
.press-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  border-bottom: 1px solid rgba(205,186,102,0.6);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.press-link:hover { color: var(--gold); border-color: var(--gold); }

/* ====================================================
   BOOKING
==================================================== */
.booking {
  background: var(--cream);
  padding: 6.5rem 2.5rem;
  text-align: center;
}
.booking-inner { max-width: 500px; margin: 0 auto; }
.booking-heading {
  font-family: 'Lora', serif;
  font-weight: 400;
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--navy);
  line-height: 1.2;
  margin: 0.6rem 0 1.2rem;
}
.booking-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.93rem;
  color: var(--text-muted);
  margin-bottom: 2.4rem;
}
.btn-row {
  display: flex; gap: 1rem;
  justify-content: center; flex-wrap: wrap;
}
.btn-primary {
  display: inline-block;
  background: var(--gold); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.3rem;
  box-shadow: 0 3px 16px rgba(34,52,63,0.14);
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { background: var(--navy); color: var(--cream); transform: scale(1.02); box-shadow: 0 5px 22px rgba(34,52,63,0.24); }
.btn-secondary {
  display: inline-block;
  border: 1px solid rgba(34,52,63,0.4); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.66rem; font-weight: 500; letter-spacing: 0.24em;
  text-transform: uppercase; text-decoration: none;
  padding: 1rem 2.3rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}
.btn-secondary:hover { border-color: var(--navy); background: rgba(34,52,63,0.05); transform: scale(1.02); }

/* ====================================================
   FOOTER — navy-soft, less cold
==================================================== */
footer {
  background: var(--navy-soft);
  padding: 3.5rem 2.5rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.footer-logo { height: 78px; width: auto; object-fit: contain; }

.footer-social { display: flex; gap: 1.5rem; }
.footer-soc {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: color 0.3s, transform 0.3s;
}
.footer-soc svg { width: 30px; height: 30px; fill: currentColor; }
.footer-soc:hover { color: var(--gold); transform: translateY(-1px); }

.footer-info {
  display: flex;
  gap: 3.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0.3rem 0;
}
.footer-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}
.footer-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.58rem; letter-spacing: 0.28em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.35rem;
}
.footer-col p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem; line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.footer-col .footer-note {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.footer-link {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem;
  color: var(--gold); text-decoration: none;
  border-bottom: 1px solid rgba(205,186,102,0.4);
  padding-bottom: 1px; margin-top: 0.3rem;
  transition: color 0.3s, border-color 0.3s;
}
.footer-link:hover { color: #fff; border-color: rgba(255,255,255,0.7); }
.footer-tag {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.56rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  margin-top: 0.5rem;
}
.footer-privacy {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.56rem; letter-spacing: 0.3em;
  text-transform: uppercase; text-decoration: none;
  color: rgba(255,255,255,0.45);
  transition: color 0.3s;
}
.footer-privacy:hover { color: var(--gold); }

/* Anim */
.anim { opacity: 0; }

/* Focus visibile per navigazione da tastiera */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 1px;
}

/* Rispetta "riduci movimento" del sistema */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .anim { opacity: 1 !important; transform: none !important; }
  .hero-bg-video { display: none; }
}
