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

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatDoodle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-10px) rotate(6deg); }
  66%       { transform: translateY(-5px) rotate(-4deg); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(6px); opacity: 1; }
}

@keyframes ballBounce {
  0%,  8%  { transform: translateY(0)    scaleY(1)    scaleX(1);   }
  28%       { transform: translateY(13px) scaleY(0.75) scaleX(1.18); animation-timing-function: ease-out; }
  42%       { transform: translateY(-7px) scaleY(1.12) scaleX(0.91); animation-timing-function: ease-in; }
  54%       { transform: translateY(4px)  scaleY(0.94) scaleX(1.04); animation-timing-function: ease-out; }
  63%       { transform: translateY(-2px) scaleY(1.03) scaleX(0.98); }
  70%, 100% { transform: translateY(0)    scaleY(1)    scaleX(1);   }
}

@keyframes drawUnderline {
  to { stroke-dashoffset: 0; }
}

.anim-1 { animation: fadeUp 0.65s ease both 0.05s; }
.anim-2 { animation: fadeUp 0.65s ease both 0.2s; }
.anim-3 { animation: fadeUp 0.65s ease both 0.4s; }

@keyframes introReveal {
  from { opacity: 0; transform: translateY(32px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.intro.revealed {
  animation: introReveal 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

:root {
  --bg:           #FBF8F2;
  --text:         #3D3728;
  --accent:       #4A8FA0;
  --accent2:      #C9778A;
  --muted:        #6B6760;
  --border:       #EBE5DA;
  --nav-h:        68px;
  --pad:          clamp(24px, 4vw, 56px);
  --max-w:        1280px;
  --video-max-h:  calc(100dvh - 180px);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  transition: opacity 0.22s ease;
}

a { color: inherit; text-decoration: none; }

main {
  max-width: var(--max-w);
  margin: 0 auto;
  width: 100%;
}

/* === NAV === */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  transition: box-shadow 0.3s ease;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 100%;
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(26, 23, 18, 0.06);
}

.scroll-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  height: 2px;
  background: var(--accent);
  width: 0%;
  transition: width 0.06s linear;
  pointer-events: none;
  border-radius: 0 1px 1px 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--text);
  transition: color 0.2s;
}

.nav-logo:hover { color: var(--accent); }

.nav-star {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.nav-name {
  font-family: 'Nerko One', cursive;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

@media (max-width: 480px) {
  .nav-name { display: none; }
}

html.custom-cursor * { cursor: none !important; }

@keyframes navStarFlow {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.22); }
  65%  { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes navLetterFlow {
  0%   { transform: scale(1)    translateY(0);   }
  38%  { transform: scale(1.18) translateY(-7px); color: var(--accent); }
  68%  { transform: scale(1.06) translateY(-2px); }
  100% { transform: scale(1)    translateY(0);   }
}

.nav-logo:hover .nav-star {
  animation: navStarFlow 0.58s ease-in-out both;
  color: var(--accent);
}

.nav-name .l { display: inline-block; }

.nav-logo:hover .nav-name .l { animation: navLetterFlow 0.58s ease-in-out both; }
.nav-logo:hover .nav-name .l:nth-child(1)  { animation-delay: 0.00s; }
.nav-logo:hover .nav-name .l:nth-child(2)  { animation-delay: 0.04s; }
.nav-logo:hover .nav-name .l:nth-child(3)  { animation-delay: 0.08s; }
.nav-logo:hover .nav-name .l:nth-child(4)  { animation-delay: 0.12s; }
.nav-logo:hover .nav-name .l:nth-child(5)  { animation-delay: 0.16s; }
.nav-logo:hover .nav-name .l:nth-child(6)  { animation-delay: 0.20s; }
.nav-logo:hover .nav-name .l:nth-child(7)  { animation-delay: 0.24s; }
.nav-logo:hover .nav-name .l:nth-child(8)  { animation-delay: 0.28s; }
.nav-logo:hover .nav-name .l:nth-child(9)  { animation-delay: 0.32s; }
.nav-logo:hover .nav-name .l:nth-child(10) { animation-delay: 0.36s; }

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-family: 'Gochi Hand', cursive;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 8px;
  background-color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 8' preserveAspectRatio='none'%3E%3Cpath d='M0,6 C2,2 5,9 11,4 C14,1 19,8 27,5 C30,3 33,9 41,4 C45,1 50,8 59,5 C63,2 67,9 76,4 C80,1 88,8 100,6' stroke='%234A8FA0' stroke-width='2.2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
  transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* === REEL (hero — first thing visible) === */
.reel {
  padding-top: calc(var(--nav-h) + 28px);
  padding-left: var(--pad);
  padding-right: var(--pad);
  padding-bottom: 0;
}

.reel-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, calc(var(--video-max-h) * 16 / 9));
}

.reel-name {
  font-family: 'Nerko One', cursive;
  font-size: clamp(22px, 2.8vw, 38px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
  max-width: min(100%, calc(var(--video-max-h) * 16 / 9));
  margin-left: auto;
  margin-right: auto;
}

.reel-name em {
  font-style: normal;
  color: var(--accent);
}

.reel-underline {
  display: block;
  width: clamp(100px, 12vw, 180px);
  height: 10px;
  color: var(--accent);
  margin-bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  max-width: min(100%, calc(var(--video-max-h) * 16 / 9));
}

.reel-underline-path {
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: drawUnderline 0.9s cubic-bezier(0.16, 1, 0.3, 1) both 0.5s;
}

/* === INTRO (name + tagline below video) === */
.intro {
  padding: clamp(40px, 5vw, 64px) var(--pad) clamp(72px, 9vw, 110px);
  position: relative;
}

.intro-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  width: fit-content;
}

.intro-label svg {
  color: var(--accent);
  flex-shrink: 0;
}

.intro-name-block {
  display: inline-block;
  position: relative;
  margin-bottom: 36px;
}

.intro-name {
  font-family: 'Nerko One', cursive;
  font-size: clamp(72px, 11vw, 140px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.01em;
  display: block;
}

.intro-name em {
  font-style: normal;
  color: var(--accent);
}

.intro-scrawl {
  display: block;
  width: 100%;
  height: 14px;
  color: var(--accent2);
  margin-top: 8px;
}

.intro-spark {
  position: absolute;
  pointer-events: none;
}

.sp1 {
  width: 22px;
  height: 22px;
  top: -16px;
  right: -38px;
  color: var(--accent);
  animation: floatDoodle 6s ease-in-out infinite;
}

.sp2 {
  width: 14px;
  height: 14px;
  bottom: 28px;
  right: -56px;
  color: var(--accent2);
  animation: floatDoodle 8s ease-in-out infinite 1.5s;
}

.sp3 {
  width: 10px;
  height: 10px;
  top: 35%;
  right: -72px;
  color: var(--accent);
  animation: floatDoodle 7s ease-in-out infinite 0.7s;
}

.intro-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 480px;
}

.intro-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
}

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

