@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@500;600&display=swap');

:root {
  --bg: #f6f3ec;
  --bg-warm: #efeae0;
  --bg-deep: #1c1c1a;
  --ink: #1c1c1a;
  --ink-soft: #6b6960;
  --line: rgba(28, 28, 26, 0.12);
  --accent: #8a7a5c;
  --accent-dark: #6e6147;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: "kern", "liga", "ss01";
}
.serif { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.container { max-width: 1280px; margin: 0 auto; padding: 0 40px; }
@media (max-width: 720px) { .container { padding: 0 24px; } }

::selection { background: var(--ink); color: var(--bg); }

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

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.4em;
  font-size: 11px;
  font-weight: 400;
  color: var(--ink-soft);
}
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
h1 { font-size: clamp(40px, 9vw, 108px); text-wrap: balance; }
h2 { font-size: clamp(38px, 5.4vw, 76px); text-wrap: balance; }
h3 { font-size: clamp(24px, 2.5vw, 32px); }

em { font-style: italic; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 36px;
  border: 1px solid var(--ink);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  font-weight: 400;
  transition: background 0.4s, color 0.4s;
}
.btn:hover { background: var(--ink); color: var(--bg); }
.btn.btn-light { border-color: var(--bg); color: var(--bg); }
.btn.btn-light:hover { background: var(--bg); color: var(--ink); }

/* NAV */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 24px 40px;
  background: rgba(246, 243, 236, 0.7);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { nav { padding: 20px 24px; } }
nav .logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.02em;
}
nav .logo small {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
  white-space: nowrap;
}
@media (max-width: 720px) {
  nav .logo small {
    font-size: 8px;
    letter-spacing: 0.25em;
  }
}
nav .nav-right { display: flex; align-items: center; gap: 20px; }
nav .nav-cta {
  text-transform: uppercase;
  letter-spacing: 0.25em;
  font-size: 11px;
  color: var(--ink);
  padding: 12px 24px;
  border: 1px solid var(--ink);
  transition: background 0.3s, color 0.3s;
}
nav .nav-cta:hover { background: var(--ink); color: var(--bg); }
.lang-switch {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.lang-switch a {
  color: var(--ink-soft);
  transition: color 0.3s;
  padding: 4px 2px;
}
.lang-switch a:hover { color: var(--ink); }
.lang-switch a.active { color: var(--ink); border-bottom: 1px solid var(--ink); }
.lang-switch .sep { color: var(--line); }
@media (max-width: 720px) {
  nav .nav-right { gap: 12px; }
  .lang-switch { font-size: 10px; gap: 6px; letter-spacing: 0.15em; }
  nav .nav-cta { padding: 10px 16px; font-size: 10px; letter-spacing: 0.2em; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px 40px 60px;
  overflow: hidden;
}
@media (max-width: 720px) { .hero { padding: 100px 24px 40px; } }
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/img/05.avif');
  background-size: cover;
  background-position: center 28%;
  z-index: 0;
  animation: kenburns 24s ease-out forwards;
  transform-origin: 50% 55%;
}
@media (max-width: 720px) {
  .hero-bg { background-position: center 30%; }
}
@keyframes kenburns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.09); }
}

