/* Amani Oasis Taveta - Cupstone palette from brand logo */
:root {
  --gold: #cb9b51;
  --gold-bright: #fce771;
  --gold-light: #f2eb9a;
  --gold-muted: #956228;
  --bronze: #5e3814;
  --brown-dark: #2a1a0c;
  --brown-mid: #3a2510;
  --cream: #f8f4ec;
  --cream-dark: #e9e0d2;
  --sage: #1b6b3a;
  --sage-light: #2d8f52;
  --sage-dark: #0f4a28;
  --ink: #14100c;
  --ink-muted: #6f6255;
  --white: #ffffff;
  --surface: #faf8f4;
  --glass: rgba(255, 255, 255, 0.78);
  --glass-border: rgba(255, 255, 255, 0.4);
  --border: rgba(94, 56, 20, 0.12);
  --shadow: 0 24px 64px rgba(42, 26, 12, 0.14);
  --shadow-sm: 0 8px 24px rgba(42, 26, 12, 0.08);
  --shadow-glow: 0 0 48px rgba(203, 155, 81, 0.25);
  --radius: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --header-h: 76px;
  --topbar-h: 40px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--cream);
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.nav-open { overflow: hidden; }

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

a {
  color: var(--sage);
  text-decoration: none;
  transition: color 0.25s var(--ease);
}
a:hover { color: var(--gold-muted); }

:focus { outline: none; }
:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 10000;
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: 0.65rem 1rem;
  border-radius: 8px;
  font-weight: 600;
}
.skip-link:focus,
.skip-link:focus-visible {
  top: 1rem;
  color: var(--gold-bright);
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
}
.form-status--success {
  background: rgba(27, 107, 58, 0.12);
  color: var(--sage-dark);
}
.form-status--error {
  background: rgba(140, 40, 40, 0.1);
  color: #7a1f1f;
}
.form-status--info {
  background: rgba(203, 155, 81, 0.15);
  color: var(--bronze);
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
}
.footer-legal a:hover {
  color: var(--gold-light);
}

.legal-content h2 {
  margin-top: 2rem;
}
.legal-list {
  list-style: disc;
  padding-left: 1.25rem;
  margin: 0 0 1rem;
}
.legal-list li {
  margin-bottom: 0.4rem;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  margin: 0 0 0.45em;
  letter-spacing: -0.02em;
}

p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}

.legal-prose {
  max-width: 720px;
}

.legal-prose h2 {
  margin-top: 1.75rem;
}

/* ─── Topbar ─── */
.topbar {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.82rem;
  min-height: var(--topbar-h);
  height: auto;
  padding: 0.45rem 0;
  display: flex;
  align-items: center;
  z-index: 1001;
}

.topbar .container {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  justify-content: space-between;
}

.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--gold-bright); }

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.topbar-social {
  display: flex;
  gap: 0.65rem;
}

.topbar-social a {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  color: var(--gold-light);
}
.topbar-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--glass);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(250, 248, 244, 0.95);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  flex-shrink: 0;
}
.logo:hover { color: var(--ink); opacity: 0.92; }
.logo img { width: 44px; height: 44px; }
.logo .logo-nav {
  width: min(220px, 52vw);
  height: auto;
  max-height: 48px;
}
.logo.logo--footer img,
.logo .logo-full {
  width: 150px;
  height: auto;
  max-width: 100%;
  max-height: none;
}
.logo--footer {
  display: inline-flex;
  margin-bottom: 1rem;
}
.logo-text { line-height: 1.2; font-size: 0.95rem; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--bronze);
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}

.nav-drawer {
  display: none;
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-drawer__foot {
  display: none;
}

.nav-backdrop {
  display: none;
}

.nav-link {
  padding: 0.5rem 0.85rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 8px;
  transition: background 0.25s, color 0.25s;
}
.nav-link:hover {
  background: rgba(203, 155, 81, 0.12);
  color: var(--bronze);
}

.nav-link.active {
  background: rgba(203, 155, 81, 0.18);
  color: var(--bronze);
  font-weight: 600;
}

/* ─── Inner page hero ─── */
.page-hero {
  position: relative;
  padding: clamp(5rem, 12vw, 7rem) 0 clamp(3rem, 6vw, 4rem);
  text-align: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--sage-dark) 0%, var(--brown-mid) 55%, var(--bronze) 100%);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1516026672322-bc52d61a55d5?w=1600&q=80") center/cover no-repeat;
  opacity: 0.22;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  color: var(--gold-light);
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 560px;
  margin: 0 auto;
  opacity: 0.92;
  font-size: 1.05rem;
}

