* { box-sizing: border-box; }
html, body {
  margin: 0;
  height: 100%;
}
body {
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
  line-height: 1.65;
  font-size: 17px;
}
.split {
  display: flex;
  min-height: 100vh;
}
.panel {
  padding: 64px 56px;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  margin: 0 0 20px;
}
.eyebrow-mixed {
  text-transform: none;
}

/* Left: dark panel */
.dark {
  flex: 0 0 35%;
  color: #f4f1ea;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: sticky;
  top: 0;
  align-self: flex-start;
  height: 100vh;
  overflow: hidden;
}
.dark::before {
  content: "";
  position: absolute;
  inset: -20px;
  background-image: url("assets/false-creek-skyline-night.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(6px) brightness(0.55) saturate(0.9);
  transform: scale(1.05);
  z-index: 0;
}
.dark::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 20, 26, 0.1), rgba(15, 20, 26, 0.1));
  z-index: 1;
}
.dark > div {
  position: relative;
  z-index: 2;
}
.dark .eyebrow { color: #c7ccd1; }
.dark h1 {
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.08;
  margin: 0;
}
.dark .tagline {
  color: #d3d6da;
  font-size: 15px;
  margin: 0 0 6px;
}

/* Right: light panel */
.light {
  flex: 1;
  background: #f4efe6;
  color: #2b2a27;
}
.light .eyebrow { color: #8c8a80; }
.light p { /*max-width: 620px;*/ margin: 0 0 24px; }
.light hr {
  border: none;
  border-top: 1px solid #ddd6c8;
  margin: 40px 0 32px;
  max-width: 620px;
}
.light a {
  color: #2b2a27;
  text-decoration-color: #b8b6ad;
}
.light a:hover {
  text-decoration-color: #2b2a27;
}

@media (max-width: 860px) {
  .split { flex-direction: column; }
  .dark {
    flex: none;
    position: static;
    height: auto;
    padding: 48px 24px;
    gap: 48px;
  }
  .panel { padding: 48px 24px; }
}
