/* =====================================================================
   SHOWCASE EDITION — Marina Chavarria · Game Programmer
   Editorial, image-forward portfolio. Full-bleed project banners,
   galleries and a sticky project nav (inspired by heathsmith.net).
   Dark, professional, with cyan + warm coral accents.
   Relies on Bootstrap grid from styles.css; this is the full skin.
   ===================================================================== */

:root {
  --bg: #0a0b0f;
  --bg-2: #0e1016;
  --bg-3: #141720;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-2: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.10);
  --line-2: rgba(255, 255, 255, 0.18);

  --text: #eef1f7;
  --dim: #b7c0d2;
  --muted: #7c879c;

  --cyan: #18c3ff;
  --cyan-2: #5bd6ff;
  --coral: #ff7a59;
  --magenta: #ff4d8d;
  --grad: linear-gradient(120deg, #18c3ff 0%, #ff4d8d 100%);

  --maxw: 1180px;
  --radius: 18px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }
/* offset for sticky nav when jumping to anchors */
section[id], header[id], .jump { scroll-margin-top: 96px; }

body#page-top {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", "Trebuchet MS", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5,
.title, .name-text, .masthead-heading, .page-section-heading,
.section-title, .hero-name {
  font-family: "Space Grotesk", "Montserrat", system-ui, sans-serif;
  letter-spacing: -0.015em;
  color: var(--text);
}

a { color: var(--cyan-2); text-decoration: none; transition: color .18s ease; }
a:hover { color: #fff; }

p { font-family: inherit; color: var(--dim); }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.5rem; }

/* ------------------------------------------------------------------ */
/* Top navigation                                                     */
/* ------------------------------------------------------------------ */
.snav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(10, 11, 15, 0.7);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.snav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.snav-brand {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: 0.06em;
  font-size: 1.05rem;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.snav-links { display: flex; gap: 0.4rem; flex-wrap: wrap; }
.snav-links a {
  color: var(--dim);
  font-weight: 500;
  font-size: 0.92rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.snav-links a:hover { color: #fff; background: var(--panel-2); }
.snav-toggle { display: none; background: none; border: 1px solid var(--line-2); color: var(--text); border-radius: 10px; padding: .4rem .6rem; font-size: 1.1rem; cursor: pointer; }

@media (max-width: 860px) {
  .snav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(10, 11, 15, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.5rem 1rem 1rem;
    display: none;
  }
  .snav-links.open { display: flex; }
  .snav-links a { padding: 0.7rem 0.5rem; border-radius: 8px; }
  .snav-toggle { display: inline-flex; }
}

/* ------------------------------------------------------------------ */
/* Hero                                                               */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding: 9rem 0 5rem;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(48rem 32rem at 78% 14%, rgba(255, 77, 141, 0.16), transparent 60%),
    radial-gradient(52rem 36rem at 6% 28%, rgba(24, 195, 255, 0.18), transparent 60%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(70% 70% at 40% 35%, #000 20%, transparent 100%);
  mask-image: radial-gradient(70% 70% at 40% 35%, #000 20%, transparent 100%);
  pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 3rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cyan-2);
  margin-bottom: 1rem;
}
.hero-name {
  font-size: clamp(2.6rem, 5.5vw, 4rem);
  line-height: 1.04;
  font-weight: 700;
  margin: 0 0 1.2rem;
  background: linear-gradient(120deg, #ffffff 0%, #bfe9ff 45%, #ffc7d9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-role {
  font-size: 1.15rem;
  color: var(--dim);
  max-width: 42rem;
  margin-bottom: 1.5rem;
}
.hero-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1.6rem; }
.chip {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--cyan-2);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.4rem 0.95rem;
}
.hero-meta { color: var(--muted); font-size: 0.98rem; margin-bottom: 1.8rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; }

.btn-grad {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--grad);
  color: #fff !important;
  font-weight: 600;
  border: none;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  box-shadow: 0 16px 36px -16px rgba(255, 77, 141, 0.6);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn-grad:hover { color: #fff !important; transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 22px 46px -16px rgba(24, 195, 255, 0.6); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid var(--line-2);
  color: var(--text) !important;
  border-radius: 999px;
  padding: 0.8rem 1.4rem;
  font-weight: 500;
  transition: background .18s ease, border-color .18s ease;
}
.btn-ghost:hover { background: var(--panel-2); border-color: var(--cyan); color:#fff !important; }

.hero-portrait {
  justify-self: center;
  width: min(340px, 78vw);
  aspect-ratio: 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid transparent;
  background:
    linear-gradient(var(--bg), var(--bg)) padding-box,
    var(--grad) border-box;
  box-shadow: 0 36px 90px -30px rgba(255, 77, 141, 0.5);
}

@media (max-width: 860px) {
  .hero { padding: 7rem 0 3rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-chips, .hero-actions { justify-content: center; }
  .hero-portrait { order: -1; width: min(220px, 60vw); }
}

/* ------------------------------------------------------------------ */
/* Generic section + headings                                         */
/* ------------------------------------------------------------------ */
.section { padding: 5.5rem 0; position: relative; }
.section.alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.section-head { margin-bottom: 2.75rem; }
.section-head.center { text-align: center; }
.eyebrow {
  display: block;
  font-size: 0.8rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  font-weight: 700;
  margin: 0;
}
.section-sub { color: var(--muted); margin-top: 0.5rem; }
.rule { height: 4px; width: 64px; background: var(--grad); border-radius: 999px; margin: 1rem 0 0; }
.section-head.center .rule { margin-left: auto; margin-right: auto; }

/* ------------------------------------------------------------------ */
/* Project chip nav                                                   */
/* ------------------------------------------------------------------ */
.projnav {
  display: flex; flex-wrap: wrap; gap: 0.55rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.projnav a {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dim);
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  transition: all .18s ease;
}
.projnav a:hover { color: #fff; border-color: var(--cyan); background: var(--panel-2); transform: translateY(-2px); }

/* ------------------------------------------------------------------ */
/* Showcase block (a game / a tool)                                   */
/* ------------------------------------------------------------------ */
.showcase {
  margin-bottom: 4.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, var(--panel-2), var(--panel));
  box-shadow: 0 30px 70px -36px rgba(0, 0, 0, 0.8);
}
.showcase:last-child { margin-bottom: 0; }

.showcase-banner {
  position: relative;
  width: 100%;
  aspect-ratio: 858 / 650;          /* native ratio of the artwork — no cropping */
  max-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 1.8rem 2rem;
  background-color: #06070b;        /* clean dark fill (no blur) for any letterboxing */
  background-size: contain;          /* show the WHOLE image, sharp */
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}
/* gradient only at the bottom, so the artwork stays clearly visible */
.showcase-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(6,7,11,0) 55%, rgba(6,7,11,0.35) 74%, rgba(6,7,11,0.92) 100%);
  z-index: 0;
}
.showcase-banner-content { position: relative; z-index: 1; width: 100%; }

/* Game banners (inside a company): wide, compact, horizontal strip.
   Uses cover so it fills the strip; the game title is shown as text anyway. */
.company-games .showcase-banner {
  aspect-ratio: 16 / 5;
  max-height: 230px;
  background-size: cover;
}
.company-games .showcase-banner::before {
  background: linear-gradient(180deg, rgba(6,7,11,0.25) 0%, rgba(6,7,11,0.05) 35%, rgba(6,7,11,0.45) 72%, rgba(6,7,11,0.95) 100%);
}
@media (max-width: 620px) {
  .company-games .showcase-banner { aspect-ratio: 16 / 9; }
}
.showcase-kicker {
  display: inline-block;
  font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.35);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.3rem 0.8rem;
  margin-bottom: 0.7rem;
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
}
.showcase-title {
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.08;
  margin: 0 0 0.5rem;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.showcase-platforms { display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.plat {
  width: 34px; height: 34px;
  display: inline-grid; place-items: center;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  padding: 5px;
}
.plat img { max-width: 100%; max-height: 100%; }

.showcase-body { padding: 2rem; }
.showcase-cols { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 2.2rem; }
@media (max-width: 820px) { .showcase-cols { grid-template-columns: 1fr; gap: 1.4rem; } }

.showcase-desc { color: var(--dim); font-size: 1.02rem; }
.showcase-desc b { color: #fff; }
.ach-title {
  font-size: 0.82rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 0.8rem;
}
.ach-list { list-style: none; margin: 0; padding: 0; }
.ach-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--dim);
  font-size: 0.98rem;
}
.ach-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.55em;
  width: 8px; height: 8px; border-radius: 2px;
  background: var(--grad);
}
.inline-link { color: var(--cyan-2); text-decoration: underline; cursor: pointer; }

/* Gallery row inside a showcase */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.9rem; margin-top: 1.8rem; }
.gallery.cols-2 { grid-template-columns: repeat(2, 1fr); }
.gallery .g-cap { grid-column: 1 / -1; color: var(--muted); font-size: 0.85rem; margin: 0; }
.gallery img, .gallery video {
  width: 100%; height: 100%; object-fit: cover;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.gallery img:hover { transform: scale(1.015); box-shadow: 0 18px 40px -20px rgba(24,195,255,0.5); }
.gallery video { aspect-ratio: auto; object-fit: contain; background:#000; }
.gallery .span-all { grid-column: 1 / -1; aspect-ratio: auto; }
@media (max-width: 560px) { .gallery { grid-template-columns: repeat(2, 1fr); } }

/* ------------------------------------------------------------------ */
/* Company block (work experience + the games made there)             */
/* ------------------------------------------------------------------ */
/* Each company is one self-contained CARD; the games live INSIDE it,
   in a darker, more compact region so the studio stays the main subject. */
.company {
  margin-bottom: 3.5rem;
  border: 1px solid var(--line-2);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-2);
  box-shadow: 0 30px 65px -34px rgba(0,0,0,0.9);
}
.company:last-child { margin-bottom: 0; }

.company-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  padding: 2.2rem 2.2rem 2.2rem 2.8rem;
  background:
    linear-gradient(120deg, rgba(24,195,255,0.14), rgba(255,77,141,0.08) 55%, transparent),
    linear-gradient(180deg, var(--panel-2), var(--panel));
}
/* bold accent bar so the company header reads as the dominant anchor */
.company-head::before {
  content: "";
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 7px;
  background: var(--grad);
}
.company-logo {
  width: 112px; height: 112px; flex: none;
  border-radius: 22px;
  background: #ffffff;
  object-fit: contain; padding: 13px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px -14px rgba(0,0,0,0.85);
}
.company-info { flex: 1; min-width: 0; }
.company-name {
  font-size: 2.1rem; font-weight: 700; margin: 0; line-height: 1.1;
}
.company-date {
  display: inline-block;
  color: var(--cyan-2);
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.02em;
  margin-top: 0.6rem;
  background: var(--panel-2);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: 0.3rem 0.9rem;
}
.company-stack { color: var(--dim); font-size: 1rem; margin: 0.9rem 0 0.5rem; }
.company-stack b { color: #fff; }
.company-desc { color: var(--dim); margin: 0; font-size: 1.02rem; }
.company-games-tag {
  color: var(--muted); font-size: 0.95rem; margin: 0.9rem 0 0;
}
.company-games-tag b { color: var(--dim); }

/* Games region: clearly INSIDE the company card — darker inset, compact */
.company-games {
  background: rgba(0,0,0,0.32);
  border-top: 1px solid var(--line-2);
  padding: 1.6rem 2rem 1.9rem;
}
.company-games-label {
  display: block;
  font-size: 0.74rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 1.1rem;
}
.company-games .showcase {
  margin-bottom: 1.2rem;
  border-radius: 14px;
  box-shadow: 0 16px 36px -26px rgba(0,0,0,0.8);
}
.company-games .showcase:last-child { margin-bottom: 0; }
/* games are subordinate: smaller titles + tighter body (banner sizing above) */
.company-games .showcase-title { font-size: clamp(1.2rem, 2.2vw, 1.55rem); }
.company-games .showcase-kicker { font-size: 0.72rem; margin-bottom: 0.55rem; }
.company-games .showcase-body { padding: 1.5rem 1.6rem; }

@media (max-width: 620px) {
  .company-head { flex-direction: column; padding: 1.6rem 1.4rem 1.6rem 1.8rem; }
  .company-logo { width: 88px; height: 88px; }
  .company-games { padding: 1.2rem 1.1rem 1.4rem; }
}

/* ------------------------------------------------------------------ */
/* Game jams gallery                                                  */
/* ------------------------------------------------------------------ */
.jam-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}
.jam-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
  aspect-ratio: 4 / 3;
  background: var(--bg-3);
}
.jam-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.jam-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,11,15,0.9) 100%);
}
.jam-card .jam-name {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0.9rem 1rem;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  color: #fff;
  transition: transform .25s ease;
}
.jam-card:hover img { transform: scale(1.07); }
.jam-card:hover { border-color: var(--cyan); box-shadow: 0 20px 44px -22px rgba(24,195,255,0.5); }
.itch-line { text-align: center; margin-top: 2.5rem; font-size: 1.15rem; color: var(--dim); }
.itch-line a { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; font-weight: 700; }

