@import url("https://fonts.googleapis.com/css2?family=Anton&family=Oswald:wght@400;500;600;700&family=Archivo:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap");

:root {
  --black: #0b0b0a;
  --ink: #171613;
  --ink-soft: #27231d;
  --bone: #ece5d3;
  --paper: #f4eedf;
  --paper-muted: #ded4bd;
  --red: #ca1b12;
  --red-bright: #e0261b;
  --sage: #8e9b82;
  --line-dark: rgba(11, 11, 10, 0.18);
  --line-light: rgba(236, 229, 211, 0.22);
  --font-display: Anton, Oswald, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --font-condensed: Oswald, "Arial Narrow", "Helvetica Neue Condensed", sans-serif;
  --font-body: Archivo, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--black);
  font-family: var(--font-body);
  line-height: 1.5;
}

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

a {
  color: inherit;
}

.inline-link {
  color: inherit;
  font-weight: 700;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.inline-link:hover {
  color: var(--red);
}

.author-dark .inline-link,
.about-hero .inline-link {
  color: var(--bone);
}

.author-dark .inline-link:hover,
.about-hero .inline-link:hover {
  color: #fff7ec;
}

.page {
  overflow: hidden;
}

.wrap,
.topbar-inner {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 66px;
  border-bottom: 1px solid var(--line-light);
  background: rgba(11, 11, 10, 0.95);
  color: var(--bone);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 66px;
}

.brand {
  font-family: var(--font-condensed);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.94;
  text-decoration: none;
  text-transform: uppercase;
}

.brand span {
  color: var(--red);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: rgba(236, 229, 211, 0.68);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.nav a:hover {
  color: var(--bone);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 19px;
  border: 1px solid transparent;
  border-radius: 0;
  font-family: var(--font-condensed);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 120ms ease, border-color 120ms ease, color 120ms ease, transform 120ms ease;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--red);
  color: #fff8ef;
}

.button.primary:hover {
  background: var(--red-bright);
}

.button.dark {
  background: var(--black);
  color: var(--bone);
}

.button.dark:hover {
  background: var(--red);
}

.button.ghost-dark {
  border-color: rgba(11, 11, 10, 0.28);
  color: var(--black);
  background: transparent;
}

.button.ghost-dark:hover {
  background: var(--black);
  color: var(--bone);
}

.button.ghost-light {
  border-color: rgba(236, 229, 211, 0.42);
  color: var(--bone);
  background: transparent;
}

.button.ghost-light:hover {
  background: var(--bone);
  color: var(--black);
}

.hero {
  position: relative;
  background:
    linear-gradient(90deg, rgba(244, 238, 223, 0.98), rgba(244, 238, 223, 0.9) 52%, rgba(11, 11, 10, 0.96) 52%),
    var(--paper);
}

.hero::before,
.paper-grid::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(11, 11, 10, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 11, 10, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.88fr);
  gap: 76px;
  align-items: center;
  min-height: calc(100svh - 66px);
  padding: 88px 0 72px;
}

.hero-copy-panel {
  max-width: 650px;
  padding-right: 20px;
}

