/* =========================================
   Mia Siner — miasiner.com
   Shared stylesheet across all pages.
   ========================================= */

:root {
  /* Warm, earthy light palette — calming spa/studio vibe */
  --bg: #f5efe3;            /* warm oat cream */
  --bg-elev: #faf4e8;       /* slightly lighter cream */
  --bg-card: #fdf9ef;       /* softest cream for cards */
  --bg-card-hover: #f8f2e4; /* card hover */
  --border: #e2d6bd;        /* warm tan border */
  --border-hover: #cfbc9b;  /* deeper tan on hover */
  --text: #3a2e23;          /* dark coffee */
  --text-dim: #6b5a48;      /* warm brown */
  --text-muted: #998771;    /* muted warm tan */
  --accent: #a25d3a;        /* terracotta / warm clay */
  --accent-soft: rgba(162, 93, 58, 0.12);
  --accent-glow: rgba(162, 93, 58, 0.28);
  --gradient: linear-gradient(135deg, #a25d3a 0%, #c48758 100%);
  /* Button text — explicit so the dark-on-accent contrast is always clean */
  --on-accent: #fdf9ef;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 10%, rgba(162, 93, 58, 0.07), transparent 45%),
    radial-gradient(circle at 80% 85%, rgba(140, 155, 105, 0.06), transparent 45%);
  pointer-events: none;
  z-index: -1;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

main { flex: 1; }

/* =========================================
   NAV
   ========================================= */
nav.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(14px);
  background: rgba(245, 239, 227, 0.82);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
}
.logo {
  font-family: 'Fraunces', serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}
.logo span { color: var(--accent); }
.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a.current {
  color: var(--accent);
}
.nav-links a.current::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

@media (max-width: 760px) {
  nav.site-nav { padding: 1rem 1rem; }
  .nav-links { gap: 1rem; font-size: 0.85rem; }
  .nav-links a { font-size: 0.82rem; }
}

/* =========================================
   TYPE
   ========================================= */
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}
h1 .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
  font-weight: 400;
}

h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 2.5rem;
  max-width: 720px;
}
h2 .accent {
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}

h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.section-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}

section { padding: 5rem 0; }
section.tight { padding: 3rem 0; }

/* Professional page: tighter spacing between role entries */
.professional-page section.tight { padding: 1.5rem 0; }
.professional-page .role-card { margin-bottom: 0; }

/* =========================================
   PAGE HERO (non-home)
   ========================================= */
.page-hero {
  padding: 5rem 0 3rem;
}
.page-hero .section-label { margin-bottom: 1.5rem; }
.page-hero p.lede {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 640px;
  line-height: 1.65;
  margin-top: 1rem;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.5rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--on-accent);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

/* =========================================
   IMAGE PLACEHOLDERS
   ========================================= */
.img-slot {
  position: relative;
  background: var(--bg-elev);
  border: 1px dashed var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
  padding: 1rem;
  min-height: 100px;
}
.img-slot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.img-slot .placeholder-text {
  position: relative;
  z-index: 1;
  line-height: 1.4;
}
.img-slot .placeholder-text code {
  display: inline-block;
  background: var(--bg-card);
  color: var(--accent);
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-size: 0.8rem;
  margin-top: 0.3rem;
}
.img-slot.loaded .placeholder-text { display: none; }
.img-slot.loaded { border-style: solid; }

.img-slot.logo {
  min-height: 80px;
  aspect-ratio: 3 / 2;
  background: var(--bg-card);
}
.img-slot.logo img { object-fit: contain; padding: 12%; }

.img-slot.hero {
  aspect-ratio: 16 / 10;
  min-height: 220px;
  border-radius: 20px;
}

.img-slot.square {
  aspect-ratio: 1 / 1;
}

.img-slot.tall {
  aspect-ratio: 4 / 5;
}

/* =========================================
   HOME PAGE — about hero
   ========================================= */
.home-hero {
  padding: 6rem 0 4rem;
}
.home-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 860px) {
  .home-hero-grid { grid-template-columns: 1fr; gap: 3rem; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.45rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.4vw, 1.18rem);
  color: var(--text-dim);
  max-width: 620px;
  margin-bottom: 2rem;
  line-height: 1.65;
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-row a {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text-dim);
  transition: all 0.25s ease;
  text-decoration: none;
}
.social-row a:hover {
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.social-row svg { width: 18px; height: 18px; }

.home-photo {
  max-width: 380px;
  margin-left: auto;
  position: relative;
}
.home-photo .img-slot {
  aspect-ratio: 4 / 5;
  border-radius: 24px;
  min-height: 400px;
}
.home-photo::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 24px;
  padding: 1px;
  background: linear-gradient(135deg, var(--accent) 0%, transparent 60%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* About paragraphs */
.about-prose {
  max-width: 720px;
}
.about-prose p {
  color: var(--text-dim);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1.2rem;
}

/* Page cards (home → sub pages) */
.page-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}
.page-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2rem;
  text-decoration: none;
  color: var(--text);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}
.page-card::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  background: radial-gradient(circle at top right, var(--accent-soft), transparent 70%);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.page-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
  background: var(--bg-card-hover);
}
.page-card:hover::after { opacity: 1; }
.page-card .num {
  font-family: 'Fraunces', serif;
  font-size: 0.82rem;
  color: var(--accent);
  letter-spacing: 0.12em;
  margin-bottom: 0.5rem;
}
.page-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.3rem;
}
.page-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.5;
}
.page-card .arrow {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.25s ease;
}
.page-card:hover .arrow { gap: 0.6rem; }

/* =========================================
   EXPERIENCE / ORG CARD (logo + hero photo)
   ========================================= */
