/* === THE LINK SCHOOL — Scholarly Portal Design === */
/* Palette: Forest teal #1B4D3E, warm amber #D4893D, parchment #F7F2E9 */

:root {
  --teal: #1B4D3E;
  --teal-deep: #0F3A2E;
  --teal-light: #2A6B55;
  --amber: #D4893D;
  --amber-glow: #E8A85F;
  --parchment: #F7F2E9;
  --parchment-dark: #E8DFD0;
  --charcoal: #1A1A1A;
  --stone: #5A5A5A;
  --white: #FFFFFF;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 17px;
}

body {
  font-family: 'Crimson Text', 'Georgia', 'Times New Roman', serif;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Text', 'Georgia', serif;
  color: var(--teal);
  line-height: 1.25;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.8rem; font-weight: 700; }
h2 { font-size: 2.2rem; font-weight: 600; }
h3 { font-size: 1.7rem; font-weight: 600; }
h4 { font-size: 1.35rem; font-weight: 600; }

p {
  margin-bottom: 1.2rem;
}

a {
  color: var(--amber);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--teal);
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 820px;
}

/* === SKIP LINK === */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--teal);
  color: var(--white);
  padding: 0.5rem 1rem;
  z-index: 1000;
  border-radius: 0 0 var(--radius-sm) 0;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 0;
}

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  box-shadow: var(--shadow-md);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--parchment);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-logo svg {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  color: var(--parchment);
  font-size: 1.05rem;
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-bottom-color: var(--amber);
  color: var(--white);
}

.nav-cta {
  background: var(--amber);
  color: var(--white) !important;
  padding: 0.5rem 1.3rem !important;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}

.nav-cta:hover {
  background: var(--amber-glow);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--parchment);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    background: var(--teal-deep);
    flex-direction: column;
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    box-shadow: var(--shadow-lg);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-links a {
    font-size: 1.15rem;
  }
}

/* === HERO — Curiosity-Driven Question Area === */
.hero {
  background: linear-gradient(170deg, var(--teal) 0%, var(--teal-deep) 60%, var(--teal-light) 100%);
  color: var(--parchment);
  padding: 5rem 1.5rem 4rem;
  position: relative;
  overflow: hidden;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 137, 61, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 137, 61, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero__inner {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero__question {
  font-size: 3rem;
  font-weight: 700;
  color: var(--parchment);
  margin-bottom: 1.2rem;
  line-height: 1.15;
}

.hero__question mark {
  background: none;
  color: var(--amber);
}

.hero__subtitle {
  font-size: 1.25rem;
  color: var(--parchment-dark);
  margin-bottom: 3rem;
  max-width: 600px;
  font-style: italic;
}

/* Exploration Tiles */
.exploration-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.exploration-tile {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.5rem;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
  position: relative;
  overflow: hidden;
}

.exploration-tile::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--amber);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.exploration-tile:hover::before,
.exploration-tile:focus-within::before {
  transform: scaleX(1);
}

.exploration-tile:hover,
.exploration-tile:focus-within {
  background: rgba(255, 255, 255, 0.10);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateY(-4px);
}

.exploration-tile__icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  color: var(--amber);
}

.exploration-tile__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--parchment);
  margin-bottom: 0.5rem;
}

.exploration-tile__desc {
  font-size: 0.95rem;
  color: var(--parchment-dark);
  line-height: 1.5;
}

@media (max-width: 600px) {
  .hero__question {
    font-size: 2rem;
  }
  .hero {
    padding: 3rem 1.2rem 2.5rem;
    min-height: auto;
  }
  .exploration-tiles {
    grid-template-columns: 1fr;
  }
}

/* === SPLIT-PATH NARRATIVE === */
.split-path {
  padding: 5rem 1.5rem;
  background: var(--white);
}

.split-path__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.split-path__header h2 {
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.split-path__header p {
  color: var(--stone);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.split-path__tracks {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  max-width: 1100px;
  margin: 0 auto;
  align-items: start;
}

.split-path__divider {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 2rem;
  gap: 0;
}

.split-path__divider-line {
  width: 2px;
  height: 60px;
  background: linear-gradient(to bottom, var(--amber), var(--teal));
  border-radius: 1px;
}

.split-path__divider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--amber);
  margin: -6px 0;
}

.split-path__divider-line--bottom {
  height: 100%;
  min-height: 100px;
  background: linear-gradient(to bottom, var(--teal), transparent);
}