.intro-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  background: var(--text);
  color: var(--bg);
  border-radius: 100px;
  font-family: 'Gochi Hand', cursive;
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}

.intro-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.intro-btn svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

.video-wrap {
  position: relative;
  width: 100%;
  max-height: var(--video-max-h);
  max-width: min(100%, calc(var(--video-max-h) * 16 / 9));
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  background: #1F1D19;
  border-radius: 6px;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: var(--border);
}

.play-btn {
  width: 72px;
  height: 72px;
  opacity: 0.5;
}

.placeholder-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.5;
}

.reel-caption {
  margin-top: 16px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* === VIDEO PLAY OVERLAY === */
.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  background: rgba(25, 23, 18, 0.82);
  transition: background 0.25s ease;
}

.video-overlay:hover {
  background: rgba(25, 23, 18, 0.65);
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  border: 2px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.video-overlay:hover .video-play-btn {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.28);
}

/* === INTERIOR PAGE HEADER === */
.page-hero {
  padding-top: calc(var(--nav-h) + clamp(48px, 6vw, 80px));
  padding-left: var(--pad);
  padding-right: var(--pad);
  padding-bottom: clamp(40px, 5vw, 64px);
  border-bottom: 1px solid var(--border);
  margin-bottom: clamp(48px, 6vw, 80px);
}

.page-eyebrow-icon {
  display: block;
  width: 40px;
  height: 40px;
  color: var(--accent);
  margin-bottom: 22px;
  opacity: 0.6;
  animation: ballBounce 1.8s linear infinite 0.4s;
  transform-origin: center bottom;
}

.coming-soon-icon {
  display: block;
  width: 36px;
  height: 36px;
  color: var(--accent2);
  margin-bottom: 28px;
  opacity: 0.65;
  animation: ballBounce 3.2s linear infinite 1s;
  transform-origin: center bottom;
}