.page-hero .breadcrumb {
  font-size: 0.85rem;
  margin-bottom: 1rem;
  color: var(--gold-light);
  opacity: 0.85;
}

.page-hero .breadcrumb a {
  color: var(--gold-bright);
}

/* Home teaser cards */
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.teaser-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}

.teaser-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.teaser-card i {
  font-size: 1.5rem;
  color: var(--gold-muted);
  margin-bottom: 0.75rem;
}

.teaser-card h3 {
  font-size: 1.15rem;
  color: var(--bronze);
}

.teaser-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.cta-banner {
  background: linear-gradient(135deg, var(--bronze), var(--sage-dark));
  color: var(--white);
  text-align: center;
  padding: 3rem 1.5rem;
  border-radius: var(--radius-lg);
}

.cta-banner h2 {
  color: var(--gold-light);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
}

.cta-banner p {
  opacity: 0.9;
  max-width: 480px;
  margin: 0 auto 1.5rem;
}

.cta-banner .btn-row {
  justify-content: center;
}

@media (max-width: 768px) {
  .teaser-grid { grid-template-columns: 1fr; }
}

/* ─── Booking calendar page ─── */
.booking-page-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
  max-width: 720px;
  margin-inline: auto;
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.booking-panel__header { margin-bottom: 1.25rem; }

.booking-field-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.book-unit-select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.calendar-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.calendar-month-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--bronze);
  margin: 0;
}

.cal-nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--cream);
  cursor: pointer;
  color: var(--bronze);
}
.cal-nav-btn:hover { background: var(--gold-light); }

.calendar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}

.legend-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  margin-right: 0.35rem;
  vertical-align: middle;
}
.legend-dot--available { background: var(--sage-light); }
.legend-dot--blocked { background: #ccc; }
.legend-dot--selected { background: var(--gold); }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.cal-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  min-height: 44px;
  border: none;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  cursor: pointer;
  background: transparent;
}

.cal-day--pad { visibility: hidden; pointer-events: none; }

.cal-day--available {
  background: rgba(45, 143, 82, 0.12);
  color: var(--sage-dark);
}
.cal-day--available:hover {
  background: rgba(45, 143, 82, 0.28);
}

.cal-day--disabled {
  background: #eee;
  color: #999;
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day--in-range {
  background: rgba(203, 155, 81, 0.25);
  color: var(--bronze);
}

.cal-day--selected {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--brown-dark);
  font-weight: 700;
}

.date-selection {
  margin-top: 1rem;
  font-weight: 500;
  color: var(--bronze);
  text-align: center;
}

.guest-booking-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.calendar-grid--loading {
  opacity: 0.55;
  pointer-events: none;
}


.booking-privacy-note {
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin: 0 0 1rem;
}

