@font-face {
  font-family: 'Roboto Variable';
  src: url('../fonts/Roboto-VariableFont_wdth,wght.ttf') format('truetype');
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --ink: #17202a;
  --muted: #65707c;
  --accent: #28527a;
  --accent-dark: #17344f;
  --nav-deep: #163a5f;
  --nav-light: #b9d9f0;
  --line: #d8dde2;
  --line-strong: #aeb7c0;
  --paper: #ffffff;
  --warm: #f5f3ee;
  --soft: #f5f7f8;
  --page-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: 'Roboto Variable', 'Helvetica Neue', Arial, sans-serif;
  text-rendering: optimizeLegibility;
}

body.family-page {
  background: var(--warm);
}

body.no-scroll-motion .gallery-track {
  scroll-behavior: auto;
}

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

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  width: min(var(--page-width), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: transparent;
  border-bottom: 0;
}

.brand {
  display: grid;
  gap: 2px;
  min-width: max-content;
  color: var(--paper);
  font-weight: 760;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.brand small {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 620;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-nav,
.site-footer nav,
.hero-actions {
  display: flex;
  align-items: center;
}

.site-nav {
  justify-content: flex-end;
  gap: clamp(15px, 2.3vw, 28px);
}

.site-nav a {
  padding: 8px 0;
  color: var(--nav-light);
  font-size: 0.9rem;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current='page'] {
  color: var(--paper);
  border-bottom-color: var(--nav-light);
}

.site-nav .nav-cv {
  padding-inline: 13px;
  color: var(--nav-deep);
  background: var(--nav-light);
  border: 1px solid var(--nav-light);
}

.site-nav .nav-cv:hover,
.site-nav .nav-cv:focus-visible {
  color: var(--nav-deep);
  background: var(--paper);
  border-color: var(--paper);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(420px, 1.18fr);
  align-items: center;
  gap: clamp(48px, 8vw, 108px);
  padding: 72px 3vw 84px;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid var(--line-strong);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
.story-number {
  font-family: Georgia, 'Times New Roman', serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(3.25rem, 6.5vw, 5.8rem);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3.35rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.role {
  margin-bottom: 4px;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-weight: 690;
}

.institution,
.organization,
.period {
  color: var(--muted);
}

.intro,
.research-summary {
  max-width: 700px;
  margin: 26px 0;
  color: #3f4a55;
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero-actions {
  gap: 22px;
}

.primary-button {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border: 1px solid var(--ink);
  font-weight: 690;
  text-decoration: none;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.text-link,
.inline-link {
  color: var(--accent);
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.text-link {
  text-decoration: none;
}

.text-link:hover,
.text-link:focus-visible {
  text-decoration: underline;
}

.research-section,
.experience-section {
  padding: 88px 3vw;
  border-top: 1px solid var(--line);
}

.section-heading {
  margin-bottom: 42px;
}

.research-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.research-card {
  min-height: 220px;
  padding: 26px 28px 28px 0;
}

.research-card + .research-card {
  padding-left: 28px;
  border-left: 1px solid var(--line);
}

.research-card span {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 780;
}

.research-card h3 {
  margin: 48px 0 12px;
  font-size: 1.28rem;
}

.research-card p,
.timeline-item p,
.profile-note p {
  color: #4a5560;
  line-height: 1.65;
}

.timeline {
  border-top: 1px solid var(--line-strong);
}

.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 42px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item h3 {
  margin-bottom: 5px;
}

.timeline-item p:last-child {
  margin-bottom: 0;
}

.profile-note {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 0 3vw 78px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.profile-note p {
  margin: 0;
}

.site-footer {
  min-height: 108px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  gap: 18px;
}

.site-footer a {
  font-weight: 650;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Family pages */

.family-page .site-header,
.family-page .site-footer {
  border-color: #cbc7be;
}

.family-main {
  padding-bottom: 88px;
}

.page-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 52px;
  align-items: end;
  padding: 86px 3vw 72px;
}

.page-intro h1 {
  margin-bottom: 0;
}

.page-intro .lede {
  margin: 0 0 7px;
  color: #46505a;
  font-size: 1.03rem;
  line-height: 1.75;
}

.story-section {
  padding: 72px 3vw 78px;
  border-top: 1px solid #cbc7be;
}

.story-heading {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 26px;
  align-items: start;
  margin-bottom: 34px;
}

.story-number {
  color: var(--accent);
  font-size: 1.55rem;
  line-height: 1;
}

.story-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.gallery-toggle {
  min-width: 82px;
  padding: 8px 10px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line-strong);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.gallery-toggle:hover,
.gallery-toggle:focus-visible,
.gallery-toggle[aria-pressed='true'] {
  color: var(--paper);
  background: var(--ink);
  border-color: var(--ink);
}

.gallery-frame {
  position: relative;
  margin-inline: calc(50% - 50vw);
  padding-inline: max(24px, calc((100vw - var(--page-width)) / 2));
  overflow: hidden;
}

.gallery-frame::before,
.gallery-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 12px;
  width: max(20px, calc((100vw - var(--page-width)) / 2));
  pointer-events: none;
}

.gallery-frame::before {
  left: 0;
  background: linear-gradient(90deg, var(--warm), transparent);
}

.gallery-frame::after {
  right: 0;
  background: linear-gradient(-90deg, var(--warm), transparent);
}

.gallery-track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: thin;
  scrollbar-color: var(--line-strong) transparent;
  overscroll-behavior-inline: contain;
}

.gallery-card {
  position: relative;
  flex: 0 0 clamp(230px, 28vw, 360px);
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e5df;
  border: 1px solid #cbc7be;
}

.gallery-card.portrait-card {
  flex-basis: clamp(190px, 22vw, 280px);
  aspect-ratio: 3 / 4;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-card.contain img {
  object-fit: contain;
}

.gallery-card figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 14px 11px;
  color: #fff;
  background: linear-gradient(transparent, rgba(8, 14, 20, 0.72));
  font-size: 0.85rem;
  font-weight: 650;
}

.story-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  margin-top: 50px;
}

.language-label {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 780;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.story-copy p {
  margin-bottom: 18px;
  color: #3f484f;
  font-size: 1rem;
  line-height: 1.82;
}

.pet-index {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 48px;
  border-top: 1px solid #cbc7be;
  border-bottom: 1px solid #cbc7be;
}

.pet-index article {
  padding: 24px 20px 22px 0;
}

.pet-index article + article {
  padding-left: 20px;
  border-left: 1px solid #cbc7be;
}

.pet-index h3 {
  margin-bottom: 5px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.25rem;
  font-weight: 500;
}

.pet-index p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

@media (max-width: 900px) {
  .site-shell {
    width: min(100% - 32px, 760px);
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    padding: 22px 0 18px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 54px 0 70px;
  }

  .portrait-wrap {
    width: min(86%, 430px);
  }

  .research-section,
  .experience-section {
    padding: 68px 0;
  }

  .research-grid {
    grid-template-columns: 1fr;
  }

  .research-card {
    min-height: 0;
    padding: 23px 0;
  }

  .research-card + .research-card {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .research-card h3 {
    margin-top: 22px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .profile-note {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-inline: 0;
  }

  .page-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 64px 0 58px;
  }

  .story-section {
    padding: 58px 0 62px;
  }

  .story-heading {
    grid-template-columns: 48px 1fr;
    gap: 18px;
  }

  .story-heading .gallery-toggle {
    grid-column: 2;
    justify-self: start;
  }

  .story-copy {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pet-index {
    grid-template-columns: 1fr 1fr;
  }

  .pet-index article:nth-child(3) {
    padding-left: 0;
    border-top: 1px solid #cbc7be;
    border-left: 0;
  }

  .pet-index article:nth-child(4) {
    border-top: 1px solid #cbc7be;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: calc(100% - 28px);
  }

  .brand small {
    display: none;
  }

  .site-nav {
    gap: 10px 18px;
  }

  .site-nav a {
    font-size: 0.84rem;
  }

  .site-nav .nav-cv {
    padding: 7px 10px;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.2rem);
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    padding: 28px 0;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }

  .story-heading {
    grid-template-columns: 1fr;
  }

  .story-heading .gallery-toggle {
    grid-column: 1;
  }

  .gallery-card {
    flex-basis: 78vw;
  }

  .gallery-card.portrait-card {
    flex-basis: 66vw;
  }

  .pet-index {
    grid-template-columns: 1fr;
  }

  .pet-index article,
  .pet-index article + article,
  .pet-index article:nth-child(3) {
    padding: 18px 0;
    border-top: 1px solid #cbc7be;
    border-left: 0;
  }

  .pet-index article:first-child {
    border-top: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Navigation and profile structure — July 2026 */

.site-header {
  position: relative;
  isolation: isolate;
  z-index: 20;
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0 50%;
  margin-inline: -50vw;
  background: var(--nav-deep);
  z-index: -1;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.48em;
  font-size: clamp(1.06rem, 1.45vw, 1.16rem);
}

.brand span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 0.94em;
  font-weight: 500;
  letter-spacing: 0;
}

.site-nav {
  gap: clamp(14px, 2vw, 26px);
}

.family-menu {
  position: relative;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
}

.family-trigger {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--nav-light);
  background: transparent;
  border: 1px solid var(--nav-light);
  border-radius: 50%;
  cursor: pointer;
}

.family-trigger:hover,
.family-trigger:focus-visible,
.family-menu.is-open .family-trigger {
  color: var(--paper);
  background: rgba(185, 217, 240, 0.12);
  border-color: var(--paper);
}

.flower-mark {
  position: relative;
  width: 28px;
  height: 28px;
  display: block;
}

.flower-mark i,
.flower-mark b {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%);
}

.flower-mark b {
  width: 8px;
  height: 8px;
  background: currentColor;
  border-radius: 50%;
}

.flower-mark i {
  width: 8px;
  height: 11px;
  background: var(--nav-deep);
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0;
  transition: transform 180ms ease, opacity 150ms ease;
}

.family-menu:hover .flower-mark i,
.family-menu:focus-within .flower-mark i,
.family-menu.is-open .flower-mark i {
  opacity: 1;
}

.family-menu:hover .flower-mark i:nth-child(1),
.family-menu:focus-within .flower-mark i:nth-child(1),
.family-menu.is-open .flower-mark i:nth-child(1) { transform: translate(-50%, -118%); }
.family-menu:hover .flower-mark i:nth-child(2),
.family-menu:focus-within .flower-mark i:nth-child(2),
.family-menu.is-open .flower-mark i:nth-child(2) { transform: translate(18%, -72%) rotate(72deg); }
.family-menu:hover .flower-mark i:nth-child(3),
.family-menu:focus-within .flower-mark i:nth-child(3),
.family-menu.is-open .flower-mark i:nth-child(3) { transform: translate(-5%, 8%) rotate(144deg); }
.family-menu:hover .flower-mark i:nth-child(4),
.family-menu:focus-within .flower-mark i:nth-child(4),
.family-menu.is-open .flower-mark i:nth-child(4) { transform: translate(-95%, 8%) rotate(216deg); }
.family-menu:hover .flower-mark i:nth-child(5),
.family-menu:focus-within .flower-mark i:nth-child(5),
.family-menu.is-open .flower-mark i:nth-child(5) { transform: translate(-118%, -72%) rotate(288deg); }

.family-links {
  position: absolute;
  top: calc(100% + 9px);
  left: 50%;
  display: flex;
  gap: 13px;
  padding: 9px 12px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 10px 22px rgba(23, 32, 42, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, -5px);
  transition: opacity 150ms ease, transform 150ms ease, visibility 150ms;
}

.family-links::before {
  content: '';
  position: absolute;
  inset: -10px 0 auto;
  height: 10px;
}

.family-menu:hover .family-links,
.family-menu:focus-within .family-links,
.family-menu.is-open .family-links {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.site-nav .family-links a {
  padding: 2px 0;
  color: var(--ink);
  border: 0;
  font-size: 0.8rem;
  font-weight: 680;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav .family-links a:hover,
.site-nav .family-links a:focus-visible,
.site-nav .family-links a[aria-current='page'] {
  color: var(--accent-dark);
  border: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.hero {
  min-height: 560px;
  grid-template-columns: minmax(220px, 280px) minmax(420px, 1fr);
  gap: clamp(48px, 7vw, 88px);
  padding: 64px 3vw 72px;
}

.portrait-wrap {
  width: 100%;
  max-width: 280px;
}

.contact-line {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.95rem;
}

.contact-line span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-line a {
  color: var(--accent);
  font-weight: 680;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

/* Experience page */

.experience-main {
  padding-bottom: 88px;
}

.experience-intro {
  max-width: 860px;
  padding: 88px 3vw 76px;
}

.experience-intro h1 {
  margin-bottom: 26px;
}

.experience-intro > p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: #3f4a55;
  font-size: 1rem;
  line-height: 1.75;
}

.experience-group {
  display: grid;
  grid-template-columns: minmax(210px, 0.34fr) minmax(0, 1fr);
  gap: clamp(40px, 8vw, 110px);
  padding: 66px 3vw 76px;
  border-top: 1px solid var(--line);
}

.experience-group-heading h2 {
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
}

.experience-list {
  min-width: 0;
}

.experience-entry {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 34px;
  padding-bottom: 38px;
}

.experience-entry + .experience-entry {
  padding-top: 38px;
  border-top: 1px solid var(--line);
}

.experience-entry:last-child {
  padding-bottom: 0;
}

.experience-meta p {
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.5;
}

.experience-detail h3 {
  margin-bottom: 5px;
  font-size: 1.16rem;
}

.experience-detail .organization {
  margin-bottom: 18px;
  font-size: 0.94rem;
  font-weight: 650;
}

.experience-detail .organization-link {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.experience-detail .organization-link:hover,
.experience-detail .organization-link:focus-visible {
  color: var(--accent-dark);
}

.experience-detail ul {
  margin: 0;
  padding-left: 1.15em;
  color: #46515b;
}

.experience-detail li {
  padding-left: 0.25em;
  font-size: 0.94rem;
  line-height: 1.7;
}

.experience-detail li + li {
  margin-top: 9px;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .family-links {
    left: 0;
    transform: translate(0, -5px);
  }

  .family-menu:hover .family-links,
  .family-menu:focus-within .family-links,
  .family-menu.is-open .family-links {
    transform: translate(0, 0);
  }

  .portrait-wrap {
    width: min(72%, 300px);
  }

  .experience-intro {
    padding: 68px 0 60px;
  }

  .experience-group {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 58px 0 64px;
  }
}

@media (max-width: 560px) {
  .family-menu,
  .family-trigger {
    width: 38px;
    height: 38px;
  }

  .family-menu {
    flex-basis: 38px;
  }

  .contact-line {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .contact-line a {
    overflow-wrap: anywhere;
  }

  .experience-entry {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .flower-mark i,
  .family-links {
    transition: none;
  }
}

/* About page — academic profile layout */

.about-main {
  padding: clamp(54px, 7vw, 88px) 0 clamp(76px, 9vw, 116px);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(210px, 250px) minmax(0, 1fr);
  align-items: start;
  gap: clamp(58px, 8vw, 110px);
}

.about-sidebar {
  min-width: 0;
}

.about-portrait {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center 22%;
  border: 1px solid var(--line-strong);
}

.profile-focus {
  padding: 18px 0 16px;
  border-bottom: 1px solid var(--line);
}

.profile-focus p {
  margin-bottom: 4px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 1.02rem;
  line-height: 1.45;
}

.profile-focus p:last-child {
  margin-bottom: 0;
}

.profile-details {
  margin: 0;
}

.profile-details > div {
  padding: 16px 0 17px;
  border-bottom: 1px solid var(--line);
}

.profile-details dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.profile-details dd {
  margin: 0;
  color: #394550;
  font-size: 0.9rem;
  line-height: 1.55;
}

.profile-details a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}

.about-copy {
  max-width: 800px;
  padding-top: 2px;
}

.about-copy p {
  margin-bottom: 28px;
  color: #303942;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.13rem, 1.7vw, 1.3rem);
  line-height: 1.68;
}

.about-copy .about-lead {
  color: var(--ink);
  font-size: clamp(1.24rem, 2vw, 1.48rem);
  line-height: 1.58;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 780px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about-sidebar {
    width: min(100%, 360px);
  }

  .about-portrait {
    width: min(100%, 250px);
    height: 300px;
  }
}

@media (max-width: 560px) {
  .about-main {
    padding-top: 42px;
  }

  .about-layout {
    gap: 40px;
  }

  .about-sidebar {
    width: 100%;
  }

  .about-portrait {
    width: min(72vw, 230px);
    height: 276px;
  }

  .about-copy p {
    margin-bottom: 23px;
    font-size: 1.08rem;
    line-height: 1.65;
  }

  .about-copy .about-lead {
    font-size: 1.18rem;
  }
}
