:root {
  --ivory: #f5ede4;
  --ivory-light: #fffaf5;
  --tobacco: #a67c52;
  --sage: #8c9a7d;
  --sage-dark: #5f6e54;
  --plum: #5a2d3d;
  --rose: #d7a7a0;
  --charcoal: #302b28;
  --muted: #706761;
  --line: rgba(48, 43, 40, .16);
  --serif: "Fraunces", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory-light);
  color: var(--charcoal);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
}
img { display: block; width: 100%; }
a { color: inherit; }
.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 6px;
  background: white;
  color: var(--plum);
  font-weight: 600;
  text-decoration: none;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 3px solid #f1c85b;
  outline-offset: 4px;
}
.wrap { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.narrow { width: min(780px, calc(100% - 44px)); margin-inline: auto; }

.site-header {
  position: absolute;
  z-index: 10;
  inset: 0 0 auto;
  color: white;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 94px;
}
.brand { display: inline-flex; text-decoration: none; }
.brand img { width: 205px; height: auto; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  opacity: .84;
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav .nav-cta {
  padding: 9px 17px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  opacity: 1;
}
.mobile-nav { display: none; }

.language-switcher { position: relative; flex: 0 0 auto; margin: 0; padding: 0; border: 0; }
.language-switcher summary {
  display: flex;
  min-height: 42px;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.46);
  border-radius: 999px;
  color: white;
  cursor: pointer;
  font-size: .875rem;
  font-weight: 600;
  line-height: 1;
  list-style: none;
}
.language-switcher summary::-webkit-details-marker { display: none; }
.language-switcher summary::after { content: "⌄"; font-size: .8rem; }
.language-switcher[open] summary::after { content: "⌃"; }
.language-switcher summary span:first-child { font-size: 1rem; }
.language-menu {
  position: absolute;
  top: calc(100% + 9px);
  right: 0;
  display: grid;
  min-width: 172px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory-light);
  color: var(--charcoal);
  box-shadow: 0 16px 38px rgba(30,22,20,.22);
}
.language-menu a { display: flex; min-height: 43px; align-items: center; gap: 10px; padding: 8px 13px; border-bottom: 1px solid var(--line); font-size: .875rem; text-decoration: none; white-space: nowrap; }
.language-menu a:last-child { border-bottom: 0; }
.language-menu a:hover, .language-menu a[aria-current="page"] { background: var(--ivory); color: var(--plum); }
.language-menu .flag { font-size: 1.05rem; }

.hero {
  position: relative;
  min-height: 88vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--plum);
  color: white;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(180deg, rgba(25,18,16,.12), rgba(25,18,16,.76)), var(--hero-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}
.hero--home { --hero-image: url("suite-rose-vue-ensemble.webp"); }
.hero--suite { --hero-image: url("suite-rose-espace-nuit.webp"); min-height: 72vh; }
.hero--neighborhood { --hero-image: url("quartier-canal-du-midi.webp"); min-height: 68vh; }
.hero--guide { --hero-image: url("quartier-canal-du-midi.webp"); min-height: 76vh; }
.hero--guide::before { background-image: linear-gradient(100deg, rgba(31,22,23,.84), rgba(31,22,23,.2)), var(--hero-image); }
.hero--guide h1 { max-width: 1050px; font-size: clamp(3.45rem, 7.2vw, 6.8rem); }
.hero--choice { --hero-image: url("suite-rose-salon-repas.webp"); min-height: 72vh; }
.hero--car { --hero-image: url("quartier-canal-du-midi.webp"); min-height: 72vh; }
.hero--press { --hero-image: url("suite-rose-vue-ensemble.webp"); min-height: 68vh; }
.hero--choice::before,
.hero--car::before,
.hero--press::before { background-image: linear-gradient(100deg, rgba(31,22,23,.86), rgba(31,22,23,.22)), var(--hero-image); }
.hero--choice h1,
.hero--car h1,
.hero--press h1 { max-width: 1060px; font-size: clamp(3.25rem, 6.7vw, 6.25rem); }
.hero-inner { position: relative; z-index: 1; padding: 175px 0 70px; max-width: 860px; }
.eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  color: inherit;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: currentColor; }
h1, h2, h3, h4 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
}
h1 {
  max-width: 950px;
  margin-top: 16px;
  font-size: clamp(3.7rem, 8.5vw, 7.3rem);
  letter-spacing: -.045em;
}
.hero--suite h1, .hero--neighborhood h1 { font-size: clamp(3.6rem, 7.5vw, 6.6rem); }
.hero-sub {
  display: block;
  margin-top: 10px;
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.3vw, 1.85rem);
  font-style: italic;
}
.hero-lead {
  max-width: 630px;
  margin: 25px 0 30px;
  font-size: clamp(1rem, 1.6vw, 1.18rem);
}
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.actions--center { justify-content: center; }
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: white;
  color: var(--plum);
  font-size: .93rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button--outline { border-color: rgba(255,255,255,.68); background: transparent; color: white; }
