:root {
  --ink: #211f1b;
  --soft-ink: #4b453e;
  --muted: #7d7469;
  --paper: #f5efe5;
  --paper-light: #fbf8f2;
  --sand: #e7ddcf;
  --line: rgba(33, 31, 27, .16);
  --dark: #201d19;
  --white: #fffaf2;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1440px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

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

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

button, input { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: var(--white);
  border-bottom: 1px solid transparent;
  transition: background .35s ease, color .35s ease, border-color .35s ease;
}

.site-header.scrolled,
.site-header.open,
.site-header.inner-page {
  color: var(--ink);
  background: rgba(245, 239, 229, .96);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: min(calc(100% - 3rem), var(--max));
  min-height: 88px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: .8rem;
}

.brand-name {
  font-family: var(--serif);
  font-size: 2rem;
  letter-spacing: .08em;
  line-height: 1;
}

.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2.2vw, 2.2rem);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  padding: 2rem 0;
}

.nav > a,
.dropdown-toggle {
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
  letter-spacing: inherit;
  text-transform: inherit;
  font-size: inherit;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.chevron {
  width: 8px;
  height: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.dropdown {
  position: absolute;
  top: calc(100% - .5rem);
  left: 50%;
  min-width: 245px;
  padding: .8rem;
  color: var(--ink);
  background: var(--paper-light);
  border: 1px solid var(--line);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: .22s ease;
  box-shadow: 0 22px 60px rgba(24, 21, 18, .13);
}

.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.dropdown a {
  display: block;
  padding: .75rem .9rem;
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: .01em;
  text-transform: none;
}

.dropdown a:hover { background: var(--sand); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.enquire-link {
  padding-bottom: .2rem;
  border-bottom: 1px solid currentColor;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: .25s ease;
}

.site-header.open .menu-toggle span { opacity: 0; }
.site-header.open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.site-header.open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: #56666d;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,15,16,.28) 0%, rgba(11,15,16,.03) 42%, rgba(11,15,16,.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 11rem 0 4.5rem;
}

.eyebrow {
  margin: 0 0 1.1rem;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
}

h1, h2, h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  line-height: .98;
}

h1 {
  max-width: 940px;
  font-size: clamp(4rem, 9vw, 9rem);
  letter-spacing: -.045em;
}

h2 {
  font-size: clamp(3.5rem, 7vw, 7.2rem);
  letter-spacing: -.04em;
}

h3 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  line-height: 1;
}

.hero-copy {
  max-width: 680px;
  margin: 1.6rem 0 0;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 0 1.4rem;
  border: 1px solid currentColor;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  transition: .25s ease;
}

.button:hover {
  color: var(--ink);
  background: var(--white);
}

.section {
  padding: clamp(6rem, 10vw, 10rem) 0;
}

.section-inner {
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 470px);
  gap: 3rem;
  align-items: end;
  margin-bottom: 4.5rem;
}

.section-heading p {
  margin: 0;
  color: var(--soft-ink);
}

.intro {
  padding: clamp(7rem, 12vw, 12rem) 1.5rem;
  background: var(--paper-light);
  text-align: center;
}

.intro-inner {
  max-width: 980px;
  margin: 0 auto;
}

.intro h2 {
  font-size: clamp(3.4rem, 7vw, 6.6rem);
}

.intro p:last-child {
  max-width: 760px;
  margin: 2rem auto 0;
  color: var(--soft-ink);
  font-size: 1.08rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.editorial-card {
  position: relative;
  min-height: 72svh;
  overflow: hidden;
  color: var(--white);
  background: #555;
}

.editorial-card img {
  height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}

.editorial-card:hover img { transform: scale(1.04); }

.editorial-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.04) 25%, rgba(0,0,0,.64));
}

.editorial-card-copy {
  position: absolute;
  z-index: 2;
  right: 2rem;
  bottom: 2rem;
  left: 2rem;
}

.editorial-card-copy p {
  max-width: 470px;
  margin: .9rem 0 0;
}

.page-hero {
  position: relative;
  min-height: 78svh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
  background: var(--dark);
}

.page-hero img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.62));
}

.page-hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 3rem), var(--max));
  margin: 0 auto;
  padding: 10rem 0 4rem;
}

.page-intro {
  max-width: 850px;
  margin: 0 auto;
  text-align: center;
}

.stay-list {
  background: var(--dark);
  color: var(--paper);
}

.stay-item {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  min-height: 760px;
  border-top: 1px solid rgba(255,255,255,.14);
}

.stay-item.reverse {
  grid-template-columns: .85fr 1.15fr;
}

.stay-item.reverse .stay-image { order: 2; }
.stay-item.reverse .stay-copy { order: 1; }

.stay-image img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
}

.stay-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 7vw, 7rem);
}

