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

:root {
  --ink: #0f6b43;
  --ink-mid: #198b5a;
  --ink-soft: #5a7f6f;
  --cream: #f3f8f5;
  --warm: #e8f2ec;
  --accent: #2b8f67;
  --gold: #2fa56f;
  --gold-light: #a8ddc1;
  --white: #ffffff;
  --border: #cfe3d7;
  --green: #198b5a;
  --red: #2f8f66;
  --orange: #3aa876;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 28px; height: 28px;
  background: var(--ink);
  border-radius: 6px;
  display: grid;
  place-items: center;
}

.logo-mark svg { width: 16px; height: 16px; fill: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--ink-mid);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

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

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.1s !important;
}

.nav-cta:hover {
  background: var(--ink-mid) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle:hover {
  border-color: var(--ink-soft);
  background: var(--cream);
}

.nav-toggle[aria-expanded='true'] {
  border-color: var(--ink);
  background: var(--cream);
}

.nav-toggle svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--ink-mid);
  stroke-width: 2;
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: var(--cream);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 64px;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  bottom: 0; right: -1px;
  width: 1px;
  height: 60%;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.eyebrow::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--gold);
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 420px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover {
  background: var(--ink-mid);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--ink);
  text-decoration: none;
  padding: 14px 30px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: border-color 0.2s, background 0.2s;
}

.btn-secondary:hover {
  border-color: var(--ink);
  background: var(--warm);
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.stat { border-left: 2px solid var(--gold-light); padding-left: 16px; }
.stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ink);
}
.stat-lbl { font-size: 0.78rem; color: var(--ink-soft); font-weight: 400; }

/* ── HERO RIGHT ── */
.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,15,15,0.05) 0%, rgba(15,15,15,0.35) 100%);
}

.availability-card {
  position: absolute;
  bottom: 36px;
  right: 28px;
  left: 28px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 16px;
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,0.8);
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.avail-header {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 14px;
}

.avail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.avail-row:last-child { border-bottom: none; }

.avail-name { font-size: 0.875rem; font-weight: 600; color: var(--ink); }
.avail-sub { font-size: 0.75rem; color: var(--ink-soft); margin-top: 2px; }

.badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.03em;
}

.badge-green { background: #e4f6ee; color: #0f754d; }
.badge-yellow { background: #dbf1e4; color: #24875b; }
.badge-gray { background: #edf4f0; color: #5e7d70; }

.avail-book-btn {
  display: block;
  width: 100%;
  margin-top: 16px;
  background: var(--ink);
  color: var(--white);
  text-align: center;
  padding: 12px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  transition: background 0.2s;
}

.avail-book-btn:hover { background: var(--ink-mid); color: var(--white); }

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--ink);
  color: var(--white);
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-bar p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.trust-tags {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.trust-tag {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-tag::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
}

/* ── SECTION COMMONS ── */
section { padding: 96px 48px; }

.sec-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.sec-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.sec-sub {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin-top: 16px;
}

/* ── FEATURES ── */
#features { background: var(--white); }

.features-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.feat {
  background: var(--white);
  padding: 32px;
  transition: background 0.2s;
}

.feat:hover { background: var(--cream); }

.feat-icon {
  width: 44px; height: 44px;
  background: var(--warm);
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  font-size: 1.2rem;
  color: var(--ink-mid);
}

.feat-icon i { font-size: 1.15rem; line-height: 1; }

.space-meta i {
  font-size: 0.78rem;
  color: var(--ink-mid);
}

.feat h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.feat p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── SPACES ── */
#spaces { background: var(--cream); }

.spaces-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 1200px;
  margin: 0 auto 48px;
}

.spaces-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.space-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.25s, box-shadow 0.25s;
}

.space-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.space-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.space-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
  display: block;
}

.space-card:hover .space-img img { transform: scale(1.04); }

.space-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(255,255,255,0.93);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.space-body { padding: 22px; }
.space-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.space-body p {
  font-size: 0.875rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 18px;
}

.space-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.space-meta span { display: flex; align-items: center; gap: 5px; }

.nowrap-link { white-space: nowrap; }

/* ── HOW IT WORKS ── */
#how-it-works { background: var(--white); }

.section-center {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.section-center .sec-sub { margin: 0 auto; }

.steps-container {
  max-width: 1100px;
  margin: 56px auto 0;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(to right, var(--border), var(--gold-light), var(--border));
}

.step {
  padding: 0 20px;
  text-align: center;
}

.step-num {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step:nth-child(2) .step-num { background: var(--gold); }
.step:nth-child(3) .step-num { background: var(--accent); }
.step:nth-child(4) .step-num { background: var(--green); }

.step h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--ink);
}

.step p {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ── CTA ── */
#booking-cta {
  background: var(--ink);
  padding: 96px 48px;
  position: relative;
  overflow: hidden;
}

#booking-cta::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,169,110,0.12) 0%, transparent 70%);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.cta-inner .eyebrow { color: var(--gold); }
.cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
}

.cta-inner p {
  color: rgba(255,255,255,0.55);
  font-weight: 300;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-inner p strong { color: rgba(255,255,255,0.9); font-weight: 500; }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  text-decoration: none;
  padding: 16px 40px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover {
  background: #36a973;
  color: var(--ink);
  transform: translateY(-2px);
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  padding: 32px 48px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer p { font-size: 0.8rem; color: var(--ink-soft); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-right { height: 420px; }
  .hero-left { padding: 60px 40px; }
  .features-layout { grid-template-columns: 1fr; gap: 40px; }
  .sec-sub { max-width: 100%; }
}

@media (max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: flex;
    position: absolute;
    top: 68px;
    left: 14px;
    right: 14px;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px;
    background: rgba(255,255,255,0.98);
    border: 1px solid var(--border);
    border-radius: 14px;
    box-shadow: 0 18px 42px rgba(15, 107, 67, 0.14);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top right;
    transition: opacity 0.2s ease, transform 0.25s ease, visibility 0.25s ease;
  }
  .nav-links.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    width: 100%;
    padding: 10px 12px;
    border-radius: 8px;
  }
  .nav-links a:hover { background: var(--cream); }
  .nav-links .nav-cta {
    display: block;
    width: 100%;
    margin-top: 6px;
    text-align: center;
    padding: 11px 14px;
  }
  section { padding: 60px 20px; }
  .spaces-grid, .steps-grid { grid-template-columns: 1fr; }
  .spaces-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .features-grid { grid-template-columns: 1fr; }
  .hero-left { padding: 40px 20px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .steps-grid::before { display: none; }
  footer { padding: 24px 20px; }
  .trust-bar { padding: 20px; }
  #booking-cta { padding: 60px 20px; }
}

/* ── FADE IN ANIMATION ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-left > * {
  animation: fadeUp 0.7s ease both;
}

.hero-left > *:nth-child(1) { animation-delay: 0.1s; }
.hero-left > *:nth-child(2) { animation-delay: 0.2s; }
.hero-left > *:nth-child(3) { animation-delay: 0.3s; }
.hero-left > *:nth-child(4) { animation-delay: 0.4s; }
.hero-left > *:nth-child(5) { animation-delay: 0.5s; }