/* === BASE === */
:root {
  --bg: #faf8f4;
  --surface: #ffffff;
  --fg: #1a1714;
  --fg-secondary: #6b6560;
  --accent: #1e6e6e;
  --accent-warm: #c8622a;
  --border: #e8e3db;
  --shadow: 0 2px 16px rgba(26,23,20,0.08);
}

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

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* === TYPOGRAPHY === */
h1, h2, h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
}

/* === NAVBAR === */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 10;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  color: var(--fg);
}

.brand-mark { color: var(--accent); }

.navbar-tagline {
  font-size: 0.8rem;
  color: var(--fg-secondary);
  letter-spacing: 0.02em;
}

/* === HERO === */
.hero {
  position: relative;
  overflow: hidden;
  padding: 5rem 2rem 4rem;
  border-bottom: 1px solid var(--border);
}

.hero-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-secondary);
  margin-bottom: 1.5rem;
}

.label-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-warm);
  display: inline-block;
}

.hero-headline {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-secondary);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat { display: flex; flex-direction: column; gap: 0.2rem; }

.stat-number {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--fg-secondary);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

.hero-ambient {
  position: absolute;
  top: -60px;
  right: -80px;
  width: 400px;
  height: 400px;
  opacity: 0.07;
  pointer-events: none;
}

.wave-bg {
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%);
  border-radius: 50%;
}

/* === SECTION COMMON === */
.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-warm);
  margin-bottom: 0.75rem;
}

.section-heading {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-body {
  font-size: 1rem;
  color: var(--fg-secondary);
  max-width: 520px;
  line-height: 1.75;
}

/* === OPERATIONS === */
.operations {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

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

.operations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 880px;
  margin: 0 auto;
}

.op-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.op-card-accent {
  border-top: 3px solid var(--accent-warm);
}

.op-card-wide { grid-column: span 2; }

.op-icon {
  color: var(--accent);
  margin-bottom: 1rem;
}

.op-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: var(--fg);
}

.op-card p {
  font-size: 0.9rem;
  color: var(--fg-secondary);
  line-height: 1.65;
}

/* === FEATURES === */
.features {
  padding: 5rem 2rem;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.75rem;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: var(--fg-secondary);
}

.check-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Dashboard mock */
.dashboard-mock {
  background: var(--fg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,23,20,0.2);
}

.mock-topbar {
  background: #252220;
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mock-label {
  font-size: 0.75rem;
  color: #a09a95;
  font-weight: 500;
}

.mock-badge {
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
}

.mock-rows { padding: 1.25rem; display: flex; flex-direction: column; gap: 0.5rem; }

.mock-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 0.75rem 1rem;
  background: #2e2b28;
  border-radius: 8px;
}

.mock-prop { font-size: 0.8rem; color: #f0ebe6; font-weight: 500; }

.mock-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.mock-clean { background: #2a4a2a; color: #7ec97e; }
.mock-booked { background: #2a3a5a; color: #7e9ec9; }
.mock-available { background: #3a2a1a; color: #c9a87e; }
.mock-maintenance { background: #4a2a2a; color: #c97e7e; }

.mock-date { font-size: 0.72rem; color: #7a7570; text-align: right; }

/* === OWNER VALUE === */
.owner-value {
  padding: 5rem 2rem;
  border-bottom: 1px solid var(--border);
}

.owner-value-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.quote-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.quote-mark { color: var(--accent-warm); margin-bottom: 1rem; }

.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--fg);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.quote-attr {
  font-size: 0.78rem;
  color: var(--fg-secondary);
}

.value-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.75rem;
}

.pill {
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--fg-secondary);
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
}

/* === CLOSING === */
.closing {
  padding: 6rem 2rem;
  text-align: center;
  background: var(--fg);
}

.closing-inner { max-width: 640px; margin: 0 auto; }

.closing-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: #faf8f4;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.closing-body {
  font-size: 1rem;
  color: #a09a95;
}

/* === FOOTER === */
.footer {
  padding: 2rem;
  border-top: 1px solid var(--border);
  background: var(--fg);
}

.footer-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer .navbar-brand { color: #faf8f4; }
.footer .brand-mark { color: var(--accent-warm); }

.footer-copy {
  font-size: 0.8rem;
  color: #6b6560;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 3rem 1.5rem 3rem; }
  .hero-stats { gap: 1.25rem; }
  .stat-divider { display: none; }

  .operations-grid { grid-template-columns: 1fr; }
  .op-card-wide { grid-column: span 1; }

  .features-inner,
  .owner-value-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .operations { padding: 3.5rem 1.5rem; }
  .features { padding: 3.5rem 1.5rem; }
  .owner-value { padding: 3.5rem 1.5rem; }

  .closing { padding: 4rem 1.5rem; }

  .footer-inner { flex-direction: column; gap: 0.75rem; text-align: center; }

  .navbar-tagline { display: none; }
}