:root {
  --paper: #fbf6ec;
  --paper-2: #f6efe2;
  --ink: #183a70;
  --green: #416b48;
  --purple: #6a4c92;
  --rust: #a45120;
  --line: #d8c8b4;
  --body: #26364e;
  --shadow: 0 12px 28px rgba(53, 46, 36, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--body);
  background:
    radial-gradient(circle at 7% 10%, rgba(255,153,112,.22), transparent 20%),
    radial-gradient(circle at 12% 35%, rgba(91,154,200,.18), transparent 22%),
    linear-gradient(180deg, #fffdf8 0%, var(--paper) 100%);
  font-family: Georgia, 'Times New Roman', serif;
}

a { color: inherit; }

.page-shell {
  width: min(1500px, 100%);
  margin: 0 auto;
  min-height: 100vh;
  background: rgba(255, 251, 244, .75);
  border-left: 1px solid rgba(90, 70, 45, .15);
  border-right: 1px solid rgba(90, 70, 45, .15);
}

.hero {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  min-height: 480px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 52px 48px 42px;
}

.hero-copy::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 0% 8%, rgba(245, 127, 94, .18), transparent 21%),
    radial-gradient(circle at 0% 55%, rgba(71, 139, 199, .18), transparent 30%);
}

.hero-copy > * { position: relative; z-index: 1; }

h1 {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 6.5rem);
  line-height: .95;
  font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
  font-weight: 400;
  letter-spacing: .01em;
}

.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  width: min(430px, 80%);
  margin: 8px auto 20px;
  color: #6d8a67;
}
.divider::before, .divider::after {
  content: '';
  height: 1px;
  flex: 1;
  background: #cfc5b4;
}
.divider span { font-size: 1.15rem; }

.statement {
  max-width: 690px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.05rem, 1.8vw, 1.45rem);
  line-height: 1.55;
  font-style: italic;
}

.brush-line {
  margin-top: 24px;
  width: min(280px, 55%);
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(89,155,191,.45), rgba(90,145,98,.55), rgba(89,155,191,.25));
  transform: rotate(-1deg);
}

.hero-photo {
  min-height: 480px;
  background: #ddd;
}
.hero-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 30px 30px 16px;
}

.card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  text-decoration: none;
  background: rgba(255,255,255,.45);
  border: 1px solid var(--line);
  border-radius: 8px;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover, .card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: #bfa98c;
  outline: none;
}
.card-image {
  aspect-ratio: 1.45 / 1;
  overflow: hidden;
  background: #eee8dc;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 15px 18px 18px;
  text-align: center;
}
.card-title {
  margin: 0 0 9px;
  font-size: clamp(1.35rem, 2vw, 2.1rem);
  font-weight: 400;
  letter-spacing: .05em;
}
.card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  font-style: italic;
  color: #2a4365;
}
.card.art .card-title { color: var(--green); }
.card.photo .card-title { color: var(--ink); }
.card.bio .card-title { color: var(--purple); }
.card.recipes .card-title { color: var(--rust); }

.closing {
  text-align: center;
  padding: 0 24px 30px;
  color: var(--ink);
  font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.1;
}
.closing small {
  display: block;
  margin-top: 8px;
  color: #638157;
  font-family: Georgia, serif;
  font-size: 1rem;
  letter-spacing: .18em;
}

.under-construction {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px;
}
.construction-card {
  width: min(760px, 100%);
  padding: clamp(34px, 7vw, 72px);
  text-align: center;
  background: rgba(255,255,255,.58);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.construction-card h1 {
  font-size: clamp(2.8rem, 8vw, 5rem);
  margin-bottom: 18px;
}
.construction-card p {
  font-size: 1.2rem;
  line-height: 1.6;
}
.back-link {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  border: 1px solid #9aa990;
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  background: rgba(255,255,255,.5);
}
.back-link:hover, .back-link:focus-visible { background: #fff; }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; }
  .hero-copy { padding: 42px 24px 36px; }
  .hero-photo { min-height: 420px; }
  .hero-photo img { object-position: center 38%; }
  .cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .page-shell { border: 0; }
  .hero { min-height: auto; }
  .hero-copy { padding: 34px 20px 30px; }
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .statement { font-size: 1.05rem; }
  .hero-photo { min-height: 330px; }
  .cards {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px 12px;
  }
  .card-image { aspect-ratio: 1.55 / 1; }
  .card-title { font-size: 1.7rem; }
  .closing { padding-top: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; }
  .card { transition: none; }
}


/* Recipes archive */
.recipes-page {
  padding-bottom: 48px;
}

.subpage-header {
  position: relative;
  text-align: center;
  padding: 42px 28px 30px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 8% 20%, rgba(245,127,94,.16), transparent 20%),
    radial-gradient(circle at 88% 0%, rgba(71,139,199,.14), transparent 28%),
    rgba(255, 252, 246, .62);
}
.subpage-header h1 {
  margin-bottom: 10px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}