.track {
  background: var(--parchment);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  border: 1px solid var(--parchment-dark);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
}

.track:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.track--left {
  border-left: 4px solid var(--amber);
}

.track--right {
  border-right: 4px solid var(--teal);
}

.track__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  margin-bottom: 1rem;
}

.track--left .track__label {
  background: rgba(212, 137, 61, 0.15);
  color: var(--amber);
}

.track--right .track__label {
  background: rgba(27, 77, 62, 0.12);
  color: var(--teal);
}

.track__title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.track__desc {
  color: var(--stone);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

.track__features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.track__features li {
  padding-left: 1.5rem;
  position: relative;
  color: var(--charcoal);
  font-size: 0.95rem;
}

.track__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
}

@media (max-width: 850px) {
  .split-path__tracks {
    grid-template-columns: 1fr;
  }
  .split-path__divider {
    flex-direction: row;
    padding: 0 0 0 1.5rem;
    gap: 0;
  }
  .split-path__divider-line {
    width: 60px;
    height: 2px;
  }
  .split-path__divider-line--bottom {
    display: none;
  }
  .split-path__divider-dot {
    margin: 0 -6px;
  }
  .track {
    margin-bottom: 1rem;
  }
}

/* === FACULTY MOSAIC === */
.faculty-mosaic {
  padding: 5rem 1.5rem;
  background: var(--parchment);
  position: relative;
}

.faculty-mosaic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse at 20% 30%, rgba(27, 77, 62, 0.04) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212, 137, 61, 0.04) 0%, transparent 50%);
  pointer-events: none;
}

.faculty-mosaic__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.faculty-mosaic__header h2 {
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.faculty-mosaic__header p {
  color: var(--stone);
  max-width: 650px;
  margin: 0 auto;
  font-style: italic;
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.knowledge-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  border: 1px solid var(--parchment-dark);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow-sm);
}

.knowledge-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.knowledge-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(212, 137, 61, 0.06) 0%, transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity var(--transition);
}

.knowledge-card:hover::after {
  opacity: 1;
}

.knowledge-card__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--parchment);
  border-radius: var(--radius-sm);
  margin-bottom: 1.2rem;
  color: var(--teal);
}

.knowledge-card__title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--teal);
}

.knowledge-card__quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1rem;
  border-left: 3px solid var(--amber);
}

.knowledge-card__name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--charcoal);
}

.knowledge-card__role {
  font-size: 0.8rem;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* === BLEED SECTION — Full-width Atmospheric === */
.bleed-section {
  position: relative;
  padding: 6rem 1.5rem;
  background: 
    linear-gradient(0deg, rgba(15, 58, 46, 0.88), rgba(15, 58, 46, 0.92)),
    linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 40%, var(--teal-light) 100%);
  color: var(--parchment);
  overflow: hidden;
}

.bleed-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: 
    radial-gradient(ellipse at 30% 20%, rgba(212, 137, 61, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(212, 137, 61, 0.08) 0%, transparent 50%);
  pointer-events: none;
}

.bleed-section__content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.bleed-section__content h2 {
  color: var(--parchment);
  font-size: 2.4rem;
  margin-bottom: 1.2rem;
}

.bleed-section__content p {
  font-size: 1.15rem;
  color: var(--parchment-dark);
  line-height: 1.8;
  font-style: italic;
}

.bleed-section__stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.bleed-stat {
  text-align: center;
}

.bleed-stat__number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
}

.bleed-stat__label {
  font-size: 0.9rem;
  color: var(--parchment-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 600px) {
  .bleed-section {
    padding: 4rem 1.2rem;
  }
  .bleed-section__content h2 {
    font-size: 1.8rem;
  }
  .bleed-section__stats {
    gap: 2rem;
  }
}

/* === CURRICULUM MAP — CSS-Only Step Flow === */
.curriculum-map {
  padding: 5rem 1.5rem;
  background: var(--white);
  position: relative;
}

.curriculum-map__header {
  text-align: center;
  margin-bottom: 4rem;
}

.curriculum-map__header h2 {
  color: var(--teal);
  margin-bottom: 0.75rem;
}

.curriculum-map__header p {
  color: var(--stone);
  max-width: 600px;
  margin: 0 auto;
  font-style: italic;
}

.step-flow {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding-left: 3rem;
}

.step-flow::before {
  content: '';
  position: absolute;
  left: 1.35rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--amber), var(--teal));
  border-radius: 1px;
}