.guest-booking-form h3 {
  font-size: 1.2rem;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.booking-message {
  grid-column: 1 / -1;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  margin-bottom: 0.5rem;
}
.booking-message--success {
  background: rgba(45, 143, 82, 0.12);
  color: var(--sage-dark);
  border: 1px solid rgba(45, 143, 82, 0.3);
}
.booking-message--error {
  background: rgba(180, 40, 40, 0.08);
  color: #8b2020;
  border: 1px solid rgba(180, 40, 40, 0.25);
}
.booking-message--info {
  background: rgba(203, 155, 81, 0.15);
  color: var(--bronze);
}

.ical-info {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  font-size: 0.9rem;
}

.ical-info h4 {
  font-size: 1rem;
  color: var(--bronze);
  margin-bottom: 0.75rem;
}

.ical-links {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0;
}
.ical-links a {
  font-weight: 500;
  word-break: break-all;
}

.ical-hint {
  color: var(--ink-muted);
  margin: 0;
}
.ical-hint code {
  font-size: 0.8em;
  background: rgba(0,0,0,0.06);
  padding: 0.1em 0.35em;
  border-radius: 4px;
}

@media (max-width: 900px) {
  .booking-page-layout {
    grid-template-columns: 1fr;
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
}

.nav-admin {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 999px;
  color: var(--ink-muted);
  border: 1px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  flex-shrink: 0;
}

.nav-admin:hover,
.nav-admin:focus-visible {
  color: var(--bronze);
  background: rgba(203, 155, 81, 0.12);
  border-color: rgba(203, 155, 81, 0.25);
}

.nav-admin i {
  font-size: 0.82rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 1010;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--brown-dark);
  border-radius: 1px;
  transition: transform 0.28s var(--ease), opacity 0.2s, width 0.2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s, background 0.25s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--brown-dark);
  box-shadow: 0 4px 20px rgba(203, 155, 81, 0.4);
}
.btn-primary:hover {
  color: var(--brown-dark);
  box-shadow: var(--shadow-glow);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--bronze);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--brown-dark);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
}
.btn-whatsapp:hover { color: #fff; background: #1fb855; }
.btn-lg { padding: 0.95rem 1.75rem; font-size: 1rem; }

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--brown-dark);
}
.hero-bg img,
.hero-bg .hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(20, 16, 12, 0.28) 0%,
    rgba(20, 16, 12, 0.45) 45%,
    rgba(15, 74, 40, 0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6rem;
  color: var(--white);
}

.hero-eyebrow {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  max-width: 14ch;
  margin-bottom: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  max-width: 52ch;
  opacity: 0.92;
  margin-bottom: 2rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

/* Booking widget */
.booking-box {
  background: var(--glass);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  box-shadow: var(--shadow);
  max-width: 920px;
}

.booking-box h3 {
  font-size: 1.1rem;
  color: var(--bronze);
  margin-bottom: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
}

.booking-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.85rem;
  align-items: end;
}

.booking-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
  margin-bottom: 0.35rem;
}

.booking-field input,
.booking-field select {
  width: 100%;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--white);
  color: var(--ink);
}

.guest-stepper {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.guest-stepper button {
  width: 40px;
  height: 42px;
  border: none;
  background: var(--cream);
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--bronze);
}
.guest-stepper button:hover { background: var(--gold-light); }
.guest-stepper input {
  width: 48px;
  text-align: center;
  border: none;
  font-weight: 600;
  padding: 0.5rem 0;
}

/* ─── Marquee ─── */
.marquee {
  background: var(--brown-dark);
  color: var(--gold-light);
  padding: 0.85rem 0;
  overflow: hidden;
  border-block: 1px solid rgba(252, 231, 113, 0.15);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.marquee__track span { padding-right: 3rem; }

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Section common ─── */
.section {
  padding: clamp(3.5rem, 8vw, 5.5rem) 0;
}

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.5rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: var(--bronze);
}

.section-desc {
  color: var(--ink-muted);
  margin-bottom: 0;
}

/* ─── Stats ─── */
.stats {
  background: linear-gradient(135deg, var(--sage-dark), var(--sage));
  color: var(--white);
  padding: 2.5rem 0;
  margin-top: -1px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--gold-bright);
  line-height: 1;
}
.stat-item span {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ─── Features ─── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 1.35rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold-light), rgba(203, 155, 81, 0.35));
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  color: var(--bronze);
  margin-bottom: 1rem;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--bronze);
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--ink-muted);
  margin: 0;
}

/* ─── Proximity ─── */
.proximity {
  background: var(--cream);
}

.proximity-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.proximity-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.proximity-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.proximity-card:hover img { transform: scale(1.06); }

.proximity-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(20, 16, 12, 0.85));
}

.proximity-card__body {
  position: relative;
  z-index: 1;
  padding: 1.25rem;
  color: var(--white);
}

.proximity-card__body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.proximity-card__dist {
  font-size: 0.88rem;
  color: var(--gold-light);
  font-weight: 600;
}

/* ─── Rooms ─── */
.rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.35s var(--ease), box-shadow 0.35s;
}
.room-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.room-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.room-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--brown-dark);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.65rem;
  border-radius: 6px;
}

.room-badge--signature {
  background: linear-gradient(135deg, var(--brown-dark), var(--bronze));
  color: var(--gold-light);
}

