/*
Theme Name:  Tavershima Yachiga
Theme URI:   https://tavershima.com
Author:      Tavershima Yachiga
Description: Premium personal website theme for Tavershima Yachiga — Lawyer, Public Policy Analyst & Entrepreneur. Features a reading list, scholarship page, and editorial blog design.
Version:     1.0.0
License:     GNU General Public License v2 or later
Text Domain: ty-theme
Tags:        personal, professional, law, policy, reading-list, scholarship
*/

/* ═══════════════════════════════════════════════════════════
   1. CSS CUSTOM PROPERTIES
═══════════════════════════════════════════════════════════ */
:root {
  /* Colour Palette */
  --ty-navy:         #0A1F44;   /* Deep authority navy */
  --ty-navy-mid:     #122952;   /* Mid navy */
  --ty-navy-light:   #1C3F7A;   /* Lighter navy */
  --ty-gold:         #C9A84C;   /* Antique gold */
  --ty-gold-hover:   #B8902C;   /* Gold on hover */
  --ty-gold-light:   #E8D48B;   /* Pale gold */
  --ty-gold-pale:    #F7EDD1;   /* Very pale gold */
  --ty-cream:        #F7F3EC;   /* Warm parchment cream */
  --ty-cream-dark:   #EDE7D8;   /* Darker cream */
  --ty-white:        #FFFFFF;
  --ty-off-white:    #FAFAF8;
  --ty-charcoal:     #1C2033;   /* Near-black text */
  --ty-text:         #2D3748;   /* Primary body text */
  --ty-text-mid:     #4A5568;   /* Secondary text */
  --ty-text-light:   #718096;   /* Muted text */
  --ty-border:       #E2D9C8;   /* Warm border */
  --ty-border-dark:  #C5B89A;
  --ty-crimson:      #7B1A2E;   /* Deep crimson accent */
  --ty-success:      #276749;
  --ty-error:        #C0392B;

  /* Typography */
  --ty-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --ty-sans:  'Inter', 'Helvetica Neue', Arial, sans-serif;

  /* Spacing */
  --ty-container:    1200px;
  --ty-container-sm: 800px;
  --ty-gap:          30px;
  --ty-section:      100px;
  --ty-section-sm:   64px;

  /* Misc */
  --ty-radius:    4px;
  --ty-radius-md: 8px;
  --ty-radius-lg: 16px;
  --ty-shadow:    0 4px 24px rgba(10, 31, 68, 0.10);
  --ty-shadow-md: 0 8px 40px rgba(10, 31, 68, 0.15);
  --ty-shadow-lg: 0 16px 64px rgba(10, 31, 68, 0.20);
  --ty-trans:     0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ═══════════════════════════════════════════════════════════
   2. RESET & BASE
═══════════════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ty-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ty-text);
  background: var(--ty-cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--ty-gold); text-decoration: none; transition: color var(--ty-trans); }
a:hover { color: var(--ty-gold-hover); }
ul, ol { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ═══════════════════════════════════════════════════════════
   3. TYPOGRAPHY
═══════════════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ty-serif);
  color: var(--ty-navy);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; font-family: var(--ty-sans); letter-spacing: .05em; text-transform: uppercase; }

p { margin-bottom: 1.25rem; }
p:last-child { margin-bottom: 0; }

.ty-lead { font-size: 1.15rem; line-height: 1.85; color: var(--ty-text-mid); }
.ty-overline { font-family: var(--ty-sans); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ty-gold); display: block; margin-bottom: 0.6rem; }
.ty-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ty-gold); margin-bottom: 1rem; }
.ty-eyebrow::before { content: ''; display: block; width: 32px; height: 2px; background: var(--ty-gold); flex-shrink: 0; }

blockquote {
  border-left: 4px solid var(--ty-gold);
  padding: 1.2rem 1.8rem;
  margin: 2rem 0;
  background: var(--ty-gold-pale);
  border-radius: 0 var(--ty-radius-md) var(--ty-radius-md) 0;
}
blockquote p { font-family: var(--ty-serif); font-size: 1.2rem; font-style: italic; color: var(--ty-navy); margin: 0; }
blockquote cite { display: block; margin-top: 0.75rem; font-size: 0.85rem; color: var(--ty-text-mid); font-style: normal; }

/* ═══════════════════════════════════════════════════════════
   4. LAYOUT & GRID
═══════════════════════════════════════════════════════════ */
.ty-container {
  width: 100%;
  max-width: var(--ty-container);
  margin: 0 auto;
  padding: 0 24px;
}
.ty-container--sm { max-width: var(--ty-container-sm); }
.ty-container--wide { max-width: 1440px; }

.ty-section { padding: var(--ty-section) 0; }
.ty-section--sm { padding: var(--ty-section-sm) 0; }

.ty-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--ty-gap); }
.ty-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--ty-gap); }
.ty-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--ty-gap); }

.ty-flex { display: flex; }
.ty-flex-center { display: flex; align-items: center; justify-content: center; }
.ty-flex-between { display: flex; align-items: center; justify-content: space-between; }

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