.step-node {
  position: relative;
  margin-bottom: 3.5rem;
  padding: 1.5rem 2rem;
  background: var(--parchment);
  border-radius: var(--radius-md);
  border: 1px solid var(--parchment-dark);
  transition: transform var(--transition), box-shadow var(--transition);
}

.step-node:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
}

.step-node::before {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 1.8rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--amber);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--amber);
  z-index: 1;
}

.step-node--last {
  margin-bottom: 0;
}

.step-node--last::after {
  content: '';
  position: absolute;
  left: -2.35rem;
  top: 2.5rem;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--teal);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 3px var(--teal);
}

.step-node--last::before {
  background: var(--teal);
  box-shadow: 0 0 0 3px var(--teal);
}

.step-node__phase {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--amber);
  margin-bottom: 0.3rem;
}

.step-node__title {
  font-size: 1.25rem;
  color: var(--teal);
  margin-bottom: 0.5rem;
}

.step-node__desc {
  color: var(--stone);
  font-size: 0.98rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .step-flow {
    padding-left: 2.2rem;
  }
  .step-flow::before {
    left: 0.9rem;
  }
  .step-node::before {
    left: -1.75rem;
    top: 1.6rem;
    width: 14px;
    height: 14px;
  }
  .step-node--last::after {
    left: -1.75rem;
  }
  .step-node {
    padding: 1.2rem 1.2rem;
  }
}

/* === BOTTOM CTA === */
.cta-section {
  padding: 5rem 1.5rem;
  background: var(--teal);
  color: var(--parchment);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212, 137, 61, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-section__inner {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--parchment);
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--parchment-dark);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  font-style: italic;
  line-height: 1.7;
}

.cta-section .btn {
  display: inline-block;
  background: var(--amber);
  color: var(--white);
  padding: 0.9rem 2.5rem;
  border-radius: var(--radius-sm);
  font-size: 1.1rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
  cursor: pointer;
  border: none;
}

.cta-section .btn:hover {
  background: var(--amber-glow);
  transform: translateY(-2px);
}

/* === FOOTER === */
.site-footer {
  background: var(--teal-deep);
  color: var(--parchment-dark);
  padding: 3rem 1.5rem 2rem;
}

.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

.footer-col h4 {
  color: var(--parchment);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer-col p,
.footer-col a {
  color: var(--parchment-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-col a:hover {
  color: var(--amber);
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  max-width: 1100px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: var(--parchment-dark);
}

@media (max-width: 750px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* === LEGAL PAGES (Privacy & Terms) === */
.legal-page {
  background: var(--white);
  min-height: 60vh;
}

.legal-hero {
  background: linear-gradient(170deg, var(--teal) 0%, var(--teal-deep) 100%);
  color: var(--parchment);
  padding: 4rem 1.5rem;
  text-align: center;
}

.legal-hero h1 {
  color: var(--parchment);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.legal-hero p {
  color: var(--parchment-dark);
  font-size: 1.05rem;
  font-style: italic;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 3rem 1.5rem 4rem;
}

.legal-content h2 {
  color: var(--teal);
  font-size: 1.6rem;
  margin: 2.5rem 0 0.8rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--parchment-dark);
}

.legal-content h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal-content p {
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
}

.legal-content li {
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.legal-content strong {
  color: var(--teal);
}

.legal-content .last-updated {
  color: var(--stone);
  font-size: 0.9rem;
  font-style: italic;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--parchment-dark);
}

@media (max-width: 600px) {
  .legal-hero {
    padding: 2.5rem 1.2rem;
  }
  .legal-hero h1 {
    font-size: 1.8rem;
  }
  .legal-content {
    padding: 2rem 1.2rem 3rem;
  }
}

/* === UTILITY === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.text-center { text-align: center; }

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === PRINT STYLES === */
@media print {
  .site-header,
  .hamburger,
  .site-footer,
  .cta-section {
    display: none;
  }
  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
  }
}

/* === Google Fonts fallback === */
@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('Crimson Text'), local('Georgia'), local('Times New Roman');
}

@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: local('Crimson Text'), local('Georgia'), local('Times New Roman');
}

@font-face {
  font-family: 'Crimson Text';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('Crimson Text'), local('Georgia'), local('Times New Roman');
}

@font-face {
  font-family: 'Crimson Text';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: local('Crimson Text'), local('Georgia'), local('Times New Roman');
}
