/* ═══════════════════════════════════════════════════════
   ASKAR PORTFOLIO — DRAWN FROM THE INSIDE
   A living digital notebook. Quiet, intentional, poetic.
   ═══════════════════════════════════════════════════════ */

/* ── Reset & Foundation ────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Palette */
  --cream: #F7F5F0;
  --sage: #EEF3ED;
  --parchment: #F1ECE3;
  --warm-white: #FAF8F5;
  --linen: #F3EFE8;
  --sage-tint: #EFF3EE;
  --charcoal: #1A1A1A;
  --soft-black: #2C2C2C;
  --warm-grey: #8A8580;
  --light-grey: #C5BFB8;
  --terracotta: #B87A5A;
  --indigo: #6B6EA0;
  --gold: #C4956A;
  --gold-dim: rgba(196, 149, 106, 0.3);
  --blush: #F0EBE5;
  --sage-dark: #8B9E8B;

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', serif;
  --font-sans: 'Inter', 'Helvetica Neue', sans-serif;

  /* Spacing */
  --section-pad: clamp(80px, 12vh, 160px);
  --content-max: 800px;
  --content-wide: 1100px;
  --side-pad: clamp(24px, 5vw, 80px);

  /* Animation */
  --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
  --duration-slow: 1.2s;
  --duration-med: 0.8s;
  --duration-fast: 0.4s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

/* Selection highlight */
::selection {
  background: rgba(196, 149, 106, 0.2);
  color: var(--charcoal);
}

::-moz-selection {
  background: rgba(196, 149, 106, 0.2);
  color: var(--charcoal);
}

/* ── Paper Grain Overlay ───────────────────────────── */
.grain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
}

/* ── Particles Canvas ──────────────────────────────── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.4;
}

/* ── Journey Line (SVG Continuous Thread) ──────────── */
.journey-line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 6; /* Floating above all section backgrounds (z-index 5) — never submerged! */
}

.thread-path {
  stroke: var(--gold);
  stroke-width: 1px;
  opacity: 0.16; /* Whisper-quiet, ambient watermark thread — never disturbs reading */
  mix-blend-mode: multiply;
  transition: stroke-dashoffset 0.08s linear;
}

/* ── Journey Waypoint (Interactive Section Connectors) ── */
.journey-waypoint {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  outline: none;
  position: relative;
  transition: transform 0.3s var(--ease-out);
}

.journey-waypoint:focus-visible {
  outline: 2px solid var(--terracotta);
  outline-offset: 4px;
  border-radius: 999px;
}

.journey-waypoint__track {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.journey-waypoint__ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(196, 149, 106, 0.35);
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(4px);
  transition: transform 0.4s var(--ease-out), border-color 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.journey-waypoint__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--terracotta);
  opacity: 0.6;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), background-color 0.4s var(--ease-out);
}

.journey-waypoint__meta {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  color: var(--terracotta);
  opacity: 0.85;
  transition: opacity 0.3s var(--ease-out), color 0.3s var(--ease-out);
}

/* Hover & Reached States */
.journey-waypoint:hover,
.journey-waypoint.is-reached {
  transform: translateX(2px);
}

.journey-waypoint:hover .journey-waypoint__ring,
.journey-waypoint.is-reached .journey-waypoint__ring {
  transform: scale(1.3);
  border-color: var(--terracotta);
  box-shadow: 0 0 16px rgba(196, 149, 106, 0.4);
}

.journey-waypoint:hover .journey-waypoint__dot,
.journey-waypoint.is-reached .journey-waypoint__dot {
  opacity: 1;
  transform: scale(1.4);
  background: var(--gold);
}

.journey-waypoint:hover .journey-waypoint__meta,
.journey-waypoint.is-reached .journey-waypoint__meta {
  opacity: 1;
  color: var(--charcoal);
  font-weight: 500;
}

.journey-waypoint--hero {
  margin-bottom: 0.75rem;
}

.journey-waypoint--closing {
  margin-bottom: 2rem;
}

/* ── Section Data Popover One-Liner Pill ───────────── */
.waypoint-popover {
  position: absolute;
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  padding: 0.38rem 0.85rem;
  background: rgba(255, 254, 250, 0.96);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(196, 149, 106, 0.3);
  border-radius: 999px;
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.08), 0 1px 4px rgba(196, 149, 106, 0.06);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease-out), transform 0.22s var(--ease-out), visibility 0.22s;
  z-index: 1010;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
}

