/* ===== Y2K / Neo-Pop Maximalist Design System ===== */

:root {
  --lime:       #C6F24E;
  --hot-pink:   #FF6FB5;
  --indigo:     #5E4AE3;
  --cyan:       #22D3DB;
  --orange:     #FF7A2E;
  --lilac:      #C9A8FF;
  --cornflower: #7FA9FF;
  --cream:      #FFF6E0;
  --ink:        #0F1020;

  --border-w:   3px;
  --shadow-off: 6px;
  --radius:     24px;
  --tile-pad:   36px;
  --grid-gap:   20px;
  --nav-height: 64px;

  --font-display: 'Bagel Fat One', cursive;
  --font-label:   'Darker Grotesque', sans-serif;
  --font-script:  'Caveat Brush', cursive;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
  background: var(--indigo);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  cursor: none;
}

@media (pointer: coarse) {
  body { cursor: auto; }
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
strong { font-weight: 700; }

/* ===== Accessibility ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  padding: 8px 16px;
  background: var(--orange);
  color: var(--ink);
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  z-index: 300;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
}
.skip-link:focus { top: 8px; }
*:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

/* ===== Grain Overlay ===== */
.grain-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.04;
}

/* ===== Custom Cursor ===== */
.custom-cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--indigo);
  border: 3px solid var(--lime);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.15s, height 0.15s, background 0.15s;
  display: none;
}

.custom-cursor--active {
  display: block;
}

.custom-cursor--hover {
  width: 32px;
  height: 32px;
  background: var(--lime);
  border-color: var(--ink);
}

@media (pointer: coarse) {
  .custom-cursor { display: none !important; }
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  background: var(--cream);
  border: var(--border-w) solid var(--ink);
  border-radius: 50px;
  box-shadow: 4px 4px 0px var(--ink);
  padding: 0 8px;
}

.nav__inner {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 52px;
  padding: 0 12px;
}

.nav__logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--indigo);
  margin-right: 8px;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav__link {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
  padding: 6px 14px;
  border-radius: 20px;
  transition: background 0.2s, color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  background: var(--lime);
  color: var(--ink);
}

.nav__cta {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--orange);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 20px;
  padding: 6px 16px;
  margin-left: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 2px 2px 0px var(--ink);
}

.nav__cta:hover {
  transform: translate(-1px, -1px);
  box-shadow: 3px 3px 0px var(--ink);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: none;
  border-radius: 8px;
}

.nav__hamburger,
.nav__hamburger::before,
.nav__hamburger::after {
  display: block; width: 20px; height: 3px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.nav__hamburger { position: relative; }
.nav__hamburger::before, .nav__hamburger::after { content: ''; position: absolute; left: 0; }
.nav__hamburger::before { top: -7px; }
.nav__hamburger::after { top: 7px; }
.nav__toggle[aria-expanded="true"] .nav__hamburger { background: transparent; }
.nav__toggle[aria-expanded="true"] .nav__hamburger::before { top: 0; transform: rotate(45deg); }
.nav__toggle[aria-expanded="true"] .nav__hamburger::after { top: 0; transform: rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 28px;
  border-radius: 50px;
  border: var(--border-w) solid var(--ink);
  cursor: none;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  white-space: nowrap;
}

.btn--cta {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}
.btn--cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
}

.btn--ghost-dark {
  background: transparent;
  color: var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
}
.btn--ghost-dark:hover {
  background: var(--cream);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0px var(--ink);
}

.btn--full { width: 100%; }

/* ===== Eyebrow Pills ===== */
.eyebrow-pill {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 4px 16px;
  border: 2px solid var(--ink);
  border-radius: 50px;
  background: transparent;
  color: var(--ink);
  margin-bottom: 16px;
}

.eyebrow-pill--light {
  border-color: var(--cream);
  color: var(--cream);
}

.eyebrow-pill--dark {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}

/* ===== Sticker Badges ===== */
.sticker-badge {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 6px 16px;
  border: 2px solid var(--ink);
  border-radius: 50px;
}

.sticker-badge--orange {
  background: var(--orange);
  color: var(--ink);
  box-shadow: 2px 2px 0px var(--ink);
}

.sticker-badge--lime {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 2px 2px 0px var(--ink);
}

/* ===== Stat Pills ===== */
.stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50px;
  color: var(--ink);
}

.stat-pill__num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 14px;
  color: var(--indigo);
}

