/* ============================================================
   Rodrigo Gava — personal site
   "Clean & modern" redesign: soft rounded glass cards, generous
   whitespace, crisp geometric type, warm-neutral base, brand
   yellow accent with orange / teal / green gradient highlights.
   Inspired by Vision Pro / Microsoft Build / liquid-glass UI.
   ============================================================ */

:root {
  /* base neutrals */
  --bg:        #f3efe7;   /* warm off-white page */
  --bg-alt:    #fbfaf7;   /* near-white surface band */
  --surface:   #ffffff;   /* card surface */
  --ink:       #16161a;   /* primary text */
  --ink-soft:  #5a5a63;   /* secondary text */
  --ink-faint: #8a8a93;   /* tertiary / meta */
  --hair:      rgba(20,20,30,.08);
  --hair-2:    rgba(20,20,30,.04);

  /* brand + accents (pulled from the references + the yellow logo) */
  --yellow:    #f5c400;
  --yellow-2:  #ffe14d;
  --orange:    #ff8a3d;
  --orange-2:  #ffb24d;
  --teal:      #14c8c8;
  --teal-2:    #5be3df;
  --green:     #16a06a;
  --green-2:   #4fd49a;
  --violet:    #8b6cf6;
  --violet-2:  #b8a3ff;

  --grad-warm:   linear-gradient(135deg, var(--yellow-2), var(--orange));
  --grad-teal:   linear-gradient(135deg, var(--teal-2), var(--teal));
  --grad-green:  linear-gradient(135deg, var(--green-2), var(--green));
  --grad-violet: linear-gradient(135deg, var(--violet-2), var(--violet));

  /* dark "premium glass" surface (contact) */
  --dark:      #15151b;

  /* shape + depth */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --shadow-sm: 0 2px 8px rgba(20,20,40,.05);
  --shadow:    0 14px 40px -18px rgba(20,20,40,.22), 0 2px 8px rgba(20,20,40,.05);
  --shadow-lg: 0 40px 80px -30px rgba(20,20,40,.35), 0 8px 24px rgba(20,20,40,.08);

  --max-w: 1160px;
  --font-display: 'Montserrat', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color .18s, opacity .18s; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.12;
  margin: 0 0 .4em;
  color: var(--ink);
}
p { margin: 0 0 1em; }

/* ---------------- Layout helpers ---------------- */
.section { padding: 110px 24px; position: relative; scroll-margin-top: 96px; }
#top { scroll-margin-top: 0; }
.section-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.section.alt { background: var(--bg-alt); }

/* section header (eyebrow + title), replaces the old PNG title images */
.sec-head { margin: 0 0 56px; max-width: 720px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body);
  font-size: .72rem; font-weight: 600;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.eyebrow::before {
  content: ''; width: 26px; height: 3px; border-radius: 2px;
  background: var(--grad-warm);
}
.sec-head.center .eyebrow::before { display: none; }
.sec-head h2 {
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin: 0;
}

/* Title word alternation — bold ink word ↔ thin gradient word.
   Generic so it works in section headings, the hero, and contact. */
.tb { font-weight: 800; }
.tt {
  font-weight: 300;
  /* flowing multi-colour gradient — loops seamlessly (starts & ends on yellow) */
  background-image: linear-gradient(90deg,
    var(--yellow), var(--orange), var(--teal), var(--green), var(--yellow));
  background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: title-flow 7s linear infinite;
}
@keyframes title-flow { to { background-position: 220% center; } }
.amp {
  font-weight: 200; color: var(--ink-faint);
  -webkit-text-fill-color: var(--ink-faint);
  margin: 0 .04em;
}
@media (prefers-reduced-motion: reduce) {
  .tt { animation: none; background-position: 0 center; }
}
.sec-head .sub {
  margin: 14px 0 0; color: var(--ink-soft); font-size: 1.02rem; max-width: 56ch;
}
.sec-head.center .sub { margin-left: auto; margin-right: auto; }