.property-hero .room-badge--signature {
  position: static;
  display: inline-block;
  margin-bottom: 0.75rem;
}

.room-card--signature {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  flex-direction: row;
}

.room-card--signature .room-card__media {
  aspect-ratio: auto;
  min-height: 320px;
}

.room-card--signature .room-card__body {
  justify-content: center;
}

/* ─── Property detail page ─── */
.property-hero {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  overflow: hidden;
}

.property-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.property-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 20%, rgba(20, 16, 12, 0.88));
}

.property-hero__content {
  position: relative;
  z-index: 1;
  padding: 4rem 0 3rem;
  max-width: 720px;
}

.property-hero__content h1 {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.property-hero__content p {
  font-size: 1.1rem;
  opacity: 0.92;
  margin-bottom: 1.5rem;
}

.property-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.property-hero__outline {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.property-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.property-overview__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.property-overview__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.property-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.property-gallery__item {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.property-gallery__item--wide {
  grid-column: span 2;
}

.property-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.property-gallery__item:hover img {
  transform: scale(1.04);
}

.property-videos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.property-video-card video {
  width: 100%;
  border-radius: var(--radius);
  background: var(--brown-dark);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.property-video-card h3 {
  margin-top: 0.75rem;
  font-size: 1.1rem;
}

.room-card__body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  font-size: 0.88rem;
  color: var(--ink-muted);
  margin-bottom: 0.75rem;
}

.room-card__meta i { color: var(--gold-muted); margin-right: 0.25rem; }

.room-rating {
  color: var(--gold-muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.75rem 0 1.25rem;
}

.room-amenities span {
  font-size: 0.78rem;
  padding: 0.3rem 0.6rem;
  background: var(--cream);
  border-radius: 6px;
  color: var(--bronze);
}

.room-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.room-availability {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--sage);
}

/* ─── Amenities ─── */
.amenities {
  background: var(--brown-dark);
  color: var(--white);
}

.amenities .section-title { color: var(--gold-light); }
.amenities .section-desc { color: rgba(255, 255, 255, 0.72); }

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.amenity-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(252, 231, 113, 0.12);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.3s, border-color 0.3s;
}
.amenity-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(252, 231, 113, 0.3);
}

.amenity-card i {
  font-size: 2rem;
  color: var(--gold-bright);
  margin-bottom: 1rem;
}

.amenity-card h3 {
  color: var(--gold-light);
  font-size: 1.2rem;
}

.amenity-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
}

/* ─── About split ─── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-list {
  margin: 1.25rem 0 1.5rem;
}
.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
  font-size: 0.95rem;
}
.about-list i {
  color: var(--sage);
  margin-top: 0.2rem;
}

/* ─── Gallery ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 180px);
  gap: 0.75rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  min-height: 140px;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}
.gallery-item:hover img { transform: scale(1.05); }

.gallery-item--large {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
  min-height: 100%;
}

/* ─── Contact ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
}

.contact-info-card {
  background: linear-gradient(145deg, var(--sage-dark), var(--sage));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
}

.contact-info-card h3 {
  color: var(--gold-light);
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
  align-items: flex-start;
}

.contact-item i {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--gold-bright);
  flex-shrink: 0;
}

.contact-item a { color: var(--gold-light); }
.contact-item a:hover { color: var(--gold-bright); }

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--ink-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
}

.form-group textarea { min-height: 120px; resize: vertical; }

.map-wrap {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  min-height: 320px;
}
.map-wrap iframe {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

/* ─── Footer ─── */
.site-footer {
  background: var(--brown-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand p {
  font-size: 0.92rem;
  opacity: 0.85;
  max-width: 32ch;
}

.footer-col h4 {
  color: var(--gold-light);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.footer-col a:hover { color: var(--gold-bright); }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 0.65rem;
  margin-top: 1rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  color: var(--gold-light);
}
.footer-social a:hover {
  background: var(--gold);
  color: var(--brown-dark);
}

/* ─── Reveal animations (progressive: only hide when JS is ready) ─── */
.js-ready .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.js-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reduce-motion .reveal,
.reduce-motion .js-ready .reveal:not(.is-visible) {
  opacity: 1;
  transform: none;
  transition: none;
}

.rate-table-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 1.25rem 0;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
}

.rate-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  font-size: 0.95rem;
}

