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

:root {
  --ink: #0e0e0e;
  --ink-2: #3a3a3a;
  --ink-3: #7a7a7a;
  --paper: #f5f2ec;
  --paper-2: #ede9e0;
  --rule: #d4cfc5;
  --accent: #c84b1f;
  --accent-2: #e8612e;
  --accent-deep: #a83a14;
  --mono: #2d2d2d;
  --display: 'Geist', 'Inter', sans-serif;
  --body: 'Inter', 'Geist', sans-serif;
  --code: 'Geist Mono', ui-monospace, monospace;
}

html {
  scroll-behavior: smooth;
}

/* Mount point for Google Calendar's scheduling button. */
#gcal-mount {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

body {
  background-color: var(--paper);
  background-image:
    linear-gradient(to right, rgba(14, 14, 14, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 14, 14, 0.06) 1px, transparent 1px),
    linear-gradient(to right, rgba(14, 14, 14, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 14, 14, 0.025) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: 0 0, 0 0, 0 0, 0 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease,
    padding 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav-name {
  justify-self: start;
}

.nav-links {
  justify-self: center;
}

.nav-cta {
  justify-self: end;
}

.nav-name {
  font-family: var(--display);
  font-size: 26px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.015em;
  text-transform: lowercase;
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-name-dot {
  display: inline-block;
  width: 0.95em;
  height: 0.95em;
  margin: 0 0.4em;
  background: url('favicon.svg') center / contain no-repeat;
  vertical-align: middle;
  transform: translateY(-0.08em);
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 235, 220, 0.88);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #fff;
}

.nav-cta {
  font-family: var(--display);
  font-size: 14px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  background: var(--accent);
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  border-radius: 999px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 6px 18px rgba(200, 75, 31, 0.28);
}

.nav-cta:hover {
  background: var(--accent-2);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(200, 75, 31, 0.36);
}

/* Mobile hamburger button — hidden on desktop. */
.nav-toggle {
  display: none;
  justify-self: end;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

nav.is-scrolled .nav-toggle-bar {
  background: var(--ink);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile drawer */
.nav-drawer {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  z-index: 99;
  background: var(--ink);
  padding: 1.5rem 1.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transform: translateY(-12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.nav-drawer[hidden] {
  display: none;
}

.nav-drawer.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-drawer a {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  color: rgba(255, 235, 220, 0.92);
  text-decoration: none;
  padding: 0.5rem 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav-drawer-cta {
  margin-top: 0.5rem;
  background: var(--accent);
  color: #fff !important;
  padding: 0.9rem 1.5rem !important;
  border-radius: 999px;
  justify-content: center;
  text-align: center;
}

/* Scrolled state — solid paper, dark text, hairline rule */
nav.is-scrolled {
  background: rgba(245, 242, 236, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom-color: var(--rule);
  padding: 0.85rem 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

nav.is-scrolled .nav-name {
  color: var(--ink);
}

nav.is-scrolled .nav-links a {
  color: var(--ink-2);
}

nav.is-scrolled .nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding: 8rem 5rem 5rem;
  position: relative;
  overflow: hidden;
  background-color: #0c0604;
  background-image: url('hero.jpeg');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

/* Stronger left-side overlay so the headline + subhead read cleanly
   even where the photo brightens behind the portrait. */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(10, 5, 3, 0.97) 0%,
      rgba(10, 5, 3, 0.92) 35%,
      rgba(10, 5, 3, 0.65) 65%,
      rgba(10, 5, 3, 0.30) 100%),
    linear-gradient(180deg,
      rgba(10, 5, 3, 0.45) 0%,
      rgba(10, 5, 3, 0) 25%,
      rgba(10, 5, 3, 0) 70%,
      rgba(10, 5, 3, 0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 40%, rgba(232, 97, 46, 0.18) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(200, 75, 31, 0.12) 0%, transparent 45%);
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

/* Credential eyebrow above the H1 — small-caps with mid-dot separators */
.hero-eyebrow {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.75rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0 0.9rem;
  line-height: 1.6;
}

.hero-eyebrow span {
  display: inline-flex;
  align-items: center;
}

.hero-eyebrow span + span::before {
  content: '·';
  margin-right: 0.9rem;
  color: var(--accent-2);
  opacity: 0.6;
}

.hero-headline {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: #fff;
  margin-bottom: 1.5rem;
  max-width: 28ch;
}

.hero-headline em {
  color: var(--accent-2);
  font-style: normal;
}

.hero-sub {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 400;
  color: #fff;
  max-width: 560px;
  line-height: 1.5;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #fff;
  color: var(--ink);
  padding: 1rem 1.85rem;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  border: 1px solid #fff;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-cta:hover {
  background: #f5f2ec;
  border-color: #f5f2ec;
  transform: translateY(-1px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.4);
}

.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.hero-cta:hover svg {
  transform: translateX(3px);
}

/* SECTION BASE */
section {
  padding: 6rem 2.5rem;
}

.section-label {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 2rem;
  height: 1px;
  background: var(--accent-deep);
}

.section-title {
  font-family: var(--display);
  font-size: 42px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

/* OFFER */
.offer {
  background: var(--ink);
}

.offer .section-label {
  color: var(--accent-2);
}

.offer .section-label::before {
  background: var(--accent-2);
}

.offer .section-title {
  color: #f5f2ec;
}

.offer-intro {
  color: rgba(245, 242, 236, 0.82);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  max-width: 640px;
  margin-bottom: 4rem;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1px;
  background: var(--ink-2);
  border: 1px solid var(--ink-2);
}

.tier {
  background: var(--ink);
  padding: 3rem 2.25rem;
  position: relative;
  transition: background 0.25s;
}

.tier:hover {
  background: #1a1a1a;
}

.tier-tag {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-2);
  margin-bottom: 1.5rem;
}

.tier-name {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #f5f2ec;
  margin-bottom: 0.75rem;
}

.tier-price {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  color: var(--accent-2);
  margin-bottom: 0.35rem;
}

.tier-time {
  font-family: var(--body);
  font-size: 15px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(245, 242, 236, 0.6);
  margin-bottom: 2rem;
}

.tier-divider {
  height: 1px;
  background: var(--ink-2);
  margin-bottom: 2rem;
}

.tier-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tier-items li {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(245, 242, 236, 0.88);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.tier-items li::before {
  content: '—';
  color: var(--accent-2);
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 600;
}

/* SPRINT (kept for legacy markup if present) */
.sprint-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--ink-2);
  border: 1px solid var(--ink-2);
  margin-top: 1px;
}

.sprint-cell {
  background: var(--ink);
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.2s;
}

/* WHY */
.why {
  background-color: var(--paper-2);
  background-image:
    linear-gradient(to right, rgba(14, 14, 14, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 14, 14, 0.06) 1px, transparent 1px),
    linear-gradient(to right, rgba(14, 14, 14, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(14, 14, 14, 0.025) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
}

.bio {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 7rem;
  align-items: center;
  margin-top: 3rem;
  padding-left: 8rem;
  padding-bottom: 3.5rem;
}

.bio-portrait {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--paper);
  border: 3px solid var(--accent);
}

.bio-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bio-text {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 720px;
}

.bio-text p {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-2);
}

/* FOR */
.for-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.for-intro {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-2);
  max-width: 640px;
  margin-top: 0.5rem;
}

.for-list {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.for-item {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2.5rem 2.25rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--rule);
  border-radius: 14px;
  transition: transform 0.25s ease, box-shadow 0.25s ease,
    border-color 0.25s ease, background 0.25s ease;
}

.for-item:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 40px rgba(14, 14, 14, 0.06);
}

.for-icon {
  font-family: var(--display);
  font-size: 44px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--accent);
  width: auto;
  margin: 0 0 1.25rem;
}

.for-head {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.5rem;
}

.for-desc {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  font-weight: 400;
  color: var(--ink-2);
}

/* FAQ */
.faq {
  background-color: var(--paper);
}

.faq-inner {
  max-width: 880px;
  margin: 0 auto;
}

.faq-list {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--rule);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: var(--accent-deep);
  background: rgba(255, 255, 255, 0.8);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.6rem;
  font-family: var(--display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  min-height: 44px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  line-height: 1;
  color: var(--accent-deep);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 400;
  color: var(--ink-2);
  padding: 0 1.6rem 1.5rem;
  margin: 0;
}

/* CONTACT */
.contact {
  background: var(--ink);
  text-align: center;
  padding: 7rem 2.5rem;
}

.contact-title {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: #f5f2ec;
  margin-bottom: 1.5rem;
}

.contact-title em {
  color: var(--accent-2);
  font-style: normal;
}

.contact-sub {
  font-family: var(--body);
  color: rgba(245, 242, 236, 0.7);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 2.5rem;
}

.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-size: 15px;
  line-height: 1;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  background: transparent;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 1rem 1.85rem;
  letter-spacing: 0;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}

.contact-email:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

/* FOOTER */
.footer {
  background: var(--ink);
  border-top: 1px solid #222;
  padding: 1.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  font-family: var(--display);
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  color: #888;
  letter-spacing: 0.06em;
}

.footer-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #aaa;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.14);
  text-decoration: none;
  transition: color 0.2s ease, background 0.2s ease,
    border-color 0.2s ease, transform 0.2s ease;
}

.footer-social svg {
  width: 18px;
  height: 18px;
  display: block;
}

.footer-social:hover {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-1px);
}

/* ANIMATIONS */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-eyebrow { animation: fadeUp 0.6s ease both; }
.hero-headline { animation: fadeUp 0.7s 0.1s ease both; }
.hero-sub { animation: fadeUp 0.7s 0.2s ease both; }
.hero-cta { animation: fadeUp 0.7s 0.3s ease both; }

/* Scroll-reveal — start at 0.4 opacity (not fully invisible) so the page
   never appears broken before the IntersectionObserver fires. */
.reveal {
  opacity: 0.4;
  transform: translateY(14px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-eyebrow,
  .hero-headline,
  .hero-sub,
  .hero-cta {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* TABLET — 681px to 1024px */
@media (min-width: 681px) and (max-width: 1024px) {
  nav { padding: 1rem 1.5rem; gap: 1rem; }
  nav.is-scrolled { padding: 0.75rem 1.5rem; }
  .nav-links { gap: 1.25rem; }
  .nav-links a { font-size: 12px; letter-spacing: 0.12em; }
  .nav-cta { padding: 0.7rem 1.2rem; font-size: 13px; }

  .hero { padding: 7rem 2.5rem 4rem; }
  .hero-headline { font-size: clamp(36px, 6vw, 54px); }
  .hero-sub { font-size: 18px; }

  section { padding: 5rem 2.5rem; }
  .section-title { font-size: 36px; }

  .tiers { grid-template-columns: 1fr; }
  .tier { padding: 2.5rem 2rem; }

  .bio {
    padding-left: 0;
    column-gap: 3rem;
  }
  .bio-portrait { width: 200px; height: 200px; }

  .for-list { grid-template-columns: 1fr; }
}

/* MOBILE — up to 680px */
@media (max-width: 680px) {
  nav {
    padding: 0.85rem 1.25rem;
    grid-template-columns: 1fr auto;
  }
  nav.is-scrolled { padding: 0.7rem 1.25rem; }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-drawer {
    top: 56px;
  }

  .hero {
    padding: 5rem 1.25rem 2.5rem;
    justify-content: flex-end;
    background-position: 65% center;
  }
  /* Flip the overlay vertical on mobile: transparent at top so the
     face stays visible, dark at the bottom where the text reads. A
     subtle horizontal wash darkens the left edge so the headline's
     left margin reads cleanly even where the photo brightens. */
  .hero::before {
    background:
      linear-gradient(90deg,
        rgba(10, 5, 3, 0.35) 0%,
        rgba(10, 5, 3, 0.20) 40%,
        rgba(10, 5, 3, 0) 70%),
      linear-gradient(180deg,
        rgba(10, 5, 3, 0.20) 0%,
        rgba(10, 5, 3, 0.25) 35%,
        rgba(10, 5, 3, 0.60) 60%,
        rgba(10, 5, 3, 0.92) 82%,
        rgba(10, 5, 3, 0.97) 100%);
  }
  .hero-eyebrow {
    font-size: 11px;
    letter-spacing: 0.16em;
    margin-bottom: 1.25rem;
    gap: 0 0.65rem;
  }
  .hero-eyebrow span + span::before { margin-right: 0.65rem; }
  .hero-headline { font-size: clamp(30px, 8vw, 40px); }
  .hero-sub { font-size: 16px; }

  section { padding: 4rem 1.25rem; }
  .section-title { font-size: 30px; }

  .sprint-row { grid-template-columns: 1fr; }
  .for-list { grid-template-columns: 1fr; }
  .for-item { padding: 1.75rem 1.5rem; }

  .bio {
    grid-template-columns: 1fr;
    column-gap: 0;
    gap: 1.5rem;
    padding-left: 0;
    text-align: center;
    justify-items: center;
  }
  .bio-portrait { width: 140px; height: 140px; }
  .bio-text { text-align: left; }

  .faq-item summary {
    font-size: 16px;
    padding: 1.1rem 1.25rem;
  }
  .faq-item p {
    font-size: 15px;
    padding: 0 1.25rem 1.25rem;
  }

  .footer {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