/* ═══════════════════════════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════════════════════════ */
.ty-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--ty-radius);
  font-family: var(--ty-sans);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all var(--ty-trans);
  cursor: pointer;
  white-space: nowrap;
}
.ty-btn--primary {
  background: var(--ty-gold);
  color: var(--ty-navy);
  border: 2px solid var(--ty-gold);
}
.ty-btn--primary:hover {
  background: var(--ty-gold-hover);
  border-color: var(--ty-gold-hover);
  color: var(--ty-navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.ty-btn--outline {
  background: transparent;
  color: var(--ty-gold);
  border: 2px solid var(--ty-gold);
}
.ty-btn--outline:hover {
  background: var(--ty-gold);
  color: var(--ty-navy);
  transform: translateY(-2px);
}
.ty-btn--outline-white {
  background: transparent;
  color: var(--ty-white);
  border: 2px solid rgba(255,255,255,0.5);
}
.ty-btn--outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--ty-white);
  color: var(--ty-white);
}
.ty-btn--sm { padding: 10px 22px; font-size: 0.8rem; }
.ty-btn--lg { padding: 18px 42px; font-size: 0.95rem; }
.ty-btn-group { display: flex; gap: 14px; flex-wrap: wrap; }

/* ═══════════════════════════════════════════════════════════
   6. NAVIGATION
═══════════════════════════════════════════════════════════ */
.ty-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  padding: 22px 0;
  transition: all var(--ty-trans);
}
.ty-nav.scrolled {
  background: var(--ty-navy);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(10,31,68,0.3);
}
.ty-nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.ty-nav__logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ty-nav__logo-mark {
  width: 44px;
  height: 44px;
  background: var(--ty-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--ty-serif);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--ty-navy);
  letter-spacing: -0.03em;
}
.ty-nav__logo-text {
  display: flex;
  flex-direction: column;
}
.ty-nav__logo-name {
  font-family: var(--ty-serif);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ty-white);
  line-height: 1.2;
}
.ty-nav__logo-title {
  font-family: var(--ty-sans);
  font-size: 0.68rem;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ty-nav__menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.ty-nav__menu a {
  font-family: var(--ty-sans);
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: all var(--ty-trans);
}
.ty-nav__menu a:hover,
.ty-nav__menu .current-menu-item > a {
  color: var(--ty-gold);
  border-bottom-color: var(--ty-gold);
}
.ty-nav__cta { margin-left: 16px; }
.ty-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.ty-nav__hamburger span {
  display: block;
  height: 2px;
  background: var(--ty-white);
  border-radius: 2px;
  transition: all var(--ty-trans);
}
.ty-nav__hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ty-nav__hamburger.active span:nth-child(2) { opacity: 0; }
.ty-nav__hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.ty-nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--ty-navy);
  z-index: 998;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.ty-nav__mobile.open { display: flex; }
.ty-nav__mobile a {
  font-family: var(--ty-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--ty-white);
  text-decoration: none;
  transition: color var(--ty-trans);
}
.ty-nav__mobile a:hover { color: var(--ty-gold); }

/* ═══════════════════════════════════════════════════════════
   7. PAGE HEADER (inner pages)
═══════════════════════════════════════════════════════════ */
.ty-page-header {
  background: var(--ty-navy);
  padding: 140px 0 72px;
  position: relative;
  overflow: hidden;
}
.ty-page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.ty-page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(to right, var(--ty-gold), var(--ty-gold-light), var(--ty-gold));
}
.ty-page-header__title {
  color: var(--ty-white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 0.5rem;
}
.ty-page-header__subtitle {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  margin: 0;
}
.ty-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}
.ty-breadcrumb a { color: var(--ty-gold); text-decoration: none; }
.ty-breadcrumb a:hover { color: var(--ty-gold-light); }
.ty-breadcrumb__sep { font-size: 0.6rem; opacity: 0.5; }
.ty-breadcrumb__current { color: rgba(255,255,255,0.7); }

/* ═══════════════════════════════════════════════════════════
   8. HOMEPAGE HERO
═══════════════════════════════════════════════════════════ */
.ty-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ty-navy);
  overflow: hidden;
}
.ty-hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 20% 60%, rgba(201,168,76,0.07) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 30%, rgba(28,63,122,0.4) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255,255,255,0.012) 40px,
      rgba(255,255,255,0.012) 80px
    );
  pointer-events: none;
}
.ty-hero__content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.ty-hero__pretitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ty-gold);
  margin-bottom: 1.5rem;
}
.ty-hero__pretitle::before,
.ty-hero__pretitle::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: var(--ty-gold);
}
.ty-hero__name {
  font-family: var(--ty-serif);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--ty-white);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.ty-hero__name span { color: var(--ty-gold); }
.ty-hero__roles {
  font-family: var(--ty-sans);
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  font-weight: 400;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.ty-hero__roles span { color: var(--ty-gold); font-weight: 600; }
.ty-hero__tagline {
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-style: italic;
  font-family: var(--ty-serif);
}
.ty-hero__divider {
  width: 64px;
  height: 3px;
  background: var(--ty-gold);
  margin-bottom: 2rem;
}
.ty-hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.4);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: ty-bounce 2s ease-in-out infinite;
}
.ty-hero__scroll i { font-size: 1.1rem; }
.ty-hero__image-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  background: linear-gradient(135deg, rgba(18,41,82,0.6) 0%, rgba(201,168,76,0.08) 100%);
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ty-hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
  mix-blend-mode: luminosity;
}
.ty-hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--ty-navy) 0%, transparent 40%);
}