.hero-grid > *,
.split > *,
.section-heading-row > *,
.notify-grid > *,
.author-grid > *,
.answer-layout > *,
.hero-endorsement > *,
.faq-item > *,
.toc-item > * {
  min-width: 0;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.badge {
  padding: 6px 9px;
  background: var(--red);
  color: #fff7ec;
}

h1,
h2,
h3,
.metric-value {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 600px;
  margin: 22px 0 0;
  font-size: clamp(82px, 8.2vw, 118px);
  line-height: 0.84;
}

.title-line {
  display: block;
}

.red,
.title-preposition {
  color: var(--red);
}

.title-preposition {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(340px, 68%);
  margin: 7px 0 9px;
  font-size: 0.34em;
  line-height: 0.9;
  white-space: nowrap;
}

.title-preposition::before,
.title-preposition::after {
  content: "";
  flex: 1;
  height: 4px;
  background: var(--red);
}

.hero-lede {
  max-width: 590px;
  margin: 32px 0 0;
  font-family: var(--font-condensed);
  font-size: 25px;
  letter-spacing: 0;
  line-height: 1.28;
  font-weight: 700;
}

.hero-copy {
  max-width: 580px;
  margin: 20px 0 0;
  color: rgba(11, 11, 10, 0.76);
  font-size: 17px;
  line-height: 1.7;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-endorsement {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  max-width: 580px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid rgba(11, 11, 10, 0.22);
  border-left: 6px solid var(--red);
  background: rgba(255, 247, 236, 0.45);
  color: var(--black);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 247, 236, 0.32);
  transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
}

.hero-endorsement:hover {
  border-color: rgba(11, 11, 10, 0.34);
  background: rgba(255, 247, 236, 0.68);
  transform: translateY(-1px);
}

.endorsement-photo {
  display: grid;
  place-items: center;
  align-self: center;
  min-height: 94px;
  padding: 6px;
  border: 1px solid rgba(11, 11, 10, 0.2);
  background: rgba(244, 238, 223, 0.76);
}

.culture-kings-logo {
  flex: 0 0 auto;
  width: 22px;
  height: auto;
}

.endorsement-content,
.endorsement-quote,
.endorsement-name span {
  display: block;
}

.endorsement-kicker {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.endorsement-quote {
  margin-top: 6px;
  font-family: var(--font-condensed);
  font-size: clamp(24px, 2.3vw, 30px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.06;
  text-transform: uppercase;
}

.simon-portrait {
  flex: 0 0 auto;
  aspect-ratio: 1;
  border: 1px solid rgba(11, 11, 10, 0.24);
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.18) contrast(1.05);
}

.simon-feature {
  width: 82px;
  height: 82px;
}

.endorsement-name {
  display: block;
  margin-top: 11px;
  font-family: var(--font-condensed);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.3;
  text-transform: uppercase;
}

.endorsement-name span:first-child {
  color: rgba(11, 11, 10, 0.72);
}

.endorsement-name span:last-child {
  margin-top: 3px;
  color: var(--red);
}

.cover-stage {
  position: relative;
  display: grid;
  align-content: center;
  justify-items: center;
  place-items: center;
  min-height: 680px;
  padding: 52px 0;
}

.cover-stage::before {
  content: "";
  position: absolute;
  z-index: 0;
  width: 88%;
  height: 48%;
  background: var(--red);
  transform: rotate(-7deg);
  clip-path: polygon(0 38%, 100% 8%, 98% 68%, 2% 100%);
}

.cover {
  position: relative;
  z-index: 2;
  width: min(390px, 74%);
  border: 1px solid rgba(236, 229, 211, 0.24);
  box-shadow: 0 38px 80px rgba(0, 0, 0, 0.45);
}

.format-note {
  position: relative;
  z-index: 2;
  max-width: none;
  margin-top: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--bone);
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.notify-band {
  background: var(--black);
  color: var(--bone);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.notify-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  align-items: center;
  padding: 34px 0;
}

.notify-band h2 {
  margin: 0;
  font-size: 31px;
  line-height: 1;
}

.notify-band p {
  margin: 9px 0 0;
  color: rgba(236, 229, 211, 0.66);
  font-size: 14px;
}

.notify-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
  gap: 10px;
  align-items: start;
}

.notify-form.extended {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.notify-form.extended .button {
  grid-column: 1 / -1;
}

.notify-form input,
.notify-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(236, 229, 211, 0.3);
  border-radius: 0;
  background: rgba(244, 238, 223, 0.08);
  color: var(--bone);
  font: inherit;
  padding: 12px 14px;
  outline: none;
}

.notify-form select {
  appearance: none;
  cursor: pointer;
}

.notify-form input::placeholder {
  color: rgba(236, 229, 211, 0.48);
}

.notify-form input:focus,
.notify-form select:focus {
  border-color: var(--red);
}

.phone-field {
  display: grid;
  grid-template-columns: minmax(104px, 0.42fr) minmax(0, 1fr);
  gap: 10px;
  min-width: 0;
}

.notify-form .hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
}

.form-status {
  grid-column: 1 / -1;
  min-height: 22px;
  color: rgba(236, 229, 211, 0.72);
  font-size: 13px;
}

.consent-note {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(236, 229, 211, 0.58);
  font-size: 11px;
  line-height: 1.45;
}

.form-status.success {
  color: #c8e6b9;
}

.form-status.error {
  color: #ffd1cc;
}

section {
  position: relative;
}

.section-pad {
  padding: 88px 0;
}

.paper-grid {
  position: relative;
  background: var(--paper);
}

.split {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 58px;
  align-items: center;
}

.headline {
  margin: 16px 0 0;
  font-size: 64px;
  line-height: 0.95;
}

.body-large {
  margin: 0;
  font-size: 21px;
  line-height: 1.5;
  font-weight: 820;
}

.body {
  margin: 18px 0 0;
  color: rgba(11, 11, 10, 0.68);
  font-size: 17px;
  line-height: 1.72;
}

.org-card {
  margin-top: 28px;
  border: 1px solid var(--line-dark);
  background: #efe6d2;
}