/* shared card */
.card {
  background: var(--surface);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow);
}

/* pill buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--font-body); font-weight: 600; font-size: .92rem;
  padding: 13px 24px; border-radius: 100px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--grad-warm); color: #2a1800;
  box-shadow: 0 12px 26px -10px rgba(255,138,61,.7);
}
.btn-primary:hover { box-shadow: 0 18px 34px -12px rgba(255,138,61,.85); }
.btn-ghost {
  background: rgba(255,255,255,.7); color: var(--ink);
  border-color: var(--hair); backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: #fff; }

/* ---------------- Top contact bar ---------------- */
.topbar {
  display: flex; justify-content: space-between; align-items: center; gap: 12px;
  max-width: var(--max-w); margin: 0 auto;
  padding: 16px 24px 0;
  font-size: .82rem; color: var(--ink-soft);
}
.topbar a { color: var(--ink-soft); }
.topbar a:hover { color: var(--ink); }
.topbar .sep { margin: 0 8px; opacity: .5; }
.topbar-social a { margin-left: 16px; font-weight: 600; }
.topbar-social a:hover { color: var(--orange); }
@media (max-width: 640px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 4px; }
}

/* ---------------- Floating glass nav ---------------- */
.site-nav {
  position: sticky; top: 14px; z-index: 60;
  padding: 0 16px; margin-top: 14px;
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  display: flex; align-items: center; gap: 6px;
  padding: 9px 9px 9px 20px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 100px;
  box-shadow: var(--shadow);
}
.nav-brand {
  font-family: var(--font-display); font-weight: 800; font-size: 1.02rem;
  letter-spacing: -.02em; margin-right: auto; color: var(--ink);
}
.nav-brand b { color: var(--yellow); -webkit-text-stroke: .4px rgba(0,0,0,.12); }
.nav-links { display: flex; flex-wrap: wrap; gap: 2px; }
.nav-links a {
  font-size: .82rem; font-weight: 500; color: var(--ink-soft);
  padding: 8px 13px; border-radius: 100px; text-transform: lowercase;
}
.nav-links a:hover { color: var(--ink); background: rgba(20,20,30,.05); }
.nav-toggle { display: none; }
@media (max-width: 940px) {
  .site-nav { top: 10px; }
  .nav-inner { padding: 10px 14px; flex-wrap: wrap; row-gap: 0; }
  .nav-toggle {
    display: inline-flex; margin-left: auto; background: none; border: 0;
    font: inherit; color: var(--ink); cursor: pointer; padding: 6px 10px;
    border-radius: 100px; font-weight: 600; font-size: .85rem;
  }
  .nav-links {
    flex-basis: 100%; flex-direction: column; gap: 2px;
    max-height: 0; overflow: hidden; transition: max-height .3s ease;
  }
  .nav-inner.open .nav-links { max-height: 520px; padding-top: 8px; }
  .nav-links a { padding: 10px 14px; }
}

/* ---------------- Hero ---------------- */
.hero { position: relative; padding: 70px 24px 90px; overflow: hidden; }
.hero::before { /* warm ambient wash */
  content: ''; position: absolute; inset: -20% -10% auto auto;
  width: 60vw; height: 60vw; max-width: 720px; max-height: 720px;
  background: radial-gradient(circle at 60% 40%, rgba(255,200,80,.30), transparent 62%);
  filter: blur(20px); z-index: 0; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 48px; align-items: center;
}
.hero-copy { max-width: 600px; }
.hero .role-pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,.7); border: 1px solid var(--hair);
  backdrop-filter: blur(8px);
  padding: 7px 16px 7px 12px; border-radius: 100px;
  font-size: .8rem; font-weight: 600; color: var(--ink-soft);
  margin-bottom: 26px;
}
.hero .role-pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--green); box-shadow: 0 0 0 4px rgba(22,160,106,.18);
}
.hero h1 {
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: .98; letter-spacing: -.035em; margin: 0 0 18px;
}
.hero h1 .accent {
  background: var(--grad-warm);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: 1.12rem; color: var(--ink-soft); margin-bottom: 20px; }
