/* ==========================================================================
   Villa La Canonica — B&B di charme, Padernello (BS)
   Editorial luxury design system
   ========================================================================== */

:root {
  --bordeaux: #952f36;
  --bordeaux-deep: #7a2329;
  --bordeaux-ink: #4c151a;
  --wine-black: #201012;
  --ivory: #faf6ef;
  --ivory-soft: #f4ede1;
  --sand: #e9dcc8;
  --beige: #d9c7ab;
  --med-blue: #3e7b91;
  --med-blue-soft: #9cc0cc;
  --ink: #2c2320;
  --muted: #857468;
  --line: rgba(76, 21, 26, 0.14);
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --shadow-soft: 0 30px 60px -30px rgba(44, 21, 16, 0.35);
  --shadow-card: 0 18px 50px -22px rgba(44, 21, 16, 0.28);
  --ease-lux: cubic-bezier(0.22, 0.61, 0.21, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

::selection { background: var(--bordeaux); color: var(--ivory); }

/* ---------- Typography ---------- */

h1, h2, h3, .serif {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  color: var(--bordeaux-ink);
}

h1 { font-size: clamp(2.6rem, 6.2vw, 5rem); letter-spacing: 0.01em; }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.8rem); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--bordeaux);
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--bordeaux);
  opacity: 0.55;
}

.lead {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-style: italic;
  color: var(--muted);
  line-height: 1.55;
}

p { max-width: 62ch; }

/* ---------- Layout helpers ---------- */

.wrap {
  width: min(1240px, calc(100% - 3rem));
  margin-inline: auto;
}

.section { padding: clamp(4.5rem, 9vw, 8.5rem) 0; }
.section--tight { padding: clamp(3rem, 6vw, 5rem) 0; }
.section--sand { background: linear-gradient(180deg, var(--ivory) 0%, var(--ivory-soft) 18%, var(--ivory-soft) 82%, var(--ivory) 100%); }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 1.1s var(--ease-lux), transform 1.1s var(--ease-lux);
  transition-delay: var(--d, 0s);
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-slide img { animation: none !important; }
  * { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}

/* ---------- Navigation ---------- */

.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.5s var(--ease-lux), box-shadow 0.5s, backdrop-filter 0.5s;
  color: var(--ivory);
}

.nav__inner {
  width: min(1360px, calc(100% - 3rem));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 0;
  transition: padding 0.45s var(--ease-lux);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: currentColor;
}

.nav__brand svg { width: 44px; height: auto; }

.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }

.nav__brand-text b {
  font-family: var(--serif);
  font-weight: 600;
  font-style: italic;
  font-size: 1.28rem;
  letter-spacing: 0.02em;
}

.nav__brand-text span {
  font-size: 0.58rem;
  letter-spacing: 0.44em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.85;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2.1rem);
  list-style: none;
}

.nav__links a {
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  position: relative;
  padding: 0.35rem 0;
  opacity: 0.92;
  transition: opacity 0.3s;
}

.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-lux);
}

.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  border: 1px solid currentColor;
  padding: 0.62rem 1.5rem !important;
  transition: background 0.35s, color 0.35s;
}

.nav__cta:hover { background: var(--ivory); color: var(--bordeaux-ink) !important; }
.nav__cta::after { display: none; }

.nav__lang {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  display: flex;
  gap: 0.45rem;
  align-items: center;
  opacity: 0.9;
}

.nav__lang a.active { text-decoration: underline; text-underline-offset: 4px; }

.nav.scrolled {
  background: rgba(250, 246, 239, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  color: var(--bordeaux-ink);
  box-shadow: 0 1px 0 var(--line), 0 14px 40px -28px rgba(44, 21, 16, 0.4);
}

.nav.scrolled .nav__inner { padding: 0.7rem 0; }
.nav.scrolled .nav__cta:hover { background: var(--bordeaux); border-color: var(--bordeaux); color: var(--ivory) !important; }

.nav__toggle {
  display: none;
  background: none;
  border: none;
  color: currentColor;
  width: 42px;
  height: 42px;
  cursor: pointer;
}

.nav__toggle svg { width: 26px; height: 26px; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  isolation: isolate;
  overflow: hidden;
}

.hero-slides { position: absolute; inset: 0; z-index: -2; }

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 14s var(--ease-lux) both;
}