/* ===== Bento Grid ===== */
.bento {
  max-width: 1100px;
  margin: 0 auto;
  padding: calc(var(--nav-height) + 48px) 24px 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

/* ===== Tiles (universal) ===== */
.tile {
  border: var(--border-w) solid var(--ink);
  border-radius: var(--radius);
  padding: var(--tile-pad);
  box-shadow: var(--shadow-off) var(--shadow-off) 0px var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              box-shadow 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.tile:hover {
  transform: translateY(-4px);
  box-shadow: 10px 10px 0px var(--ink);
}

/* ===== Tile Headings ===== */
.tile__heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--ink);
  margin-bottom: 24px;
  line-height: 1.1;
}

.tile__heading--light {
  color: var(--cream);
}

/* ===== Wavy Edges ===== */
.tile__wave-bottom {
  position: absolute;
  bottom: -1px; left: -1px; right: -1px;
  line-height: 0;
  z-index: 2;
}

.tile__wave-bottom svg {
  display: block;
  width: 100%;
  height: 40px;
}

.tile__wave-top {
  position: absolute;
  top: -1px; left: -1px; right: -1px;
  line-height: 0;
  z-index: 2;
}

.tile__wave-top svg {
  display: block;
  width: 100%;
  height: 40px;
}

/* ===== HERO TILE ===== */
.tile--hero {
  grid-column: 1 / 3;
  background: var(--lime);
  padding: 48px var(--tile-pad) var(--tile-pad);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero__outline-text {
  position: absolute;
  top: 20px; left: 20px;
  font-family: var(--font-display);
  font-size: clamp(80px, 14vw, 160px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 3px var(--ink);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(48px, 10vw, 96px);
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
  opacity: 0.7;
  margin-bottom: 28px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== ABOUT TILE ===== */
.tile--about {
  grid-column: 3 / 4;
  grid-row: 1 / 3;
  background: var(--lime);
  padding-bottom: 60px;
  display: flex;
  flex-direction: column;
}

.about__sticker-hello {
  margin-bottom: 16px;
}

.about__photo-wrap {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--ink);
  box-shadow: 4px 4px 0px var(--ink);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__content {
  flex: 1;
}

.about__bio {
  font-size: 15px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* ===== KNOWLEDGE / SKILLS TILE ===== */
.tile--skills {
  grid-column: 1 / 2;
  background: var(--lilac);
}

.skills__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-chip {
  display: inline-block;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.skill-chip:hover {
  transform: translate(-2px, -2px);
  box-shadow: 3px 3px 0px var(--ink);
}

.skill-chip--1 { background: #ffe3ec; color: var(--ink); }
.skill-chip--2 { background: #d4f5e9; color: var(--ink); }
.skill-chip--3 { background: #fff3cd; color: var(--ink); }
.skill-chip--4 { background: #e0d4ff; color: var(--ink); }
.skill-chip--5 { background: #d4edff; color: var(--ink); }
.skill-chip--6 { background: #ffd4d4; color: var(--ink); }
.skill-chip--7 { background: #d4fffc; color: var(--ink); }
.skill-chip--8 { background: #fff6d4; color: var(--ink); }

/* ===== FEATURED TILE ===== */
.tile--featured {
  grid-column: 2 / 4;
  background: var(--hot-pink);
  min-height: 340px;
}

.featured__outline-text {
  position: absolute;
  top: 10px; right: 20px;
  font-family: var(--font-display);
  font-size: clamp(50px, 9vw, 100px);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
  opacity: 0.12;
  pointer-events: none;
  user-select: none;
  text-align: right;
}

.featured__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  line-height: 0.9;
  color: var(--ink);
  margin-bottom: 16px;
}

.featured__desc {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  max-width: 400px;
  margin-bottom: 20px;
}

.featured__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.featured__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid var(--ink);
  border-radius: 50px;
  color: var(--ink);
}

.featured__ring-sticker {
  position: absolute;
  bottom: 20px;
  right: 24px;
  animation: spin-slow 20s linear infinite;
}

/* ===== PALETTE TILE ===== */
.tile--palette {
  grid-column: 1 / 2;
  background: var(--cream);
}

.palette__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.palette__swatch {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px solid var(--ink);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 4px;
  box-shadow: 2px 2px 0px var(--ink);
}

.palette__label {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 500;
  color: var(--ink);
  background: rgba(255, 246, 224, 0.85);
  padding: 1px 5px;
  border-radius: 4px;
  line-height: 1.3;
}

.palette__label--light {
  color: var(--cream);
  background: rgba(15, 16, 32, 0.5);
}

/* ===== WORK / PROJECTS TILE ===== */
.tile--work {
  grid-column: 2 / 4;
  background: var(--cornflower);
  padding-top: 60px;
}

.projects__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.project-card {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  display: block;
  transition: transform 0.2s, box-shadow 0.2s;
}

.project-card:hover {
  transform: translate(-2px, -2px);
}

.project-card:hover .project-card__inner {
  box-shadow: 5px 5px 0px var(--ink);
}

.project-card__badge {
  position: absolute;
  top: -8px; right: -4px;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--lime);
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 50px;
  padding: 2px 8px;
  transform: rotate(6deg);
  z-index: 2;
  box-shadow: 1px 1px 0px var(--ink);
}

.project-card__inner {
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 16px;
  padding: 20px 16px;
  height: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0px var(--ink);
  transition: box-shadow 0.2s;
}

.project-card__year {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--indigo);
  background: rgba(94, 74, 227, 0.1);
  padding: 2px 8px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 10px;
  align-self: flex-start;
}

.project-card__title {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 18px;
  color: var(--ink);
  margin-bottom: 8px;
  line-height: 1.2;
}

.project-card__desc {
  font-size: 13px;
  line-height: 1.45;
  color: var(--ink);
  opacity: 0.75;
  flex: 1;
  margin-bottom: 12px;
}

.project-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.project-card__tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  padding: 2px 8px;
  border: 1.5px solid var(--ink);
  border-radius: 50px;
  color: var(--ink);
  background: rgba(198, 242, 78, 0.2);
}

/* ===== EXPERIENCE TILE ===== */
.tile--experience {
  grid-column: 1 / 2;
  grid-row: span 2;
  background: var(--cream);
}

.exp__timeline {
  position: relative;
  padding-left: 24px;
}

.exp__timeline::before {
  content: '';
  position: absolute;
  left: 5px;
  top: 8px;
  bottom: 8px;
  width: 3px;
  background: var(--ink);
  border-radius: 2px;
}

.exp__item {
  position: relative;
  padding-bottom: 24px;
}

.exp__item:last-child { padding-bottom: 0; }

.exp__dot {
  position: absolute;
  left: -24px;
  top: 6px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--ink);
  z-index: 1;
}

.exp__item:nth-child(2) .exp__dot { background: var(--lime); }
.exp__item:nth-child(3) .exp__dot { background: var(--hot-pink); }

.exp__date {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--indigo);
  margin-bottom: 4px;
  display: block;
}

.exp__role {
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 2px;
}

.exp__company {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  color: var(--indigo);
  margin-bottom: 6px;
}

.exp__desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink);
  opacity: 0.75;
}

/* ===== PHILOSOPHY TILE ===== */
.tile--philosophy {
  grid-column: 2 / 4;
  background: var(--indigo);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.philosophy__card {
  background: rgba(255, 255, 255, 0.08);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 16px;
  padding: 20px;
  transition: transform 0.2s, background 0.2s;
}

.philosophy__card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.12);
}

.philosophy__num {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--lime);
  margin-bottom: 8px;
  display: block;
}

.philosophy__title {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 16px;
  color: var(--cream);
  line-height: 1.3;
}

/* ===== CONTACT TILE ===== */
.tile--contact {
  grid-column: 1 / -1;
  background: var(--orange);
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 40px;
  align-items: start;
}

.contact__script {
  font-family: var(--font-script);
  font-size: clamp(48px, 8vw, 80px);
  color: var(--ink);
  display: block;
  margin-bottom: 16px;
  line-height: 1;
}

.contact__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.contact__link {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  transition: transform 0.2s;
}

.contact__link:hover {
  transform: translateX(4px);
}

.contact__link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 2px 2px 0px var(--ink);
}

.contact__form {
  background: var(--cream);
  border: var(--border-w) solid var(--ink);
  border-radius: 20px;
  padding: 28px;
  box-shadow: 4px 4px 0px var(--ink);
}

.contact__field { margin-bottom: 16px; }

.contact__label {
  display: block;
  font-family: var(--font-label);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--ink);
  margin-bottom: 6px;
}