/* ═══════════════════════════════════════════════════════════
   9. ABOUT PREVIEW SECTION
═══════════════════════════════════════════════════════════ */
.ty-about-preview {
  background: var(--ty-white);
  padding: var(--ty-section) 0;
}
.ty-about-preview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ty-about-preview__image-wrap {
  position: relative;
}
.ty-about-preview__image {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--ty-radius-md);
  display: block;
}
.ty-about-preview__image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--ty-navy) 0%, var(--ty-navy-light) 100%);
  border-radius: var(--ty-radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 6rem;
}
.ty-about-preview__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--ty-gold);
  color: var(--ty-navy);
  width: 120px;
  height: 120px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: var(--ty-serif);
  box-shadow: var(--ty-shadow-md);
}
.ty-about-preview__badge-num {
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
}
.ty-about-preview__badge-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.2;
  margin-top: 4px;
  padding: 0 8px;
}
.ty-about-preview__content { padding-right: 24px; }
.ty-about-preview__title { margin-bottom: 1.5rem; }
.ty-about-preview__text { color: var(--ty-text-mid); margin-bottom: 2rem; line-height: 1.85; }

.ty-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ty-border);
}
.ty-stat__number {
  font-family: var(--ty-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ty-navy);
  line-height: 1;
  display: block;
}
.ty-stat__number span { color: var(--ty-gold); }
.ty-stat__label {
  font-size: 0.8rem;
  color: var(--ty-text-light);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: block;
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   10. FOCUS AREAS
═══════════════════════════════════════════════════════════ */
.ty-focus-areas {
  background: var(--ty-cream);
  padding: var(--ty-section) 0;
}
.ty-focus-areas__header {
  text-align: center;
  margin-bottom: 60px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.ty-focus-card {
  background: var(--ty-white);
  border-radius: var(--ty-radius-lg);
  padding: 48px 40px;
  box-shadow: var(--ty-shadow);
  transition: all var(--ty-trans);
  border-bottom: 4px solid transparent;
  position: relative;
  overflow: hidden;
}
.ty-focus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, var(--ty-gold), var(--ty-gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ty-trans);
}
.ty-focus-card:hover { transform: translateY(-6px); box-shadow: var(--ty-shadow-lg); }
.ty-focus-card:hover::before { transform: scaleX(1); }
.ty-focus-card__icon {
  width: 68px;
  height: 68px;
  background: var(--ty-gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--ty-gold);
  margin-bottom: 1.5rem;
  transition: all var(--ty-trans);
}
.ty-focus-card:hover .ty-focus-card__icon {
  background: var(--ty-gold);
  color: var(--ty-navy);
}
.ty-focus-card__title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--ty-navy);
}
.ty-focus-card__text { color: var(--ty-text-mid); font-size: 0.95rem; line-height: 1.75; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   11. SCHOLARSHIP TEASER
═══════════════════════════════════════════════════════════ */
.ty-sch-teaser {
  background: var(--ty-navy);
  padding: var(--ty-section) 0;
  position: relative;
  overflow: hidden;
}
.ty-sch-teaser::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 80px solid rgba(201,168,76,0.06);
  pointer-events: none;
}
.ty-sch-teaser__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 60px;
}
.ty-sch-teaser__badge {
  width: 80px;
  height: 80px;
  background: rgba(201,168,76,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--ty-gold);
  margin-bottom: 1.5rem;
}
.ty-sch-teaser__title { color: var(--ty-white); margin-bottom: 1rem; }
.ty-sch-teaser__text { color: rgba(255,255,255,0.65); max-width: 640px; line-height: 1.8; margin: 0; }
.ty-sch-teaser__cta { flex-shrink: 0; text-align: center; }
.ty-sch-teaser__amount {
  font-family: var(--ty-serif);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--ty-gold);
  display: block;
  margin-bottom: 0.25rem;
}
.ty-sch-teaser__amount-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  display: block;
  margin-bottom: 1.5rem;
}