@keyframes kenburns {
  from { transform: scale(1.0) translateY(0); }
  to   { transform: scale(1.09) translateY(-1.6%); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(32, 16, 18, 0.52) 0%, rgba(32, 16, 18, 0.08) 34%, rgba(32, 16, 18, 0.16) 62%, rgba(32, 16, 18, 0.66) 100%),
    linear-gradient(100deg, rgba(32, 16, 18, 0.42) 0%, rgba(32, 16, 18, 0) 55%);
}

.hero__inner {
  width: min(1360px, calc(100% - 3rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: end;
  padding: 8.5rem 0 clamp(2.5rem, 5vh, 4.5rem);
}

.hero__copy { padding-bottom: 1rem; }

.hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  font-weight: 400;
  opacity: 0.92;
  display: block;
  margin-bottom: 1.6rem;
}

.hero__title {
  color: var(--ivory);
  font-weight: 500;
  font-size: clamp(2.9rem, 6.5vw, 5.4rem);
  text-wrap: balance;
}

.hero__title em { font-style: italic; font-weight: 400; }

.hero__sub {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.15rem, 1.9vw, 1.5rem);
  max-width: 30ch;
  opacity: 0.94;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.8rem;
  margin-top: 2.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__badges .score {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: normal;
  letter-spacing: 0;
  line-height: 1;
}

.hero__badge { display: flex; align-items: center; gap: 0.7rem; opacity: 0.95; }
.hero__badge small { display: block; font-size: 0.62rem; opacity: 0.8; letter-spacing: 0.2em; }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.4rem;
  transform: translateX(-50%);
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.75;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.hero__scroll::after {
  content: "";
  width: 1px;
  height: 44px;
  background: linear-gradient(var(--ivory), transparent);
  animation: drip 2.4s ease-in-out infinite;
}

@keyframes drip {
  0% { transform: scaleY(0); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ---------- Booking card ---------- */

.booking-card {
  background: rgba(250, 246, 239, 0.96);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--ink);
  border-radius: 6px;
  box-shadow: var(--shadow-soft);
  padding: clamp(1.4rem, 2.4vw, 2rem);
  max-width: 460px;
  justify-self: end;
  width: 100%;
}

.booking-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}

.booking-card__head h2 {
  font-size: 1.45rem;
  font-style: italic;
  font-weight: 600;
}

.booking-card__head span {
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
}

.cal {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 0.9rem;
  background: #fff;
}

.cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.cal__month {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--bordeaux-ink);
  text-transform: capitalize;
}

.cal__btn {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--bordeaux);
  cursor: pointer;
  transition: background 0.3s, color 0.3s;
}

.cal__btn:hover:not(:disabled) { background: var(--bordeaux); color: var(--ivory); }
.cal__btn:disabled { opacity: 0.3; cursor: default; }

.cal__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.cal__dow {
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.3rem 0 0.45rem;
  font-weight: 400;
}

.cal__day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  font-size: 0.86rem;
  font-weight: 400;
  border: none;
  background: none;
  border-radius: 50%;
  cursor: pointer;
  color: var(--ink);
  position: relative;
  transition: background 0.25s, color 0.25s;
  font-variant-numeric: tabular-nums;
}

.cal__day:hover:not(:disabled) { background: var(--sand); }
.cal__day:disabled { color: #c9beb2; cursor: default; }
.cal__day.today::after {
  content: "";
  position: absolute;
  bottom: 5px;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--bordeaux);
}

