/* ---- Variables ---- */
:root {
  --cream: #f8f2e8;
  --warm-white: #fffcf7;
  --terracotta: #a8503a;
  --terracotta-dark: #8a3f2d;
  --deep-brown: #2c231c;
  --charcoal: #3a332c;
  --text: #4a4038;
  --text-light: #7a6f63;
  --border: #e6dccb;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.65;
  font-weight: 300;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--deep-brown);
  margin: 0 0 0.5em;
  line-height: 1.15;
}

h2 { font-size: 2.4rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.4em; }

p { margin: 0 0 1em; }

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

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

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.narrow { max-width: 720px; }

.center { text-align: center; }

.eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.6em;
}

.eyebrow.light { color: #e0c3a8; }

.section { padding: 96px 0; }

/* ---- Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--deep-brown);
}

.logo-badge {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  font-size: 0.95rem;
  color: var(--text);
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--terracotta);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 3px;
  font-size: 0.9rem;
}

.nav-cta:hover { background: var(--terracotta-dark); }

/* ---- Hero ---- */
.hero {
  position: relative;
  height: 92vh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-images {
  position: absolute;
  inset: 0;
  display: flex;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,20,14,0.55) 0%, rgba(28,20,14,0.35) 45%, rgba(28,20,14,0.65) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 24px;
  max-width: 780px;
}

.hero-content .eyebrow {
  color: #e8c8ab;
}

.hero h1 {
  color: #fff;
  font-size: 3.6rem;
  margin-bottom: 0.4em;
}

.hero-sub {
  font-size: 1.15rem;
  font-weight: 300;
  color: #f2e9dd;
  margin-bottom: 1.8em;
}

/* ---- Availability badge ---- */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 252, 247, 0.14);
  border: 1px solid rgba(255, 252, 247, 0.4);
  backdrop-filter: blur(4px);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 1.6em;
}

.availability-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6fbf73;
  box-shadow: 0 0 0 3px rgba(111, 191, 115, 0.3);
}

.availability-badge.booked .dot {
  background: #d97355;
  box-shadow: 0 0 0 3px rgba(217, 115, 85, 0.3);
}

/* ---- Trust bar ---- */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}

.trust-grid {
  display: flex;
  justify-content: center;
  gap: 64px;
  flex-wrap: wrap;
  text-align: center;
}

.trust-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.trust-number {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 2.2rem;
  color: var(--terracotta-dark);
}

.trust-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* ---- Platform note ---- */
.platform-note {
  margin-top: 1.4em;
  font-size: 0.9rem;
  color: #cbb9a4;
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  padding: 15px 34px;
  border-radius: 3px;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

.btn-primary {
  background: var(--terracotta);
  color: #fff;
}

.btn-primary:hover { background: var(--terracotta-dark); }

.btn-light {
  background: #fff;
  color: var(--terracotta-dark);
  font-weight: 500;
}

.btn-light:hover { background: #f2e9dd; }

/* ---- About ---- */
.about { background: var(--warm-white); }

.note-callout {
  margin-top: 2em;
  padding: 20px 24px;
  background: var(--cream);
  border-left: 3px solid var(--terracotta);
  border-radius: 2px;
  font-size: 0.95rem;
}

/* ---- Space ---- */
.space { background: var(--cream); }

.space-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.space-card {
  background: var(--warm-white);
  padding: 32px 28px;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.space-card h3 { color: var(--terracotta-dark); }

.space-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  margin: 0;
}

/* ---- Gallery ---- */
.gallery { background: var(--warm-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 48px;
}

.gallery-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 3px;
  transition: transform 0.4s ease;
}

.gallery-grid a, .gallery-grid img { cursor: pointer; }

.gallery-grid img:hover { transform: scale(1.02); }

/* ---- Location ---- */
.location { background: var(--cream); }

/* ---- Book ---- */
.book {
  background: var(--deep-brown);
  color: #f2e9dd;
}

.book h2.light { color: #fff; }

.book p.light { color: #d8c7b4; }

/* ---- Footer ---- */
.site-footer {
  background: var(--charcoal);
  color: #cfc4b6;
  padding: 32px 0;
  font-size: 0.9rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.footer-brand p { margin: 0; }

.site-footer a:hover { color: var(--terracotta); }

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav { gap: 18px; }
  .nav a:not(.nav-cta) { display: none; }
  .hero h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .space-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 64px 0; }
}

@media (max-width: 520px) {
  .space-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
  .gallery-grid img { height: 220px; }
  .hero-images { flex-direction: column; }
  .hero-img { width: 100%; height: 50%; }
}