/* ═══════════════════════════════════════════════════════════
   12. READING PREVIEW (Homepage)
═══════════════════════════════════════════════════════════ */
.ty-reading-preview {
  background: var(--ty-off-white);
  padding: var(--ty-section) 0;
}
.ty-reading-preview__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
}
.ty-book-card-mini {
  background: var(--ty-white);
  border-radius: var(--ty-radius-md);
  overflow: hidden;
  box-shadow: var(--ty-shadow);
  transition: all var(--ty-trans);
  display: flex;
  gap: 0;
}
.ty-book-card-mini:hover { transform: translateY(-4px); box-shadow: var(--ty-shadow-md); }
.ty-book-card-mini__cover {
  width: 100px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--ty-navy) 0%, var(--ty-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 2rem;
  min-height: 160px;
}
.ty-book-card-mini__cover img { width: 100%; height: 100%; object-fit: cover; }
.ty-book-card-mini__content { padding: 20px; }
.ty-book-card-mini__status {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ty-gold);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 6px;
}
.ty-book-card-mini__status::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--ty-gold); }
.ty-book-card-mini__title {
  font-family: var(--ty-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ty-navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ty-book-card-mini__author { font-size: 0.82rem; color: var(--ty-text-mid); margin-bottom: 0.5rem; }
.ty-book-card-mini__note { font-size: 0.82rem; color: var(--ty-text-light); font-style: italic; line-height: 1.5; }

/* ═══════════════════════════════════════════════════════════
   13. ARTICLES GRID (Homepage + Archive)
═══════════════════════════════════════════════════════════ */
.ty-articles {
  background: var(--ty-cream);
  padding: var(--ty-section) 0;
}
.ty-article-card {
  background: var(--ty-white);
  border-radius: var(--ty-radius-md);
  overflow: hidden;
  box-shadow: var(--ty-shadow);
  transition: all var(--ty-trans);
  display: flex;
  flex-direction: column;
}
.ty-article-card:hover { transform: translateY(-6px); box-shadow: var(--ty-shadow-md); }
.ty-article-card__thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--ty-navy) 0%, var(--ty-navy-light) 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.15);
  font-size: 3rem;
}
.ty-article-card__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.ty-article-card:hover .ty-article-card__thumb img { transform: scale(1.05); }
.ty-article-card__body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.ty-article-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.78rem;
}
.ty-article-card__cat {
  background: var(--ty-gold-pale);
  color: var(--ty-gold-hover);
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.ty-article-card__date { color: var(--ty-text-light); }
.ty-article-card__title {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  flex: 1;
}
.ty-article-card__title a { color: var(--ty-navy); text-decoration: none; transition: color var(--ty-trans); }
.ty-article-card__title a:hover { color: var(--ty-gold-hover); }
.ty-article-card__excerpt { font-size: 0.9rem; color: var(--ty-text-mid); line-height: 1.7; margin-bottom: 1.25rem; }
.ty-article-card__read-more {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ty-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: gap var(--ty-trans);
}
.ty-article-card__read-more:hover { gap: 12px; color: var(--ty-gold-hover); }

/* ═══════════════════════════════════════════════════════════
   14. SECTION HEADERS
═══════════════════════════════════════════════════════════ */
.ty-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 56px;
}
.ty-section-header--left { text-align: left; margin-left: 0; }
.ty-section-header__title { margin-bottom: 1rem; }
.ty-section-header__text { color: var(--ty-text-mid); font-size: 1.05rem; line-height: 1.8; margin: 0; }
.ty-section-header__link { display: inline-block; margin-top: 0.75rem; }

/* ═══════════════════════════════════════════════════════════
   15. READING LIST PAGE
═══════════════════════════════════════════════════════════ */
.ty-reading-page { background: var(--ty-cream); min-height: 60vh; }

.ty-reading-stats {
  background: var(--ty-white);
  padding: 48px 0;
  border-bottom: 1px solid var(--ty-border);
}
.ty-reading-stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--ty-border);
  border: 1px solid var(--ty-border);
  border-radius: var(--ty-radius-md);
  overflow: hidden;
}
.ty-reading-stat {
  background: var(--ty-white);
  padding: 32px 24px;
  text-align: center;
}
.ty-reading-stat__num {
  font-family: var(--ty-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--ty-navy);
  display: block;
  line-height: 1;
}
.ty-reading-stat__num span { color: var(--ty-gold); }
.ty-reading-stat__label {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ty-text-light);
  display: block;
  margin-top: 8px;
  font-weight: 500;
}

/* Tabs */
.ty-reading-tabs-wrap {
  background: var(--ty-white);
  border-bottom: 1px solid var(--ty-border);
  position: sticky;
  top: 70px;
  z-index: 10;
}
.ty-reading-tabs {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0;
  overflow-x: auto;
}
.ty-reading-tab {
  padding: 18px 36px;
  font-family: var(--ty-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ty-text-light);
  border: none;
  background: none;
  cursor: pointer;
  border-bottom: 3px solid transparent;
  transition: all var(--ty-trans);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ty-reading-tab:hover { color: var(--ty-navy); }
.ty-reading-tab.active {
  color: var(--ty-gold-hover);
  border-bottom-color: var(--ty-gold);
}
.ty-reading-tab__count {
  background: var(--ty-gold-pale);
  color: var(--ty-gold-hover);
  font-size: 0.7rem;
  padding: 2px 7px;
  border-radius: 100px;
  font-weight: 700;
}
.ty-reading-tab.active .ty-reading-tab__count {
  background: var(--ty-gold);
  color: var(--ty-navy);
}

/* Genre Filters */
.ty-genre-filter {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 24px 0;
}
.ty-genre-filter__label {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ty-text-light);
  margin-right: 4px;
}
.ty-genre-pill {
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--ty-border-dark);
  background: var(--ty-white);
  color: var(--ty-text-mid);
  transition: all var(--ty-trans);
}
.ty-genre-pill:hover { border-color: var(--ty-gold); color: var(--ty-gold-hover); }
.ty-genre-pill.active {
  background: var(--ty-gold);
  border-color: var(--ty-gold);
  color: var(--ty-navy);
  font-weight: 600;
}