.cal__day.in-range { background: var(--ivory-soft); border-radius: 0; color: var(--bordeaux-ink); }
.cal__day.range-start, .cal__day.range-end {
  background: var(--bordeaux);
  color: var(--ivory);
}
.cal__day.range-start { border-radius: 50% 0 0 50%; }
.cal__day.range-end { border-radius: 0 50% 50% 0; }
.cal__day.range-start.range-end { border-radius: 50%; }

.booking-card__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin-top: 0.9rem;
}

.booking-field {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  padding: 0.5rem 0.8rem;
  font-size: 0.8rem;
}

.booking-field label {
  display: block;
  font-size: 0.56rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.1rem;
}

.booking-field output { font-weight: 400; font-size: 0.88rem; }

.booking-field--guests {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.stepper { display: flex; align-items: center; gap: 0.55rem; }

.stepper button {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: none;
  color: var(--bordeaux);
  font-size: 0.95rem;
  cursor: pointer;
  line-height: 1;
  transition: background 0.25s, color 0.25s;
}

.stepper button:hover:not(:disabled) { background: var(--bordeaux); color: #fff; }
.stepper button:disabled { opacity: 0.3; cursor: default; }
.stepper output { min-width: 1.2ch; text-align: center; font-size: 0.95rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--bordeaux);
  color: var(--ivory);
  border: 1px solid var(--bordeaux);
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 1.02rem 2rem;
  cursor: pointer;
  transition: background 0.35s, color 0.35s, transform 0.35s var(--ease-lux), box-shadow 0.35s;
}

.btn:hover {
  background: var(--bordeaux-deep);
  border-color: var(--bordeaux-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -18px rgba(122, 35, 41, 0.9);
}

.btn--full { width: 100%; margin-top: 0.9rem; }

.btn--ghost {
  background: transparent;
  color: var(--bordeaux);
}

.btn--ghost:hover { background: var(--bordeaux); color: var(--ivory); }

.btn--light {
  background: var(--ivory);
  border-color: var(--ivory);
  color: var(--bordeaux-ink);
}

.btn--light:hover { background: transparent; border-color: var(--ivory); color: var(--ivory); }

.booking-card__note {
  margin-top: 0.85rem;
  font-size: 0.72rem;
  color: var(--muted);
  text-align: center;
}

.booking-card__alt {
  margin-top: 0.7rem;
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.booking-card__alt a {
  color: var(--bordeaux);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.booking-card__alt a:hover { border-color: var(--bordeaux); }

/* ---------- Editorial intro ---------- */

.intro { text-align: center; }

.intro .lead { margin: 0 auto; max-width: 44ch; }

.intro h2 { max-width: 22ch; margin: 0 auto 1.6rem; text-wrap: balance; }

.intro__sign {
  margin-top: 2.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--bordeaux);
}

/* ---------- Story blocks (alternating) ---------- */

.story {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 4rem);
}

.story + .story { margin-top: clamp(4rem, 8vw, 7rem); }

.story__media {
  grid-column: 1 / span 7;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.story__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}

.story__media:hover img { transform: scale(1.045); }

.story__body { grid-column: 8 / -1; }

.story--flip .story__media { grid-column: 6 / -1; order: 2; }
.story--flip .story__body { grid-column: 1 / span 5; order: 1; }

.story__body h2 { margin-bottom: 1.4rem; text-wrap: balance; }
.story__body p + p { margin-top: 1.1rem; }
.story__body .btn { margin-top: 2rem; }

.story__kicker {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--bordeaux);
  margin-bottom: 0.6rem;
  display: block;
}

.figure-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1rem;
  color: var(--ivory);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0.85;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.55);
}

/* ---------- Full-bleed parallax band ---------- */

.band {
  position: relative;
  height: clamp(420px, 72vh, 640px);
  overflow: hidden;
  display: grid;
  place-items: center;
  color: var(--ivory);
  text-align: center;
  isolation: isolate;
}

.band__img {
  position: absolute;
  inset: -12% 0;
  z-index: -2;
  will-change: transform;
}

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

