/* Simple, readable, mobile-first landing */
:root { --bg:#fff; --fg:#222; --brand:#2b6cb0; --muted:#555; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: system-ui, -apple-system, Segoe UI, Roboto, "Source Sans Pro", Arial, sans-serif;
}

.wrap { max-width: 880px; margin: 0 auto; padding: 40px 20px; }
header { padding: 12px 0; }

h1 {
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.2;
  margin: 16px 0 8px;
}

p.lead {
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  margin: 0 0 24px;
}

.cta {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 10px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .grid { grid-template-columns: 1fr 1fr; }
}

footer { margin-top: 48px; font-size: 14px; color: var(--muted); }

/* Form styles (replaces inline styles) */
.notify-form { margin-top: 24px; }
.notify-form input[type="email"] {
  padding: 10px;
  width: min(420px, 92%);
  box-sizing: border-box;
}
.notify-form .cta { margin-left: 8px; }

/* Simple utility */
.hidden { display: none; }

header {
  padding: 12px 0;
  text-align: center;   /* centers logo horizontally */
}

.site-logo {
  max-width: 240px;     /* scale as needed */
  height: auto;         /* keeps proportions */
  display: inline-block;
}

/* --- Two-column layout --- */
.layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 24px;
  align-items: start;
}

/* Left rail */
.left-col h2 {
  margin-top: 0;
  font-size: clamp(18px, 2.2vw, 22px);
}

.bio-photo {
  margin: 12px 0 16px;
}

.bio-photo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Placeholder box (remove when real <img> is used) */
.photo-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background: linear-gradient(135deg, #e9eef6, #dfe8f4);
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* Bio text */
.left-col .bio p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--muted);
}

/* Center column preserves your existing main styles */
.center-col { min-width: 0; }

/* Responsive: stack columns on small screens */
@media (max-width: 1024px) {
  .layout {
    grid-template-columns: 1fr;
  }
  .left-col { order: -1; } /* About appears above the main content on mobile */
}
/* Enlarge site logo */
.site-logo {
  max-width: 320px;   /* was 240px */
  height: auto;
  display: inline-block;
}

/* Bio headline */
.bio-headline {
  text-align: center;
  font-weight: bold;
  margin: 8px 0 16px;
  font-size: 16px;
  color: var(--fg);
}

/* You can remove .photo-placeholder styles if not needed anymore */