.waypoint-popover::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: rgba(255, 254, 250, 0.96);
  border-top: 1px solid rgba(196, 149, 106, 0.3);
  border-right: 1px solid rgba(196, 149, 106, 0.3);
}

.waypoint-popover__tag {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.82rem;
  color: var(--terracotta);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.waypoint-popover__divider {
  color: rgba(196, 149, 106, 0.45);
  font-size: 0.72rem;
  user-select: none;
}

.waypoint-popover__text {
  font-family: var(--font-sans);
  font-size: 0.76rem;
  color: var(--charcoal);
  font-weight: 400;
  letter-spacing: 0.01em;
}

/* Inline Popover (Attached to Section Headers) */
.waypoint-popover--inline {
  left: calc(100% + 12px);
  right: auto;
  top: 50%;
  transform: translateY(-50%) translateX(-6px);
}

.waypoint-popover--inline::after {
  left: -5px;
  right: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
  border-top: 1px solid rgba(196, 149, 106, 0.3);
  border-right: 1px solid rgba(196, 149, 106, 0.3);
}

.journey-waypoint:hover .waypoint-popover--inline,
.journey-waypoint:focus-within .waypoint-popover--inline,
.journey-waypoint.is-open .waypoint-popover--inline {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

@media (max-width: 640px) {
  .waypoint-popover--inline {
    display: none;
  }
}

/* ── Floating Journey Rail Navigation ─────────────── */
.journey-rail {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  align-items: center;
  pointer-events: auto;
}

@media (max-width: 960px) {
  .journey-rail {
    display: none;
  }
}

.journey-rail__track {
  position: absolute;
  left: 50%;
  top: 12px;
  bottom: 12px;
  width: 1.5px;
  background: rgba(196, 149, 106, 0.2);
  transform: translateX(-50%);
  pointer-events: none;
  border-radius: 999px;
}

.journey-rail__progress {
  width: 100%;
  height: 0%;
  background: var(--terracotta);
  border-radius: 999px;
  transition: height 0.15s ease-out;
}

.journey-rail__dots {
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
}

.rail-node {
  position: relative;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: none;
}

.rail-node__dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--cream);
  border: 1.5px solid rgba(196, 149, 106, 0.45);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
  transition: all 0.35s var(--ease-out);
}

.rail-node:hover .rail-node__dot,
.rail-node:focus-visible .rail-node__dot,
.rail-node.is-active .rail-node__dot {
  transform: scale(1.4);
  background: var(--terracotta);
  border-color: var(--terracotta);
  box-shadow: 0 0 12px rgba(196, 149, 106, 0.5);
}

/* Floating Rail Popover Notch */
.journey-rail .waypoint-popover {
  right: calc(100% + 14px);
  top: 50%;
  transform: translateY(-50%) translateX(10px);
}

.journey-rail .waypoint-popover::after {
  content: '';
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 10px;
  height: 10px;
  background: rgba(255, 254, 250, 0.96);
  border-top: 1px solid rgba(196, 149, 106, 0.28);
  border-right: 1px solid rgba(196, 149, 106, 0.28);
}

.rail-node:hover .waypoint-popover,
.rail-node:focus-visible .waypoint-popover,
.rail-node.is-open .waypoint-popover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

/* ── Legacy Journey Nodes Fallback ─────────────────── */
.journey-nodes {
  display: none;
}

/* ── Shared Typography ─────────────────────────────── */
.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: 0.06em;
  color: var(--charcoal);
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin-top: 1rem;
  opacity: 0.5;
}

/* ── Reveal Animations ─────────────────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--duration-slow) var(--ease-out),
              transform var(--duration-slow) var(--ease-out);
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-group .reveal-item:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal-item:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal-item:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal-item:nth-child(4) { transition-delay: 0.3s; }
.reveal-group .reveal-item:nth-child(5) { transition-delay: 0.4s; }
.reveal-group .reveal-item:nth-child(6) { transition-delay: 0.5s; }
.reveal-group .reveal-item:nth-child(7) { transition-delay: 0.6s; }
.reveal-group .reveal-item:nth-child(8) { transition-delay: 0.7s; }
.reveal-group .reveal-item:nth-child(9) { transition-delay: 0.8s; }
.reveal-group .reveal-item:nth-child(10) { transition-delay: 0.9s; }

/* Draw-line animation for SVGs */
.draw-line {
  stroke-dasharray: 500;
  stroke-dashoffset: 500;
  transition: stroke-dashoffset 2s var(--ease-smooth);
}