.rate-table th,
.rate-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.rate-table th {
  background: rgba(203, 155, 81, 0.12);
  color: var(--bronze);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.rate-table tr:last-child td { border-bottom: 0; }

.rate-notes ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  color: var(--ink-muted);
}

.rate-notes li { margin-bottom: 0.45rem; }

.field-hint {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.quote-note {
  font-size: 0.82rem;
  opacity: 0.8;
}

.footer-legal {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.footer-legal a {
  display: inline;
  margin: 0;
}

.footer-admin {
  opacity: 0.55;
  font-size: 0.8rem;
}

.footer-brand p {
  margin-bottom: 1rem;
}

/* ─── Floating WhatsApp ─── */
.whatsapp-float {
  position: fixed;
  bottom: max(1.25rem, env(safe-area-inset-bottom, 0px));
  right: max(1.25rem, env(safe-area-inset-right, 0px));
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.6rem;
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s var(--ease);
}
.whatsapp-float:hover {
  transform: scale(1.08);
  color: #fff;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .proximity-grid { grid-template-columns: repeat(2, 1fr); }
  .amenities-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .booking-row {
    grid-template-columns: 1fr 1fr;
  }
  .booking-row .btn { grid-column: 1 / -1; width: 100%; }

  .nav-toggle { display: flex; }

  .nav-desktop,
  .nav-book-cta,
  .nav-admin {
    display: none !important;
  }

  .site-header {
    background: #faf8f4;
    backdrop-filter: none;
  }

  body.nav-open .site-header {
    background: #faf8f4;
    box-shadow: none;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1005;
    width: 100%;
    margin: 0;
    padding: 0.75rem 1.5rem max(1.25rem, env(safe-area-inset-bottom));
    background: #faf8f4;
    gap: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    box-shadow: none;
  }

  .nav-drawer.open {
    display: flex;
  }

  .nav-drawer__list {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  .nav-drawer .nav-link {
    display: block;
    padding: 0.8rem 0;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    color: var(--brown-dark);
    border-radius: 0;
    border-bottom: 1px solid rgba(94, 56, 20, 0.1);
    background: transparent;
  }

  .nav-drawer .nav-link:hover,
  .nav-drawer .nav-link.active {
    background: transparent;
    color: var(--gold-muted);
  }

  .nav-drawer .nav-link.active {
    font-weight: 600;
  }

  .nav-drawer__foot {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    flex: 0 0 auto;
    margin-top: 1.25rem;
    padding-top: 1.1rem;
    border-top: 1px solid rgba(94, 56, 20, 0.12);
  }

  .nav-drawer__cta {
    width: 100%;
    justify-content: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.95rem;
  }

  .nav-drawer__contact {
    display: grid;
    gap: 0.55rem;
  }

  .nav-drawer__contact a {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--ink-muted);
    font-size: 0.92rem;
    font-weight: 500;
  }

  .nav-drawer__contact a:hover {
    color: var(--bronze);
  }

  .nav-drawer__contact i {
    width: 1rem;
    color: var(--gold-muted);
    text-align: center;
  }

  .nav-drawer__admin {
    margin-top: 0.1rem;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(111, 98, 85, 0.65);
  }

  .nav-drawer__admin:hover {
    color: var(--bronze);
  }

  .logo .logo-nav {
    width: min(160px, 52vw);
    max-height: 38px;
  }

  .nav {
    gap: 0.5rem;
  }

  .nav-actions {
    gap: 0;
  }

  .whatsapp-float {
    z-index: 900;
  }

  body.nav-open .whatsapp-float {
    opacity: 0;
    pointer-events: none;
  }
}

@media (max-width: 768px) {
  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-ctas .btn {
    width: 100%;
  }

  .topbar {
    display: none;
  }

  :root {
    --header-h: 64px;
  }

  .logo .logo-nav {
    width: min(150px, 54vw);
    max-height: 34px;
  }

  .nav-actions .btn-outline { display: none; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .rooms-grid { grid-template-columns: 1fr; }
  .room-card--signature { grid-template-columns: 1fr; }
  .room-card--signature .room-card__media { min-height: 220px; }
  .property-overview { grid-template-columns: 1fr; }
  .property-gallery { grid-template-columns: 1fr 1fr; }
  .property-gallery__item--wide { grid-column: span 2; }
  .property-videos { grid-template-columns: 1fr; }
  .about-split { grid-template-columns: 1fr; gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form { padding: 1.25rem; }
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
    aspect-ratio: 16 / 10;
  }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .booking-row { grid-template-columns: 1fr; }

  .booking-panel { padding: 1.1rem; }
  .calendar-month-title {
    font-size: clamp(1.05rem, 4.5vw, 1.25rem);
    text-align: center;
  }
  .cal-day { font-size: 0.8rem; min-height: 40px; }
  .guest-booking-form .btn,
  #booking-submit { width: 100%; }

  .page-hero {
    padding: clamp(3.5rem, 10vw, 5rem) 0 clamp(2.5rem, 6vw, 3.25rem);
  }

  .featured-overlap {
    margin-top: 0 !important;
  }

  .map-wrap iframe { height: 280px; }

  main {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 480px) {
  .features-grid,
  .proximity-grid,
  .amenities-grid { grid-template-columns: 1fr; }

  .topbar-email { display: none; }

  .logo .logo-nav {
    width: min(138px, 48vw);
    max-height: 32px;
  }

  .room-card__footer {
    flex-direction: column;
    align-items: stretch;
  }
  .room-card__footer .btn { width: 100%; }

  .property-gallery { grid-template-columns: 1fr; }
  .property-gallery__item--wide { grid-column: span 1; }

  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item--large {
    grid-column: span 1;
    min-height: 220px;
  }

  .btn-row {
    flex-direction: column;
    align-items: stretch;
  }
  .btn-row .btn { width: 100%; }

  .stats-grid { gap: 0.75rem; }
}

/* ─── Booking payment ─── */
.booking-quote {
  margin: 0 0 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(203, 155, 81, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.booking-quote strong {
  font-size: 1.25rem;
  color: var(--bronze);
}
.payment-methods {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0 0 1rem;
}
.payment-methods legend {
  font-weight: 600;
  padding: 0 0.35rem;
}
.payment-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0.45rem 0;
  cursor: pointer;
}
.mpesa-status {
  margin: 0 0 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: rgba(27, 107, 58, 0.1);
  color: var(--sage-dark);
}

/* ─── Home stay featured ─── */
.stay-featured {
  background: var(--cream);
}

.stay-home-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}

.stay-home-unit {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.stay-home-unit__media {
  overflow: hidden;
}

.stay-home-unit__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.stay-home-unit h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.5vw, 1.9rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.15;
  margin: 0 0 1rem;
}

.stay-home-unit .stay-unit__actions {
  margin-top: 0.25rem;
}

@media (max-width: 900px) {
  .stay-home-grid {
    grid-template-columns: 1fr;
  }
}

.error-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
}

.error-page .container {
  width: 100%;
}

/* ─── Stay chooser (accommodation) ─── */
.stay-hero .stay-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
  margin-top: 1.5rem;
}

.stay-jump a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--bronze);
  border-bottom: 1px solid transparent;
  padding-bottom: 0.1rem;
  transition: color 0.25s var(--ease), border-color 0.25s var(--ease);
}