.hero .headline p { color: var(--ink-soft); font-size: .98rem; margin-bottom: .8em; }
.hero .headline p:nth-of-type(n+3) { display: none; } /* keep hero tight; full bio lives in About */
.hero .specialties {
  margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--hair);
  font-size: .9rem; color: var(--ink-soft);
}
.hero .specialties .label {
  display: block; font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint); margin-bottom: 8px;
}
.hero .cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

/* hero portrait panel */
.hero-figure { position: relative; }
.hero-photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(255,255,255,.7);
  aspect-ratio: 4/5;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 20% 20%; }
/* floating colour blocks (Microsoft-Build-style) */
.float-block {
  position: absolute; border-radius: 12px; box-shadow: var(--shadow);
  z-index: 3; animation: floaty 6s ease-in-out infinite;
}
.fb-1 { width: 92px; height: 34px; background: var(--grad-warm);  top: 8%;  left: -26px; }
.fb-2 { width: 60px; height: 30px; background: var(--grad-teal);  bottom: 16%; left: -34px; animation-delay: -2s; }
.fb-3 { width: 46px; height: 46px; border-radius: 50%; background: var(--grad-green); bottom: -18px; right: 16%; animation-delay: -4s; }
.fb-4 { width: 70px; height: 28px; background: var(--grad-violet); top: -14px; right: 12%; animation-delay: -1s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
@media (prefers-reduced-motion: reduce) { .float-block { animation: none; } }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-figure { max-width: 420px; margin: 0 auto; width: 100%; }
  .hero .headline p:nth-of-type(n+3) { display: block; }
}

/* ---------------- Reels ---------------- */
.reel-main-wrap { margin-bottom: 26px; }
.reel {
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 16px; box-shadow: var(--shadow);
}
.reel h3 {
  margin: 4px 4px 12px; font-size: .82rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-soft);
}
.reel .frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  background: #0c0c10; border-radius: var(--r); overflow: hidden;
}
.reel .frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.reel-main {
  max-width: 960px; margin: 0 auto; padding: 18px;
  background: var(--dark); border-color: rgba(255,255,255,.08);
}
.reel-main h3 { color: var(--yellow-2); }
.reels-sub {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 960px; margin: 0 auto;
}
@media (max-width: 820px) { .reels-sub { grid-template-columns: 1fr; } }

/* ---------------- Expertise (chip cloud) ---------------- */
.expertise-cloud { display: flex; flex-wrap: wrap; gap: 12px; max-width: 880px; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem;
  padding: 11px 20px; border-radius: 100px;
  background: var(--surface); border: 1px solid var(--hair);
  box-shadow: var(--shadow-sm); color: var(--ink);
  transition: transform .15s, box-shadow .15s, border-color .15s;
}
.chip:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.chip:nth-child(4n+1):hover { border-color: var(--orange); }
.chip:nth-child(4n+2):hover { border-color: var(--teal); }
.chip:nth-child(4n+3):hover { border-color: var(--green); }
.chip:nth-child(4n+4):hover { border-color: var(--violet); }