.is-visible .draw-line,
.draw-line.is-drawn {
  stroke-dashoffset: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .draw-line {
    stroke-dashoffset: 0;
    transition: none;
  }
  .hero__circle-ring,
  .spiral-path {
    stroke-dashoffset: 0 !important;
  }
}

/* ═══════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--side-pad);
  z-index: 5;
  overflow: hidden;
}

.hero__cosmos {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero__circle-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
  margin-bottom: 2rem;
}

.hero__circle {
  opacity: 0;
  animation: heroCircleFade 1.5s var(--ease-out) 0.3s forwards;
}

.hero__circle-ring {
  animation: drawCircle 3s var(--ease-smooth) 0.8s forwards;
}

.hero__star {
  animation: starAppear 1s var(--ease-out) 2.5s forwards;
}

.hero__descending-line {
  width: 1px;
  height: 0;
  background: linear-gradient(to bottom, var(--gold), transparent);
  opacity: 0.35;
  animation: lineDescend 2s var(--ease-smooth) 3s forwards;
}

.hero__text {
  text-align: center;
  z-index: 3;
  position: relative;
}

.hero__name {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  letter-spacing: 0.15em;
  color: var(--charcoal);
  opacity: 0;
  animation: textFadeUp 1.2s var(--ease-out) 1s forwards;
}

.hero__fullname {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(0.85rem, 2vw, 1.1rem);
  letter-spacing: 0.2em;
  color: var(--warm-grey);
  margin-top: 0.5rem;
  opacity: 0;
  animation: textFadeUp 1.2s var(--ease-out) 1.4s forwards;
}

.hero__tagline {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: clamp(0.8rem, 1.5vw, 0.95rem);
  letter-spacing: 0.08em;
  color: var(--warm-grey);
  margin-top: 1.5rem;
  opacity: 0;
  animation: textFadeUp 1.2s var(--ease-out) 1.8s forwards;
}

.hero__reflection {
  font-family: var(--font-serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  line-height: 1.8;
  max-width: 520px;
  margin: 2rem auto 0;
  color: var(--soft-black);
  opacity: 0;
  animation: textFadeUp 1.2s var(--ease-out) 2.2s forwards;
}

.hero__scroll-prompt {
  position: absolute;
  bottom: clamp(24px, 5vh, 48px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: textFadeUp 1s var(--ease-out) 3.5s forwards;
}

.hero__scroll-prompt span {
  font-family: var(--font-serif);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--light-grey);
  font-style: italic;
}

.hero__scroll-prompt svg {
  color: var(--light-grey);
  animation: scrollBounce 2.5s var(--ease-smooth) infinite;
}

/* Hero Keyframes */
@keyframes heroCircleFade {
  to { opacity: 1; }
}

@keyframes drawCircle {
  to { stroke-dashoffset: 60; /* Leave gap — incomplete */ }
}

@keyframes starAppear {
  to { opacity: 0.7; }
}

@keyframes lineDescend {
  to { height: 80px; }
}

@keyframes textFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ── Hero Dynamic Node & Edge Network ───────────────── */
.hero__network-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  animation: heroFloatFade 1.5s var(--ease-out) 1.5s forwards;
}

.hero__floating-elements {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

.hero__float-item {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--charcoal);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), color 0.3s var(--ease-out);
}

.hero__float-item svg {
  opacity: 0.36;
  color: var(--charcoal);
  transition: opacity 0.3s var(--ease-out), transform 0.4s var(--ease-out), color 0.3s var(--ease-out);
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.02));
}

.hero__float-item:hover,
.hero__float-item.is-active {
  z-index: 10;
}

.hero__float-item:hover svg,
.hero__float-item.is-active svg {
  opacity: 0.95;
  transform: scale(1.2);
  color: var(--soft-black);
}

.hero__float-item.is-connected svg {
  opacity: 0.75;
  color: var(--charcoal);
}

.hero__float-label {
  font-family: var(--font-serif);
  font-size: 0.68rem;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--terracotta);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  pointer-events: none;
  white-space: nowrap;
}

.hero__float-item:hover .hero__float-label,
.hero__float-item.is-active .hero__float-label {
  opacity: 0.95;
  transform: translateY(0);
}