.stay-jump a:hover {
  color: var(--gold-muted);
  border-bottom-color: var(--gold);
}

.stay-pick-section .section-header {
  margin-bottom: 1.75rem;
}

.stay-pick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stay-pick__link {
  display: block;
  padding: 1.75rem 1.5rem;
  color: inherit;
  text-decoration: none;
  transition: background 0.3s var(--ease);
}

.stay-pick__link + .stay-pick__link {
  border-left: 1px solid var(--border);
}

.stay-pick__link:hover {
  background: rgba(203, 155, 81, 0.08);
  color: inherit;
}

.stay-pick__who {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.2;
  margin-bottom: 0.35rem;
}

.stay-pick__cap {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 0.55rem;
}

.stay-pick__detail {
  display: block;
  font-size: 0.95rem;
  color: var(--ink-muted);
}

.stay-unit {
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}

.stay-unit--alt {
  background: var(--cream);
}

.stay-unit__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.stay-unit__grid--flip .stay-unit__media {
  order: 2;
}

.stay-unit__grid--flip .stay-unit__body {
  order: 1;
}

.stay-unit__media {
  overflow: hidden;
  min-height: 280px;
  position: relative;
}

.stay-unit__media img,
.stay-slideshow__slide img,
.stay-slideshow__slide video {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  background: var(--brown-dark);
}