.page-title {
  font-family: 'Nerko One', cursive;
  font-size: clamp(52px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  color: var(--text);
}

.page-title em {
  font-style: normal;
  color: var(--accent);
}

/* === BOARDS (STORYBOARDS PAGE) === */
.boards {
  padding: 0 var(--pad);
  display: flex;
  flex-direction: column;
  gap: clamp(100px, 14vw, 160px);
  margin-bottom: clamp(80px, 10vw, 120px);
}

.board-item {
  position: relative;
  transition: transform 0.3s ease;
}

.board-item:hover {
  transform: translateY(-3px);
}

.board-item::before {
  content: attr(data-num);
  position: absolute;
  top: -0.1em;
  left: -0.02em;
  font-family: 'Nerko One', cursive;
  font-size: clamp(80px, 12vw, 150px);
  font-weight: 400;
  color: var(--text);
  opacity: 0.045;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.board-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1F1D19;
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 20px;
  transition: box-shadow 0.3s ease;
}

.board-item:hover .board-video {
  box-shadow: 0 16px 48px rgba(37, 33, 24, 0.14);
}

.board-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.board-info {
  margin-bottom: 16px;
}

.board-title {
  font-family: 'Nerko One', cursive;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.board-desc {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ── PHOTO GRID (storyboards lightbox) ────── */

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

.photo-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

.photo-grid .photo-item {
  aspect-ratio: unset;
  height: auto;
}

.photo-grid .photo-item img {
  height: auto;
  object-fit: initial;
}

.board-photos {
  margin-top: 20px;
}


@media (max-width: 768px) {
  .board-lower {
    grid-template-columns: 1fr;
  }
}

.photo-item {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  background: var(--border);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.photo-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(37, 33, 24, 0.12);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.photo-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(74, 143, 160, 0);
  transition: background 0.22s ease;
  border-radius: 6px;
  pointer-events: none;
  z-index: 1;
}

.photo-item:hover::after {
  background: rgba(74, 143, 160, 0.22);
}

.photo-item::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  transform: translate(-50%, -50%) scale(0.7);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FBF8F2' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='M21 21l-4.35-4.35'/%3E%3Cline x1='11' y1='8' x2='11' y2='14'/%3E%3Cline x1='8' y1='11' x2='14' y2='11'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
  z-index: 2;
  pointer-events: none;
}

.photo-item:hover::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px dashed var(--muted);
  border-radius: 8px;
  color: var(--muted);
}

.img-placeholder svg {
  width: 28px;
  height: 28px;
  opacity: 0.5;
}

.img-placeholder span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* ── LIGHTBOX ─────────────────────────────── */

@keyframes lightboxIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes lightboxOut {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes lightboxImgIn {
  from { transform: scale(0.82); opacity: 0; }
  to   { transform: scale(1);    opacity: 1; }
}
@keyframes lightboxImgOut {
  from { transform: scale(1);    opacity: 1; }
  to   { transform: scale(0.82); opacity: 0; }
}

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(37, 33, 24, 0.88);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox.open {
  display: flex;
  animation: lightboxIn 0.25s ease forwards;
}

.lightbox.closing {
  animation: lightboxOut 0.2s ease forwards;
}

.lightbox.open .lightbox-img {
  animation: lightboxImgIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.lightbox.closing .lightbox-img {
  animation: lightboxImgOut 0.2s ease forwards;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.4);
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: none;
  border: none;
  color: rgba(251, 248, 242, 0.7);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s;
  font-family: 'Outfit', sans-serif;
}

.lightbox-close:hover { color: #FBF8F2; }

/* === SKETCHBOOK GALLERY === */
.gallery-caption {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
  margin-top: 20px;
  max-width: 480px;
}

.gallery-section {
  padding: 0 var(--pad);
  margin-bottom: clamp(80px, 10vw, 120px);
}

.gallery-grid {
  columns: 3;
  column-gap: 14px;
}

.gallery-grid .photo-item {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  display: block;
  width: 100%;
  margin-bottom: 14px;
  aspect-ratio: unset;
  height: auto;
}

.gallery-grid .photo-item img {
  height: auto;
  object-fit: initial;
}

@media (max-width: 640px) {
  .gallery-grid { columns: 2; }
}

/* === VIS DEV / COMING SOON === */
.coming-soon {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
}

.coming-soon-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.coming-soon-title {
  font-family: 'Nerko One', cursive;
  font-weight: 400;
  font-size: clamp(48px, 7vw, 96px);
  letter-spacing: 0.01em;
  line-height: 0.92;
  margin-bottom: 32px;
}

.coming-soon-note {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── ABOUT PAGE ───────────────────────────── */

.about-grid {
  padding: 0 var(--pad) clamp(80px, 10vw, 120px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}

.about-photo-wrap {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}

.about-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 12px;
  overflow: hidden;
  background: var(--border);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-photo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 2px dashed var(--muted);
  border-radius: 12px;
  color: var(--muted);
}

.about-photo-placeholder svg { width: 40px; height: 40px; opacity: 0.4; }
.about-photo-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.about-name {
  font-family: 'Nerko One', cursive;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: 0.01em;
  margin-bottom: 28px;
}

.about-name span { color: var(--accent); }

.about-bio {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 40px;
}

.about-bio p + p { margin-top: 1.2em; }

.resume-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 22px;
  background: var(--text);
  color: var(--bg);
  border-radius: 100px;
  font-family: 'Gochi Hand', cursive;
  font-size: 0.98rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-decoration: none;
  margin-bottom: 32px;
  transition: background 0.2s, transform 0.15s;
}

.resume-btn:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

.resume-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.about-contact-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 14px;
}

.about-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-link {
  display: flex;
  align-items: center;
  font-family: 'Gochi Hand', cursive;
  font-size: 1.02rem;
  color: var(--text);
  transition: color 0.2s;
  text-decoration: none;
}

.about-link:hover { color: var(--accent2); }

.about-link-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 118px;
  flex-shrink: 0;
}

.about-link-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.about-link-sep {
  width: 1px;
  height: 15px;
  background: var(--border);
  flex-shrink: 0;
  margin: 0 14px;
}

.about-link-val {
  font-family: 'Outfit', sans-serif;
  color: var(--muted);
  transition: color 0.2s;
}

.about-link:hover .about-link-val { color: var(--accent2); }

@media (max-width: 720px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo-wrap { position: static; max-width: 260px; }
}

/* === CURSOR TRAIL === */
.cursor-trail {
  position: fixed;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%) scale(0.8);
  opacity: 0;
  transition: opacity 0.4s ease, transform 0.2s ease, color 0.2s ease;
  will-change: left, top;
  color: var(--accent);
}