/* Book Grid */
.ty-book-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.ty-book-card {
  background: var(--ty-white);
  border-radius: var(--ty-radius-md);
  overflow: hidden;
  box-shadow: var(--ty-shadow);
  transition: all var(--ty-trans);
  display: flex;
  flex-direction: column;
}
.ty-book-card:hover { transform: translateY(-5px); box-shadow: var(--ty-shadow-md); }
.ty-book-card__cover {
  aspect-ratio: 2/3;
  background: linear-gradient(160deg, var(--ty-navy) 0%, var(--ty-navy-light) 100%);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 4rem;
}
.ty-book-card__cover img { width: 100%; height: 100%; object-fit: cover; }
.ty-book-card__status-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 12px;
  border-radius: 100px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ty-book-card__status-badge--reading {
  background: var(--ty-gold);
  color: var(--ty-navy);
}
.ty-book-card__status-badge--read {
  background: rgba(255,255,255,0.15);
  color: var(--ty-white);
  backdrop-filter: blur(8px);
}
.ty-book-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.ty-book-card__genre {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ty-gold);
  margin-bottom: 6px;
}
.ty-book-card__title {
  font-family: var(--ty-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ty-navy);
  line-height: 1.3;
  margin-bottom: 4px;
}
.ty-book-card__author { font-size: 0.85rem; color: var(--ty-text-mid); margin-bottom: 10px; }
.ty-book-card__meta { display: flex; align-items: center; gap: 12px; font-size: 0.78rem; color: var(--ty-text-light); margin-bottom: 12px; }
.ty-book-card__note { font-size: 0.85rem; color: var(--ty-text-mid); font-style: italic; line-height: 1.6; margin-top: auto; padding-top: 12px; border-top: 1px solid var(--ty-border); }
.ty-stars { color: var(--ty-gold); font-size: 0.85rem; letter-spacing: 2px; }
.ty-stars .fa-star { margin-right: 1px; }

.ty-reading-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--ty-text-light);
}
.ty-reading-empty i { font-size: 3rem; display: block; margin-bottom: 1rem; }

/* ═══════════════════════════════════════════════════════════
   16. SCHOLARSHIP PAGE
═══════════════════════════════════════════════════════════ */
.ty-sch-page { background: var(--ty-cream); }

.ty-sch-hero {
  background: var(--ty-navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.ty-sch-hero::before {
  content: '';
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  border-radius: 50%;
  border: 100px solid rgba(201,168,76,0.05);
}
.ty-sch-hero__icon {
  width: 96px; height: 96px;
  background: rgba(201,168,76,0.12);
  border: 2px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--ty-gold);
  margin: 0 auto 2rem;
}
.ty-sch-hero__title { color: var(--ty-white); margin-bottom: 1rem; font-size: clamp(2rem, 5vw, 3.5rem); }
.ty-sch-hero__subtitle { color: rgba(255,255,255,0.65); font-size: 1.15rem; max-width: 560px; margin: 0 auto 2.5rem; }
.ty-sch-hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--ty-gold);
  padding: 10px 24px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
}

.ty-sch-overview {
  background: var(--ty-white);
  padding: var(--ty-section) 0;
}
.ty-sch-overview__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.ty-sch-overview__text { color: var(--ty-text-mid); line-height: 1.85; }

/* Eligibility */
.ty-sch-eligibility { background: var(--ty-cream); padding: var(--ty-section) 0; }
.ty-sch-criteria { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 2rem; }
.ty-sch-criterion {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--ty-white);
  border-radius: var(--ty-radius-md);
  padding: 20px 24px;
  box-shadow: 0 2px 12px rgba(10,31,68,0.06);
}
.ty-sch-criterion__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--ty-gold-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ty-gold);
  font-size: 1rem;
}
.ty-sch-criterion__text { font-size: 0.92rem; color: var(--ty-text); line-height: 1.6; }
.ty-sch-criterion__text strong { color: var(--ty-navy); display: block; margin-bottom: 2px; }

/* Benefits */
.ty-sch-benefits { background: var(--ty-navy); padding: var(--ty-section) 0; }
.ty-sch-benefits__title { color: var(--ty-white); }
.ty-sch-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 3rem; }
.ty-sch-benefit {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--ty-radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--ty-trans);
}
.ty-sch-benefit:hover {
  background: rgba(201,168,76,0.08);
  border-color: rgba(201,168,76,0.2);
  transform: translateY(-4px);
}
.ty-sch-benefit__icon { font-size: 2rem; color: var(--ty-gold); margin-bottom: 1rem; }
.ty-sch-benefit__title { color: var(--ty-white); font-size: 1rem; margin-bottom: 0.5rem; }
.ty-sch-benefit__text { color: rgba(255,255,255,0.55); font-size: 0.88rem; line-height: 1.65; margin: 0; }

/* How to Apply - Steps */
.ty-sch-steps { background: var(--ty-white); padding: var(--ty-section) 0; }
.ty-steps-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0; }
.ty-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  position: relative;
  padding-bottom: 40px;
}
.ty-step:last-child { padding-bottom: 0; }
.ty-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ty-gold), var(--ty-border));
}
.ty-step__num {
  width: 80px; height: 80px; flex-shrink: 0;
  background: var(--ty-navy);
  color: var(--ty-gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--ty-serif);
  font-size: 1.5rem;
  font-weight: 800;
  position: relative;
  z-index: 1;
}
.ty-step__content { padding-top: 20px; }
.ty-step__title { font-size: 1.2rem; margin-bottom: 0.5rem; }
.ty-step__text { color: var(--ty-text-mid); line-height: 1.75; margin: 0; }