/* SCROLL REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 1.4s cubic-bezier(0.16, 1, 0.3, 1), transform 1.4s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}
.reveal.inview { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero-bg { animation: none; }
}

.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 30% 75%, rgba(28,28,26,0.55) 0%, rgba(28,28,26,0) 70%),
    linear-gradient(180deg, rgba(28,28,26,0.35) 0%, rgba(28,28,26,0) 30%, rgba(28,28,26,0.4) 60%, rgba(28,28,26,0.92) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  color: var(--bg);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero .eyebrow { color: rgba(246, 243, 236, 0.92); margin-bottom: 32px; display: inline-flex; align-items: center; gap: 14px; }
.hero .eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  color: var(--bg);
  max-width: 1000px;
  font-weight: 300;
  margin-bottom: 40px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.45), 0 1px 4px rgba(0,0,0,0.25);
  letter-spacing: -0.015em;
}
.hero h1 em { font-weight: 300; color: #e6d4b3; }
.hero-meta {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(246, 243, 236, 0.25);
  margin-top: 40px;
  align-items: center;
}
.hero-meta .meta-item {
  display: flex; flex-direction: column;
  color: rgba(246, 243, 236, 0.95);
  text-shadow: 0 1px 8px rgba(0,0,0,0.3);
}
.hero-meta .meta-item .key {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246, 243, 236, 0.7);
  margin-bottom: 6px;
}
.hero-meta .meta-item .val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
}
@media (max-width: 760px) { .hero-meta { gap: 20px; } }

/* INTRO */
.intro { padding: 160px 40px; text-align: center; }
@media (max-width: 720px) { .intro { padding: 100px 24px; } }
.intro .eyebrow { display: inline-block; margin-bottom: 40px; }
.intro h2 { max-width: 1000px; margin: 0 auto 60px; font-weight: 300; }
.intro p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.8;
}

/* STATS */
.stats {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 80px 40px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1280px;
  margin: 0 auto;
}
@media (max-width: 760px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; } }
.stat { text-align: center; }
.stat .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.stat .num .pre {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 400;
  margin-bottom: 4px;
  line-height: 1;
}
.stat .label {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* EDITORIAL */
.editorial { padding: 160px 40px; }
@media (max-width: 720px) { .editorial { padding: 100px 24px; } }
.editorial-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 900px) { .editorial-grid { grid-template-columns: 1fr; gap: 60px; } }
.editorial-grid.reverse > div:first-child { order: 2; }
@media (max-width: 900px) { .editorial-grid.reverse > div:first-child { order: 0; } }
.editorial-text .eyebrow { margin-bottom: 24px; }
.editorial-text h2 { font-weight: 300; margin-bottom: 32px; }
.editorial-text p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
  margin-bottom: 20px;
}
.editorial-image {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center;
}
.editorial-image.wide { aspect-ratio: 3 / 4; }

/* LIGHTBOX — fullscreen image viewer */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(20, 20, 18, 0.97);
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}
.lightbox button {
  position: absolute;
  background: transparent;
  border: 1px solid rgba(246, 243, 236, 0.3);
  color: rgba(246, 243, 236, 0.85);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.lightbox button:hover {
  background: rgba(246, 243, 236, 0.1);
  color: var(--bg);
  border-color: var(--bg);
}
.lightbox .close { top: 24px; right: 24px; font-size: 28px; }
.lightbox .prev { left: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .next { right: 24px; top: 50%; transform: translateY(-50%); }
.lightbox .counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(246, 243, 236, 0.7);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-variant-numeric: tabular-nums;
}
@media (max-width: 600px) {
  .lightbox button { width: 40px; height: 40px; font-size: 18px; }
  .lightbox .close { top: 16px; right: 16px; }
  .lightbox .prev { left: 8px; }
  .lightbox .next { right: 8px; }
  .lightbox img { max-width: 96vw; max-height: 82vh; }
}

.gallery-grid .gi { cursor: pointer; }

/* GALLERY */
.gallery-section {
  padding: 120px 40px;
  background: var(--bg-warm);
}
@media (max-width: 720px) { .gallery-section { padding: 80px 24px; } }
.gallery-header {
  max-width: 1280px; margin: 0 auto 80px;
  text-align: center;
}
.gallery-header .eyebrow { display: inline-block; margin-bottom: 24px; }
.gallery-header h2 { font-weight: 300; max-width: 800px; margin: 0 auto; }
.gallery-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 16px;
}
.gallery-grid .gi {
  background-size: cover; background-position: center;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-grid .gi:hover { transform: scale(1.01); }
.gallery-grid .gi:nth-child(1) { grid-column: span 4; grid-row: span 4; }
.gallery-grid .gi:nth-child(2) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi:nth-child(3) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi:nth-child(4) { grid-column: span 2; grid-row: span 3; }
.gallery-grid .gi:nth-child(5) { grid-column: span 2; grid-row: span 3; }
.gallery-grid .gi:nth-child(6) { grid-column: span 2; grid-row: span 3; }
.gallery-grid .gi:nth-child(7) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi:nth-child(8) { grid-column: span 2; grid-row: span 2; }
.gallery-grid .gi:nth-child(9) { grid-column: span 2; grid-row: span 2; }
@media (max-width: 760px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gallery-grid .gi { grid-column: span 1 !important; grid-row: span 1 !important; }
  .gallery-grid .gi:nth-child(1) { grid-column: span 2 !important; grid-row: span 2 !important; }
}

/* SEASONS */
.seasons { padding: 160px 40px; }
@media (max-width: 720px) { .seasons { padding: 100px 24px; } }
.seasons-header { max-width: 1280px; margin: 0 auto 100px; }
.seasons-header .eyebrow { display: inline-block; margin-bottom: 24px; }
.seasons-header h2 { font-weight: 300; max-width: 900px; }
.seasons-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
@media (max-width: 900px) { .seasons-grid { grid-template-columns: 1fr; } }
.season {
  border-top: 1px solid var(--ink);
  padding-top: 32px;
}
.season .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 24px;
  letter-spacing: 0.1em;
}
.season h3 { margin-bottom: 20px; font-weight: 400; }
.season h3 em { color: var(--accent-dark); }
.season p { color: var(--ink-soft); font-size: 16px; line-height: 1.8; }