/* 20 Specific Positions & Motion Keyframes */
.hero__float-1  { top: 13%; left: 8%;   animation: heroFloatFade 1.5s var(--ease-out) 1.5s forwards, floatMotionA 9s ease-in-out 3.0s infinite; }
.hero__float-2  { top: 11%; left: 22%;  animation: heroFloatFade 1.5s var(--ease-out) 1.7s forwards, floatMotionB 11s ease-in-out 3.2s infinite; }
.hero__float-3  { top: 25%; left: 10%;  animation: heroFloatFade 1.5s var(--ease-out) 1.9s forwards, floatMotionC 10s ease-in-out 3.4s infinite; }
.hero__float-4  { top: 24%; left: 26%;  animation: heroFloatFade 1.5s var(--ease-out) 2.1s forwards, floatMotionA 12s ease-in-out 3.6s infinite; }
.hero__float-5  { top: 43%; left: 6%;   animation: heroFloatFade 1.5s var(--ease-out) 2.3s forwards, floatMotionB 9.5s ease-in-out 3.8s infinite; }
.hero__float-6  { top: 45%; left: 19%;  animation: heroFloatFade 1.5s var(--ease-out) 2.5s forwards, floatMotionC 10.5s ease-in-out 4.0s infinite; }
.hero__float-7  { top: 62%; left: 8%;   animation: heroFloatFade 1.5s var(--ease-out) 2.7s forwards, floatMotionA 11.5s ease-in-out 4.2s infinite; }
.hero__float-8  { top: 65%; left: 22%;  animation: heroFloatFade 1.5s var(--ease-out) 2.9s forwards, floatMotionB 8.5s ease-in-out 4.4s infinite; }
.hero__float-9  { top: 80%; left: 12%;  animation: heroFloatFade 1.5s var(--ease-out) 3.1s forwards, floatMotionC 12.5s ease-in-out 4.6s infinite; }
.hero__float-10 { top: 83%; left: 26%;  animation: heroFloatFade 1.5s var(--ease-out) 3.3s forwards, floatMotionA 9s ease-in-out 4.8s infinite; }

.hero__float-11 { top: 12%; right: 23%; animation: heroFloatFade 1.5s var(--ease-out) 1.6s forwards, floatMotionB 10s ease-in-out 3.1s infinite; }
.hero__float-12 { top: 14%; right: 9%;  animation: heroFloatFade 1.5s var(--ease-out) 1.8s forwards, floatMotionC 9.5s ease-in-out 3.3s infinite; }
.hero__float-13 { top: 27%; right: 21%; animation: heroFloatFade 1.5s var(--ease-out) 2.0s forwards, floatMotionA 11s ease-in-out 3.5s infinite; }
.hero__float-14 { top: 32%; right: 8%;  animation: heroFloatFade 1.5s var(--ease-out) 2.2s forwards, floatMotionB 12s ease-in-out 3.7s infinite; }
.hero__float-15 { top: 48%; right: 6%;  animation: heroFloatFade 1.5s var(--ease-out) 2.4s forwards, floatMotionC 10s ease-in-out 3.9s infinite; }
.hero__float-16 { top: 50%; right: 19%; animation: heroFloatFade 1.5s var(--ease-out) 2.6s forwards, floatMotionA 8.5s ease-in-out 4.1s infinite; }
.hero__float-17 { top: 66%; right: 7%;  animation: heroFloatFade 1.5s var(--ease-out) 2.8s forwards, floatMotionB 12.5s ease-in-out 4.3s infinite; }
.hero__float-18 { top: 68%; right: 22%; animation: heroFloatFade 1.5s var(--ease-out) 3.0s forwards, floatMotionC 9s ease-in-out 4.5s infinite; }
.hero__float-19 { top: 83%; right: 11%; animation: heroFloatFade 1.5s var(--ease-out) 3.2s forwards, floatMotionA 10.5s ease-in-out 4.7s infinite; }
.hero__float-20 { top: 82%; right: 25%; animation: heroFloatFade 1.5s var(--ease-out) 3.4s forwards, floatMotionB 11.5s ease-in-out 4.9s infinite; }

@keyframes heroFloatFade {
  to { opacity: 1; }
}

@keyframes floatMotionA {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(5px, -8px) rotate(2deg); }
  66% { transform: translate(-4px, 6px) rotate(-1.5deg); }
}

@keyframes floatMotionB {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(-6px, 8px) rotate(-2.5deg); }
  66% { transform: translate(6px, -5px) rotate(2deg); }
}

@keyframes floatMotionC {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(6px, 6px) rotate(2deg); }
  66% { transform: translate(-5px, -7px) rotate(-2deg); }
}