.contact__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 14px;
  border-radius: 12px;
  border: 2px solid var(--ink);
  background: #fff;
  color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.contact__input::placeholder { color: #999; }

.contact__input:focus {
  outline: none;
  border-color: var(--indigo);
  box-shadow: 0 0 0 3px rgba(94, 74, 227, 0.2);
}

.contact__textarea {
  resize: vertical;
  min-height: 80px;
}

.contact__status {
  margin-top: 12px;
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
}

.contact__status--success { color: #047857; }
.contact__status--error { color: #dc2626; }

/* ===== Sticker Decorations ===== */
.stickers {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 50;
  overflow: hidden;
}

.sticker {
  position: absolute;
}

.sticker--1 {
  top: 12%;
  left: 3%;
  transform: rotate(-12deg);
}

.sticker--2 {
  top: 38%;
  right: 2%;
  transform: rotate(15deg);
}

.sticker--3 {
  top: 60%;
  left: 1%;
  transform: rotate(-5deg);
}

.sticker--4 {
  bottom: 18%;
  right: 5%;
  transform: rotate(10deg);
}

.sticker--5 {
  top: 5%;
  right: 8%;
  transform: rotate(20deg);
}

.sticker--6 {
  bottom: 35%;
  left: 2%;
  transform: rotate(-18deg);
}

.sticker--7 {
  top: 82%;
  right: 3%;
  transform: rotate(5deg);
}

/* ===== Footer ===== */
.footer {
  padding: 32px 24px;
  text-align: center;
}

.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__name {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--cream);
}

.footer__tagline {
  font-family: var(--font-label);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--lilac);
}

.footer__links {
  display: flex;
  gap: 8px;
}

.footer__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--cream);
  transition: background 0.2s, transform 0.2s;
}

