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

body {
  font-family: system-ui, -apple-system, Arial, sans-serif;
  background: #fff;
  color: #222;
}

img { max-width: 100%; height: auto; display: block; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
}

.logo a {
  text-decoration: none;
  color: #111;
  font-size: 18px;
  letter-spacing: 0.5px;
}

.logo-sub {
  font-size: 10px;
  letter-spacing: 2px;
  color: #888;
  margin-top: 2px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 4px 8px;
  color: #222;
  line-height: 1;
}

.navlinks {
  display: flex;
  gap: 24px;
  align-items: center;
}

.navlinks a {
  text-decoration: none;
  color: #222;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.navlinks a.active {
  text-decoration: underline;
  text-underline-offset: 6px;
}

@media (max-width: 768px) {
  .menu-toggle { display: block; }

  .navlinks {
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 8px 0;
    z-index: 99;
  }

  .navlinks.open { display: flex; }

  .navlinks a {
    padding: 14px 28px;
    font-size: 16px;
    border-bottom: 1px solid #f0f0f0;
  }

  .navlinks a:last-child { border-bottom: none; }
}

.page-hero{
  padding: 56px 60px 22px;
  background: #fff;            /* screenshot is white */
  border-top: 1px solid #eee;  /* subtle line like Shopify */
}

.page-hero h1{
  margin: 0;
  font-size: 44px;
  font-weight: 400;
  color: #111;
}

/* Centered hero title for pages like Biography */
.page-hero-center {
  text-align: center;
}

/* BIOGRAPHY PAGE */
.bio-band {
  background: #f3f3f3; /* light gray band like screenshot */
  padding: 70px 0;
}

.bio-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 60px;
}

.bio-card {
  background: #fff;
  display: grid;
  grid-template-columns: 1.35fr 0.65fr; /* text wider than photo */
  min-height: 360px;
}

/* Left text area */
.bio-text {
  padding: 38px 42px;
  color: #444;
  font-size: 13px;
  line-height: 1.9;
}

.bio-text p {
  margin: 0 0 16px;
}

.bio-link a {
  color: #444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Right photo */
.bio-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Responsive */
@media (max-width: 900px) {
  .bio-wrap { padding: 0 20px; }
  .bio-card { grid-template-columns: 1fr; }
  .bio-photo img { height: auto; }
}


/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid #eee;
  padding: 48px 28px 36px;
  text-align: center;
}
.footer-logo { font-size: 16px; letter-spacing: 0.5px; color: #111; margin-bottom: 4px; }
.footer-logo-sub { font-size: 9px; letter-spacing: 2.5px; color: #aaa; margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 8px 20px; margin-bottom: 20px; }
.footer-links a { text-decoration: none; color: #888; font-size: 12px; letter-spacing: 0.5px; }
.footer-links a:hover { color: #111; }
.footer-links span { color: #ddd; font-size: 12px; }
.footer-copy { font-size: 11px; color: #bbb; letter-spacing: 0.5px; }
@media (max-width: 768px) {
  .footer-links span { display: none; }
  .footer-links { gap: 10px 14px; }
}