:root {
  --cream: #F7F3EC;
  --warm-white: #FEFCF8;
  --sand: #D9C9B8;
  --terracotta: #C2724A;
  --terracotta-dark: #A85D38;
  --sage: #7A8C6E;
  --sage-light: #A8B89F;
  --charcoal: #2A2118;
  --charcoal-light: #4A3E32;
  --gold: #C4963E;
}

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

html { font-size: 16px; scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--charcoal);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 1.25rem 2rem;
  border-bottom: 1px solid rgba(195, 150, 62, 0.2);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.02em;
}
.nav-tagline {
  font-size: 0.75rem;
  color: var(--sand);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* HERO */
.hero {
  padding: 6rem 2rem 5rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.12;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--charcoal-light);
  max-width: 520px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.7;
}

/* STATS */
.stats {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(195, 150, 62, 0.15);
  border-bottom: 1px solid rgba(195, 150, 62, 0.15);
  background: linear-gradient(135deg, var(--cream) 0%, var(--warm-white) 100%);
}
.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat {
  text-align: center;
  padding: 1.5rem;
  border-right: 1px solid rgba(195, 150, 62, 0.15);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 300;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sand);
  margin-top: 0.5rem;
}

/* FEATURES */
.features {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.features-header {
  margin-bottom: 3.5rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: block;
  margin-bottom: 0.75rem;
}
.features h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--charcoal);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.feature-card {
  padding: 2rem;
  border: 1px solid rgba(195, 150, 62, 0.18);
  background: var(--warm-white);
  transition: border-color 0.2s;
}
.feature-card:hover { border-color: var(--terracotta); }
.feature-icon {
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.feature-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--charcoal-light);
  line-height: 1.6;
}

/* DASHBOARD PREVIEW */
.dashboard-preview {
  padding: 5rem 2rem;
  background: var(--charcoal);
}
.db-content {
  max-width: 1100px;
  margin: 0 auto;
}
.db-content .section-label { color: var(--sand); }
.db-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin: 0.75rem 0 1rem;
}
.db-content p {
  color: rgba(247, 243, 236, 0.6);
  max-width: 480px;
  font-size: 0.95rem;
  margin-bottom: 3rem;
  line-height: 1.7;
}
.db-mock {
  background: #1A1510;
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.db-mock-topbar {
  background: #2A2118;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.db-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(247, 243, 236, 0.15);
}
.db-title {
  font-size: 0.75rem;
  color: rgba(247, 243, 236, 0.4);
  margin-left: auto;
  margin-right: auto;
  font-family: 'DM Sans', sans-serif;
}
.db-mock-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  min-height: 340px;
}
.db-sidebar {
  background: #211B14;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.db-nav-item {
  font-size: 0.8rem;
  color: rgba(247, 243, 236, 0.35);
  padding: 0.5rem 0.75rem;
  border-radius: 6px;
  cursor: pointer;
}
.db-nav-item.active {
  background: rgba(194, 114, 74, 0.2);
  color: var(--terracotta);
}
.db-main {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.db-card {
  background: #2A2118;
  border-radius: 8px;
  padding: 1.25rem;
}
.db-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
.db-card-title {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--cream);
}
.db-badge {
  background: rgba(194, 114, 74, 0.2);
  color: var(--terracotta);
  font-size: 0.7rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.db-badge.green { background: rgba(122, 140, 110, 0.2); color: var(--sage-light); }
.db-booking-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(247,243,236,0.05);
}
.db-booking-row:last-child { border-bottom: none; }
.db-booking-info { display: flex; flex-direction: column; gap: 0.1rem; }
.db-booking-info strong { font-size: 0.85rem; color: var(--cream); font-weight: 500; }
.db-booking-info span { font-size: 0.75rem; color: rgba(247,243,236,0.4); }
.db-deposit { font-size: 0.7rem !important; color: var(--sage) !important; }
.db-status {
  font-size: 0.7rem;
  padding: 0.2rem 0.6rem;
  border-radius: 999px;
  font-weight: 500;
}
.db-status.confirmed { background: rgba(122, 140, 110, 0.15); color: var(--sage-light); }
.db-status.pending { background: rgba(195, 150, 62, 0.15); color: var(--gold); }
.db-review-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(247,243,236,0.05);
}
.db-review-row:last-child { border-bottom: none; }
.db-stars { font-size: 0.8rem; color: var(--gold); }
.db-review-text { font-size: 0.78rem; color: rgba(247, 243, 236, 0.5); font-style: italic; }

/* MANIFESTO */
.manifesto {
  padding: 5rem 2rem;
  background: var(--cream);
}
.manifesto-inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.manifesto-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--sand), transparent);
}
.manifesto blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  font-weight: 300;
  color: var(--charcoal-light);
  line-height: 1.5;
  white-space: nowrap;
}

/* CLOSING */
.closing {
  padding: 6rem 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  margin-bottom: 1rem;
}
.closing p {
  color: var(--charcoal-light);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
.closing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}
.tag {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--sand);
  color: var(--charcoal-light);
  border-radius: 999px;
}

/* FOOTER */
.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(195, 150, 62, 0.15);
  background: var(--cream);
}
.footer-inner { max-width: 1100px; margin: 0 auto; text-align: center; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.footer-meta {
  color: var(--charcoal-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  font-style: italic;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  color: var(--sand);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* MOBILE */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(195,150,62,0.15); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }
  .features-grid { grid-template-columns: 1fr; }
  .db-mock-body { grid-template-columns: 1fr; }
  .db-sidebar { display: none; }
  .manifesto-inner { flex-direction: column; gap: 1.5rem; }
  .manifesto blockquote { white-space: normal; }
  .hero { padding: 4rem 1.5rem 3rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 2.2rem; }
  .closing-tags { gap: 0.5rem; }
  .tag { font-size: 0.65rem; }
}