.band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32, 16, 18, 0.38), rgba(32, 16, 18, 0.5));
}

.band h2 { color: var(--ivory); max-width: 20ch; margin-inline: auto; text-wrap: balance; }

.band .eyebrow { color: var(--ivory); justify-content: center; }
.band .eyebrow::before { background: var(--ivory); }

.band p {
  margin: 1.2rem auto 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  max-width: 46ch;
}

.band .btn { margin-top: 2.2rem; }

/* ---------- Rooms ---------- */

.rooms__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.rooms__head p { color: var(--muted); }

.rooms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.2rem, 2.6vw, 2.4rem);
}

.room-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-lux), box-shadow 0.6s;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 34px 70px -30px rgba(44, 21, 16, 0.4);
}

.room-card__media {
  position: relative;
  aspect-ratio: 4 / 3.1;
  overflow: hidden;
}

.room-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-lux);
}

.room-card:hover .room-card__media img { transform: scale(1.06); }

.room-card__tag {
  position: absolute;
  top: 1rem; left: 1rem;
  background: rgba(250, 246, 239, 0.94);
  color: var(--bordeaux-ink);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 0.42rem 0.9rem;
  border-radius: 2px;
}

.room-card__body {
  padding: 1.7rem 1.6rem 1.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.room-card__body h3 { font-style: italic; font-weight: 600; margin-bottom: 0.5rem; }

.room-card__meta {
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.room-card__body p { font-size: 0.92rem; color: #5d5148; flex: 1; }

.room-card__amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 1.2rem 0 1.4rem;
}

.room-card__amenities span {
  font-size: 0.64rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.32rem 0.7rem;
  border-radius: 20px;
  color: var(--muted);
}

.room-card .btn { align-self: flex-start; padding: 0.85rem 1.6rem; }

/* ---------- Breakfast / split feature ---------- */

.feature {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.feature__gallery {
  grid-column: 1 / span 6;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 1rem;
  align-items: start;
}

.feature__gallery figure {
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-card);
}

.feature__gallery img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.3s var(--ease-lux);
}

.feature__gallery figure:hover img { transform: scale(1.05); }

.feature__gallery figure:nth-child(2) { margin-top: 3rem; }

.feature__body { grid-column: 8 / -1; }
.feature__body h2 { margin-bottom: 1.4rem; }
.feature__body p + p { margin-top: 1.1rem; }

.feature__list {
  list-style: none;
  margin-top: 1.6rem;
  display: grid;
  gap: 0.75rem;
}

.feature__list li {
  display: flex;
  gap: 0.9rem;
  align-items: baseline;
  font-size: 0.95rem;
}

.feature__list li::before {
  content: "—";
  color: var(--bordeaux);
  flex-shrink: 0;
}

/* ---------- Experiences slider ---------- */

.exp { overflow: hidden; }

.exp__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.exp__controls { display: flex; gap: 0.6rem; }

.exp__controls button {
  width: 48px; height: 48px;
  border-radius: 50%;
  border: 1px solid var(--bordeaux);
  background: none;
  color: var(--bordeaux);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: background 0.3s, color 0.3s;
}

.exp__controls button:hover { background: var(--bordeaux); color: var(--ivory); }

.exp__track {
  display: flex;
  gap: clamp(1rem, 2vw, 1.8rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 0.5rem 0.2rem 1.5rem;
  margin: 0 -0.2rem;
}

.exp__track::-webkit-scrollbar { display: none; }

.exp-card {
  flex: 0 0 min(380px, 78vw);
  scroll-snap-align: start;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  isolation: isolate;
}

.exp-card img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease-lux);
}

.exp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(200deg, rgba(32,16,18,0) 30%, rgba(32,16,18,0.72) 100%);
  transition: background 0.6s;
}

.exp-card:hover img { transform: scale(1.06); }

.exp-card__body { padding: 1.6rem; }

.exp-card__body h3 { color: var(--ivory); font-style: italic; margin-bottom: 0.4rem; }

