:root {
  --bg: #ffffff;
  --text: #151515;
  --muted: #666666;
  --line: #ebebeb;
  --soft: #f7f7f7;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
img { display: block; width: 100%; height: auto; }
.lightbox-trigger {
  display: block;
  position: relative;
  cursor: zoom-in;
  overflow: hidden;
}
.lightbox-trigger img {
  transition: transform 320ms ease, filter 320ms ease;
  transform-origin: center center;
}
.lightbox-trigger:hover img,
.lightbox-trigger:focus-visible img {
  transform: scale(1.04);
}
.lightbox-trigger::after {
  content: "+";
  position: absolute;
  right: 14px;
  bottom: 14px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.88);
  color: #111;
  font-size: 1.3rem;
  line-height: 1;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}
.lightbox-trigger:hover::after,
.lightbox-trigger:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}
h1, h2, h3 {
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0;
}
p { margin: 0 0 1.1rem; color: var(--muted); }
.shell {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}
.section { padding: 56px 0; }
.section-tight { padding: 96px 0 32px; }
.centered-copy { text-align: center; margin-inline: auto; }
.centered-copy p { margin-inline: auto; }
.narrow { max-width: 720px; }
.hero-copy { max-width: 780px; }
.hero h1 {
  font-size: clamp(3.25rem, 7vw, 5.75rem);
  margin-bottom: 18px;
}
.hero p,
.section-heading p,
.newsletter p {
  font-size: 1.05rem;
  max-width: 640px;
}
.three-up {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.feature-card img {
  aspect-ratio: 0.8;
  object-fit: cover;
}
.feature-meta {
  padding-top: 16px;
  text-align: center;
}
.kicker {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #8a8a8a;
  margin-bottom: 8px;
}
.feature-meta h3 {
  font-size: 1.45rem;
}
.section-heading { margin-bottom: 34px; }
.section-heading h2,
.info-main h2,
.newsletter h2 {
  font-size: clamp(2.2rem, 4vw, 3.7rem);
  margin-bottom: 14px;
}
.masonry-grid {
  columns: 4 220px;
  column-gap: 18px;
}
.masonry-grid img {
  margin: 0 0 18px;
  break-inside: avoid;
  object-fit: cover;
  border-radius: 2px;
}
.gallery-top .tall { aspect-ratio: 1 / 2; }
.info-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 48px;
  align-items: start;
}
.info-main p { max-width: 760px; }
.checklist {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
}
.checklist li {
  position: relative;
  padding-left: 30px;
  margin: 0 0 14px;
  color: var(--text);
  font-weight: 500;
}
.checklist li::before {
  content: '/';
  position: absolute;
  left: 0;
  top: 0;
  color: #444;
}
.profile-card {
  padding: 34px;
  border: 1px solid var(--line);
  background: #fff;
}
.profile-card h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.profile-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  color: var(--text);
}
.profile-stats-inline strong { font-weight: 600; }
.long-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
}
.long-copy-grid p {
  font-size: 1rem;
}
.stat-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  padding-top: 28px;
  padding-bottom: 28px;
}
.stat {
  text-align: center;
  padding: 18px 10px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: var(--text);
  margin-bottom: 8px;
}
.stat span { color: var(--muted); }
.newsletter-wrap {
  padding-top: 42px;
  padding-bottom: 96px;
}
.newsletter {
  text-align: center;
  padding: 48px 28px;
  background: var(--soft);
}
.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.newsletter-form input {
  min-width: min(100%, 360px);
  padding: 14px 16px;
  border: 1px solid #d8d8d8;
  background: #fff;
  font: inherit;
}
.newsletter-form button {
  padding: 14px 24px;
  border: 0;
  background: #111;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
  background: rgba(10, 10, 10, 0.92);
  z-index: 9999;
}
.lightbox.is-open { display: flex; }
.lightbox-figure {
  margin: 0;
  max-width: min(92vw, 1180px);
  max-height: 88vh;
}
.lightbox-figure img {
  width: auto;
  max-width: 100%;
  max-height: calc(88vh - 42px);
  margin: 0 auto;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.lightbox-figure figcaption {
  margin-top: 12px;
  text-align: center;
  color: rgba(255,255,255,0.84);
  font-size: 0.95rem;
}
.lightbox-close,
.lightbox-nav {
  border: 0;
  background: rgba(255,255,255,0.12);
  color: #fff;
  cursor: pointer;
}
.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 1.8rem;
}
.lightbox-nav {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  font-size: 2rem;
  flex: 0 0 auto;
}
body.lightbox-open {
  overflow: hidden;
}
@media (max-width: 900px) {
  .three-up,
  .info-split,
  .long-copy-grid,
  .stat-band {
    grid-template-columns: 1fr;
  }
  .hero h1 { font-size: 3rem; }
  .section-tight { padding-top: 72px; }
  .shell { width: min(1240px, calc(100% - 28px)); }
  .lightbox {
    padding: 16px;
  }
  .lightbox-nav {
    position: absolute;
    bottom: 18px;
  }
  .lightbox-prev { left: 18px; }
  .lightbox-next { right: 18px; }
}
