/* ====================================================================
   From the Ridgeline — global styles
   Palette and typography pulled from the brand guide. Single source of
   truth for colors, fonts, spacing, and the issue prose treatment.
   ==================================================================== */

:root {
  /* Color tokens */
  --bg: #F4F2E9;
  --bg-card: #FEFDFB;
  --navy: #01495D;
  --navy-light: #026E8C;
  --text: #2C2C2C;
  --text-muted: #6B6860;
  --text-light: #9B978E;
  --border: #DDD9CE;
  --border-light: #EAE7DE;
  --accent: #C1554D;
  --white: #FEFDFB;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Spacing rhythm */
  --content-max: 720px;
  --prose-max: 660px;
  --wide-max: 1100px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--border);
  text-underline-offset: 3px;
  transition: text-decoration-color 0.2s ease, color 0.2s ease;
}
a:hover { text-decoration-color: var(--navy); }

/* ====================================================================
   NAV — default (dark on beige)
   ==================================================================== */

.nav {
  padding: 1.5rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--wide-max);
  margin: 0 auto;
  width: 100%;
}

.nav-wordmark {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.nav-wordmark:hover { opacity: 0.75; }

.nav-logo {
  display: block;
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-link:hover { color: var(--navy); }
.nav-link.is-active { color: var(--navy); }

.nav-subscribe {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  text-decoration: none;
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--navy);
  transition: all 0.3s ease;
}
.nav-subscribe:hover {
  background: var(--navy);
  color: var(--white);
}

/* NAV — overlay variant (light on dark hero) */
.nav.is-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}
.nav.is-overlay .nav-logo {
  /* Render the dark-on-transparent logo as soft white over the dark hero. */
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.nav.is-overlay .nav-wordmark:hover .nav-logo { opacity: 1; }
.nav.is-overlay .nav-link {
  color: rgba(255, 255, 255, 0.7);
}
.nav.is-overlay .nav-link:hover,
.nav.is-overlay .nav-link.is-active { color: rgba(255, 255, 255, 1); }
.nav.is-overlay .nav-subscribe {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
}
.nav.is-overlay .nav-subscribe:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.8);
  color: rgba(255, 255, 255, 1);
}

/* ====================================================================
   HERO — full-screen image with white text (homepage)
   ==================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to bottom,
    rgba(12, 30, 38, 0.35) 0%,
    rgba(12, 30, 38, 0.5) 40%,
    rgba(12, 30, 38, 0.65) 70%,
    rgba(12, 30, 38, 0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 8rem 2rem 5rem;
  text-align: center;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.96);
  line-height: 1.15;
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.hero-description {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 540px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

/* ====================================================================
   SIGNUP FORM — default (dark on light)
   ==================================================================== */

.signup {
  max-width: 460px;
  margin: 0 auto;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.signup-form-row {
  display: flex;
  gap: 0;
}

.signup-name {
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
  transition: border-color 0.3s ease;
}
.signup-name::placeholder { color: var(--text-light); }
.signup-name:focus { border-color: var(--navy); }

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  border-right: none;
  outline: none;
  transition: border-color 0.3s ease;
}
.signup-form input[type="email"]::placeholder { color: var(--text-light); }
.signup-form input[type="email"]:focus { border-color: var(--navy); }

.signup-form button {
  padding: 0.85rem 1.8rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  border: 1px solid var(--navy);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.signup-form button:hover { background: var(--navy-light); border-color: var(--navy-light); }
.signup-form button:disabled { opacity: 0.6; cursor: not-allowed; }

.signup-note {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-top: 1rem;
  text-align: center;
}

.signup-success {
  display: none;
  text-align: center;
  padding: 1rem 0;
}
.signup-success.is-visible { display: block; }
.signup-success p {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--navy);
}
.signup-success span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--text-muted);
  display: block;
  margin-top: 0.5rem;
}

/* SIGNUP FORM — overlay variant (used inside the dark hero) */
.signup.is-overlay .signup-name,
.signup.is-overlay .signup-form input[type="email"] {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}
.signup.is-overlay .signup-name:focus,
.signup.is-overlay .signup-form input[type="email"]:focus {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.8);
}
.signup.is-overlay .signup-form button {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.3);
}
.signup.is-overlay .signup-form button:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(255, 255, 255, 0.8);
}
.signup.is-overlay .signup-note {
  color: rgba(255, 255, 255, 0.55);
}
.signup.is-overlay .signup-success p {
  color: rgba(255, 255, 255, 0.96);
}
.signup.is-overlay .signup-success span {
  color: rgba(255, 255, 255, 0.65);
}

/* ====================================================================
   SECTION SCAFFOLDING
   ==================================================================== */