/* ---------------- About ---------------- */
.about-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: start; }
@media (max-width: 860px) { .about-grid { grid-template-columns: 1fr; gap: 32px; } }
.about-card { padding: 26px; text-align: center; }
.about-card .portrait-link {
  display: inline-block; width: 200px; height: 200px; border-radius: 50%;
  padding: 6px; margin: 0 auto 18px;
  background: var(--grad-warm);
  box-shadow: var(--shadow); transition: transform .2s ease;
}
.about-card .portrait-link:hover { transform: scale(1.03) rotate(-1deg); }
.about-card .me {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  border: 4px solid var(--surface);
}
.about-card .li-link {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .82rem; font-weight: 600; color: var(--ink);
  padding: 9px 16px; border-radius: 100px; border: 1px solid var(--hair);
  margin-top: 4px;
}
.about-card .li-link:hover { color: var(--orange); border-color: var(--orange); }
.about-facts { margin-top: 24px; text-align: left; }
.about-facts dt {
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--ink-faint); margin-top: 16px;
}
.about-facts dt:first-child { margin-top: 0; }
.about-facts dd {
  margin: 5px 0 0; color: var(--ink); font-weight: 600;
  display: flex; align-items: center; gap: 10px;
}
.bar { flex: 1; height: 6px; background: rgba(20,20,30,.08); border-radius: 100px; position: relative; }
.bar::after {
  content: ''; position: absolute; inset: 0; width: var(--p, 100%);
  background: var(--grad-warm); border-radius: 100px;
}
.about-text p { color: var(--ink-soft); margin-bottom: 1.05em; }
.about-text p:first-child {
  font-size: 1.16rem; line-height: 1.55; color: var(--ink); font-weight: 500;
}

/* ---------------- Software skills ---------------- */
.skill-card { padding: 34px 34px 22px; }
.skill-columns { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px 40px; }
@media (max-width: 860px) { .skill-columns { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .skill-columns { grid-template-columns: 1fr; } }
.skill-list { list-style: none; margin: 0; padding: 0; }
.skill-list li { margin-bottom: 16px; font-size: .86rem; }
.skill-name {
  display: flex; justify-content: space-between; margin-bottom: 7px;
  font-weight: 500; color: var(--ink);
}
.skill-name::after { content: attr(data-p); color: var(--ink-faint); font-size: .78rem; }
.skill-bar { display: block; height: 7px; background: rgba(20,20,30,.07); border-radius: 100px; position: relative; overflow: hidden; }
.skill-bar::after { content: ''; position: absolute; inset: 0; width: var(--p, 100%); border-radius: 100px; }
.skill-col-1 .skill-bar::after { background: var(--grad-warm); }
.skill-col-2 .skill-bar::after { background: var(--grad-teal); }
.skill-col-3 .skill-bar::after { background: var(--grad-green); }
.skill-col-4 .skill-bar::after { background: var(--grad-violet); }

/* ---------------- Timeline (experience / education) ---------------- */
.timeline { position: relative; padding-left: 30px; max-width: 860px; }
.timeline::before {
  content: ''; position: absolute; left: 7px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(var(--orange), var(--teal), var(--green));
  border-radius: 2px; opacity: .5;
}
.timeline-item {
  position: relative; margin-bottom: 22px;
  background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 24px 26px; box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s;
}
.timeline-item:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.timeline-item::before {
  content: ''; position: absolute; left: -30px; top: 28px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-warm); box-shadow: 0 0 0 4px var(--bg);
}
.section.alt .timeline-item::before { box-shadow: 0 0 0 4px var(--bg-alt); }
.timeline-item h3 { font-size: 1.14rem; margin: 0 0 6px; }
.timeline-item .meta {
  display: inline-block; font-size: .72rem; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 12px;
}
.timeline-item p { color: var(--ink-soft); }
.timeline-item ul { margin: 10px 0 0; padding-left: 20px; color: var(--ink-soft); }
.timeline-item ul li { margin-bottom: 6px; }
.timeline-item em { color: var(--ink); font-style: normal; font-weight: 600; }

