:root {
  --bg: #f0e4d1;
  --bg-top: #dceef3;
  --surface: rgba(255, 248, 238, 0.82);
  --surface-strong: rgba(255, 252, 246, 0.92);
  --text: #1b1d22;
  --muted: #5c6470;
  --line: rgba(27, 29, 34, 0.1);
  --accent: #2f7f9c;
  --accent-deep: #215d74;
  --accent-soft: rgba(47, 127, 156, 0.12);
  --shadow: 0 26px 70px rgba(51, 44, 31, 0.12);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --max-width: 1120px;
}

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

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(47, 127, 156, 0.22), transparent 30%),
    radial-gradient(circle at 85% 15%, rgba(255, 201, 134, 0.28), transparent 22%),
    linear-gradient(180deg, var(--bg-top) 0%, #f6ecdc 20%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.08) 0,
      rgba(255, 255, 255, 0.08) 1px,
      transparent 1px,
      transparent 42px
    );
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.6), transparent 80%);
}

a {
  color: inherit;
}

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

.page-shell {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 32px 18px 56px;
}

.hero,
.highlights {
  display: grid;
  gap: 18px;
}

.hero {
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  align-items: stretch;
}

.card,
.portrait-card {
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius-xl);
  background: var(--surface);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: clamp(28px, 5vw, 52px);
}

.kicker,
.mini-kicker {
  margin: 0 0 14px;
  color: var(--accent);
  font-family: "Saira Extra Condensed", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Saira Extra Condensed", sans-serif;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 8.5vw, 6.3rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

.lede,
.mini-card p,
.snapshot-item p,
.small-note {
  color: var(--muted);
}

.lede {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 1.08rem;
  line-height: 1.75;
}

.action-row,
.social-group,
.snapshot-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.action-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.button:hover,
.button:focus-visible,
.social-bubble:hover,
.social-bubble:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  box-shadow: 0 16px 32px rgba(33, 93, 116, 0.22);
}

.button-secondary {
  background: var(--surface-strong);
  border: 1px solid var(--line);
}

.social-group {
  margin-top: 26px;
}

.social-bubble {
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  text-decoration: none;
  color: var(--accent-deep);
  background: var(--surface-strong);
  border: 1px solid rgba(47, 127, 156, 0.16);
  box-shadow: 0 12px 24px rgba(47, 127, 156, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.social-bubble i {
  font-size: 1.1rem;
}

.small-note {
  margin: 24px 0 0;
  font-size: 0.97rem;
}

.portrait-card {
  overflow: hidden;
  min-height: 100%;
  padding: 16px;
  background:
    linear-gradient(180deg, rgba(255, 251, 246, 0.84), rgba(255, 242, 228, 0.92));
}

.portrait-card img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
  object-position: center;
  border-radius: calc(var(--radius-xl) - 10px);
}

.highlights {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.mini-card {
  padding: 28px;
}

.mini-card h2 {
  max-width: 12ch;
}

.mini-card p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.snapshot {
  margin-top: 18px;
  padding: clamp(28px, 5vw, 40px);
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 24px;
  align-items: start;
}

.snapshot-copy h2 {
  max-width: 10ch;
}

.snapshot-list {
  flex-direction: column;
}

.snapshot-item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.snapshot-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.snapshot-item span {
  color: var(--accent);
  font-family: "Saira Extra Condensed", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.snapshot-item p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.7;
}

a:focus-visible,
.button:focus-visible,
.social-bubble:focus-visible {
  outline: 3px solid rgba(47, 127, 156, 0.28);
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .hero,
  .highlights,
  .snapshot {
    grid-template-columns: 1fr;
  }

  .portrait-card {
    max-width: 620px;
    margin: 0 auto;
  }

  .portrait-card img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    padding: 14px 14px 34px;
  }

  .hero-copy,
  .mini-card,
  .snapshot {
    padding: 24px 20px;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(3.1rem, 15vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 10vw, 2.6rem);
  }

  .action-row .button {
    width: 100%;
  }

  .portrait-card img {
    min-height: 340px;
  }

  .snapshot-item {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 12px;
  }
}