/* Timeline */
.ty-sch-timeline { background: var(--ty-cream); padding: var(--ty-section) 0; }
.ty-timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 3rem; }
.ty-timeline-item {
  background: var(--ty-white);
  border-radius: var(--ty-radius-md);
  padding: 28px 24px;
  border-top: 4px solid var(--ty-border);
  transition: border-color var(--ty-trans);
}
.ty-timeline-item.active { border-top-color: var(--ty-gold); }
.ty-timeline-item__date { font-family: var(--ty-serif); font-size: 1.3rem; font-weight: 700; color: var(--ty-gold); margin-bottom: 0.25rem; }
.ty-timeline-item__label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ty-navy); margin-bottom: 0.5rem; }
.ty-timeline-item__desc { font-size: 0.85rem; color: var(--ty-text-light); line-height: 1.6; margin: 0; }

/* FAQ */
.ty-sch-faq { background: var(--ty-white); padding: var(--ty-section) 0; }
.ty-faq-list { max-width: 760px; margin: 3rem auto 0; }
.ty-faq-item {
  border-bottom: 1px solid var(--ty-border);
}
.ty-faq-item:first-child { border-top: 1px solid var(--ty-border); }
.ty-faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  text-align: left;
  font-family: var(--ty-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--ty-navy);
  cursor: pointer;
  background: none;
  border: none;
}
.ty-faq-question i { color: var(--ty-gold); transition: transform var(--ty-trans); flex-shrink: 0; }
.ty-faq-item.open .ty-faq-question i { transform: rotate(45deg); }
.ty-faq-answer { display: none; padding: 0 0 22px; }
.ty-faq-item.open .ty-faq-answer { display: block; }
.ty-faq-answer p { color: var(--ty-text-mid); line-height: 1.8; margin: 0; }

/* Application Form */
.ty-sch-apply { background: var(--ty-cream); padding: var(--ty-section) 0; }
.ty-apply-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  background: var(--ty-white);
  border-radius: var(--ty-radius-lg);
  padding: 56px;
  box-shadow: var(--ty-shadow-md);
}
.ty-apply-form-wrap .ty-section-header { margin-bottom: 2.5rem; }

/* ═══════════════════════════════════════════════════════════
   17. FORMS
═══════════════════════════════════════════════════════════ */
.ty-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.ty-form-field { margin-bottom: 20px; }
.ty-form-field--full { grid-column: 1 / -1; }
.ty-form-label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ty-navy);
  margin-bottom: 8px;
}
.ty-form-label span { color: var(--ty-crimson); }
.ty-form-input,
.ty-form-select,
.ty-form-textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid var(--ty-border);
  border-radius: var(--ty-radius);
  font-family: var(--ty-sans);
  font-size: 0.95rem;
  color: var(--ty-text);
  background: var(--ty-off-white);
  transition: border-color var(--ty-trans), box-shadow var(--ty-trans);
  outline: none;
}
.ty-form-input:focus,
.ty-form-select:focus,
.ty-form-textarea:focus {
  border-color: var(--ty-gold);
  background: var(--ty-white);
  box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}
.ty-form-textarea { min-height: 160px; resize: vertical; }
.ty-form-note { font-size: 0.8rem; color: var(--ty-text-light); margin-top: 6px; }
.ty-form-submit { margin-top: 8px; }
.ty-form-response {
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: var(--ty-radius);
  font-size: 0.9rem;
  display: none;
}
.ty-form-response.success { background: rgba(39,103,73,0.1); color: var(--ty-success); border: 1px solid rgba(39,103,73,0.2); }
.ty-form-response.error   { background: rgba(192,57,43,0.08); color: var(--ty-error);   border: 1px solid rgba(192,57,43,0.2); }

/* ═══════════════════════════════════════════════════════════
   18. ABOUT PAGE
═══════════════════════════════════════════════════════════ */
.ty-about-page { background: var(--ty-cream); }
.ty-about-intro {
  background: var(--ty-white);
  padding: var(--ty-section) 0;
}
.ty-about-intro__grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: start;
}
.ty-about-intro__portrait {
  border-radius: var(--ty-radius-md);
  overflow: hidden;
  box-shadow: var(--ty-shadow-md);
  position: sticky;
  top: 100px;
}
.ty-about-intro__portrait img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.ty-about-intro__portrait-ph {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--ty-navy) 0%, var(--ty-navy-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.1);
  font-size: 6rem;
}

/* Timeline */
.ty-about-timeline { background: var(--ty-navy); padding: var(--ty-section) 0; }
.ty-about-timeline .ty-section-header .ty-overline,
.ty-about-timeline .ty-section-header .ty-eyebrow { color: var(--ty-gold); }
.ty-about-timeline .ty-section-header__title { color: var(--ty-white); }
.ty-about-timeline .ty-section-header__text { color: rgba(255,255,255,0.6); }
.ty-timeline-list { max-width: 740px; margin: 3rem auto 0; position: relative; }
.ty-timeline-list::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--ty-gold), rgba(201,168,76,0.1));
}
.ty-timeline-entry {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 32px;
  padding-bottom: 48px;
}
.ty-timeline-entry:last-child { padding-bottom: 0; }
.ty-timeline-entry__dot {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--ty-navy);
  border: 3px solid var(--ty-gold);
  display: flex; align-items: center; justify-content: center;
  position: relative; z-index: 1;
  font-family: var(--ty-serif);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--ty-gold);
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
}
.ty-timeline-entry__body { padding-top: 12px; }
.ty-timeline-entry__year {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ty-gold);
  margin-bottom: 4px;
}
.ty-timeline-entry__title { color: var(--ty-white); font-size: 1.1rem; margin-bottom: 0.4rem; }
.ty-timeline-entry__text { color: rgba(255,255,255,0.55); font-size: 0.9rem; line-height: 1.7; margin: 0; }