.role-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color 0.25s ease;
}
.role-card:hover { border-color: var(--border-hover); }
.role-card-compact .role-top {
  margin-bottom: 0;
  align-items: center;
}

.role-top {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .role-top { grid-template-columns: 1fr; }
}
.logo-plain {
  width: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-plain a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.logo-plain img {
  width: 100%;
  height: auto;
  max-height: 88px;
  object-fit: contain;
}
.startup-card .role-top {
  align-items: center;
}
.startup-card .logo-plain {
  justify-self: center;
  align-self: center;
}
.role-meta .role-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.25rem;
}
.role-meta .role-title .company { color: var(--accent); }
.role-meta .role-subtitle {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.role-meta .role-date {
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
}

.role-body {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}
.role-body > :only-child {
  grid-column: 1 / -1;
}
@media (max-width: 760px) {
  .role-body { grid-template-columns: 1fr; }
}
.role-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.role-body ul li {
  color: var(--text-dim);
  font-size: 0.98rem;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}
.role-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* =========================================
   REFLECTION CARD
   ========================================= */
.reflection-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}
.reflection-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gradient);
}
.reflection-card .tag {
  font-size: 0.82rem;
  color: var(--accent);
  font-weight: 500;
  margin: 0.3rem 0 1.5rem;
  display: block;
  letter-spacing: 0.02em;
}
.reflection-card p {
  color: var(--text-dim);
  margin-bottom: 1.1rem;
  line-height: 1.75;
  font-size: 1rem;
}
.reflection-card p:last-child { margin-bottom: 0; }

/* =========================================
   CREEVO SPOTLIGHT
   ========================================= */
.creevo-hero {
  background: linear-gradient(135deg, rgba(162, 93, 58, 0.08), rgba(245, 239, 227, 0.45));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 2.5rem;
}
.creevo-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -15%;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.creevo-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 820px) {
  .creevo-hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .creevo-hero { padding: 2rem; }
}
.creevo-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.creevo-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.creevo-desc {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.stat {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem;
}
.stat .stat-label {
  font-size: 0.76rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.4rem;
}
.stat .stat-value {
  font-size: 1rem;
  color: var(--text);
  font-weight: 500;
  line-height: 1.4;
}

/* =========================================
   EDUCATION
   ========================================= */
.edu-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}
@media (max-width: 640px) {
  .edu-card { grid-template-columns: 1fr; }
}
.edu-school {
  font-family: 'Fraunces', serif;
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.edu-degree { color: var(--text-dim); margin-bottom: 1rem; font-size: 0.98rem; }
.edu-meta { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.edu-pill {
  font-size: 0.82rem;
  padding: 0.4rem 0.85rem;
  border-radius: 100px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  color: var(--text-dim);
}
.edu-pill.highlight {
  border-color: var(--accent);
  color: var(--accent);
}
.gpa-badge {
  text-align: center;
  padding: 1.5rem 2rem;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: 16px;
}
.gpa-value {
  font-family: 'Fraunces', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.gpa-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 0.4rem;
}

.coursework-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.8rem;
}
.course-pill {
  padding: 0.9rem 1.1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s ease;
}
.course-pill:hover { border-color: var(--accent); color: var(--accent); }
.course-pill .code {
  display: block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.project-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  transition: all 0.25s ease;
}
.project-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}
.project-card .img-slot {
  border: none;
  border-radius: 0;
  aspect-ratio: 16 / 10;
  min-height: 180px;
  border-bottom: 1px solid var(--border);
}
.project-card .project-body {
  padding: 1.5rem;
}
.project-card h4 {
  font-family: 'Fraunces', serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}
.project-card .project-sub {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
}
.project-card p {
  color: var(--text-dim);
  font-size: 0.92rem;
  line-height: 1.55;
}

.awards-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.awards-list li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.awards-list li .title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.2rem;
}
.awards-list li .org {
  color: var(--text-dim);
  font-size: 0.9rem;
}
.awards-list li .date {
  color: var(--text-muted);
  font-size: 0.85rem;
  white-space: nowrap;
}

/* =========================================
   INVOLVEMENTS — big cards
   ========================================= */
.involvement-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color 0.25s ease;
}
.involvement-card:hover { border-color: var(--border-hover); }

.involvement-top {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
}
@media (max-width: 640px) {
  .involvement-top { grid-template-columns: 1fr; }
  .involvement-top .img-slot.logo { max-width: 100px; }
}
.involvement-top .img-slot.logo {
  min-height: 90px;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
}
.img-slot.logo.logo-fill img {
  object-fit: cover;
  padding: 0;
}
.involvement-top .role-title {
  font-family: 'Fraunces', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.2rem;
}
.involvement-top .role-sub {
  color: var(--accent);
  font-size: 0.92rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.involvement-top .role-date {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.involvement-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
@media (max-width: 760px) {
  .involvement-body { grid-template-columns: 1fr; }
}
.involvement-body p {
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.involvement-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.involvement-body ul li {
  color: var(--text-dim);
  font-size: 0.96rem;
  line-height: 1.6;
  padding-left: 1.4rem;
  position: relative;
}
.involvement-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

/* =========================================
   CONTACT
   ========================================= */
.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, var(--accent-soft), transparent 70%);
  pointer-events: none;
}
.contact-card > * { position: relative; z-index: 1; }
.contact-card h2 { margin: 0 auto 1rem; }
.contact-card p {
  color: var(--text-dim);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

/* =========================================
   FOOTER
   ========================================= */
footer.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-top: 4rem;
}

/* =========================================
   REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

::selection {
  background: var(--accent);
  color: var(--on-accent);
}
