:root {
  --bg: #f6f1e8;
  --bg-soft: #fbf8f2;
  --panel: rgba(255, 252, 247, 0.8);
  --text: #1f1a17;
  --muted: #6e6258;
  --line: rgba(69, 51, 35, 0.14);
  --gold: #a47a4b;
  --gold-strong: #886037;
  --forest: #2e3a31;
  --shadow: 0 24px 60px rgba(43, 27, 13, 0.12);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(164,122,75,0.08), transparent 35%),
    linear-gradient(180deg, #f9f5ef 0%, #f2ece2 100%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: var(--container); margin: 0 auto; }
.section { padding: 104px 0; }
.section.alt { background: rgba(255, 255, 255, 0.42); }
.section-label,
.eyebrow,
.brand-kicker,
.room-tag,
.stat-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.76rem;
  color: var(--gold-strong);
  font-weight: 700;
}

h1, h2, h3, .brand-name, .footer-brand {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 0.96;
  margin: 0;
}

p { line-height: 1.7; color: var(--muted); margin: 0; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, #b88b56, #8d6337);
  color: white;
  box-shadow: 0 12px 30px rgba(141, 99, 55, 0.25);
}
.btn-dark {
  background: var(--forest);
  color: white;
}
.btn-ghost {
  color: white;
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(8px);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(248, 242, 233, 0.76);
  border-bottom: 1px solid rgba(86, 62, 41, 0.08);
}
.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}
.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand-name {
  font-size: clamp(1.45rem, 2vw, 2rem);
}
.site-nav {
  justify-self: center;
  display: flex;
  gap: 26px;
  font-weight: 600;
  color: #473a31;
}
.site-nav a { position: relative; }
.site-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a.active::after { transform: scaleX(1); }
.site-nav a.active { color: var(--gold-strong); }
.menu-toggle,
.mobile-menu { display: none; }
.menu-toggle {
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%; background: transparent;
}
.menu-toggle span {
  display: block; width: 18px; height: 2px; margin: 5px auto;
  background: var(--text);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: clip;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media {
  background-image: url('assets/hero-exterior.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.hero-overlay {
  background:
    linear-gradient(180deg, rgba(20,15,10,0.14) 0%, rgba(20,15,10,0.50) 40%, rgba(20,15,10,0.78) 100%),
    radial-gradient(circle at 20% 30%, rgba(255,220,176,0.20), transparent 35%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: white;
  padding-bottom: 72px;
  display: grid;
  gap: 22px;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 8vw, 7.1rem);
}
.hero-copy {
  max-width: 720px;
  font-size: 1.12rem;
  color: rgba(255,255,255,0.84);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-highlights {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0; margin: 4px 0 0;
}
.hero-highlights li {
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
}

.intro-grid,
.signature-grid,
.story-grid,
.footer-wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}
.intro-copy h2,
.signature-copy h2,
.story-copy h2,
.section-head h2,
.cta-panel h2 {
  font-size: clamp(2.8rem, 4vw, 4.4rem);
  margin: 14px 0 18px;
}
.intro-copy,
.signature-copy,
.story-copy,
.section-head,
.cta-panel div:first-child {
  display: grid;
  gap: 14px;
}
.intro-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.stat-card,
.room-card,
.destination-card,
.review-card,
.cta-panel {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(79, 56, 32, 0.08);
  box-shadow: var(--shadow);
}
.stat-card {
  border-radius: var(--radius-lg);
  padding: 28px;
  min-height: 190px;
  display: grid;
  align-content: start;
  gap: 10px;
}
.stat-card strong {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-family: 'Cormorant Garamond', serif;
}

.signature-image img,
.story-collage img,
.destination-card img,
.room-image img,
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
}
.signature-image {
  border-radius: 34px;
  overflow: hidden;
  min-height: 640px;
  box-shadow: var(--shadow);
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  padding: 0; margin: 6px 0 0;
  list-style: none;
}
.feature-list li {
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(164,122,75,0.08);
  color: #4a3d33;
  font-weight: 600;
}

.salon-section {
  padding-top: 0;
}

.salon-banner {
  background: linear-gradient(135deg, rgba(255, 250, 242, 0.98), rgba(245, 233, 214, 0.96));
  border: 1px solid rgba(79, 56, 32, 0.1);
  box-shadow: var(--shadow);
  border-radius: 34px;
  padding: 42px 48px;
  text-align: center;
  display: grid;
  gap: 14px;
}

.salon-banner h2 {
  font-size: clamp(2.8rem, 4.5vw, 4.6rem);
}

.section-head { margin-bottom: 34px; }
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.room-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.room-image { aspect-ratio: 0.88 / 1; }
.room-body {
  padding: 22px 22px 26px;
  display: grid;
  gap: 12px;
}
.room-body h3,
.destination-body h3,
.review-card strong {
  font-size: clamp(1.7rem, 2vw, 2.2rem);
}

.story-collage {
  position: relative;
  min-height: 560px;
}
.collage-main {
  border-radius: 32px;
  height: 100%;
  box-shadow: var(--shadow);
}
.collage-float {
  position: absolute;
  width: 46%;
  right: -3%;
  bottom: 7%;
  border: 10px solid rgba(250,246,239,0.92);
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(24,18,12,0.18);
}

.destination-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 22px;
}
.destination-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 240px;
  display: grid;
}
.destination-card-large { min-height: 520px; }
.destination-card img { min-height: 240px; }
.destination-body {
  padding: 24px;
  display: grid;
  gap: 10px;
}
.destination-card.tone {
  background: linear-gradient(180deg, #2d3a31, #172019);
  color: white;
}
.destination-card.tone p,
.destination-card.tone h3 { color: white; }
.text-only { align-content: center; }

.gallery-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr 1.05fr;
  grid-template-rows: 270px 270px;
  gap: 20px;
}
.gallery-item {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.gallery-item.tall { grid-row: 1 / span 2; }
.gallery-item.wide { grid-column: 2 / span 2; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.review-card {
  border-radius: 24px;
  padding: 30px;
  display: grid;
  gap: 18px;
}
.review-card p {
  font-size: 1.03rem;
  color: #4b3f36;
}
.review-card strong { color: var(--text); }

.cta-panel {
  border-radius: 34px;
  padding: 40px;
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
}

.site-footer {
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
}
.footer-wrap {
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: end;
}
.footer-brand {
  font-size: 1.8rem;
  margin-top: 8px;
}
.footer-note {
  justify-self: end;
  text-align: right;
}

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

@media (max-width: 1100px) {
  .site-nav,
  .desktop-cta { display: none; }
  .menu-toggle { display: inline-block; justify-self: end; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .mobile-menu {
    display: none;
    width: var(--container);
    margin: 0 auto 18px;
    padding: 0 0 8px;
  }
  .mobile-menu.is-open {
    display: grid;
    gap: 10px;
  }
  .mobile-menu a {
    background: rgba(255,255,255,0.72);
    padding: 14px 16px;
    border-radius: 16px;
    font-weight: 600;
    border: 1px solid var(--line);
  }
  .mobile-menu a.active {
    color: var(--gold-strong);
    border-color: rgba(164,122,75,0.28);
    background: rgba(255,250,244,0.95);
  }
  .rooms-grid,
  .destination-grid,
  .reviews-grid,
  .gallery-grid,
  .intro-grid,
  .signature-grid,
  .story-grid,
  .cta-panel,
  .footer-wrap {
    grid-template-columns: 1fr;
  }
  .gallery-grid { grid-template-rows: repeat(4, 260px); }
  .gallery-item.tall,
  .gallery-item.wide { grid-row: auto; grid-column: auto; }
  .signature-image { min-height: 420px; }
  .story-collage { min-height: 440px; }
  .cta-actions,
  .footer-note { justify-content: flex-start; justify-self: start; text-align: left; }
}

@media (max-width: 780px) {
  .section { padding: 82px 0; }
  .hero { min-height: 86vh; }
  .hero-content { padding-bottom: 54px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 4.8rem); }
  .hero-highlights { display: grid; }
  .intro-cards { grid-template-columns: 1fr; }
  .rooms-grid { grid-template-columns: 1fr; }
  .destination-card-large { min-height: 360px; }
  .story-collage { min-height: 360px; }
  .collage-float {
    width: 42%;
    right: 2%;
    bottom: 4%;
  }
  .cta-panel { padding: 30px; }
}

.section-tight {
  padding: 32px 0 0;
}

.footer-detailed {
  grid-template-columns: 1fr auto;
  align-items: center;
}

.footer-contact {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.footer-contact a,
.contact-list a {
  color: var(--text);
  font-weight: 600;
}

.quote-banner {
  background: linear-gradient(135deg, rgba(46,58,49,0.96), rgba(18,26,20,0.96));
  color: white;
  border-radius: 34px;
  padding: 36px 40px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.quote-banner p,
.quote-banner h2 {
  color: white;
}

.page-hero {
  min-height: 62vh;
  display: grid;
  align-items: end;
  background-image: linear-gradient(180deg, rgba(20,15,10,0.18) 0%, rgba(20,15,10,0.58) 100%), var(--hero-image);
  background-size: cover;
  background-position: center;
  color: white;
}

.page-hero-content {
  padding: 130px 0 72px;
  display: grid;
  gap: 18px;
}

.page-hero-content h1 {
  max-width: 840px;
  font-size: clamp(3.2rem, 7vw, 5.8rem);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 760px;
  color: rgba(255,255,255,0.86);
  font-size: 1.08rem;
}

.page-section {
  padding-top: 96px;
}

.split-band,
.detail-card,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.media-right .prose-card {
  order: 1;
}

.media-right .media-frame {
  order: 2;
}

.media-frame,
.contact-card,
.detail-copy,
.prose-card,
.mini-card {
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(79, 56, 32, 0.08);
  box-shadow: var(--shadow);
}

.media-frame {
  min-height: 380px;
  border-radius: 30px;
  overflow: hidden;
}

.media-frame img,
.detail-media img,
.contact-side-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose-card,
.detail-copy,
.contact-card {
  border-radius: 30px;
  padding: 34px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.prose-card h2,
.contact-card h2,
.quote-banner h2 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  margin: 0;
}

.compact-list li {
  padding: 12px 16px;
}

.detail-grid {
  display: grid;
  gap: 24px;
}

.detail-card {
  grid-template-columns: 1.05fr 0.95fr;
}

.detail-card.reverse .detail-media {
  order: 2;
}

.detail-card.reverse .detail-copy {
  order: 1;
}

.detail-media {
  min-height: 320px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.detail-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.mini-card {
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 10px;
}

.mini-card h3 {
  font-size: 2rem;
  margin: 0;
}

.contact-grid {
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 6px;
}

.contact-list span,
.contact-form label span {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.74rem;
  color: var(--gold-strong);
  font-weight: 700;
  margin-bottom: 8px;
}

.map-card {
  align-content: start;
}

.map-frame {
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(79, 56, 32, 0.08);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 420px;
}

.contact-form {
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(79, 56, 32, 0.14);
  border-radius: 16px;
  padding: 15px 16px;
  font: inherit;
  color: var(--text);
  background: rgba(255,255,255,0.88);
}

.check-row {
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}

.check-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.check-row span {
  margin-bottom: 0;
  letter-spacing: normal;
  text-transform: none;
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
}

.contact-side-image {
  min-height: 100%;
}

@media (max-width: 1100px) {
  .footer-detailed,
  .split-band,
  .detail-card,
  .contact-grid,
  .detail-mini-grid {
    grid-template-columns: 1fr;
  }

  .footer-contact {
    justify-items: start;
    text-align: left;
  }
}

@media (max-width: 780px) {
  .page-hero-content {
    padding: 116px 0 56px;
  }

  .page-hero {
    min-height: 54vh;
  }

  .quote-banner,
  .prose-card,
  .detail-copy,
  .contact-card {
    padding: 28px;
  }

  .media-frame,
  .detail-media,
  .map-frame,
  .map-frame iframe {
    min-height: 280px;
  }
}

.section-tight-top {
  padding-top: 0;
}

.split-band-carousel .media-frame {
  min-height: 520px;
}

.highlight-panel {
  background: linear-gradient(135deg, rgba(255, 249, 240, 0.96), rgba(248, 240, 226, 0.96));
  border: 1px solid rgba(79, 56, 32, 0.08);
  box-shadow: var(--shadow);
  border-radius: 30px;
  padding: 34px 38px;
  display: grid;
  gap: 16px;
}

.carousel {
  position: relative;
  overflow: hidden;
}

.carousel-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity .45s ease;
  pointer-events: none;
}

.carousel-slide.is-active {
  opacity: 1;
  z-index: 2;
  pointer-events: auto;
}

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

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: rgba(20, 15, 10, 0.42);
  color: white;
  font-size: 1.8rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  backdrop-filter: blur(8px);
}

.carousel-arrow.prev { left: 16px; }
.carousel-arrow.next { right: 16px; }

.carousel-dots {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 4;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
}

.carousel-dot.is-active {
  background: white;
  box-shadow: 0 0 0 3px rgba(255,255,255,0.22);
}

.room-card-carousel {
  min-height: 330px;
  aspect-ratio: 0.88 / 1;
}

.room-card-carousel .carousel-arrow {
  width: 38px;
  height: 38px;
  font-size: 1.45rem;
}

.room-fiches-grid {
  display: grid;
  gap: 24px;
}

.room-fiche {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 24px;
  align-items: stretch;
  background: rgba(255,255,255,0.58);
  border: 1px solid rgba(79, 56, 32, 0.08);
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.room-fiche-media {
  min-height: 360px;
}

.room-fiche-body {
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 14px;
}

.room-fiche-body h3 {
  font-size: clamp(2rem, 3vw, 3rem);
}

.room-price {
  width: fit-content;
  padding: 12px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(164,122,75,0.16), rgba(255,248,239,0.96));
  border: 1px solid rgba(164,122,75,0.35);
  box-shadow: 0 14px 28px rgba(87, 59, 30, 0.12);
  display: grid;
  gap: 2px;
}

.room-price span {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: var(--gold-strong);
  font-weight: 700;
}

.room-price strong {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--text);
}

.room-note {
  grid-column: 1 / -1;
  margin: -6px 8px 0;
  font-size: 0.95rem;
  color: #72665d;
  text-align: right;
}

.room-specs {
  margin: 6px 0 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.room-specs li {
  line-height: 1.6;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  background: #25D366;
  color: white;
  box-shadow: 0 18px 40px rgba(37, 211, 102, 0.34);
  font-weight: 800;
}

.whatsapp-icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  display: grid;
  place-items: center;
  font-size: 1rem;
}

.whatsapp-text {
  line-height: 1;
}

@media (max-width: 1100px) {
  .room-fiche {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .split-band-carousel .media-frame,
  .room-fiche-media {
    min-height: 280px;
  }

  .highlight-panel,
  .room-fiche-body,
  .salon-banner {
    padding: 28px;
  }

  .room-note {
    text-align: left;
    margin: -2px 4px 0;
  }

  .carousel-arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    padding: 12px 14px;
  }

  .whatsapp-text {
    display: none;
  }
}