/* ═══════════════════════════════════════════════════════════
   19. SINGLE POST
═══════════════════════════════════════════════════════════ */
.ty-single { background: var(--ty-cream); }
.ty-single-content { background: var(--ty-white); }
.ty-single__wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px;
}
.ty-single__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  font-size: 0.82rem;
  color: var(--ty-text-light);
}
.ty-single__cat {
  background: var(--ty-gold-pale);
  color: var(--ty-gold-hover);
  padding: 4px 12px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.ty-single__title { margin-bottom: 1rem; font-size: clamp(1.8rem, 4vw, 2.8rem); }
.ty-single__entry-content { font-size: 1.05rem; line-height: 1.85; color: var(--ty-text); }
.ty-single__entry-content h2 { margin-top: 2.5rem; margin-bottom: 1rem; }
.ty-single__entry-content h3 { margin-top: 2rem; margin-bottom: 0.75rem; }
.ty-single__entry-content p  { margin-bottom: 1.5rem; }
.ty-single__entry-content a  { color: var(--ty-gold-hover); text-decoration: underline; }
.ty-single__entry-content ul,
.ty-single__entry-content ol { padding-left: 1.5rem; margin-bottom: 1.5rem; }
.ty-single__entry-content ul { list-style: disc; }
.ty-single__entry-content ol { list-style: decimal; }
.ty-single__entry-content li { margin-bottom: 0.5rem; }
.ty-single__entry-content img { border-radius: var(--ty-radius-md); margin: 2rem auto; box-shadow: var(--ty-shadow); }
.ty-single__featured-img {
  border-radius: var(--ty-radius-md);
  overflow: hidden;
  margin-bottom: 2.5rem;
  box-shadow: var(--ty-shadow);
}
.ty-single__featured-img img { width: 100%; display: block; }
.ty-post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: 48px 0; border-top: 1px solid var(--ty-border); }
.ty-post-nav__prev a, .ty-post-nav__next a { text-decoration: none; display: block; }
.ty-post-nav__label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ty-gold); font-weight: 600; margin-bottom: 4px; }
.ty-post-nav__title { font-family: var(--ty-serif); font-weight: 700; color: var(--ty-navy); font-size: 1rem; transition: color var(--ty-trans); }
.ty-post-nav__prev a:hover .ty-post-nav__title,
.ty-post-nav__next a:hover .ty-post-nav__title { color: var(--ty-gold-hover); }
.ty-post-nav__next { text-align: right; }

/* ═══════════════════════════════════════════════════════════
   20. ARCHIVE PAGE
═══════════════════════════════════════════════════════════ */
.ty-archive { background: var(--ty-cream); }
.ty-archive-grid { display: grid; grid-template-columns: 1fr 320px; gap: 48px; padding: 64px 0; }
.ty-archive__posts { display: flex; flex-direction: column; gap: 32px; }
.ty-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 48px 0;
}
.ty-pagination a,
.ty-pagination span {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--ty-radius);
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: var(--ty-text-mid);
  border: 1px solid var(--ty-border);
  background: var(--ty-white);
  transition: all var(--ty-trans);
}
.ty-pagination a:hover { background: var(--ty-gold-pale); color: var(--ty-navy); border-color: var(--ty-gold); }
.ty-pagination .current { background: var(--ty-navy); color: var(--ty-gold); border-color: var(--ty-navy); }

/* ═══════════════════════════════════════════════════════════
   21. 404 PAGE
═══════════════════════════════════════════════════════════ */
.ty-404 {
  background: var(--ty-cream);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
}
.ty-404__num {
  font-family: var(--ty-serif);
  font-size: clamp(6rem, 15vw, 12rem);
  font-weight: 900;
  color: var(--ty-navy);
  opacity: 0.08;
  line-height: 1;
  display: block;
  margin-bottom: -1rem;
}
.ty-404__title { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1rem; }
.ty-404__text { color: var(--ty-text-mid); max-width: 480px; margin: 0 auto 2rem; }