.answer-band {
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: #efe7d4;
}

.answer-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 58px;
  align-items: start;
}

.answer-layout h2 {
  max-width: 620px;
  margin: 12px 0 0;
  font-size: 62px;
  line-height: 0.95;
}

.answer-layout .body-large {
  margin-top: 24px;
  color: rgba(11, 11, 10, 0.74);
}

.answer-list {
  border-top: 1px solid var(--line-dark);
}

.answer-item {
  display: grid;
  grid-template-columns: 0.46fr 1fr;
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line-dark);
}

.answer-item h3 {
  margin: 0;
  color: var(--red);
  font-size: 22px;
  line-height: 1;
}

.answer-item p {
  margin: 0;
  color: rgba(11, 11, 10, 0.68);
  font-size: 16px;
  line-height: 1.62;
}

.thesis,
.proof,
.author-dark,
.final {
  background: var(--black);
  color: var(--bone);
}

.thesis-inner {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 46px;
  align-items: end;
}

.thesis h2 {
  max-width: 820px;
  margin: 12px 0 0;
  font-size: 86px;
  line-height: 0.91;
}

.thesis p {
  margin: 0 0 9px;
  color: rgba(236, 229, 211, 0.72);
  font-size: 18px;
  line-height: 1.7;
}

.section-heading-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 34px;
}

.section-heading-row h2 {
  max-width: 760px;
  margin: 10px 0 0;
  font-size: 62px;
  line-height: 0.95;
}

.section-heading-row p {
  max-width: 430px;
  margin: 0;
  color: rgba(11, 11, 10, 0.64);
  font-size: 16px;
  line-height: 1.65;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.method-card {
  min-height: 260px;
  padding: 24px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.22);
}

.method-card .num {
  display: block;
  color: var(--red);
  font-family: var(--font-display);
  font-size: 48px;
  line-height: 0.9;
}

.method-card h3 {
  margin: 26px 0 0;
  font-size: 26px;
  line-height: 1;
}

.method-card p {
  margin: 14px 0 0;
  color: rgba(11, 11, 10, 0.66);
  font-size: 15px;
  line-height: 1.6;
}

.proof {
  background: var(--ink);
}

.proof .section-heading-row p,
.proof .body {
  color: rgba(236, 229, 211, 0.68);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: rgba(236, 229, 211, 0.18);
  border: 1px solid rgba(236, 229, 211, 0.18);
}

.metric {
  min-height: 190px;
  padding: 24px;
  background: var(--ink);
}

.metric-value {
  color: var(--red);
  font-size: 52px;
  line-height: 0.9;
}

.metric-label {
  margin: 16px 0 0;
  font-family: var(--font-condensed);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.metric p {
  margin: 10px 0 0;
  color: rgba(236, 229, 211, 0.65);
  font-size: 14px;
  line-height: 1.58;
}

.toc-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.toc-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line-dark);
}

.toc-item .part {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
}

.toc-item h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1;
}

.toc-item p {
  margin: 8px 0 0;
  color: rgba(11, 11, 10, 0.66);
  font-size: 15px;
  line-height: 1.58;
}

.author-grid {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 56px;
  align-items: center;
}

.author-photo {
  position: relative;
  border: 1px solid rgba(236, 229, 211, 0.22);
  background: var(--ink-soft);
}

.author-photo::before {
  content: "";
  position: absolute;
  left: -24px;
  bottom: 52px;
  width: 42%;
  height: 34%;
  background: var(--red);
  transform: rotate(-10deg);
}

.author-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: 48% 44%;
}

.author-dark h2,
.about-hero h1 {
  margin: 12px 0 0;
  font-size: 64px;
  line-height: 0.95;
}

.author-dark p {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(236, 229, 211, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.faq-list {
  border-top: 1px solid var(--line-dark);
}

.faq-item {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-dark);
}

.faq-item h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1;
}

.faq-item p {
  margin: 0;
  color: rgba(11, 11, 10, 0.66);
  font-size: 16px;
  line-height: 1.65;
}

.final {
  background:
    linear-gradient(rgba(11, 11, 10, 0.9), rgba(11, 11, 10, 0.96)),
    url("death-to-org-chart-clean-plate-1600.webp") center 38% / cover;
  text-align: center;
}

.final h2 {
  max-width: 880px;
  margin: 14px auto 0;
  font-size: 84px;
  line-height: 0.9;
}

.final p {
  max-width: 640px;
  margin: 22px auto 0;
  color: rgba(236, 229, 211, 0.72);
  font-size: 18px;
  line-height: 1.65;
}

.final .actions {
  justify-content: center;
}