.stay-copy h3 {
  font-size: clamp(3.5rem, 6vw, 6.4rem);
  letter-spacing: -.04em;
}

.stay-copy p {
  max-width: 540px;
  color: rgba(245,239,229,.72);
}

.stay-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .7rem 1.5rem;
  margin-top: 1.8rem;
  color: rgba(245,239,229,.55);
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  margin-top: 2rem;
  padding-bottom: .3rem;
  border-bottom: 1px solid currentColor;
  font-size: .67rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.contact {
  padding: clamp(6rem, 10vw, 10rem) 1.5rem;
  color: var(--paper);
  background: var(--dark);
  text-align: center;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact p {
  color: rgba(245,239,229,.72);
}

.site-footer {
  padding: 2.5rem 1.5rem;
  color: rgba(245,239,229,.66);
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,.14);
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
}

.footer-brand {
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6rem);
  letter-spacing: .12em;
  line-height: .85;
  color: var(--paper);
}

.footer-meta {
  text-align: right;
  font-size: .75rem;
  line-height: 1.9;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

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

@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    inset: 88px 0 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    height: calc(100svh - 88px);
    padding: 1.5rem;
    overflow-x: hidden;
    overflow-y: auto;
    color: var(--ink);
    background: var(--paper);
    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .site-header.open .nav {
    transform: translateX(0);
  }

  .nav-item {
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--line);
  }

  .nav > a,
  .dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.15rem 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    font-family: var(--serif);
    font-size: 2rem;
    line-height: 1.1;
    letter-spacing: 0;
    text-transform: none;
    white-space: normal;
  }

  .nav-item > .dropdown-toggle {
    border-bottom: 0;
  }

  .dropdown {
    position: static;
    display: block;
    width: 100%;
    min-width: 0;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 1rem;
    overflow: hidden;
    color: var(--ink);
    background: transparent;
    border: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: max-height .3s ease, padding .3s ease;
  }

  .nav-item.open .dropdown {
    max-height: 520px;
    padding-bottom: 1rem;
  }

  .dropdown a {
    display: block;
    width: 100%;
    padding: .7rem 0;
    color: var(--soft-ink);
    font-family: var(--serif);
    font-size: 1.35rem;
    line-height: 1.25;
    letter-spacing: 0;
    text-transform: none;
  }

  .nav-item.open .chevron {
    transform: rotate(225deg) translate(-2px, -2px);
  }

  .section-heading,
  .stay-item,
  .stay-item.reverse {
    grid-template-columns: 1fr;
  }

  .stay-item.reverse .stay-image,
  .stay-item.reverse .stay-copy {
    order: initial;
  }
}

@media (max-width: 720px) {
  .header-inner,
  .hero-content,
  .section-inner,
  .page-hero-content {
    width: min(calc(100% - 2rem), var(--max));
  }

  .header-inner {
    min-height: 74px;
  }

  .nav {
    inset: 74px 0 0;
    height: calc(100svh - 74px);
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .brand-name {
    font-size: 1.65rem;
  }

  h1 {
    font-size: clamp(3.8rem, 18vw, 5.6rem);
  }

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

  .editorial-card {
    min-height: 72svh;
  }

  .stay-image img {
    min-height: 68svh;
  }

  .footer-inner {
    display: block;
  }

  .footer-meta {
    margin-top: 2rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* HERO DESTINAZIONI — IMMAGINE ESTESA, SENZA FASCE LATERALI */

@media (min-width: 1051px) {
  .page-hero {
    min-height: 78svh;
    background: var(--dark);
  }

  .page-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    object-position: center center !important;
  }

  /* Toscana: inquadratura spostata verso vigne e trattore */
  .page-hero.tuscany-hero img {
    object-position: center 72% !important;
  }
/* HERO PARIGI — FOTO INTERA CON SFONDO SFUMATO */

@media (min-width: 1051px) {
}

  .page-hero.paris-hero .paris-hero-background {
    position: absolute;
    inset: -30px;
    width: calc(100% + 60px) !important;
    height: calc(100% + 60px) !important;
    object-fit: cover !important;
    object-position: center center !important;
    filter: blur(24px);
    transform: scale(1.08);
    opacity: .65;
  }

/* HERO PARIGI — FOTO PIÙ VISIBILE SU DESKTOP */

@media (min-width: 1051px) {

/* HERO PARIGI ESTESA A TUTTA LARGHEZZA */

@media (min-width: 1051px) {
  .page-hero.paris-hero {
    width: 100%;
    min-height: 78svh !important;
    height: 78svh !important;
    overflow: hidden;
  }

  .page-hero.paris-hero img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
  }
}
}
  .page-hero.sicily-hero img {
    object-position: center 72% !important;
  }
}