.stay-slideshow {
  position: relative;
  touch-action: pan-y;
  user-select: none;
}

.stay-slideshow__viewport {
  position: relative;
  overflow: hidden;
  outline: none;
  cursor: grab;
}

.stay-slideshow__viewport:active {
  cursor: grabbing;
}

.stay-slideshow__slide {
  margin: 0;
}

.stay-slideshow__slide[hidden] {
  display: none !important;
}

.stay-slideshow__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  border-radius: 999px;
  background: rgba(42, 26, 12, 0.72);
  color: var(--gold-light);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}

.stay-slideshow__nav:hover {
  background: rgba(42, 26, 12, 0.9);
}

.stay-slideshow__nav--prev {
  left: 0.75rem;
}

.stay-slideshow__nav--next {
  right: 0.75rem;
}

.stay-slideshow__dots {
  position: absolute;
  left: 50%;
  bottom: 2.4rem;
  transform: translateX(-50%);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  max-width: calc(100% - 2rem);
  z-index: 2;
}

.stay-slideshow__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.stay-slideshow__dot.is-active {
  background: var(--gold-bright);
  transform: scale(1.15);
}

.stay-slideshow__status {
  position: absolute;
  right: 0.75rem;
  bottom: 0.65rem;
  margin: 0;
  z-index: 2;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white);
  background: rgba(42, 26, 12, 0.65);
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
}

@media (max-width: 560px) {
  .stay-slideshow__nav {
    width: 2.15rem;
    height: 2.15rem;
  }

  .stay-slideshow__dots {
    bottom: 2.15rem;
  }
}

.stay-unit__type {
  margin: 0 0 0.4rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-muted);
}

.stay-unit__body h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.2vw, 2.45rem);
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.15;
  margin: 0 0 1.25rem;
}

.stay-unit__facts {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  border-top: 1px solid var(--border);
}

.stay-unit__facts li {
  display: grid;
  grid-template-columns: 6.5rem 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.95rem;
}

.stay-unit__facts span {
  color: var(--ink-muted);
}

.stay-unit__facts strong {
  font-weight: 600;
  color: var(--ink);
}

.stay-unit__copy {
  margin: 0 0 1.5rem;
  color: var(--ink-muted);
  max-width: 38rem;
}

.stay-unit__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.25rem;
}

.stay-unit__rate {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.stay-rates {
  background: var(--surface);
}

.rate-hint {
  display: block;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.stay-rates__cta {
  margin-top: 1.25rem;
}

.stay-included {
  background: var(--brown-dark);
  color: var(--white);
}

.stay-included .section-title {
  color: var(--gold-light);
}

.stay-included .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.stay-included__list {
  list-style: none;
  margin: 0 auto 2rem;
  padding: 0;
  max-width: 52rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem 1.5rem;
}

.stay-included__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.9);
}

.stay-included__list i {
  color: var(--gold);
  width: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

@media (max-width: 900px) {
  .stay-pick {
    grid-template-columns: 1fr;
  }

  .stay-pick__link + .stay-pick__link {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

  .stay-unit__grid,
  .stay-unit__grid--flip {
    grid-template-columns: 1fr;
  }

  .stay-unit__grid--flip .stay-unit__media,
  .stay-unit__grid--flip .stay-unit__body {
    order: unset;
  }

  .stay-included__list {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .stay-unit__facts li {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .stay-included__list {
    grid-template-columns: 1fr;
  }

  .stay-unit__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .stay-unit__actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* ─── Footer payment badges (from Cupstone) ─── */
.footer-payments {
  margin: 0 0 1.25rem;
  width: 100%;
}
.footer-payments__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.85rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-payments__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  padding: 0.35rem 0.55rem;
  min-height: 34px;
}
.footer-payments__item img {
  display: block;
  width: auto;
  height: 22px;
  max-width: 4.5rem;
  object-fit: contain;
}