.exp-card__body p { font-size: 0.88rem; opacity: 0.92; max-width: 32ch; }

.exp-card__dist {
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  border: 1px solid rgba(250, 246, 239, 0.5);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 0.9rem;
}

/* ---------- Reviews ---------- */

.reviews { text-align: center; }

.reviews__score {
  font-family: var(--serif);
  font-size: clamp(4.4rem, 9vw, 6.8rem);
  font-weight: 500;
  color: var(--bordeaux);
  line-height: 1;
}

.reviews__score sub {
  font-size: 0.32em;
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 300;
}

.reviews__meta {
  font-size: 0.74rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0.8rem auto 0;
}

.reviews__award {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.6rem;
  border: 1px solid var(--line);
  padding: 0.7rem 1.4rem;
  border-radius: 40px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bordeaux-ink);
  background: #fff;
}

.review-bars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem 3rem;
  max-width: 860px;
  margin: 3.2rem auto 0;
  text-align: left;
}

.review-bar__label {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.review-bar__label b { color: var(--bordeaux-ink); font-weight: 500; font-variant-numeric: tabular-nums; }

.review-bar__track {
  height: 2px;
  background: var(--sand);
  overflow: hidden;
}

.review-bar__fill {
  height: 100%;
  background: var(--bordeaux);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.6s var(--ease-lux) 0.2s;
}

.is-visible .review-bar__fill { transform: scaleX(var(--w)); }

.reviews__quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1080px;
  margin: 3.4rem auto 0;
}

.quote {
  background: #fff;
  border-radius: 4px;
  padding: 1.9rem 1.7rem;
  box-shadow: var(--shadow-card);
  text-align: left;
  font-size: 0.95rem;
  color: #5d5148;
}

.quote p { font-family: var(--serif); font-size: 1.12rem; font-style: italic; color: var(--ink); line-height: 1.5; }

.quote footer {
  margin-top: 1.1rem;
  font-size: 0.66rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--muted);
}

.reviews__link {
  display: inline-block;
  margin-top: 2.6rem;
  font-size: 0.74rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--bordeaux);
  border-bottom: 1px solid var(--bordeaux);
  padding-bottom: 0.3rem;
  transition: opacity 0.3s;
}

.reviews__link:hover { opacity: 0.7; }

/* ---------- Location ---------- */

.location {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: stretch;
}

.location__info { grid-column: 1 / span 5; }

.location__info h2 { margin-bottom: 1.4rem; }

.location__map {
  grid-column: 6 / -1;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
  min-height: 420px;
  filter: saturate(0.82) sepia(0.08);
}

.location__map iframe { width: 100%; height: 100%; border: 0; display: block; }

.location__address {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  margin-bottom: 1.6rem;
}

.dist-list { list-style: none; display: grid; gap: 0.65rem; margin-top: 1.4rem; }

.dist-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--line);
  padding-bottom: 0.6rem;
  font-size: 0.92rem;
}

.dist-list li b { font-weight: 400; color: var(--muted); font-variant-numeric: tabular-nums; white-space: nowrap; }

/* ---------- FAQ ---------- */

.faq { max-width: 820px; margin-inline: auto; }

.faq h2 { text-align: center; margin-bottom: clamp(2rem, 4vw, 3rem); }

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.35rem 2.6rem 1.35rem 0.2rem;
  font-family: var(--serif);
  font-size: 1.22rem;
  font-weight: 500;
  color: var(--bordeaux-ink);
  position: relative;
  transition: color 0.3s;
}

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

.faq summary:hover { color: var(--bordeaux); }

.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.4rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-weight: 200;
  font-size: 1.5rem;
  color: var(--bordeaux);
  transition: transform 0.4s var(--ease-lux);
}