@media (max-width: 900px) {
  .hero__float-item svg {
    transform: scale(0.8);
    opacity: 0.3;
  }
}

@media (max-width: 600px) {
  .hero__floating-elements,
  .hero__network-canvas {
    display: block;
  }

  .hero__float-item svg {
    transform: scale(0.65);
    opacity: 0.32;
  }

  .hero__float-label {
    font-size: 0.58rem;
  }

  /* Perimeter distribution on mobile */
  .hero__float-1  { top: 5%; left: 3%; }
  .hero__float-2  { top: 5%; left: 24%; }
  .hero__float-3  { top: 16%; left: 2%; }
  .hero__float-4  { top: 22%; left: 14%; }
  .hero__float-5  { top: 40%; left: 1%; }
  .hero__float-6  { top: 52%; left: 4%; }
  .hero__float-7  { top: 68%; left: 2%; }
  .hero__float-8  { top: 76%; left: 14%; }
  .hero__float-9  { top: 88%; left: 5%; }
  .hero__float-10 { top: 89%; left: 26%; }

  .hero__float-11 { top: 5%; right: 24%; }
  .hero__float-12 { top: 5%; right: 3%; }
  .hero__float-13 { top: 16%; right: 2%; }
  .hero__float-14 { top: 22%; right: 14%; }
  .hero__float-15 { top: 40%; right: 1%; }
  .hero__float-16 { top: 52%; right: 4%; }
  .hero__float-17 { top: 68%; right: 2%; }
  .hero__float-18 { top: 76%; right: 14%; }
  .hero__float-19 { top: 88%; right: 5%; }
  .hero__float-20 { top: 89%; right: 26%; }
}

/* ═══════════════════════════════════════════════════════
   ABOUT SECTION (CORE FOUNDATION & IDENTITY)
   ═══════════════════════════════════════════════════════ */
.about {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  z-index: 5;
  background: var(--sage);
  border-top: 1px solid rgba(139, 158, 139, 0.22);
}

.about__header {
  max-width: var(--content-wide);
  margin: 0 auto 3rem;
}

.about__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--content-wide);
  margin: 0 auto;
  align-items: start;
}

@media (min-width: 860px) {
  .about__body {
    grid-template-columns: 1.18fr 0.82fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: start;
  }
}

/* ── Narrative Column ────────────────────────────── */
.about__content {
  display: flex;
  flex-direction: column;
}

.about__lead {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  line-height: 1.85;
  color: var(--charcoal);
  margin-bottom: 1.6rem;
}

.about__lead strong {
  font-weight: 500;
  color: var(--soft-black);
}

/* ── Stylish Bullet Points ────────────────────────── */
.about__points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.about__point {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(139, 158, 139, 0.22);
  border-radius: 8px;
  transition: all 0.3s var(--ease-out);
  backdrop-filter: blur(4px);
}

.about__point:hover {
  background: #ffffff;
  border-color: rgba(196, 149, 106, 0.45);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(139, 158, 139, 0.15);
}

.about__point-bullet {
  font-size: 0.75rem;
  color: var(--terracotta);
  line-height: 1.7;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease-out);
}

.about__point:hover .about__point-bullet {
  transform: scale(1.3) rotate(45deg);
}

.about__point-text {
  font-family: var(--font-serif);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.65;
  color: var(--charcoal);
}

.about__point-text strong {
  font-weight: 500;
  color: var(--soft-black);
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.01em;
  margin-right: 0.25rem;
}

.about__point-text em {
  font-style: italic;
  color: var(--terracotta);
}

.about__point-text a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 500;
  transition: color 0.2s var(--ease-out);
}

.about__point-text a:hover {
  color: var(--charcoal);
}