/* AMENITIES + RATES */
.amenities {
  padding: 160px 40px;
  background: var(--bg-deep);
  color: var(--bg);
}
@media (max-width: 720px) { .amenities { padding: 100px 24px; } }
.amenities-inner { max-width: 1280px; margin: 0 auto; }
.amenities .eyebrow { color: rgba(246,243,236,0.6); display: inline-block; margin-bottom: 24px; }
.amenities h2 {
  color: var(--bg);
  font-weight: 300;
  max-width: 900px;
  margin-bottom: 80px;
}
.amenities-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 900px) { .amenities-columns { grid-template-columns: 1fr; gap: 60px; } }
.amenities-list { list-style: none; }
.amenities-list li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(246,243,236,0.12);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px;
  color: rgba(246,243,236,0.9);
}
.amenities-list li .num {
  color: rgba(246,243,236,0.4);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px;
}
.rates-card {
  background: rgba(246, 243, 236, 0.05);
  border: 1px solid rgba(246,243,236,0.15);
  padding: 48px;
}
@media (max-width: 720px) { .rates-card { padding: 32px 24px; } }
.rates-card .label-mini {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(246,243,236,0.5);
  margin-bottom: 8px;
}
.rates-card .big-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 72px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
}
.rates-card .big-price small { font-size: 18px; color: rgba(246,243,236,0.6); }
.rates-card .cleaning-note { font-size: 13px; color: rgba(246,243,236,0.6); margin-bottom: 32px; }
.rate-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(246,243,236,0.1);
  font-size: 14px;
}
.rate-row:last-child { border-bottom: none; }
.rate-row .rate-name { color: rgba(246,243,236,0.7); }
.rate-row .rate-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  color: var(--bg);
}
.rates-list { margin-top: 32px; }
.rates-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 10px; }
.rates-actions a {
  display:flex; justify-content:center; padding: 18px;
  font-size: 11px; letter-spacing: 0.25em; text-transform: uppercase;
  border: 1px solid var(--bg); color: var(--bg);
  transition: background 0.3s, color 0.3s;
}
.rates-actions a:hover { background: var(--bg); color: var(--ink); }
.rates-actions a.email {
  border-color: rgba(246,243,236,0.3);
  color: rgba(246,243,236,0.8);
}
.rates-actions a.email:hover { background: rgba(246,243,236,0.1); color: var(--bg); }