.footer__link:hover {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--ink);
  transform: translateY(-2px);
}

.footer__copy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}

/* ===== Animations ===== */

/* Tile reveal on scroll */
[data-animate] {
  opacity: 0;
  transform: translateY(40px) rotate(2deg);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1),
              transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* Stagger delays */
[data-animate]:nth-child(1) { transition-delay: 0ms; }
[data-animate]:nth-child(2) { transition-delay: 80ms; }
[data-animate]:nth-child(3) { transition-delay: 160ms; }
[data-animate]:nth-child(4) { transition-delay: 240ms; }
[data-animate]:nth-child(5) { transition-delay: 320ms; }
[data-animate]:nth-child(6) { transition-delay: 400ms; }
[data-animate]:nth-child(7) { transition-delay: 480ms; }
[data-animate]:nth-child(8) { transition-delay: 560ms; }
[data-animate]:nth-child(9) { transition-delay: 640ms; }

/* Sticker animations */
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(-2deg); }
  50%      { transform: rotate(2deg); }
}

.sticker--flower { animation: wiggle 3s ease-in-out infinite; }
.sticker--ring   { animation: spin-slow 20s linear infinite; }
.sticker--sunburst { animation: wiggle 4s ease-in-out infinite; }

.sticker--1 { animation: wiggle 3s ease-in-out infinite; }
.sticker--3 { animation: spin-slow 20s linear infinite; }

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }

  .sticker { animation: none !important; }
}

/* ===== Responsive: Tablet ===== */
@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    padding-top: calc(var(--nav-height) + 36px);
  }

  .tile--hero    { grid-column: 1 / -1; }
  .tile--about   { grid-column: 1 / -1; grid-row: auto; flex-direction: row; gap: 24px; align-items: center; }
  .tile--skills  { grid-column: 1 / 2; }
  .tile--featured { grid-column: 1 / -1; }
  .tile--palette { grid-column: 2 / 3; }
  .tile--work    { grid-column: 1 / -1; }
  .tile--experience { grid-column: 1 / -1; grid-row: auto; }
  .tile--philosophy { grid-column: 1 / -1; }
  .tile--contact { grid-column: 1 / -1; }

  .projects__grid { grid-template-columns: repeat(3, 1fr); }

  .nav__list { display: none; }
  .nav__cta  { display: none; }
  .nav__toggle { display: flex; }

  .nav__menu--open {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
  }

  .nav__menu--open .nav__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
  }

  .nav__menu--open .nav__link {
    font-size: 24px;
  }

  .stickers { display: none; }
}

/* ===== Responsive: Mobile ===== */
@media (max-width: 600px) {
  :root {
    --tile-pad: 24px;
    --grid-gap: 14px;
    --radius: 20px;
  }

  .bento {
    grid-template-columns: 1fr;
    padding: calc(var(--nav-height) + 28px) 16px 32px;
  }

  .tile--hero,
  .tile--about,
  .tile--skills,
  .tile--featured,
  .tile--palette,
  .tile--work,
  .tile--experience,
  .tile--philosophy,
  .tile--contact {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .tile--about {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero__title { font-size: 48px; }
  .featured__title { font-size: 36px; }

  .projects__grid { grid-template-columns: 1fr; }
  .philosophy__grid { grid-template-columns: 1fr; }
  .palette__grid { grid-template-columns: repeat(4, 1fr); }

  .tile--contact {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact__script { font-size: 48px; }

  .nav {
    left: 16px;
    right: 16px;
    transform: none;
    top: 10px;
  }

  .nav__inner {
    padding: 0 8px;
    justify-content: space-between;
  }

  .custom-cursor { display: none !important; }
}