.faq details[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq details p {
  padding: 0 0.2rem 1.5rem;
  color: #5d5148;
  font-size: 0.95rem;
  max-width: 68ch;
}

/* ---------- CTA final ---------- */

.cta-final {
  text-align: center;
  color: var(--ivory);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(5rem, 11vw, 9rem) 0;
}

.cta-final__img { position: absolute; inset: -10% 0; z-index: -2; will-change: transform; }
.cta-final__img img { width: 100%; height: 100%; object-fit: cover; }

.cta-final::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(32,16,18,0.55), rgba(76,21,26,0.62));
}

.cta-final h2 { color: var(--ivory); max-width: 22ch; margin: 0 auto 1.2rem; }
.cta-final p { font-family: var(--serif); font-style: italic; font-size: 1.3rem; margin: 0 auto; max-width: 44ch; }
.cta-final .btn { margin-top: 2.4rem; }

/* ---------- Footer ---------- */

.footer {
  background: var(--wine-black);
  color: rgba(250, 246, 239, 0.82);
  padding: clamp(3.5rem, 7vw, 6rem) 0 2rem;
  font-size: 0.9rem;
}

.footer a { transition: color 0.3s; }
.footer a:hover { color: var(--ivory); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 246, 239, 0.14);
}

.footer__brand svg { width: 64px; color: var(--ivory); margin-bottom: 1.1rem; }

.footer__brand .serif {
  color: var(--ivory);
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  display: block;
  margin-bottom: 0.4rem;
}

.footer__brand small {
  font-size: 0.6rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  opacity: 0.7;
}

.footer__brand p { margin-top: 1.4rem; font-size: 0.86rem; opacity: 0.75; max-width: 30ch; }

.footer h4 {
  font-size: 0.66rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 400;
  color: var(--beige);
  margin-bottom: 1.3rem;
}

.footer ul { list-style: none; display: grid; gap: 0.7rem; }

.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.8rem;
  font-size: 0.72rem;
  opacity: 0.6;
}

/* ---------- WhatsApp float ---------- */

.wa-float {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  z-index: 90;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--bordeaux);
  color: var(--ivory);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px -10px rgba(76, 21, 26, 0.6);
  transition: transform 0.35s var(--ease-lux), background 0.35s;
}

.wa-float:hover { transform: translateY(-4px) scale(1.05); background: var(--bordeaux-deep); }
.wa-float svg { width: 26px; height: 26px; }

/* ---------- Mobile ---------- */

@media (max-width: 1080px) {
  .hero__inner { grid-template-columns: 1fr; align-items: end; }
  .booking-card { justify-self: stretch; max-width: 560px; margin-inline: auto; }
  .hero__copy { padding-bottom: 0; }
  .story__media, .story--flip .story__media { grid-column: 1 / -1; order: 0; }
  .story__body, .story--flip .story__body { grid-column: 1 / -1; order: 1; }
  .feature__gallery { grid-column: 1 / -1; }
  .feature__body { grid-column: 1 / -1; }
  .location__info, .location__map { grid-column: 1 / -1; }
  .rooms { grid-template-columns: 1fr 1fr; }
  .reviews__quotes { grid-template-columns: 1fr 1fr; }
  .review-bars { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 820px) {
  .nav__links {
    position: fixed;
    inset: 0;
    background: var(--wine-black);
    color: var(--ivory);
    flex-direction: column;
    justify-content: center;
    gap: 2.2rem;
    transform: translateY(-100%);
    transition: transform 0.6s var(--ease-lux);
  }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 1rem; }
  .nav__toggle { display: grid; place-items: center; z-index: 110; }
  .rooms { grid-template-columns: 1fr; }
  .reviews__quotes { grid-template-columns: 1fr; }
  .hero__badges { gap: 0.8rem 1.2rem; }
  .rooms__head, .exp__head { flex-direction: column; align-items: flex-start; gap: 1rem; }
}

@media (max-width: 560px) {
  .review-bars { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .booking-card__row { grid-template-columns: 1fr; }
  .feature__gallery figure:nth-child(2) { margin-top: 1.5rem; }
  .wrap { width: calc(100% - 2.2rem); }
}