/* TESTIMONIALS */
.testimonials { padding: 160px 40px; }
@media (max-width: 720px) { .testimonials { padding: 100px 24px; } }
.testimonials-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.testimonials .eyebrow { display: inline-block; margin-bottom: 24px; }
.testimonials h2 { margin-bottom: 80px; font-weight: 300; }
.test-large { margin-bottom: 80px; }
.test-large blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.3;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 32px;
}
.test-large cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.test-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  text-align: left;
  padding-top: 60px;
  border-top: 1px solid var(--line);
}
@media (max-width: 760px) { .test-row { grid-template-columns: 1fr; gap: 40px; } }
.test-row blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 16px;
  font-style: italic;
}
.test-row cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* CALENDAR */
.calendar-section {
  padding: 160px 40px 100px;
  background: var(--bg-warm);
}
@media (max-width: 720px) { .calendar-section { padding: 100px 24px 70px; } }
.calendar-header { max-width: 1280px; margin: 0 auto 60px; text-align: center; }
.calendar-header .eyebrow { display: inline-block; margin-bottom: 24px; }
.calendar-header h2 { font-weight: 300; max-width: 800px; margin: 0 auto 24px; }
.calendar-header p { color: var(--ink-soft); font-size: 17px; max-width: 560px; margin: 0 auto; line-height: 1.7; }
.calendar-legend {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px auto 60px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.calendar-legend .swatch {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-right: 10px;
  vertical-align: middle;
}
.calendar-legend .swatch.free { background: var(--bg); border: 1px solid var(--ink); }
.calendar-legend .swatch.busy { background: var(--ink); }
.calendar-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px 48px;
}
@media (max-width: 900px) { .calendar-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 32px; } }
@media (max-width: 600px) { .calendar-grid { grid-template-columns: 1fr; gap: 48px; } }
.month h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 6px;
}
.weekdays span {
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
}
.days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.days span {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}
.days span.busy { background: var(--ink); color: var(--bg); }
.days span.past { opacity: 0.25; }
.days span.empty { visibility: hidden; }
.calendar-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--ink-soft);
  font-size: 14px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 80px 0;
}
.calendar-cta { text-align: center; margin-top: 40px; }
.calendar-cta p { color: var(--ink-soft); font-size: 14px; margin-bottom: 16px; }
.calendar-nav {
  max-width: 1280px;
  margin: 0 auto 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.calendar-nav .range {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--ink);
  letter-spacing: 0.01em;
}
.calendar-nav button {
  background: transparent;
  border: 1px solid var(--ink);
  color: var(--ink);
  padding: 12px 20px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s, color 0.3s, opacity 0.3s;
}
.calendar-nav button:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
.calendar-nav button:disabled { opacity: 0.25; cursor: not-allowed; }
@media (max-width: 600px) {
  .calendar-nav .range { font-size: 16px; }
  .calendar-nav button { padding: 10px 14px; font-size: 10px; letter-spacing: 0.2em; }
}

/* FINAL CTA */
.final-cta {
  padding: 200px 40px;
  text-align: center;
  background-image: url('/img/01.avif');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
  color: var(--bg);
}
@media (max-width: 720px) { .final-cta { padding: 120px 24px; background-attachment: scroll; } }
.final-cta::before {
  content:''; position: absolute; inset: 0;
  background: rgba(28,28,26,0.55);
}
.final-cta-inner { position: relative; z-index: 1; max-width: 800px; margin: 0 auto; }
.final-cta .eyebrow { display: inline-block; color: rgba(246,243,236,0.7); margin-bottom: 32px; }
.final-cta h2 {
  color: var(--bg);
  font-weight: 300;
  margin-bottom: 40px;
}
.final-cta p {
  color: rgba(246,243,236,0.85);
  font-size: 18px;
  line-height: 1.7;
  max-width: 560px;
  margin: 0 auto 48px;
}
.final-cta-actions {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
}