.button--plum { background: var(--plum); color: white; }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--plum);
  font-weight: 600;
  text-decoration: none;
}
.text-link::after { content: "→"; transition: transform .2s ease; }
.text-link:hover::after { transform: translateX(4px); }

.quick-facts { background: var(--plum); color: white; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); min-height: 112px; }
.fact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 28px;
  border-left: 1px solid rgba(255,255,255,.18);
}
.fact:first-child { border-left: 0; padding-left: 0; }
.fact strong { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.fact span { font-size: .8rem; opacity: .76; }

section { padding: 105px 0; }
.section-label {
  color: var(--plum);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
}
h2 { font-size: clamp(2.5rem, 5.2vw, 4.7rem); letter-spacing: -.04em; }
h3 { font-size: clamp(1.8rem, 3vw, 2.7rem); letter-spacing: -.025em; }
.lead {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.5vw, 1.95rem);
  line-height: 1.4;
}
.muted { color: var(--muted); }

.intro-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 9vw;
  align-items: start;
}
.intro-title h2 { margin: 13px 0 22px; }
.intro-copy p { max-width: 700px; }
.signature { margin-top: 22px; color: var(--tobacco); font-family: var(--serif); font-size: 1.2rem; font-style: italic; }

.home-suite { background: var(--ivory); }
.feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 7vw; align-items: center; }
.feature-images { position: relative; min-height: 610px; }
.feature-images .image-main { width: 78%; height: 520px; object-fit: cover; }
.feature-images .image-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45%;
  height: 275px;
  object-fit: cover;
  border: 12px solid var(--ivory);
}
.feature-copy h2 { margin: 13px 0 22px; }
.feature-copy .suite-signature { width: min(360px, 100%); margin: 28px 0 24px; }
.mini-facts { display: flex; flex-wrap: wrap; gap: 10px 22px; margin: 25px 0 30px; padding: 0; list-style: none; color: var(--muted); font-size: .9rem; }
.mini-facts li::before { content: "—"; margin-right: 8px; color: var(--tobacco); }

.home-gallery { padding: 0; background: var(--ivory); }
.home-gallery-grid { display: grid; grid-template-columns: 1.1fr .9fr .9fr; gap: 12px; }
.home-gallery-grid img { height: 360px; object-fit: cover; }

.home-neighborhood { background: var(--sage-dark); color: white; }
.home-neighborhood .section-label { color: var(--ivory); }
.home-neighborhood-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 9vw; align-items: end; }
.home-neighborhood h2 { margin: 12px 0 0; }
.home-neighborhood p { max-width: 600px; margin-top: 0; }
.home-neighborhood .text-link { color: white; }
.home-link-row { display: flex; flex-wrap: wrap; gap: 14px 28px; }

.page-intro { background: var(--ivory); }
.page-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.page-intro h2 { margin-top: 12px; }