.cursor-trail.active {
  opacity: 0.75;
  transform: translate(-50%, -50%) scale(1);
}

.cursor-trail.hovering {
  transform: translate(-50%, -50%) scale(1.6);
  color: var(--accent2);
}

.cursor-burst-star {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 28px var(--pad);
}

.footer-copy {
  font-size: 0.72rem;
  color: var(--muted);
  letter-spacing: 0.06em;
}

.footer-email {
  font-family: 'Gochi Hand', cursive;
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.footer-email:hover {
  color: var(--accent);
}

/* === FLOATING DOODLES === */
.doodles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.doodle {
  position: absolute;
  opacity: 0.36;
}

.d1 { width: 34px; top: 22%; right: 7%;   color: var(--accent);  animation: floatDoodle 8s  ease-in-out infinite; }
.d2 { width: 54px; top: 58%; left: 4%;    color: var(--accent2); animation: floatDoodle 6s  ease-in-out infinite 1.2s; }
.d3 { width: 26px; bottom: 22%; right: 14%; color: var(--accent);  animation: floatDoodle 7s  ease-in-out infinite 0.6s; }
.d4 { width: 38px; top: 42%; right: 18%;  color: var(--accent2); animation: floatDoodle 9s  ease-in-out infinite 2.1s; }
.d6 { width: 22px; top: 74%; right: 24%;  color: var(--accent2); animation: floatDoodle 7.5s ease-in-out infinite 0.9s; }
.d7 { width: 46px; top: 36%; left: 17%;   color: var(--accent2); animation: floatDoodle 11s ease-in-out infinite 2.6s; }
.d8 { width: 24px; bottom: 16%; left: 34%; color: var(--accent);  animation: floatDoodle 8.5s ease-in-out infinite 1.8s; }

/* === SCROLL INDICATOR === */
.scroll-hint {
  display: flex;
  justify-content: center;
  padding: 20px 0 0;
}

.scroll-hint svg {
  width: 22px;
  height: 22px;
  color: var(--muted);
  animation: bounce 2s ease-in-out infinite;
  opacity: 0.6;
}

/* === RESPONSIVE === */
@media (max-width: 640px) {
  .nav-links {
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.72rem;
    letter-spacing: 0.08em;
  }

  .footer-inner {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .doodle,
  .page-eyebrow-icon,
  .coming-soon-icon,
  .scroll-hint svg {
    animation: none !important;
  }

  .anim-1, .anim-2, .anim-3 {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .intro.revealed { animation: none !important; }
  .reel-underline-path { animation: none !important; stroke-dashoffset: 0 !important; }
  .cursor-trail { display: none !important; }
  body { transition: none !important; }
  .nav-logo:hover .nav-star { animation: none !important; }
  .lightbox.open, .lightbox.closing { animation: none !important; }
  .lightbox.open .lightbox-img, .lightbox.closing .lightbox-img { animation: none !important; }
}