/* FOOTER */
footer {
  padding: 80px 40px 40px;
  background: var(--bg-warm);
  text-align: center;
  color: var(--ink-soft);
  font-size: 13px;
}
@media (max-width: 720px) { footer { padding: 60px 24px 32px; } }
footer .ftr-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  color: var(--ink);
  margin-bottom: 12px;
}
footer .ftr-host {
  color: var(--ink);
  font-size: 14px;
  margin: 24px 0 8px;
}
footer .ftr-host-label {
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  color: var(--ink-soft);
}
footer .ftr-links {
  margin: 40px 0 32px;
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
footer .ftr-links a { color: var(--ink-soft); }
footer .ftr-links a:hover { color: var(--ink); }

/* FLOATING WHATSAPP — desktop only */
.floating-wa {
  position: fixed;
  bottom: 32px; right: 32px;
  z-index: 99;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(28, 28, 26, 0.18);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s, padding 0.5s, width 0.5s, border-radius 0.5s;
  overflow: hidden;
  white-space: nowrap;
  text-decoration: none;
}
.floating-wa .wa-label {
  display: inline-block;
  width: 0;
  margin: 0;
  opacity: 0;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s, margin 0.5s;
}
.floating-wa:hover {
  width: auto;
  padding: 0 24px 0 18px;
  border-radius: 999px;
  box-shadow: 0 16px 40px rgba(28, 28, 26, 0.28);
}
.floating-wa:hover .wa-label {
  width: auto;
  opacity: 1;
  margin-left: 12px;
}
.floating-wa svg { width: 22px; height: 22px; flex-shrink: 0; }
.floating-wa { display: inline-flex; }
@media (max-width: 760px) {
  .floating-wa {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .floating-wa svg { width: 20px; height: 20px; }
  .floating-wa:hover {
    width: 50px;
    padding: 0;
    border-radius: 50%;
  }
  .floating-wa:hover .wa-label { display: none; }
}

/* MOBILE STICKY BOOK BAR — disabled, replaced by small floating icon */
.mobile-book-bar { display: none; }

/* ORNAMENT DIVIDER — small editorial flourish between sections */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 8px 40px;
  background: var(--bg);
  color: var(--ink-soft);
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: var(--line);
}
.ornament .glyph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.1em;
  color: var(--accent);
}

/* TRUST STRIP — below hero, refined credibility */
.trust-strip {
  border-bottom: 1px solid var(--line);
  padding: 28px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 48px;
  background: var(--bg);
}
.trust-strip .trust-item {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.trust-strip .trust-item::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 4px;
  background: var(--accent);
  border-radius: 50%;
}
@media (max-width: 760px) {
  .trust-strip { gap: 16px 24px; padding: 20px 24px; }
  .trust-strip .trust-item { font-size: 9px; letter-spacing: 0.25em; }
}

/* TESTIMONIALS SLIDER */
.testimonials-slider-wrap {
  position: relative;
  margin-top: 60px;
}
.testimonials-slider {
  display: flex;
  gap: 32px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 8px 40px 32px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.testimonials-slider::-webkit-scrollbar { display: none; }
.testimonials-slider .test-card {
  flex: 0 0 min(460px, 88vw);
  scroll-snap-align: center;
  background: var(--bg);
  padding: 48px 40px;
  text-align: left;
  border-left: 1px solid var(--accent);
  box-shadow: 0 24px 60px -30px rgba(28,28,26,0.18);
  min-height: 340px;
  display: flex;
  flex-direction: column;
}
@media (max-width: 720px) {
  .testimonials-slider { padding: 8px 24px 32px; gap: 16px; }
  .testimonials-slider .test-card { padding: 36px 28px; min-height: 300px; }
}
.testimonials-slider .test-card .quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  line-height: 0.5;
  color: var(--accent);
  margin-bottom: 16px;
  font-style: italic;
}
.testimonials-slider blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: var(--ink);
  margin-bottom: 24px;
  flex: 1;
}
.testimonials-slider cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.slider-nav {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  align-items: center;
}
.slider-nav button {
  background: transparent;
  border: 1px solid var(--ink);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--ink);
  transition: background 0.3s, color 0.3s, opacity 0.3s;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  line-height: 1;
}
.slider-nav button:hover:not(:disabled) { background: var(--ink); color: var(--bg); }
.slider-nav button:disabled { opacity: 0.25; cursor: not-allowed; }
.slider-dots {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  min-width: 60px;
  text-align: center;
}