.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-narrow {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 4rem 2rem;
}

.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
  text-align: center;
}

.divider {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.divider hr {
  border: none;
  border-top: 1px solid var(--border);
}

/* ====================================================================
   ISSUE CARDS (archive list / homepage tail)
   ==================================================================== */

.issue-list {
  display: flex;
  flex-direction: column;
}

.issue-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-light);
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s ease;
}
.issue-card:first-child { border-top: 1px solid var(--border-light); }
.issue-card:hover { opacity: 0.85; }
.issue-card:hover .issue-card-title { color: var(--navy); }

.issue-card-number {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.issue-card-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.6rem;
  transition: color 0.3s ease;
}

.issue-card-excerpt {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

.issue-card-date {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 300;
  color: var(--text-light);
  white-space: nowrap;
  padding-top: 1.8rem;
}

/* ====================================================================
   ISSUE PAGE (individual issue prose)
   ==================================================================== */

.issue-page {
  max-width: var(--prose-max);
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
}

.issue-meta {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.issue-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.4rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.15;
  letter-spacing: -0.005em;
  margin-bottom: 1rem;
}

.issue-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 3rem;
}

.issue-prose {
  font-size: 1.06rem;
  line-height: 1.85;
  color: var(--text);
}
.issue-prose p {
  margin-bottom: 1.5rem;
}
.issue-prose p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 3.4rem;
  font-weight: 500;
  float: left;
  line-height: 0.9;
  padding-right: 0.6rem;
  padding-top: 0.4rem;
  color: var(--navy);
}
.issue-prose a {
  color: var(--navy);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.issue-prose a:hover { text-decoration-color: var(--navy); }
.issue-prose blockquote {
  border-left: 2px solid var(--accent);
  padding-left: 1.4rem;
  margin: 2rem 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Reflection block (the "A question worth sitting with this week" callout) */
.reflection {
  margin: 3rem 0;
  padding: 2rem 2.25rem;
  background: var(--bg-card);
  border-left: 3px solid var(--accent);
  border-radius: 2px;
}
.reflection-label {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.85rem !important;
}
.reflection-question {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 0 !important;
}
.reflection-question::first-letter {
  font-size: 1em !important;
  float: none !important;
  padding: 0 !important;
  color: inherit !important;
}

/* Issue page sign-off and inter-issue navigation */
.issue-signoff {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--navy);
  font-size: 1.15rem;
  margin: 3rem 0 1.5rem;
}

.issue-nav {
  max-width: var(--prose-max);
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid var(--border-light);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.issue-nav-prev { text-align: left; }
.issue-nav-next { text-align: right; }
.issue-nav a {
  display: block;
  text-decoration: none;
  color: var(--text-muted);
  transition: color 0.2s ease;
}
.issue-nav a:hover { color: var(--navy); }
.issue-nav-label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.4rem;
}
.issue-nav-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1.3;
}

/* ====================================================================
   BIO BLOCK (used at end of issue pages)
   ==================================================================== */

.bio {
  max-width: var(--prose-max);
  margin: 4rem auto 0;
  padding: 2.5rem 2rem;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  text-align: center;
}
.bio-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.bio-credentials {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}
.bio-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
  margin: 0 auto;
}

/* ====================================================================
   BOTTOM SUBSCRIBE BLOCK
   ==================================================================== */

.bottom-cta {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  text-align: center;
}
.bottom-cta-text {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.bottom-cta-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

/* ====================================================================
   ABOUT PAGE
   ==================================================================== */

.about-photo {
  max-width: 900px;
  margin: 2rem auto 0;
  padding: 0 2rem;
}
.about-photo img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center 35%;
  display: block;
}
.about-photo-placeholder {
  width: 100%;
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #3a5a6e 0%, #1a3040 50%, #2a4858 100%);
  color: rgba(255, 255, 255, 0.4);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  text-align: center;
  padding: 0 2rem;
}

.about-content {
  max-width: 620px;
  margin: 0 auto;
  padding: 4rem 2rem 3rem;
}
.about-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2.5rem;
}
.about-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 2.5rem;
}
.about-content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}
.about-content p:last-of-type {
  margin-bottom: 0;
}
.about-content p strong {
  font-weight: 400;
  color: var(--text);
}
.about-separator {
  width: 40px;
  border: none;
  border-top: 2px solid var(--border);
  margin: 3rem 0;
}

/* About-page bio section (different from BioBlock — has avatar) */
.about-bio {
  max-width: 620px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}
.about-bio-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
.about-bio-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--border);
  display: block;
}
.about-bio-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.3;
}
.about-bio-title {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  margin-top: 0.15rem;
}
.about-bio p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