/* ------------------------------------------------------------------ */
/* Experience timeline                                                */
/* ------------------------------------------------------------------ */
.timeline { position: relative; max-width: 920px; margin: 0 auto; padding-left: 1rem; }
.timeline::before {
  content: ""; position: absolute; left: 0; top: 6px; bottom: 6px;
  width: 2px; background: linear-gradient(180deg, var(--cyan), var(--magenta));
  opacity: 0.5;
}
.tl-item { position: relative; padding: 0 0 2.4rem 2rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -5px; top: 4px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(24,195,255,0.15);
}
.tl-head { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 0.5rem; }
.tl-logo {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(255,255,255,0.95);
  object-fit: contain; padding: 7px;
  border: 1px solid var(--line);
  flex: none;
}
.tl-company { font-size: 1.3rem; font-weight: 700; margin: 0; }
.tl-date { color: var(--muted); font-size: 0.9rem; }
.tl-stack { color: var(--cyan-2); font-size: 0.92rem; margin: 0.2rem 0 0.5rem; }
.tl-stack b { color: #fff; }
.tl-desc { color: var(--dim); margin: 0 0 0.35rem; }
.tl-games { color: var(--muted); font-size: 0.9rem; }
.tl-games b { color: var(--dim); }

/* ------------------------------------------------------------------ */
/* Competences                                                        */
/* ------------------------------------------------------------------ */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.2rem;
}
.skill-group {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
}
.skill-group h4 {
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--coral); margin: 0 0 1.1rem;
}
.skill-items { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.skill-pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--panel-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.9rem 0.45rem 0.5rem;
  font-size: 0.92rem; color: var(--text);
}
.skill-pill.text-only { padding-left: 0.9rem; }
.skill-pill img {
  width: 30px; height: 30px; object-fit: contain;
  background: rgba(255,255,255,0.95); border-radius: 7px; padding: 4px;
}