/* SEASON DATES — small subtitle under season title */
.season .season-when {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 20px;
}

/* MOBILE CONVERSION — minimum tap targets, scroll-aware nav */
@media (max-width: 760px) {
  .btn { padding: 16px 28px; min-height: 48px; }
  .mobile-book-bar a { min-height: 48px; padding: 14px 24px; }
  .nav-cta { min-height: 40px; display: inline-flex; align-items: center; }
}

/* SUBTLE GALLERY DESATURATION on hover-reset */
.gallery-grid .gi { filter: saturate(0.92); }
.gallery-grid .gi:hover { filter: saturate(1.08); transform: scale(1.012); }

/* DROP CAP — editorial luxury detail */
.dropcap::first-letter {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5.5em;
  float: left;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--accent-dark);
  font-style: italic;
  font-weight: 500;
}

/* OWNER SIGNATURE */
.signature-block {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 24px;
}
.signature {
  font-family: 'Caveat', cursive;
  font-size: 42px;
  color: var(--accent-dark);
  line-height: 1;
}
.signature-block .who {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  padding-left: 24px;
  line-height: 1.6;
}
.signature-block .who strong { color: var(--ink); font-weight: 500; }

/* CONCIERGE SECTION */
.concierge {
  padding: 110px 40px 160px;
  background: var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .concierge { padding: 70px 24px 100px; } }
.concierge-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) { .concierge-inner { grid-template-columns: 1fr; gap: 40px; } }
.concierge h2 { font-weight: 300; margin-bottom: 16px; }
.concierge-intro p { color: var(--ink-soft); font-size: 16px; line-height: 1.7; margin-top: 32px; }
.concierge-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
@media (max-width: 760px) { .concierge-list { grid-template-columns: 1fr; } }
.concierge-list li {
  padding: 28px 24px 28px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.concierge-list li .roman {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--accent-dark);
  font-size: 14px;
  letter-spacing: 0.05em;
  min-width: 28px;
}
.concierge-list li .what {
  font-size: 15px;
  color: var(--ink);
  line-height: 1.5;
}
.concierge-list li .what small {
  display: block;
  font-size: 12px;
  color: var(--ink-soft);
  margin-top: 4px;
}

/* LEGAL PAGES */
.legal-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 180px 40px 140px;
}
@media (max-width: 720px) { .legal-page { padding: 140px 24px 100px; } }
.legal-page h1 {
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 300;
  margin-bottom: 60px;
}
.legal-page h2 {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 500;
  margin-top: 48px;
  margin-bottom: 16px;
  color: var(--ink);
}
.legal-page p, .legal-page address {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: normal;
}
.legal-page a { color: var(--accent-dark); border-bottom: 1px solid var(--line); }

/* ARABIC / RTL OVERRIDES */
html[dir="rtl"] body { font-family: 'Tajawal', 'Inter', sans-serif; }
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] .serif,
html[dir="rtl"] nav .logo,
html[dir="rtl"] .stat .num,
html[dir="rtl"] .season .num,
html[dir="rtl"] .hero-meta .meta-item .val,
html[dir="rtl"] .month h4,
html[dir="rtl"] .calendar-nav .range,
html[dir="rtl"] .rates-card .big-price,
html[dir="rtl"] .rate-row .rate-val,
html[dir="rtl"] .test-large blockquote,
html[dir="rtl"] .test-row blockquote,
html[dir="rtl"] .editorial-text h2,
html[dir="rtl"] footer .ftr-logo,
html[dir="rtl"] .amenities-list li .num,
html[dir="rtl"] .mobile-book-bar .price-mini .amount { font-family: 'Amiri', 'Cormorant Garamond', serif; }
html[dir="rtl"] .seasons-header h2 em,
html[dir="rtl"] .seasons-grid em,
html[dir="rtl"] em { font-style: normal; }
html[dir="rtl"] .test-row { text-align: right; }
html[dir="rtl"] .hero-meta .btn-light { margin-left: 0; margin-right: auto; }