/* ---------------- Volunteer (warm tinted band) ---------------- */
.section-volunteer { background: linear-gradient(180deg, #fff6ec, #ffeede); }
.section-volunteer .timeline::before { background: linear-gradient(var(--orange), var(--yellow)); opacity: .6; }
.section-volunteer .timeline-item::before { box-shadow: 0 0 0 4px #fff1e2; }

/* ---------------- Awards (card grid) ---------------- */
.awards { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.award-card {
  position: relative; background: var(--surface); border: 1px solid var(--hair);
  border-radius: var(--r-lg); padding: 26px 24px 22px; box-shadow: var(--shadow-sm);
  overflow: hidden; transition: transform .18s, box-shadow .18s;
}
.award-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.award-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 5px; }
.award-card:nth-child(5n+1)::before { background: var(--grad-warm); }
.award-card:nth-child(5n+2)::before { background: var(--grad-teal); }
.award-card:nth-child(5n+3)::before { background: var(--grad-green); }
.award-card:nth-child(5n+4)::before { background: var(--grad-violet); }
.award-card:nth-child(5n+5)::before { background: linear-gradient(135deg, var(--orange-2), var(--yellow)); }
.award-card h3 { font-size: 1.02rem; margin: 6px 0 14px; }
.award-card ul { margin: 0; padding-left: 18px; color: var(--ink-soft); font-size: .9rem; }
.award-card ul li { margin-bottom: 7px; }

/* ---------------- Filmography (clean table in a card) ---------------- */
.film-card { padding: 8px; overflow: hidden; }
.film-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.film-table th, .film-table td { padding: 15px 18px; text-align: left; border-bottom: 1px solid var(--hair); }
.film-table th {
  font-family: var(--font-body); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; color: var(--ink-faint);
}
.film-table tbody tr { transition: background .15s; }
.film-table tbody tr:hover { background: rgba(255,200,80,.08); }
.film-table tbody tr:last-child td { border-bottom: 0; }
.film-table td:first-child { font-weight: 600; color: var(--ink); }
.film-table td:last-child { color: var(--ink-faint); font-variant-numeric: tabular-nums; }
@media (max-width: 720px) {
  .film-table thead { display: none; }
  .film-table, .film-table tbody, .film-table tr, .film-table td { display: block; width: 100%; }
  .film-table tr { padding: 14px 4px; border-bottom: 1px solid var(--hair); }
  .film-table td { border: 0; padding: 3px 14px; }
  .film-table td:first-child { font-size: 1.02rem; margin-bottom: 4px; }
  .film-table td:not(:first-child)::before {
    content: attr(data-label) ': '; color: var(--ink-faint); font-weight: 600;
  }
}

/* ---------------- Contact (dark premium glass strip) ---------------- */
.contact-strip {
  background: var(--dark); color: #fff;
  margin: 0 16px; border-radius: var(--r-xl);
  max-width: calc(var(--max-w) + 0px); margin-left: auto; margin-right: auto;
  position: relative; overflow: hidden;
}
.contact-wrap { padding: 64px 40px; }
.contact-strip::before {
  content: ''; position: absolute; top: -30%; right: -10%;
  width: 50%; height: 160%;
  background: radial-gradient(circle, rgba(255,200,80,.22), transparent 60%);
}
.contact-strip h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); margin-bottom: 8px; }
.contact-strip .ctitle-sub { color: rgba(255,255,255,.65); margin-bottom: 34px; max-width: 46ch; }
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; position: relative; }
.contact-grid.single { grid-template-columns: 1fr; max-width: 440px; }
@media (max-width: 680px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-grid > a, .contact-grid > div {
  display: flex; flex-direction: column; gap: 6px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 20px 22px;
  backdrop-filter: blur(8px); transition: background .18s, transform .18s;
}
.contact-grid > a:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }
.contact-grid strong {
  font-size: .68rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase;
  color: var(--yellow-2);
}
.contact-grid span, .contact-grid a span { color: #fff; font-size: 1.05rem; font-weight: 500; }

/* ---------------- Footer ---------------- */
.site-footer {
  text-align: center; padding: 56px 24px 44px; color: var(--ink-soft);
}
.site-footer .socials { display: flex; justify-content: center; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.site-footer .socials a {
  font-size: .85rem; font-weight: 600; padding: 9px 18px; border-radius: 100px;
  border: 1px solid var(--hair); background: var(--surface);
}
.site-footer .socials a:hover { color: var(--orange); border-color: var(--orange); }
.site-footer p { font-size: .82rem; color: var(--ink-faint); margin: 0; }