/* ------------------------------------------------------------------ */
/* Awards                                                             */
/* ------------------------------------------------------------------ */
.awards-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.2rem;
  align-items: stretch;
}
.award-tile {
  display: grid; place-items: center;
  background: rgba(255,255,255,0.96);
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.6rem;
  transition: transform .22s ease, box-shadow .22s ease;
}
.award-tile img { max-width: 100%; height: auto; }
.award-tile:hover { transform: translateY(-5px); box-shadow: 0 22px 46px -20px rgba(255,77,141,0.45); }

/* ------------------------------------------------------------------ */
/* About                                                              */
/* ------------------------------------------------------------------ */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 2.8rem; align-items: center; }
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; text-align: center; } }
.about-img {
  width: 100%; max-width: 340px; aspect-ratio: 1; object-fit: cover;
  border-radius: 50%;
  justify-self: center;
  border: 3px solid transparent;
  background: linear-gradient(var(--bg), var(--bg)) padding-box, var(--grad) border-box;
  box-shadow: 0 30px 80px -32px rgba(24,195,255,0.45);
}
.about-name { font-size: 2rem; margin: 0 0 1rem; }
.about-grid p { color: var(--dim); margin-bottom: 0.9rem; }

/* ------------------------------------------------------------------ */
/* Footer                                                             */
/* ------------------------------------------------------------------ */
.sfooter {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  padding: 4rem 0 1.5rem;
}
.sfooter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 720px) { .sfooter-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.sfooter h4 { font-size: 0.85rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--coral); margin-bottom: 1rem; }
.sfooter p { color: var(--dim); margin: 0; }
.social-row { display: flex; gap: 0.6rem; justify-content: center; }
.social-btn {
  width: 46px; height: 46px; border-radius: 50%;
  display: inline-grid; place-items: center;
  border: 1px solid var(--line-2);
  color: var(--dim);
  font-size: 1.1rem;
  transition: all .18s ease;
}
.social-btn:hover { background: var(--grad); border-color: transparent; color: #fff; transform: translateY(-3px); }
.copyright-bar { text-align: center; color: var(--muted); font-size: 0.85rem; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }

/* ------------------------------------------------------------------ */
/* Reveal on scroll                                                   */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: no-preference) {
  .reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
  .reveal.is-visible { opacity: 1; transform: none; }
}