/* ═══════════════════════════════════════════════════════════
   22. FOOTER
═══════════════════════════════════════════════════════════ */
.ty-footer {
  background: var(--ty-charcoal);
  color: rgba(255,255,255,0.65);
}
.ty-footer__top { padding: 80px 0 60px; }
.ty-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
}
.ty-footer__brand {}
.ty-footer__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 1.25rem;
}
.ty-footer__logo-mark {
  width: 44px; height: 44px;
  background: var(--ty-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ty-serif);
  font-weight: 800;
  font-size: 1rem;
  color: var(--ty-navy);
  flex-shrink: 0;
}
.ty-footer__logo-text {
  font-family: var(--ty-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ty-white);
}
.ty-footer__bio { font-size: 0.9rem; line-height: 1.75; margin-bottom: 1.5rem; max-width: 300px; }
.ty-footer__col-title {
  font-family: var(--ty-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ty-gold);
  margin-bottom: 1.25rem;
}
.ty-footer__nav { display: flex; flex-direction: column; gap: 10px; }
.ty-footer__nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--ty-trans);
}
.ty-footer__nav a:hover { color: var(--ty-gold-light); }
.ty-footer__contact { display: flex; flex-direction: column; gap: 12px; }
.ty-footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
}
.ty-footer__contact-item i { color: var(--ty-gold); width: 16px; text-align: center; }
.ty-footer__contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color var(--ty-trans); }
.ty-footer__contact-item a:hover { color: var(--ty-gold-light); }
.ty-social-links { display: flex; gap: 12px; margin-top: 1.5rem; }
.ty-social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  text-decoration: none;
  transition: all var(--ty-trans);
  border: 1px solid rgba(255,255,255,0.08);
}
.ty-social-link:hover {
  background: var(--ty-gold);
  color: var(--ty-navy);
  border-color: var(--ty-gold);
  transform: translateY(-2px);
}
.ty-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.ty-footer__copyright { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.ty-footer__credit { font-size: 0.82rem; color: rgba(255,255,255,0.3); }
.ty-footer__credit a { color: var(--ty-gold); text-decoration: none; }
.ty-back-top {
  width: 44px; height: 44px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--ty-gold);
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--ty-trans);
  text-decoration: none;
}
.ty-back-top:hover { background: var(--ty-gold); color: var(--ty-navy); }

/* ═══════════════════════════════════════════════════════════
   23. UTILITIES
═══════════════════════════════════════════════════════════ */
.ty-gold-line {
  width: 48px; height: 3px;
  background: var(--ty-gold);
  border-radius: 2px;
  margin-bottom: 1.25rem;
}
.ty-gold-line--center { margin-left: auto; margin-right: auto; }
.ty-divider {
  border: none;
  border-top: 1px solid var(--ty-border);
  margin: 3rem 0;
}
.ty-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ty-badge--gold { background: var(--ty-gold-pale); color: var(--ty-gold-hover); }
.ty-badge--navy { background: var(--ty-navy); color: var(--ty-gold); }
.hidden, [data-hidden="true"] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ═══════════════════════════════════════════════════════════
   24. ANIMATIONS
═══════════════════════════════════════════════════════════ */
@keyframes ty-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}
@keyframes ty-fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ty-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.ty-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s ease, transform 0.65s ease; }
.ty-reveal.in-view { opacity: 1; transform: translateY(0); }
.ty-reveal-delay-1 { transition-delay: 0.1s; }
.ty-reveal-delay-2 { transition-delay: 0.2s; }
.ty-reveal-delay-3 { transition-delay: 0.3s; }
.ty-reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   25. RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .ty-grid-3 { grid-template-columns: repeat(2, 1fr); }
  .ty-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ty-about-preview__grid { gap: 50px; }
  .ty-sch-overview__grid { gap: 48px; }
  .ty-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  :root { --ty-section: 72px; }
  .ty-nav__menu, .ty-nav__cta.desktop-only { display: none; }
  .ty-nav__hamburger { display: flex; }
  .ty-hero__image-accent { display: none; }
  .ty-hero__content { max-width: 100%; }
  .ty-about-preview__grid { grid-template-columns: 1fr; gap: 40px; }
  .ty-about-preview__badge { right: 16px; bottom: -16px; width: 100px; height: 100px; }
  .ty-about-preview__badge-num { font-size: 1.6rem; }
  .ty-sch-teaser__inner { grid-template-columns: 1fr; gap: 32px; }
  .ty-sch-overview__grid { grid-template-columns: 1fr; gap: 36px; }
  .ty-sch-criteria { grid-template-columns: 1fr; }
  .ty-sch-benefit-grid { grid-template-columns: 1fr 1fr; }
  .ty-timeline { grid-template-columns: 1fr 1fr; }
  .ty-book-grid { grid-template-columns: repeat(2, 1fr); }
  .ty-reading-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .ty-about-intro__grid { grid-template-columns: 1fr; }
  .ty-about-intro__portrait { position: static; max-width: 360px; }
  .ty-archive-grid { grid-template-columns: 1fr; }
  .ty-apply-form-wrap { padding: 36px 28px; }
  .ty-stats { grid-template-columns: 1fr 1fr 1fr; }
  .ty-footer__grid { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 600px) {
  :root { --ty-section: 56px; }
  .ty-grid-2, .ty-grid-3, .ty-grid-4 { grid-template-columns: 1fr; }
  .ty-stats { grid-template-columns: 1fr; text-align: center; }
  .ty-book-grid { grid-template-columns: 1fr; }
  .ty-sch-benefit-grid { grid-template-columns: 1fr; }
  .ty-timeline { grid-template-columns: 1fr; }
  .ty-reading-stats__grid { grid-template-columns: 1fr 1fr; }
  .ty-form-grid { grid-template-columns: 1fr; }
  .ty-apply-form-wrap { padding: 28px 20px; }
  .ty-post-nav { grid-template-columns: 1fr; }
  .ty-reading-preview__header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .ty-footer__bottom { flex-direction: column; text-align: center; }
}

@media print {
  .ty-nav, .ty-hero__scroll, .ty-footer { display: none; }
  body { background: white; }
}