/* BOOKING WIDGET */
.booking-section {
  padding: 120px 40px;
  background: var(--bg-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.booking-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.booking-header {
  text-align: center;
  margin-bottom: 64px;
}
.booking-header h2 { margin: 16px 0 20px; font-weight: 300; }
.booking-header p {
  max-width: 580px;
  margin: 0 auto;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.7;
}
.booking-form {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 48px;
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
}
.bf-col { display: flex; flex-direction: column; gap: 20px; }
.bf-field { display: flex; flex-direction: column; gap: 8px; }
.bf-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--ink-soft);
  font-weight: 400;
}
.bf-field input,
.bf-field select,
.bf-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--bg);
  font-family: inherit;
  font-size: 16px;
  font-weight: 300;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.2s ease;
}
.bf-field input:focus,
.bf-field select:focus,
.bf-field textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.bf-field select {
  background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
                    linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
  background-position: calc(100% - 18px) 50%, calc(100% - 13px) 50%;
  background-size: 5px 5px, 5px 5px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.bf-note {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin-top: 4px;
}
.bf-error {
  background: rgba(180, 60, 60, 0.08);
  border-left: 2px solid #b43c3c;
  color: #8c2828;
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 8px;
}

.bf-summary-inner {
  background: var(--bg-deep);
  color: var(--bg);
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bf-sum-empty {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
  opacity: 0.5;
  margin: auto;
  text-align: center;
}
.bf-nights {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-style: italic;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(246, 243, 236, 0.15);
}
.bf-breakdown { margin-bottom: 8px; }
.bf-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  font-size: 15px;
  font-weight: 300;
}
.bf-line.bf-sub {
  padding: 6px 0;
  opacity: 0.85;
}
.bf-line.bf-sub small {
  display: block;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  opacity: 0.55;
  margin-bottom: 4px;
}
.bf-line.bf-cleaning {
  border-top: 1px solid rgba(246, 243, 236, 0.15);
  margin-top: 8px;
  padding-top: 16px;
}
.bf-line.bf-total {
  border-top: 1px solid rgba(246, 243, 236, 0.3);
  margin-top: 12px;
  padding-top: 18px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-style: italic;
}
.bf-line.bf-deposit {
  background: rgba(230, 212, 179, 0.08);
  margin: 12px -36px 0;
  padding: 16px 36px;
  font-weight: 400;
  color: #e6d4b3;
}
.bf-line.bf-balance {
  font-size: 12px;
  opacity: 0.6;
  padding-top: 14px;
}

.bf-contact {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bf-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.bf-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.55;
  cursor: pointer;
}
.bf-checkbox input { margin-top: 4px; accent-color: var(--accent); flex-shrink: 0; }
.bf-checkbox a { color: var(--accent-dark); border-bottom: 1px solid var(--line); }
.bf-submit {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 20px 32px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-top: 8px;
}
.bf-submit:hover:not(:disabled) { background: var(--accent-dark); }
.bf-submit:disabled { opacity: 0.6; cursor: progress; }
.bf-trust {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--ink-soft);
  text-align: center;
  margin-top: -8px;
}

/* Mobile */
@media (max-width: 820px) {
  .booking-section { padding: 80px 24px; }
  .booking-form { padding: 28px; }
  .booking-grid { grid-template-columns: 1fr; gap: 32px; }
  .bf-summary-inner { padding: 28px; }
  .bf-line.bf-deposit { margin: 12px -28px 0; padding: 16px 28px; }
  .bf-row { grid-template-columns: 1fr; }
}

/* RTL tweaks */
html[dir="rtl"] .bf-field select {
  background-position: 18px 50%, 13px 50%;
  padding-right: 16px;
  padding-left: 36px;
}
html[dir="rtl"] .bf-nights,
html[dir="rtl"] .bf-line.bf-total,
html[dir="rtl"] .bf-sum-empty { font-family: 'Amiri', 'Cormorant Garamond', serif; font-style: normal; }