/* ── Right Column: Architectural Visuals ─────────── */
.about__visuals {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.about__visuals-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.about__visual-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.5rem 1rem;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(139, 158, 139, 0.25);
  border-radius: 12px;
  gap: 0.75rem;
  transition: all 0.35s var(--ease-out);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.about__visual-card:hover {
  background: #ffffff;
  border-color: rgba(196, 149, 106, 0.45);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(196, 149, 106, 0.12);
}

.about__visual-card--wide {
  padding: 1.75rem 1.25rem;
}

.about__visual-card svg {
  display: block;
}

.about__gear-morph,
.about__circuit-morph {
  width: 90px;
  height: 90px;
}

.about__visual-card--wide svg {
  width: 100%;
  max-width: 180px;
  height: auto;
}

.about__visual-caption {
  font-family: var(--font-serif);
  font-size: 0.76rem;
  font-style: italic;
  color: var(--warm-grey);
  letter-spacing: 0.04em;
}

/* Morph Animations */
.about__gear-morph .gear-group {
  transition: opacity 1.5s var(--ease-smooth) 1s;
}

.about__gear-morph .component-tree-group {
  transition: opacity 1.5s var(--ease-smooth) 2s;
}

.about__gear-morph:hover .gear-group,
.is-visible .about__gear-morph .gear-group {
  opacity: 0.3;
}

.about__gear-morph:hover .component-tree-group,
.is-visible .about__gear-morph .component-tree-group {
  opacity: 1;
}

/* ── Signature Tactile Chips (Below Visuals) ─────── */
.about__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(139, 158, 139, 0.25);
  justify-content: flex-start;
}

.about__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.95rem;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(139, 158, 139, 0.35);
  border-radius: 24px;
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-style: italic;
  color: var(--soft-black);
  letter-spacing: 0.02em;
  transition: all 0.35s var(--ease-out);
  cursor: default;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.about__chip:hover {
  background: #ffffff;
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(139, 158, 139, 0.25);
}

.about__chip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out);
}

.about__chip:hover .about__chip-icon {
  transform: scale(1.15);
}

.about__illu-item::after {
  content: attr(data-label);
  font-family: var(--font-serif);
  font-size: 0.7rem;
  font-style: italic;
  letter-spacing: 0.05em;
  color: var(--warm-grey);
}

.illu-label {
  font-family: var(--font-serif);
  font-size: 7px;
  fill: var(--warm-grey);
  font-style: italic;
}

/* Map dots pulse */
.map-dot {
  animation: dotPulse 3s var(--ease-smooth) infinite;
}

.map-dot:nth-child(4) { animation-delay: 0.5s; }
.map-dot:nth-child(6) { animation-delay: 1s; }

@keyframes dotPulse {
  0%, 100% { r: 3; opacity: 0.7; }
  50% { r: 4; opacity: 1; }
}

/* Spiral draw */
.spiral-path {
  transition: stroke-dashoffset 4s var(--ease-smooth);
}

.is-visible .spiral-path {
  stroke-dashoffset: 0;
}

/* ═══════════════════════════════════════════════════════
   EXPERIENCE SECTION
   ═══════════════════════════════════════════════════════ */
.experience {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  z-index: 5;
  background: var(--parchment);
  border-top: 1px solid rgba(196, 149, 106, 0.16);
}

.experience__header {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.experience__timeline {
  max-width: var(--content-wide);
  margin: 0 auto;
  position: relative;
  padding-left: 60px;
}

@media (min-width: 768px) {
  .experience__timeline {
    padding-left: 80px;
  }
}

.timeline__thread {
  position: absolute;
  left: 19px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom,
    var(--gold-dim),
    var(--gold) 20%,
    var(--gold) 80%,
    var(--gold-dim)
  );
  opacity: 0.4;
}

@media (min-width: 768px) {
  .timeline__thread {
    left: 39px;
  }
}

.timeline__node {
  position: relative;
  margin-bottom: clamp(3rem, 8vh, 6rem);
}

.timeline__node:last-child {
  margin-bottom: 0;
}

.timeline__marker {
  position: absolute;
  left: -60px;
  top: 0;
}

@media (min-width: 768px) {
  .timeline__marker {
    left: -80px;
  }
}

.timeline__marker .node-circle {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.5s var(--ease-smooth);
}

.timeline__node.is-visible .node-circle {
  stroke-dashoffset: 0;
}

.timeline__content {
  padding: 1.5rem 0;
}

.timeline__period {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-grey);
  margin-bottom: 0.5rem;
}

.timeline__company {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 0.25rem;
}

.timeline__role {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--warm-grey);
  margin-bottom: 1.5rem;
}

.timeline__details p {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--soft-black);
}

.timeline__highlight {
  padding: 1rem 1.25rem;
  border-left: 2px solid var(--gold);
  background: rgba(196, 149, 106, 0.04);
  border-radius: 0 4px 4px 0;
}

.timeline__highlight em {
  color: var(--terracotta);
}

.timeline__illustration {
  margin-top: 1.5rem;
  opacity: 0.7;
  transition: opacity 0.6s var(--ease-out);
}

.timeline__node:hover .timeline__illustration {
  opacity: 1;
}