.spaces { background: var(--ivory-light); }
.spaces-head { display: flex; justify-content: space-between; align-items: end; gap: 35px; margin-bottom: 46px; }
.spaces-head p { max-width: 520px; margin: 0; }
.space-grid { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.space-card { padding: 34px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.space-number { color: var(--tobacco); font-family: var(--serif); font-size: 1.1rem; }
.space-card h3 { margin: 48px 0 12px; font-size: 1.8rem; }
.space-card p { margin: 0; color: var(--muted); }

.photo-section { padding-top: 0; }
.photo-head { display: flex; justify-content: space-between; align-items: end; gap: 30px; margin-bottom: 28px; }
.photo-head h2 { margin-top: 10px; }
.photo-head p { max-width: 430px; margin: 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: 320px 320px 340px;
  gap: 12px;
}
.gallery-grid figure { position: relative; margin: 0; overflow: hidden; background: var(--rose); }
.gallery-grid figure:first-child { grid-row: 1 / span 2; }
.gallery-grid figure:last-child { grid-column: 1 / span 2; }
.gallery-grid img { height: 100%; object-fit: cover; transition: transform .6s ease; }
.gallery-grid figure:hover img { transform: scale(1.02); }
.gallery-grid figcaption {
  position: absolute;
  left: 15px;
  bottom: 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255,250,245,.92);
  font-size: .78rem;
}

.gallery-grid--twelve {
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: none;
  grid-auto-rows: 280px;
}
.gallery-grid--twelve figure:first-child,
.gallery-grid--twelve figure:last-child {
  grid-column: auto;
  grid-row: auto;
}
.gallery-grid--twelve .gallery-wide { grid-column: span 2; }
.gallery-grid--twelve a { display: block; height: 100%; }

.equipment { background: var(--rose); }
.equipment-head { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; align-items: end; margin-bottom: 48px; }
.equipment-head h2 { margin-top: 12px; }
.equipment-head p { margin: 0; }
.equipment-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.equipment-card { padding: 34px; background: var(--ivory-light); }
.equipment-card h3 { margin-bottom: 22px; font-size: 1.65rem; color: var(--plum); }
.equipment-list { margin: 0; padding: 0; list-style: none; }
.equipment-list li { position: relative; padding: 10px 0 10px 22px; border-top: 1px solid var(--line); }
.equipment-list li::before { content: "·"; position: absolute; left: 4px; color: var(--tobacco); font-weight: 700; }

.terrace-feature { background: var(--charcoal); color: white; padding: 0; }
.terrace-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; }
.terrace-grid img { height: 100%; min-height: 520px; object-fit: cover; }
.terrace-copy { padding: 80px clamp(35px, 7vw, 100px); align-self: center; }
.terrace-copy .section-label { color: var(--rose); }
.terrace-copy h2 { margin: 12px 0 24px; }
.terrace-copy p { max-width: 510px; }