.subpage-header p {
  max-width: 720px;
  margin: 0 auto;
  color: #5c402b;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  font-style: italic;
}
.subpage-home {
  position: absolute;
  left: 26px;
  top: 24px;
  color: var(--ink);
  text-decoration: none;
  font-size: .95rem;
}
.subpage-home:hover,
.subpage-home:focus-visible { text-decoration: underline; }

.recipe-intro {
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(34px, 6vw, 72px) clamp(22px, 6vw, 86px);
}
.recipe-portrait {
  margin: 0;
}
.recipe-portrait img {
  display: block;
  width: 100%;
  max-height: 620px;
  object-fit: cover;
  object-position: center 25%;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: var(--shadow);
}
.recipe-portrait figcaption {
  margin-top: 9px;
  color: #756554;
  text-align: center;
  font-size: .92rem;
  font-style: italic;
}
.recipe-intro-copy {
  max-width: 680px;
}
.eyebrow,
.recipe-kicker {
  margin: 0 0 8px;
  color: var(--rust);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.recipe-intro-copy h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.04;
  font-weight: 400;
}
.recipe-intro-copy p:not(.eyebrow) {
  margin: 0 0 .6em;
  font-size: 1.08rem;
  line-height: 1.65;
}

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding: 0 clamp(22px, 5vw, 70px) 28px;
  align-items: start;
}
.recipe-card {
  padding: clamp(22px, 3vw, 30px);
  background: rgba(255,255,255,.62);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(53,46,36,.06);
}
.recipe-card-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 15px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e3d8c8;
}
.recipe-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1.05;
  font-weight: 400;
}
.recipe-tag {
  flex: 0 0 auto;
  padding: 6px 9px;
  border: 1px solid #d9c4ad;
  border-radius: 999px;
  color: #7b4a29;
  background: #fff8ef;
  font-family: Arial, Helvetica, sans-serif;
  font-size: .72rem;
  letter-spacing: .03em;
}
.recipe-note,
.recipe-preserve-note,
.recipe-footer {
  margin: 0 0 18px;
  color: #4c5562;
  font-style: italic;
  line-height: 1.55;
}
.recipe-preserve-note {
  padding: 12px 14px;
  background: #faf4ea;
  border-left: 3px solid #d2b08d;
}
.recipe-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid #eadfce;
}
.recipe-content {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 24px;
}
.recipe-content h4 {
  margin: 0 0 10px;
  color: var(--green);
  font-family: Arial, Helvetica, sans-serif;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.recipe-content ul,
.recipe-content ol {
  margin: 0;
  padding-left: 1.25rem;
}
.recipe-content li {
  margin: 0 0 .42em;
  line-height: 1.48;
}
.subpage-footer {
  text-align: center;
  padding: 12px 24px 10px;
}

@media (max-width: 980px) {
  .recipe-grid { grid-template-columns: 1fr; }
  .recipe-intro { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .subpage-header { padding: 64px 20px 26px; }
  .subpage-home { left: 18px; top: 18px; }
  .recipe-intro {
    grid-template-columns: 1fr;
    padding: 28px 16px 38px;
  }
  .recipe-portrait img { max-height: 480px; }
  .recipe-grid {
    padding: 0 16px 24px;
    gap: 16px;
  }
  .recipe-card-head { flex-direction: column; gap: 10px; }
  .recipe-content { grid-template-columns: 1fr; gap: 20px; }
  .recipe-tag { align-self: flex-start; }
}

/* Art gallery */
.gallery-page {
  min-height: 100vh;
  padding-bottom: 46px;
}

.gallery-header {
  padding-bottom: 34px;
}

.gallery-home-link {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--ink);
  text-decoration: none;
  font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
  font-size: clamp(1.9rem, 3vw, 2.7rem);
  line-height: 1;
}

.gallery-header h1 {
  margin: 2px 0 8px;
  font-size: clamp(3.2rem, 7vw, 6rem);
}

.gallery-intro {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  color: #344863;
  font-size: clamp(1rem, 1.4vw, 1.17rem);
  line-height: 1.6;
  font-style: italic;
}

.gallery-wrap {
  width: min(1380px, calc(100% - 44px));
  margin: 34px auto 0;
}

.art-grid {
  columns: 4 260px;
  column-gap: 22px;
}

.art-item {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 22px;
  padding: 0;
  overflow: hidden;
  break-inside: avoid;
  border: 1px solid rgba(94, 75, 55, .18);
  border-radius: 5px;
  background: #f3ede2;
  box-shadow: 0 5px 16px rgba(58, 45, 30, .07);
  cursor: zoom-in;
  appearance: none;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.art-item img {
  display: block;
  width: 100%;
  height: auto;
}

.art-item:hover,
.art-item:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(77, 103, 70, .42);
  box-shadow: 0 12px 28px rgba(58, 45, 30, .14);
  outline: none;
}

.art-overlay {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  justify-content: center;
  padding: 44px 16px 15px;
  color: #fff;
  background: linear-gradient(transparent, rgba(18, 25, 35, .62));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease;
  pointer-events: none;
}

.art-overlay span {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .86rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.art-item:hover .art-overlay,
.art-item:focus-visible .art-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-footer-nav {
  display: flex;
  justify-content: center;
  padding: 14px 0 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 42px 88px;
  background: rgba(13, 17, 22, .94);
  backdrop-filter: blur(3px);
}

.lightbox.is-open { display: grid; }
body.lightbox-open { overflow: hidden; }

.lightbox-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 100%;
  max-height: 100%;
  margin: 0;
}

.lightbox-figure img {
  display: block;
  max-width: min(92vw, 1500px);
  max-height: 82vh;
  width: auto;
  height: auto;
  object-fit: contain;
  background: #f8f4eb;
  box-shadow: 0 22px 70px rgba(0, 0, 0, .44);
}

.lightbox-figure figcaption {
  color: rgba(255,255,255,.76);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: .9rem;
  letter-spacing: .05em;
}

.lightbox-close,
.lightbox-nav {
  position: fixed;
  z-index: 10000;
  border: 0;
  color: #fff;
  background: rgba(255,255,255,.09);
  cursor: pointer;
  transition: background .15s ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible,
.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255,255,255,.18);
  outline: 1px solid rgba(255,255,255,.45);
}