.timeline__illustration svg {
  width: 100%;
  max-width: 280px;
  height: auto;
}

/* ═══════════════════════════════════════════════════════
   SKILLS SECTION
   ═══════════════════════════════════════════════════════ */
.skills {
  position: relative;
  padding: var(--section-pad) var(--side-pad) calc(var(--section-pad) + 2rem);
  z-index: 5;
  background: var(--warm-white);
  border-top: 1px solid rgba(196, 149, 106, 0.14);
}

.skills__header {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.skills__columns {
  max-width: var(--content-wide);
  margin: 2.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 820px) {
  .skills__columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.75rem;
  }

  /* Staircase stepped vertical offset */
  .skills__column--1 {
    transform: translateY(0);
  }

  .skills__column--2 {
    transform: translateY(2.2rem);
  }

  .skills__column--3 {
    transform: translateY(4.4rem);
  }
}

.skills__column {
  display: flex;
  flex-direction: column;
}

.skills__column-header {
  display: flex;
  align-items: baseline;
  gap: 0.85rem;
  padding-bottom: 0.85rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(196, 149, 106, 0.3);
}

.skills__column-num {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-style: italic;
  line-height: 1;
  color: var(--terracotta);
  opacity: 0.85;
}

.skills__column-title-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.skills__column-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}

.skills__column-subtitle {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--warm-grey);
}

.skills__stack {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.skill-cell {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.95rem;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  transition: transform 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
  cursor: default;
  position: relative;
}

.skill-cell:hover {
  border-color: var(--terracotta);
  background: rgba(255, 255, 255, 0.95);
  transform: translateX(4px);
  box-shadow: 0 4px 14px rgba(196, 149, 106, 0.1);
}

.skill-cell__icon {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--charcoal);
  opacity: 0.65;
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out), color 0.35s var(--ease-out);
}

.skill-cell:hover .skill-cell__icon {
  opacity: 1;
  color: var(--terracotta);
  transform: scale(1.1);
}

.skill-cell__icon svg {
  width: 100%;
  height: 100%;
}

.skill-cell__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.skill-cell__name {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--soft-black);
  line-height: 1.25;
}

.skill-cell__tag {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  color: var(--warm-grey);
  line-height: 1.25;
}

/* ═══════════════════════════════════════════════════════
   PROJECTS SECTION
   ═══════════════════════════════════════════════════════ */
.projects {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  z-index: 5;
  background: var(--linen);
  border-top: 1px solid rgba(196, 149, 106, 0.14);
}

.projects__header {
  max-width: var(--content-wide);
  margin: 0 auto;
}

.projects__list {
  max-width: var(--content-wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(4rem, 8vh, 7rem);
}

.project-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

@media (min-width: 768px) {
  .project-card {
    grid-template-columns: 1fr 1fr;
    gap: clamp(2rem, 4vw, 4rem);
    align-items: start;
  }

  .project-card:nth-child(even) {
    direction: rtl;
  }

  .project-card:nth-child(even) > * {
    direction: ltr;
  }
}

.project-card:last-child {
  border-bottom: none;
}

.project-card__illustration {
  position: relative;
  opacity: 0.65;
  transition: opacity 0.6s var(--ease-out);
}

.project-card:hover .project-card__illustration {
  opacity: 1;
}

.project-illu {
  width: 100%;
  height: auto;
  max-height: 200px;
}

.project-card__content {
  padding: 0.5rem 0;
}

.project-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  letter-spacing: 0.04em;
  color: var(--charcoal);
  margin-bottom: 1rem;
}

.project-card__description {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  line-height: 1.8;
  color: var(--soft-black);
  margin-bottom: 1rem;
}

.project-card__description a {
  color: var(--terracotta);
  text-decoration: none;
  border-bottom: 1px solid rgba(184, 122, 90, 0.3);
  transition: border-color 0.3s var(--ease-out);
}

.project-card__description a:hover {
  border-bottom-color: var(--terracotta);
}

.project-card__caption {
  font-family: var(--font-serif);
  font-size: 0.85rem;
  color: var(--warm-grey);
  font-style: italic;
  letter-spacing: 0.03em;
}

/* ═══════════════════════════════════════════════════════
   LEARNING SECTION
   ═══════════════════════════════════════════════════════ */
.learning {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  z-index: 5;
  background: var(--sage-tint);
  border-top: 1px solid rgba(139, 158, 139, 0.18);
}

.learning__header {
  max-width: var(--content-wide);
  margin: 0 auto 3rem;
}

