:root {
  color-scheme: light;
  --ink: #16201d;
  --muted: #5b6864;
  --paper: #f7f8f3;
  --panel: #ffffff;
  --line: #dbe1dc;
  --green: #12483f;
  --blue: #315f8f;
  --gold: #be8b3b;
  --coral: #d85f45;
  --shadow: 0 24px 70px rgb(22 32 29 / 13%);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 5vw;
  border-bottom: 1px solid rgb(22 32 29 / 10%);
  background: rgb(247 248 243 / 92%);
  backdrop-filter: blur(18px);
}

.brand,
nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 850;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 6px;
  color: white;
  background: var(--green);
  font-size: 0.8rem;
}

nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-action {
  padding: 10px 14px;
  border-radius: 6px;
  color: white;
  background: var(--green);
}

.hero {
  min-height: calc(78vh - 72px);
  display: flex;
  align-items: flex-end;
  padding: 8vh 5vw;
  background:
    linear-gradient(90deg, rgb(12 22 20 / 82%), rgb(12 22 20 / 48) 48%, rgb(12 22 20 / 10)),
    url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1800&q=82") center / cover;
  color: white;
}

.hero-copy {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f4bc55;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(3rem, 6.4vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.55rem;
}

.intro {
  max-width: 640px;
  color: rgb(255 255 255 / 84%);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.58;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 850;
}

.primary {
  color: white;
  background: var(--green);
}

.secondary {
  color: white;
  border-color: rgb(255 255 255 / 42%);
  background: rgb(255 255 255 / 12%);
}

.section {
  padding: 84px 5vw;
}

.section-heading {
  max-width: 780px;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.demo-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.demo-card .label {
  width: max-content;
  max-width: 100%;
  margin-bottom: 70px;
  padding: 7px 10px;
  border-radius: 999px;
  color: white;
  background: var(--green);
  font-size: 0.8rem;
  font-weight: 850;
}

.demo-card p {
  color: var(--muted);
  line-height: 1.65;
}

.demo-card strong {
  margin-top: auto;
  color: var(--green);
}

.restaurant .label {
  background: var(--coral);
}

.restaurant strong {
  color: var(--coral);
}

.doula .label {
  background: var(--blue);
}

.doula strong {
  color: var(--blue);
}

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

@media (max-width: 760px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 20px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
    padding: 80px 20px 52px;
  }

  h1 {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .section {
    padding: 56px 20px;
  }
}