.lightbox-close {
  top: 18px;
  right: 22px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font: 300 2rem/1 Arial, sans-serif;
}

.lightbox-nav {
  top: 50%;
  width: 52px;
  height: 72px;
  margin-top: -36px;
  border-radius: 6px;
  font: 300 3rem/1 Arial, sans-serif;
}
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 900px) {
  .gallery-wrap { width: min(100% - 28px, 900px); margin-top: 24px; }
  .art-grid { columns: 3 220px; column-gap: 16px; }
  .art-item { margin-bottom: 16px; }
  .lightbox { padding: 58px 54px 28px; }
}

@media (max-width: 620px) {
  .gallery-header { padding: 28px 16px 24px; }
  .gallery-home-link { font-size: 1.7rem; }
  .gallery-header h1 { font-size: clamp(3rem, 15vw, 4.25rem); }
  .gallery-intro { width: min(100% - 18px, 560px); font-size: 1rem; }
  .gallery-wrap { width: calc(100% - 20px); margin-top: 18px; }
  .art-grid { columns: 2 145px; column-gap: 10px; }
  .art-item { margin-bottom: 10px; border-radius: 3px; }
  .art-overlay { display: none; }
  .lightbox { padding: 58px 12px 24px; }
  .lightbox-figure img { max-width: 96vw; max-height: 78vh; }
  .lightbox-nav {
    top: auto;
    bottom: 14px;
    width: 48px;
    height: 48px;
    margin: 0;
    border-radius: 50%;
    font-size: 2.2rem;
  }
  .lightbox-prev { left: calc(50% - 62px); }
  .lightbox-next { right: calc(50% - 62px); }
  .lightbox-close { top: 10px; right: 12px; width: 44px; height: 44px; }
  .lightbox-figure figcaption { padding-bottom: 54px; }
}

@media (prefers-reduced-motion: reduce) {
  .art-item,
  .art-overlay { transition: none; }
}

/* Biography */
.biography-page {
  padding-bottom: 52px;
}

.biography-header p {
  color: #4e5665;
}

.bio-intro {
  display: grid;
  grid-template-columns: minmax(320px, .92fr) minmax(420px, 1.08fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
  padding: clamp(38px, 6vw, 82px) clamp(22px, 6vw, 90px) clamp(34px, 5vw, 62px);
  border-bottom: 1px solid rgba(216, 200, 180, .75);
}

.bio-portrait {
  position: sticky;
  top: 24px;
  margin: 0;
}

.bio-portrait img {
  display: block;
  width: 100%;
  max-height: 690px;
  object-fit: cover;
  object-position: center center;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.bio-intro-copy {
  max-width: 760px;
}

.bio-intro-copy .eyebrow {
  color: var(--purple);
}

.bio-intro-copy h2,
.bio-section h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.06;
  font-weight: 400;
}

.bio-intro-copy p:not(.eyebrow),
.bio-section p,
.bio-finale > p {
  margin: 0 0 .6em;
  font-size: clamp(1.03rem, 1.25vw, 1.13rem);
  line-height: 1.66;
}

.bio-article {
  width: min(940px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) 0 10px;
}

.bio-section {
  margin-bottom: clamp(42px, 7vw, 78px);
}

.bio-section h2::after {
  content: '';
  display: block;
  width: 72px;
  height: 2px;
  margin-top: 13px;
  background: linear-gradient(90deg, #71956b, rgba(113,149,107,.08));
}

.bio-quote {
  margin: 34px 0 36px;
  padding: 22px 26px 20px;
  border-left: 3px solid #8aa47c;
  background: rgba(255,255,255,.48);
}

.bio-quote p {
  margin: 0 !important;
  color: var(--ink);
  font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
  font-size: clamp(2rem, 5vw, 3.2rem) !important;
  line-height: 1.05 !important;
}

.bio-artwork {
  margin: 0 auto clamp(46px, 7vw, 78px);
}

.bio-artwork-right {
  width: min(560px, 72%);
  margin-right: 0;
}

.bio-artwork img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--line);
  border-radius: 5px;
  box-shadow: 0 10px 30px rgba(53,46,36,.10);
}