.learning__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--content-wide);
  margin: 0 auto;
  align-items: center;
}

@media (min-width: 768px) {
  .learning__body {
    grid-template-columns: 0.9fr 1.1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
  }
}

.learning__constellation {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.learning__map {
  width: 100%;
  max-width: 480px;
  height: auto;
}

.pulse-node {
  animation: nodePulse 4s var(--ease-smooth) infinite;
}

@keyframes nodePulse {
  0%, 100% { r: 8; opacity: 0.4; }
  50% { r: 10; opacity: 0.6; }
}

.learning__content {
  display: grid;
  gap: 2rem;
}

.learning__item h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}

.learning__item p {
  font-size: clamp(0.88rem, 1.2vw, 0.95rem);
  line-height: 1.75;
  color: var(--soft-black);
}

/* ═══════════════════════════════════════════════════════
   CLOSING / CONTACT SECTION
   ═══════════════════════════════════════════════════════ */
.closing {
  position: relative;
  padding: var(--section-pad) var(--side-pad);
  padding-bottom: 4rem;
  z-index: 5;
  background: var(--cream);
  border-top: 1px solid rgba(196, 149, 106, 0.14);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 80vh;
  justify-content: center;
}

.closing__circle {
  margin-bottom: 3rem;
  opacity: 0.5;
}

.closing__circle svg {
  animation: closeCircleSpin 60s linear infinite;
}

@keyframes closeCircleSpin {
  to { transform: rotate(360deg); }
}

.closing__star {
  animation: starPulse 4s var(--ease-smooth) infinite;
}

@keyframes starPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

.closing__text {
  margin-bottom: 3rem;
}

.closing__line {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(1.2rem, 3vw, 2rem);
  letter-spacing: 0.1em;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
}

.closing__line--main {
  font-size: clamp(1.6rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.closing__line--small {
  font-size: clamp(0.85rem, 1.5vw, 1rem);
  color: var(--warm-grey);
  font-style: italic;
  margin-top: 0.5rem;
}

.closing__contact {
  margin-bottom: 4rem;
}

.closing__invitation {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: var(--warm-grey);
  margin-bottom: 2rem;
  letter-spacing: 0.03em;
}

.closing__links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.closing__link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--warm-grey);
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
  padding: 0.5rem 0;
}

.closing__link:hover {
  color: var(--charcoal);
}

.closing__link svg {
  color: var(--warm-grey);
  transition: color 0.3s var(--ease-out);
}

.closing__link:hover svg {
  color: var(--terracotta);
}

.closing__colophon {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.closing__colophon p {
  font-family: var(--font-serif);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--light-grey);
  font-style: italic;
}

.closing__signature {
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════
   HAND-DRAWN UNDERLINE EFFECT
   ═══════════════════════════════════════════════════════ */
.about__text a,
.project-card__description a {
  position: relative;
  text-decoration: none;
}

/* ═══════════════════════════════════════════════════════
   RESPONSIVE REFINEMENTS
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .about__illustrations {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
  }

  .about__illu-item svg {
    max-width: 140px;
  }

  .experience__timeline {
    padding-left: 50px;
  }

  .timeline__marker {
    left: -50px;
  }

  .timeline__thread {
    left: 14px;
  }

  .timeline__marker svg {
    width: 30px;
    height: 30px;
  }

  .skills__columns {
    gap: 2rem;
  }

  .skill-cell {
    padding: 0.75rem 0.9rem;
  }

  .learning__map {
    max-height: 250px;
  }

  .about__chips {
    gap: 0.55rem;
  }

  .about__chip {
    font-size: 0.8rem;
    padding: 0.42rem 0.85rem;
    gap: 0.5rem;
  }

  .about__visuals-grid {
    gap: 0.75rem;
  }

  .about__visual-card {
    padding: 1.1rem 0.75rem;
  }

  .closing__links {
    gap: 1.5rem;
  }

  .project-card {
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero__name {
    letter-spacing: 0.08em;
  }

  .about__visuals-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .about__gear-morph,
  .about__circuit-morph {
    width: 75px;
    height: 75px;
  }
}

/* ═══════════════════════════════════════════════════════
   FOCUS STYLES (Accessibility)
   ═══════════════════════════════════════════════════════ */
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Skip link (hidden) */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--charcoal);
  color: var(--cream);
  padding: 8px 16px;
  z-index: 10000;
  font-size: 0.85rem;
}

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