.final .notify-form {
  max-width: 760px;
  margin: 34px auto 0;
}

.about-hero {
  background: var(--black);
  color: var(--bone);
}

.about-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.1fr);
  gap: 58px;
  align-items: center;
  padding: 78px 0;
}

.about-hero p {
  margin: 20px 0 0;
  color: rgba(236, 229, 211, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.bio-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 56px;
}

.bio-copy p {
  margin: 0 0 20px;
  color: rgba(11, 11, 10, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.bio-facts {
  border-top: 1px solid var(--line-dark);
}

.bio-facts div {
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.bio-facts strong {
  display: block;
  color: var(--red);
  font-family: var(--font-condensed);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bio-facts span {
  display: block;
  margin-top: 6px;
  font-weight: 800;
}

footer {
  background: var(--black);
  color: rgba(236, 229, 211, 0.58);
  border-top: 1px solid var(--line-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 0;
  font-family: var(--font-condensed);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-link {
  color: var(--bone);
  text-decoration: none;
}

.footer-profile-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.linkedin-mark {
  width: 15px;
  height: 15px;
  fill: currentColor;
  flex: 0 0 auto;
}

.footer-link:hover {
  color: var(--red-bright);
}

@media (max-width: 980px) {
  .nav {
    gap: 14px;
  }

  .nav a:not(.button) {
    display: none;
  }

  .hero {
    background: linear-gradient(180deg, var(--paper) 0 58%, var(--black) 58% 100%);
  }

  .hero-grid,
  .notify-grid,
  .split,
  .answer-layout,
  .thesis-inner,
  .author-grid,
  .about-hero-grid,
  .bio-layout {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: auto;
    gap: 28px;
    padding-top: 54px;
  }

  h1 {
    max-width: 100%;
    font-size: 82px;
  }

  .cover-stage {
    min-height: 560px;
    padding: 46px 0 36px;
  }

  .method-grid,
  .proof-grid,
  .toc-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-row {
    display: block;
  }

  .section-heading-row p {
    margin-top: 16px;
  }
}

@media (max-width: 640px) {
  .topbar-inner,
  .wrap {
    width: calc(100vw - 28px);
    max-width: calc(100vw - 28px);
  }

  .topbar-inner {
    display: grid;
    grid-template-columns: auto auto;
    width: 100%;
    max-width: 100%;
    padding: 0 14px;
  }

  .brand {
    font-size: 19px;
  }

  .topbar .button {
    width: auto;
    min-height: 42px;
    padding: 10px 12px;
    font-size: 11px;
  }

  .section-pad {
    padding: 64px 0;
  }

  h1 {
    font-size: 60px;
    line-height: 0.88;
  }

  .title-preposition {
    gap: 10px;
    width: min(230px, 68%);
    margin: 6px 0 8px;
  }

  .title-preposition::before,
  .title-preposition::after {
    height: 3px;
  }

  .hero-lede {
    font-size: 20px;
  }

  .hero-copy {
    font-size: 16px;
  }

  .button,
  .notify-form .button {
    width: 100%;
    min-height: 50px;
  }

  .hero-grid {
    display: block;
  }

  .cover-stage {
    width: 100%;
    min-height: auto;
    overflow: hidden;
    padding: 44px 0 34px;
  }

  .cover {
    width: min(320px, 82%);
  }

  .format-note {
    width: min(310px, 88%);
    margin-top: 18px;
    font-size: 11px;
  }

  .hero-endorsement {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
    padding: 14px;
  }

  .endorsement-photo {
    align-self: start;
    min-height: 72px;
    padding: 5px;
  }

  .culture-kings-logo {
    width: 18px;
  }

  .endorsement-quote {
    font-size: 23px;
  }

  .simon-feature {
    width: 62px;
    height: 62px;
  }

  .endorsement-name {
    font-size: 10px;
  }

  .notify-form,
  .notify-form.extended,
  .method-grid,
  .proof-grid,
  .toc-grid {
    grid-template-columns: 1fr;
  }

  .phone-field {
    grid-template-columns: 1fr;
  }

  .headline,
  .section-heading-row h2,
  .answer-layout h2,
  .author-dark h2 {
    font-size: 44px;
  }

  .thesis h2,
  .final h2,
  .about-hero h1 {
    font-size: 52px;
  }

  .toc-item,
  .answer-item,
  .faq-item {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-card {
    min-height: auto;
  }

  .footer-inner {
    display: block;
  }

  .footer-inner > span,
  .footer-link {
    display: block;
    margin-top: 8px;
  }

  .footer-profile-link {
    display: inline-flex;
  }
}