.bio-artwork figcaption {
  margin-top: 9px;
  color: #756554;
  text-align: right;
  font-size: .9rem;
  font-style: italic;
}

.bio-section-accent {
  padding: clamp(26px, 4vw, 42px);
  margin-left: clamp(-22px, -3vw, -36px);
  margin-right: clamp(-22px, -3vw, -36px);
  border: 1px solid #e0d5c6;
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(106,76,146,.09), transparent 28%),
    radial-gradient(circle at 0% 100%, rgba(65,107,72,.09), transparent 30%),
    rgba(255,255,255,.45);
}

.bio-finale {
  margin: clamp(50px, 8vw, 90px) 0 24px;
  padding: clamp(34px, 6vw, 64px) clamp(24px, 6vw, 64px);
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.42);
}

.bio-finale blockquote {
  margin: 0 0 22px;
}

.bio-finale blockquote p {
  margin: 0;
  color: var(--ink);
  font-family: 'Brush Script MT', 'Segoe Script', 'Lucida Handwriting', cursive;
  font-size: clamp(2.8rem, 7vw, 5.1rem);
  line-height: 1;
}

.bio-finale > p {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.biography-footer {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
}

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

@media (max-width: 900px) {
  .bio-intro {
    grid-template-columns: .85fr 1.15fr;
    gap: 34px;
    padding-left: 30px;
    padding-right: 30px;
  }
  .bio-portrait { position: static; }
  .bio-artwork-right { width: min(600px, 86%); }
}

@media (max-width: 700px) {
  .bio-intro {
    grid-template-columns: 1fr;
    padding: 28px 16px 34px;
  }
  .bio-portrait {
    width: min(100%, 520px);
    margin: 0 auto;
  }
  .bio-portrait img {
    max-height: 520px;
  }
  .bio-intro-copy {
    width: min(100%, 620px);
    margin: 0 auto;
  }
  .bio-article {
    width: calc(100% - 32px);
    padding-top: 34px;
  }
  .bio-section {
    margin-bottom: 44px;
  }
  .bio-section-accent {
    margin-left: -4px;
    margin-right: -4px;
    padding: 24px 18px;
  }
  .bio-artwork-right {
    width: 100%;
  }
  .bio-finale {
    margin-left: -4px;
    margin-right: -4px;
    padding: 34px 18px;
  }
  .biography-footer {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* Photo gallery */
.photo-gallery-wrap {
  width: min(1320px, calc(100% - 44px));
}

.photo-grid {
  columns: 3 300px;
  column-gap: 24px;
}

.photo-item {
  background: #f8f4ec;
}

.photo-item img {
  image-orientation: from-image;
}

@media (max-width: 900px) {
  .photo-grid {
    columns: 2 260px;
    column-gap: 16px;
  }
}

@media (max-width: 620px) {
  .photo-grid {
    columns: 1;
  }
}

/* Simple biography presentation — text preserved verbatim */
.biography-simple-page {
  padding-bottom: 48px;
}

.biography-simple-header {
  padding-bottom: 26px;
}

.biography-text {
  width: min(880px, calc(100% - 48px));
  margin: 0 auto;
  padding: clamp(34px, 5vw, 62px) 0 clamp(22px, 4vw, 42px);
  color: #2c3b50;
  font-size: clamp(1.03rem, 1.2vw, 1.12rem);
  line-height: 1.67;
}

.biography-text p {
  margin: 0 0 .6em;
}

.biography-text p:first-child {
  font-size: clamp(1.08rem, 1.35vw, 1.18rem);
}

.biography-footer-simple {
  padding-top: 0;
}

@media (max-width: 700px) {
  .biography-text {
    width: calc(100% - 32px);
    padding-top: 30px;
    font-size: 1rem;
    line-height: 1.62;
  }

  .biography-text p {
    margin-bottom: .6em;
  }
}
