/* The Business of Aspiration — design tokens taken from the 2023 original */
:root {
  --ink: #1b1b1b;
  --text: #5e5e5e;
  --heading: #595959;
  --accent: #8c6f6f;
  --accent-hover: #474747;
  --surface: #e2e2e2;
  --surface-hover: #d4d4d4;
  --footer-bg: #333333;
  --footer-text: #a9a9a9;
  --font: 'Open Sans', arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  background: #fff;
  color: var(--text);
  font-family: var(--font);
  font-size: 18px;
  line-height: 1.5;
}
@media (min-width: 1536px) { body { font-size: 21px; } }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--accent); }

/* ---------- layout ---------- */
.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 24px;
}
@media (min-width: 1024px) { .container { max-width: 984px; } }
@media (min-width: 1280px) { .container { max-width: 1160px; } }
@media (min-width: 1536px) { .container { max-width: 1280px; } }

.section { padding-block: 40px; }
@media (min-width: 768px) { .section { padding-block: 56px; } }

/* the narrow, indented column the original uses for running text */
.narrow > * { margin-block: 0; }
.narrow > * + * { margin-top: 24px; }
@media (min-width: 768px) {
  .narrow { width: 83.3333%; margin-left: 8.3333%; padding-inline: 24px; }
}
@media (min-width: 1024px) {
  .narrow { width: 66.6667%; margin-left: 16.6667%; }
}
.center { text-align: center; }

/* ---------- typography ---------- */
.content-heading {
  margin: 0;
  color: var(--ink);
  font-size: 1em;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-heading {
  margin: 0 0 40px;
  color: var(--heading);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 0.091em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 1536px) { .section-heading { font-size: 28px; } }

.link:hover { color: var(--accent-hover); }
.link:active { color: #303030; }

ul { padding-left: 1.3em; }

/* ---------- hero ---------- */
.hero img { width: 100%; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 32px;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
}
@media (min-width: 1536px) { .btn { font-size: 18px; } }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border: 1.3px solid currentColor;
}
.btn-secondary:hover {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

/* dead destination — kept for layout, not clickable */
.btn.is-inactive { cursor: default; }
.btn.is-inactive:hover { color: var(--accent); background: transparent; border-color: currentColor; }

/* ---------- reviews ---------- */
.reviews {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 24px;
  row-gap: 24px;
}
@media (min-width: 768px) {
  .reviews { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; row-gap: 48px; }
}
@media (min-width: 1024px) {
  .reviews { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.review { margin: 0; }
.review blockquote { margin: 0; }
.review p { margin: 0; }
.review figcaption {
  margin-top: 24px;
  color: var(--ink);
  font-weight: 700;
}

/* ---------- author ---------- */
.split { display: grid; grid-template-columns: 1fr; gap: 24px; }
@media (min-width: 1024px) {
  .split { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 48px; align-items: center; }
}
.split > * { min-width: 0; }
.portrait { margin: 0; }
.bio > p { margin: 0; }

.social {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 48px 0 0;
  padding: 0;
  list-style: none;
}
.social a { display: block; line-height: 0; }
.social svg { width: 40px; height: 40px; }

/* ---------- other ventures ---------- */
.ventures {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
@media (min-width: 768px) {
  .ventures { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; row-gap: 48px; }
}
.ventures li { min-width: 0; }
.ventures img { width: 100%; }
.ventures .btn { margin-top: 24px; }

/* ---------- footer ---------- */
.site-footer {
  padding-block: 40px;
  background: var(--footer-bg);
  color: var(--footer-text);
}
@media (min-width: 768px) { .site-footer { padding-block: 56px; } }
.site-footer .container { padding-inline: 40px; }
.site-footer p {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.167em;
  text-transform: uppercase;
}
@media (min-width: 1536px) { .site-footer p { font-size: 16px; } }