/* ====================================================================
   ARCHIVE / ISSUES INDEX
   ==================================================================== */

.archive-hero {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  text-align: center;
}
.archive-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.5vw, 3.2rem);
  font-weight: 500;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.archive-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ====================================================================
   FOOTER
   ==================================================================== */

.site-footer {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3rem 2rem 4rem;
  text-align: center;
  border-top: 1px solid var(--border-light);
  flex-shrink: 0;
}
.footer-author {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.footer-firm {
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.footer-firm a {
  color: var(--text-light);
  text-decoration: underline;
  text-decoration-color: var(--border);
}
.footer-firm a:hover { color: var(--navy); }
.footer-legal {
  font-size: 0.7rem;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto 1rem;
  line-height: 1.6;
}
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  font-size: 0.78rem;
}
.footer-nav a {
  color: var(--text-light);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--navy); }

/* ====================================================================
   RESPONSIVE
   ==================================================================== */

@media (max-width: 600px) {
  .nav { padding: 1.25rem 1.5rem; gap: 1rem; }
  .nav-logo { height: 38px; }
  .nav-links { gap: 0.9rem; }
  .nav-link { font-size: 0.78rem; }
  .nav-subscribe { font-size: 0.7rem; padding: 0.4rem 0.9rem; }

  .hero { min-height: 100svh; }
  .hero-content { padding: 6rem 1.5rem 4rem; }
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 0.95rem; }

  .signup-form-row { flex-direction: column; gap: 0.55rem; }
  .signup-form input[type="email"] { border-right: 1px solid var(--border); }
  .signup.is-overlay .signup-form input[type="email"] { border-right: 1px solid rgba(255,255,255,0.3); }
  .signup-form button { padding: 0.85rem; }

  .section, .section-narrow, .archive-hero, .issue-page, .bottom-cta, .site-footer { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-content, .about-bio { padding-left: 1.5rem; padding-right: 1.5rem; }
  .about-photo { padding-left: 0; padding-right: 0; }
  .about-photo img, .about-photo-placeholder { height: 280px; }
  .about-content { padding-top: 3rem; padding-bottom: 2.5rem; }
  .about-content h1 { font-size: 2rem; }
  .about-bio-header { gap: 1rem; }
  .about-bio-avatar { width: 56px; height: 56px; }

  .issue-card { grid-template-columns: 1fr; gap: 0.5rem; padding: 1.5rem 0; }
  .issue-card-title { font-size: 1.35rem; }
  .issue-card-date { padding-top: 0; order: -1; }

  .issue-prose { font-size: 1rem; }
  .issue-prose p:first-child::first-letter {
    font-size: 2.6rem;
    padding-top: 0.3rem;
  }
  .reflection { padding: 1.5rem 1.5rem; }
  .reflection-question { font-size: 1.2rem; }

  .issue-nav { grid-template-columns: 1fr; }
  .issue-nav-next { text-align: left; }
}

/* ====================================================================
   ANIMATIONS
   ==================================================================== */

@media (prefers-reduced-motion: no-preference) {
  .hero-tagline, .hero-title, .hero-description, .hero-content .signup, .hero-content .signup-note {
    opacity: 0;
    transform: translateY(12px);
    animation: fadeUp 0.7s ease forwards;
  }
  .hero-tagline { animation-delay: 0.3s; }
  .hero-title { animation-delay: 0.5s; }
  .hero-description { animation-delay: 0.7s; }
  .hero-content .signup { animation-delay: 0.9s; }
  .hero-content .signup-note { animation-delay: 1s; }

  .issue-card {
    opacity: 0;
    transform: translateY(8px);
    animation: fadeUp 0.5s ease forwards;
  }
  .issue-card:nth-child(1) { animation-delay: 0.1s; }
  .issue-card:nth-child(2) { animation-delay: 0.2s; }
  .issue-card:nth-child(3) { animation-delay: 0.3s; }
  .issue-card:nth-child(4) { animation-delay: 0.4s; }
  .issue-card:nth-child(5) { animation-delay: 0.5s; }

  .about-label, .about-content h1, .about-content p, .about-bio {
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp 0.5s ease forwards;
  }
  .about-label { animation-delay: 0.1s; }
  .about-content h1 { animation-delay: 0.25s; }
  .about-content p:nth-of-type(1) { animation-delay: 0.35s; }
  .about-content p:nth-of-type(2) { animation-delay: 0.4s; }
  .about-content p:nth-of-type(3) { animation-delay: 0.45s; }
  .about-content p:nth-of-type(4) { animation-delay: 0.5s; }
  .about-content p:nth-of-type(5) { animation-delay: 0.55s; }
  .about-bio { animation-delay: 0.6s; }

  @keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
  }
}