.practical { background: var(--ivory); }
.practical-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.practical-grid h2 { margin-top: 12px; }
details { padding: 21px 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { display: flex; justify-content: space-between; gap: 18px; cursor: pointer; list-style: none; font-weight: 600; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.25rem; font-weight: 400; }
details[open] summary::after { content: "−"; }
details p { max-width: 650px; margin: 13px 0 0; color: var(--muted); }

.reviews { background: var(--ivory-light); }
.reviews-head {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
  margin-bottom: 22px;
}
.reviews-head h2 { max-width: 760px; margin-top: 12px; }
.rating-card {
  min-width: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--ivory);
}
.rating-card strong { display: block; color: var(--plum); font-family: var(--serif); font-size: 2rem; font-weight: 500; }
.rating-card span { display: block; color: var(--muted); font-size: .78rem; line-height: 1.45; }
.reviews-note { margin: 0 0 30px; color: var(--muted); font-size: .86rem; }
.reviews-grid { display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.review-card { min-height: 290px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stars { color: #805b39; letter-spacing: .08em; font-size: .78rem; }
.review-card q { display: block; margin-top: 35px; color: var(--plum); font-family: var(--serif); font-size: 1.45rem; line-height: 1.25; }
.review-card p { color: var(--muted); font-size: .88rem; }
.review-card > span { display: block; margin-top: 20px; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; }
.reviews-link { margin-top: 28px; }

.neighborhood-overview { background: var(--ivory); }
.overview-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 8vw; align-items: start; }
.overview-grid h2 { margin: 12px 0 24px; }
.distance-list { margin: 0; padding: 0; list-style: none; }
.distance-list li { display: grid; grid-template-columns: 120px 1fr; gap: 20px; padding: 18px 0; border-top: 1px solid var(--line); }
.distance-list strong { color: var(--plum); }

.map-section { background: var(--ivory-light); }
.map-head { display: flex; justify-content: space-between; align-items: end; gap: 40px; margin-bottom: 30px; }
.map-head h2 { max-width: 750px; margin-top: 12px; }
.map-head p { max-width: 430px; margin: 0; color: var(--muted); }
.satellite-map {
  z-index: 1;
  width: 100%;
  height: 570px;
  border: 1px solid var(--line);
  background: #d9d5cc;
}
.map-fallback { display: grid; place-items: center; min-height: 180px; margin: 0; padding: 30px; background: var(--ivory); text-align: center; }
.custom-map-marker { background: transparent; border: 0; }
.map-pin {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 3px solid white;
  border-radius: 50% 50% 50% 0;
  background: var(--sage-dark);
  color: white;
  font: 600 .82rem/1 var(--sans);
  box-shadow: 0 5px 18px rgba(25, 18, 16, .38);
  transform: rotate(-45deg);
}
.map-pin::before { content: ""; position: absolute; inset: 0; border-radius: inherit; box-shadow: inset 0 0 0 1px rgba(0,0,0,.12); }
.map-pin--home { width: 42px; height: 42px; background: var(--plum); }
.map-pin::after {
  content: attr(data-number);
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: white;
  transform: rotate(45deg);
}
.leaflet-popup-content-wrapper { border-radius: 2px; font-family: var(--sans); box-shadow: 0 8px 28px rgba(0,0,0,.25); }
.leaflet-popup-content { display: grid; gap: 5px; min-width: 190px; margin: 16px 18px; }
.leaflet-popup-content strong { color: var(--plum); font-family: var(--serif); font-size: 1.18rem; font-weight: 500; }
.leaflet-popup-content span { color: var(--muted); font-size: .82rem; }
.leaflet-popup-content a { margin-top: 7px; color: var(--plum); font-size: .8rem; font-weight: 600; }
.leaflet-control-attribution { font-size: 10px; }
.map-legend {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 0;
  border-left: 1px solid var(--line);
  list-style: none;
}
.map-legend li { display: flex; min-height: 88px; align-items: center; gap: 8px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .78rem; line-height: 1.35; }
.map-legend strong { color: var(--charcoal); }
.legend-dot { display: inline-grid; flex: 0 0 26px; width: 26px; height: 26px; place-items: center; border-radius: 50%; background: var(--sage-dark); color: white; font-size: .7rem; font-weight: 600; }
.legend-dot--home { background: var(--plum); }

.neighborhood-photos { background: var(--ivory); }
.neighborhood-photo-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.neighborhood-photo-grid figure { margin: 0; background: var(--ivory-light); }
.neighborhood-photo-grid img { height: 410px; object-fit: cover; }
.neighborhood-photo-grid figcaption { display: grid; gap: 5px; padding: 22px; }
.neighborhood-photo-grid figcaption strong { color: var(--plum); font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.neighborhood-photo-grid figcaption span { color: var(--muted); }
.neighborhood-photo-grid figcaption small { color: var(--muted); font-size: .69rem; }

.address-section { background: var(--ivory-light); }
.address-head { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 34px; }
.address-head h2 { margin-top: 12px; }
.address-head p { max-width: 450px; margin: 0; }
.address-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.address-card { display: flex; min-height: 240px; flex-direction: column; padding: 26px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.address-meta { display: flex; justify-content: space-between; gap: 18px; color: var(--tobacco); font-size: .75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; }
.address-card h3 { margin: 28px 0 8px; font-size: 1.45rem; }
.address-card p { margin: 0; color: var(--muted); font-size: .88rem; }
.address-link { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-top: auto; padding-top: 25px; color: var(--plum); font-size: .78rem; font-weight: 600; text-decoration: none; }
.address-link::after { content: "↗"; font-size: 1rem; }
.address-link:hover { text-decoration: underline; text-underline-offset: 3px; }
.shopping-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 18px; }
.shopping-card { display: flex; min-height: 170px; flex-direction: column; padding: 24px; background: var(--ivory); }
.shopping-card strong { display: block; color: var(--plum); }
.shopping-card span { color: var(--muted); font-size: .88rem; }
.shopping-card .address-link { padding-top: 20px; }
.address-head--spaced { margin-top: 70px; }

.nearby { background: var(--sage-dark); color: white; }
.nearby .section-label { color: var(--ivory); }
.nearby-head { max-width: 760px; margin-bottom: 42px; }
.nearby-head h2 { margin-top: 12px; }
.nearby-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.nearby-card { padding: 30px; border: 1px solid rgba(255,255,255,.28); }
.nearby-card h3 { margin-bottom: 10px; font-size: 1.55rem; }
.nearby-card p { margin: 0; opacity: .84; }

.parking { background: var(--rose); }
.parking-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.parking-grid h2 { margin-top: 12px; }
.parking-grid p:first-child { margin-top: 0; }

.weekend-intro { background: var(--ivory); }
.weekend-intro-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.weekend-intro h2 { margin-top: 12px; }
.weekend-intro .lead { color: var(--plum); }
.guide-updated { margin-top: 30px; color: var(--muted); font-size: .78rem; letter-spacing: .04em; }
.weekend-index { display: flex; gap: 34px; margin-top: 34px; padding-top: 26px; border-top: 1px solid var(--line); }
.weekend-index a { color: var(--charcoal); font-family: var(--serif); font-size: 1.08rem; text-decoration: none; }
.weekend-index a:hover { color: var(--plum); }
.weekend-index span { display: block; margin-bottom: 4px; color: var(--plum); font-family: var(--sans); font-size: .68rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }

.journey-day { background: var(--ivory-light); }
.journey-day--rose { background: var(--rose); }
.day-layout { display: grid; grid-template-columns: minmax(260px, .78fr) minmax(0, 1.22fr); gap: 9vw; align-items: start; }
.day-heading { position: sticky; top: 125px; }
.day-number { display: block; margin-bottom: 30px; color: var(--plum); font-family: var(--serif); font-size: clamp(5rem, 10vw, 9rem); line-height: .72; opacity: .22; }
.day-heading h2 { margin: 12px 0 22px; }
.day-heading p { max-width: 430px; color: var(--muted); }
.route { position: relative; padding-left: 42px; border-left: 1px solid rgba(90,45,61,.28); }
.route-stop { position: relative; display: grid; grid-template-columns: 92px minmax(0, 1fr); gap: 28px; padding: 0 0 68px; }
.route-stop:last-child { padding-bottom: 0; }
.route-stop::before { position: absolute; top: 8px; left: -48px; width: 11px; height: 11px; border: 3px solid var(--ivory-light); border-radius: 50%; background: var(--plum); box-shadow: 0 0 0 1px var(--plum); content: ""; }
.journey-day--rose .route-stop::before { border-color: var(--rose); }
.route-stop time { padding-top: 2px; color: var(--plum); font-size: .76rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.route-copy h3 { margin: 0 0 14px; font-size: clamp(1.7rem, 3vw, 2.5rem); }
.route-copy p { max-width: 680px; margin: 0; color: var(--muted); }
.route-copy a { color: var(--plum); font-weight: 600; text-underline-offset: 4px; }
.route-copy a:hover { text-decoration-thickness: 2px; }
.route-photo-pair { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; margin-top: 30px; }
.route-photo-pair figure { margin: 0; }
.route-photo-pair img { width: 100%; height: 300px; object-fit: cover; filter: saturate(.82); }
.route-photo-pair figcaption { margin-top: 9px; color: var(--charcoal); font-family: var(--serif); font-size: 1.05rem; }
.route-photo-pair figcaption small { display: block; margin-top: 2px; color: var(--muted); font-family: var(--sans); font-size: .68rem; }
.guide-practical { background: var(--ivory); }
.guide-neighborhood-link { max-width: 420px; color: var(--muted); }

.editorial-intro { background: var(--ivory); }
.editorial-intro-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; align-items: start; }
.editorial-intro h2 { margin-top: 12px; }
.editorial-intro-copy { max-width: 700px; }
.editorial-intro-copy .lead { color: var(--plum); }
.editorial-note { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .84rem; }

.stay-types { background: var(--ivory-light); }
.stay-types-head { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: end; margin-bottom: 55px; }
.stay-types-head h2 { margin-top: 12px; }
.stay-types-head p { max-width: 640px; margin: 0; color: var(--muted); }
.stay-list { border-top: 1px solid var(--line); }
.stay-row { display: grid; grid-template-columns: 80px minmax(220px,.72fr) minmax(0,1.28fr); gap: 35px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.stay-number { color: var(--tobacco); font-family: var(--serif); font-size: 1.25rem; }
.stay-row h3 { font-size: clamp(1.65rem, 2.7vw, 2.5rem); }
.stay-copy p { max-width: 700px; margin: 0 0 14px; color: var(--muted); }
.stay-copy a { color: var(--plum); font-weight: 600; text-underline-offset: 4px; }
.stay-copy .text-link { margin-top: 7px; text-decoration: none; }
.stay-row--home { margin-inline: -28px; padding-inline: 28px; background: var(--rose); border-color: transparent; }

.decision-strip { background: var(--sage-dark); color: white; }
.decision-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 9vw; }
.decision-strip .section-label { color: var(--ivory); }
.decision-strip h2 { margin-top: 12px; }
.decision-list { margin: 0; padding: 0; list-style: none; }
.decision-list li { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.24); }
.decision-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.decision-list strong { display: block; margin-bottom: 4px; font-family: var(--serif); font-size: 1.22rem; font-weight: 500; }
.decision-list span { opacity: .82; }

.roadbook { background: var(--ivory-light); }
.roadbook-grid { display: grid; grid-template-columns: minmax(250px,.72fr) minmax(0,1.28fr); gap: 9vw; align-items: start; }
.roadbook-heading { position: sticky; top: 125px; }
.roadbook-heading h2 { margin: 12px 0 20px; }
.roadbook-heading p { color: var(--muted); }
.roadbook-list { counter-reset: roadbook; border-top: 1px solid var(--line); }
.roadbook-step { counter-increment: roadbook; display: grid; grid-template-columns: 70px minmax(0,1fr); gap: 24px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.roadbook-step::before { content: "0" counter(roadbook); color: var(--tobacco); font-family: var(--serif); font-size: 1.35rem; }
.roadbook-step h3 { margin-bottom: 12px; font-size: clamp(1.55rem, 2.6vw, 2.25rem); }
.roadbook-step p { max-width: 690px; margin: 0; color: var(--muted); }
.roadbook-step a { color: var(--plum); font-weight: 600; text-underline-offset: 4px; }

.truth-block { background: var(--rose); }
.truth-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; }
.truth-grid h2 { margin-top: 12px; }
.truth-copy p:first-child { margin-top: 0; }
.truth-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.truth-copy li { padding: 13px 0; border-top: 1px solid rgba(48,43,40,.2); }

.related-reading { background: var(--ivory); }
.related-head { max-width: 760px; margin-bottom: 38px; }
.related-head h2 { margin-top: 12px; }
.related-list { display: grid; grid-template-columns: repeat(3,1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.related-item { display: flex; min-height: 255px; flex-direction: column; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); text-decoration: none; }
.related-item span { color: var(--tobacco); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.related-item h3 { margin: 36px 0 12px; font-size: 1.6rem; }
.related-item p { margin: 0; color: var(--muted); font-size: .9rem; }
.related-item::after { content: "Lire →"; margin-top: auto; padding-top: 26px; color: var(--plum); font-size: .82rem; font-weight: 600; }
.related-item:hover { background: var(--ivory-light); }

.press-sheet { background: var(--ivory); }
.press-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.press-sticky { position: sticky; top: 125px; }
.press-sticky h2 { margin: 12px 0 24px; }
.press-mark { width: min(270px,72%); margin-top: 36px; }
.press-copy .lead { color: var(--plum); }
.press-facts { display: grid; grid-template-columns: repeat(2,1fr); margin: 38px 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.press-fact { padding: 22px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.press-fact strong { display: block; color: var(--plum); font-family: var(--serif); font-size: 1.25rem; font-weight: 500; }
.press-fact span { color: var(--muted); font-size: .82rem; }
.press-copy h3 { margin: 38px 0 15px; font-size: 1.8rem; }
.press-copy ul { padding-left: 20px; }
.press-copy li { margin: 9px 0; }
.press-gallery { display: grid; grid-template-columns: 1.15fr .85fr; gap: 12px; margin-top: 35px; }
.press-gallery img { height: 320px; object-fit: cover; }
.press-contact { background: var(--charcoal); color: white; }
.press-contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 9vw; align-items: center; }
.press-contact .section-label { color: var(--rose); }
.press-contact h2 { margin-top: 12px; }
.press-contact p { max-width: 620px; }
.press-contact .text-link { color: white; }

.localized-overview { background: var(--ivory); }
.localized-overview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: start; }
.localized-overview h2 { margin-top: 12px; }
.localized-overview-copy .lead { color: var(--plum); }
.localized-facts { display: grid; grid-template-columns: repeat(2,1fr); margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.localized-fact { padding: 20px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.localized-fact strong { display: block; color: var(--plum); font-family: var(--serif); font-size: 1.2rem; font-weight: 500; }
.localized-fact span { color: var(--muted); font-size: .83rem; }
.localized-suite { background: var(--ivory-light); }
.localized-suite-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 7vw; align-items: center; }
.localized-suite-media { display: grid; grid-template-columns: 1.12fr .88fr; gap: 11px; }
.localized-suite-media img { height: 470px; object-fit: cover; }
.localized-suite-media img:last-child { height: 330px; align-self: end; }
.localized-suite-copy h2 { margin: 12px 0 22px; }
.localized-equipment { display: grid; grid-template-columns: repeat(2,1fr); margin: 28px 0 30px; padding: 0; border-top: 1px solid var(--line); border-left: 1px solid var(--line); list-style: none; }
.localized-equipment li { padding: 13px 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); color: var(--muted); font-size: .84rem; }
.localized-neighborhood { background: var(--sage-dark); color: white; }
.localized-neighborhood-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 9vw; }
.localized-neighborhood .section-label { color: var(--ivory); }
.localized-neighborhood h2 { margin-top: 12px; }
.localized-neighborhood-copy .lead { margin-bottom: 24px; }
.localized-landmarks { margin: 0; padding: 0; list-style: none; }
.localized-landmarks li { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.24); }
.localized-landmarks li:last-child { border-bottom: 1px solid rgba(255,255,255,.24); }
.localized-landmarks strong { display: block; font-family: var(--serif); font-size: 1.12rem; font-weight: 500; }
.localized-itinerary { background: var(--ivory-light); }
.localized-itinerary-head { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; align-items: end; margin-bottom: 50px; }
.localized-itinerary-head h2 { margin-top: 12px; }
.localized-itinerary-head p { max-width: 650px; margin: 0; color: var(--muted); }
.localized-days { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.localized-day { padding: 38px; background: var(--ivory); }
.localized-day:last-child { background: var(--rose); }
.localized-day > span { color: var(--plum); font-size: .72rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.localized-day h3 { margin: 14px 0 28px; font-size: clamp(2rem,3.7vw,3.4rem); }
.localized-stops { margin: 0; padding: 0; list-style: none; counter-reset: localized-stop; }
.localized-stops li { counter-increment: localized-stop; position: relative; padding: 17px 0 17px 42px; border-top: 1px solid var(--line); }
.localized-stops li::before { content: "0" counter(localized-stop); position: absolute; left: 0; color: var(--tobacco); font-family: var(--serif); }
.localized-car { background: var(--rose); }
.localized-car-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 9vw; }
.localized-car h2 { margin-top: 12px; }
.localized-car-copy p:first-child { margin-top: 0; }
.localized-car-copy ul { margin: 24px 0 0; padding: 0; list-style: none; }
.localized-car-copy li { padding: 13px 0; border-top: 1px solid rgba(48,43,40,.2); }

.booking { background: var(--plum); color: white; text-align: center; }
.booking .section-label { color: var(--rose); }
.booking h2 { max-width: 820px; margin: 10px auto 0; }
.booking p { max-width: 580px; margin: 24px auto 34px; opacity: .82; }
.booking--compact { padding-block: 90px; }

footer { padding: 38px 0; background: var(--charcoal); color: white; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .83rem; }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-brand img { width: 145px; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { opacity: .76; }

.legal-header { background: var(--plum); color: white; }
.legal-back { font-size: .88rem; font-weight: 600; text-decoration: none; }
.legal-main { padding: 95px 0 110px; }
.legal-main h1 { margin-top: 12px; color: var(--plum); font-size: clamp(3.2rem, 7vw, 5.8rem); }
.legal-updated { margin: 12px 0 45px; color: var(--muted); font-size: .84rem; }
.legal-alert { margin-bottom: 48px; padding: 24px; border-left: 4px solid var(--tobacco); background: var(--ivory); }
.legal-alert strong { color: var(--plum); }
.legal-alert p { margin: 7px 0 0; }
.legal-section { padding: 34px 0; border-top: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 1px solid var(--line); }
.legal-section h2 { margin-bottom: 16px; font-size: clamp(1.8rem, 4vw, 2.7rem); }
.legal-section p { margin: 10px 0; }
.legal-section li { margin-block: 7px; }

@media (max-width: 1100px) {
  .nav a:first-child { display: none; }
  .header-inner { gap: 16px; }
  .nav { gap: 18px; }
}

@media (max-width: 900px) {
  .nav a:not(.nav-cta) { display: none; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); padding: 10px 0; }
  .fact { min-height: 90px; border-top: 1px solid rgba(255,255,255,.18); }
  .fact:nth-child(odd) { border-left: 0; padding-left: 0; }
  .fact:nth-child(-n+2) { border-top: 0; }
  .intro-grid, .feature-grid, .home-neighborhood-grid, .page-intro-grid, .equipment-head, .practical-grid, .overview-grid, .parking-grid, .weekend-intro-grid, .day-layout, .editorial-intro-grid, .stay-types-head, .decision-grid, .roadbook-grid, .truth-grid, .press-grid, .press-contact-grid, .localized-overview-grid, .localized-suite-grid, .localized-neighborhood-grid, .localized-itinerary-head, .localized-car-grid { grid-template-columns: 1fr; gap: 38px; }
  .feature-images { min-height: 560px; }
  .home-gallery-grid { grid-template-columns: 1fr 1fr; }
  .home-gallery-grid img:first-child { grid-column: 1 / span 2; }
  .space-grid, .equipment-grid, .address-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid--twelve { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 270px; }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-head { grid-template-columns: 1fr; }
  .terrace-grid { grid-template-columns: 1fr; }
  .terrace-grid img { min-height: 430px; }
  .address-head, .photo-head, .spaces-head { align-items: start; flex-direction: column; }
  .nearby-grid { grid-template-columns: 1fr; }
  .map-head { align-items: start; flex-direction: column; }
  .map-legend { grid-template-columns: repeat(2, 1fr); }
  .day-heading { position: static; }
  .roadbook-heading, .press-sticky { position: static; }
  .related-list { grid-template-columns: 1fr; }
  .day-number { margin-bottom: 20px; }
  .footer-inner { align-items: flex-start; }
  .footer-links { flex-wrap: wrap; justify-content: flex-end; }
  .header-inner { gap: 14px; }
  .nav { gap: 18px; }
}

@media (max-width: 620px) {
  .wrap, .narrow { width: min(100% - 28px, 560px); }
  .header-inner { min-height: 80px; }
  .brand img { width: 165px; }
  .site-header .nav { display: none; }
  .language-switcher summary { min-height: 40px; padding-inline: 8px; }
  .language-switcher summary .language-code { display: none; }
  .mobile-nav {
    position: absolute;
    z-index: 9;
    top: 80px;
    left: 14px;
    right: 14px;
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 9px 12px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 999px;
    background: rgba(48,43,40,.42);
    color: white;
    backdrop-filter: blur(8px);
  }
  .mobile-nav a { display: inline-flex; min-height: 44px; align-items: center; padding-inline: 3px; font-size: .78rem; font-weight: 500; text-decoration: none; }
  .hero { min-height: 82vh; }
  .hero--suite, .hero--neighborhood, .hero--guide, .hero--choice, .hero--car, .hero--press { min-height: 70vh; }
  .hero-inner { padding: 135px 0 50px; }
  h1 { font-size: clamp(3.15rem, 17vw, 5rem); }
  .actions { flex-direction: column; align-items: stretch; }
  section { padding: 76px 0; }
  .facts-grid { grid-template-columns: 1fr; }
  .fact, .fact:nth-child(odd) { min-height: 74px; padding: 13px 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.18); }
  .fact:first-child { border-top: 0; }
  .feature-images { min-height: 430px; }
  .feature-images .image-main { width: 88%; height: 365px; }
  .feature-images .image-small { width: 52%; height: 205px; border-width: 8px; }
  .home-gallery-grid { grid-template-columns: 1fr; }
  .home-gallery-grid img, .home-gallery-grid img:first-child { grid-column: auto; height: 270px; }
  .space-grid, .equipment-grid, .address-grid, .shopping-grid { grid-template-columns: 1fr; }
  .space-card { padding: 28px 24px; }
  .space-card h3 { margin-top: 32px; }
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: 330px repeat(4, 235px); }
  .gallery-grid figure:first-child, .gallery-grid figure:last-child { grid-row: auto; grid-column: auto; }
  .gallery-grid--twelve { grid-template-columns: 1fr; grid-template-rows: none; grid-auto-rows: 250px; }
  .gallery-grid--twelve .gallery-wide { grid-column: auto; }
  .equipment-card { padding: 28px 24px; }
  .terrace-grid img { min-height: 330px; }
  .terrace-copy { padding: 60px 28px; }
  .distance-list li { grid-template-columns: 92px 1fr; gap: 14px; }
  .satellite-map { height: 470px; }
  .map-legend { grid-template-columns: 1fr; }
  .map-legend li { min-height: 58px; }
  .neighborhood-photo-grid, .reviews-grid { grid-template-columns: 1fr; }
  .neighborhood-photo-grid img { height: 280px; }
  .weekend-index { flex-direction: column; gap: 18px; }
  .route { padding-left: 24px; }
  .route-stop { grid-template-columns: 1fr; gap: 9px; padding-bottom: 52px; }
  .route-stop::before { left: -30px; }
  .route-photo-pair { grid-template-columns: 1fr; }
  .route-photo-pair img { height: 260px; }
  .stay-row { grid-template-columns: 42px 1fr; gap: 16px; padding-block: 30px; }
  .stay-copy { grid-column: 2; }
  .stay-row--home { margin-inline: -14px; padding-inline: 14px; }
  .roadbook-step { grid-template-columns: 48px 1fr; gap: 14px; }
  .press-facts, .press-gallery { grid-template-columns: 1fr; }
  .press-gallery img { height: 260px; }
  .localized-facts, .localized-equipment, .localized-days { grid-template-columns: 1fr; }
  .localized-suite-media { grid-template-columns: 1fr 1fr; }
  .localized-suite-media img { height: 320px; }
  .localized-suite-media img:last-child { height: 240px; }
  .localized-day { padding: 28px 24px; }
  .review-card { min-height: auto; }
  .footer-inner { align-items: flex-start; flex-direction: column; }
  .footer-links { flex-direction: column; gap: 7px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}
