
a {
  padding: 0;
  box-sizing: border-box;
}

/* --- Intro Splash --- */
.intro-splash {
  position: fixed;
  inset: 0;
  z-index: 100000;
  background: var(--bg, #1a1a1a);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.intro-splash.is-done {
  opacity: 0;
  pointer-events: none;
}

.intro-splash__word {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 12vw, 120px);
  color: #e8e0d0;
  letter-spacing: -2px;
  text-align: center;
  opacity: 0;
  transform: translateY(8px);
  animation: introWordIn 0.12s ease forwards;
}

@keyframes introWordIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

:root {
  /* Film palette */
  --bg: #1a1a1a;
  --bg-light: #222222;
  --subtitle: #d4c47c;
  --subtitle-dim: #b8a960;
  --warm-white: #e8e0d0;
  --cool-gray: #8a8a8a;
  --accent-glow: rgba(212, 196, 124, 0.15);
  --warm-glow: rgba(255, 180, 80, 0.08);
  --border: rgba(212, 196, 124, 0.12);

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Instrument Serif', serif;
  --font-mono: 'Special Elite', monospace;

  /* Sizes */
  --col-width: 620px;
  --gutter: 24px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  background: var(--bg);
  color: var(--warm-white);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::selection {
  background: var(--subtitle);
  color: var(--bg);
}

a {
  color: var(--subtitle);
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  text-shadow: 0 0 20px rgba(212, 196, 124, 0.5);
}

/* --- Film Grain Overlay --- */
.grain {
  position: fixed;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 816 816' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  animation: grain 0.5s steps(1) infinite;
}

/* --- Cursor Glow --- */
.cursor-glow {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 170, 60, 0.4) 0%, rgba(255, 140, 40, 0.1) 40%, transparent 70%);
  pointer-events: none;
  z-index: 9990;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
  will-change: left, top;
}

/* --- Custom Chunky Cursor Dot --- */
.cursor-dot {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--subtitle);
  pointer-events: none;
  z-index: 9991;
  transform: translate(-50%, -50%);
  transition: width 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              height 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              opacity 0.3s ease,
              background 0.25s ease;
  will-change: left, top;
  mix-blend-mode: difference;
}

/* --- Navigation --- */
.nav {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0 20px;
  position: relative;
  z-index: 10;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: lowercase;
  color: var(--cool-gray);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--subtitle);
  transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 8px rgba(212, 196, 124, 0.4);
}

.nav-link:hover {
  color: var(--subtitle);
}

.nav-link:hover::after {
  width: 100%;
}

/* --- Content Column --- */
.content {
  max-width: var(--col-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
  z-index: 5;
}

/* --- Hero --- */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--cool-gray);
  margin-bottom: 30px;
  opacity: 0.7;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(72px, 15vw, 140px);
  line-height: 0.9;
  letter-spacing: -3px;
  color: var(--warm-white);
  text-shadow:
    0 0 60px rgba(232, 224, 208, 0.15),
    0 0 120px rgba(212, 196, 124, 0.05);
  margin-bottom: 24px;
}

.hero-title__line {
  display: block;
}

.hero-subtitle {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 3px;
  color: var(--subtitle-dim);
  text-transform: lowercase;
  opacity: 0.8;
}

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--subtitle);
  margin: 40px auto 0;
  box-shadow: 0 0 12px rgba(212, 196, 124, 0.3);
}

/* --- Body Text --- */
.body-text {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.75;
  color: var(--warm-white);
  opacity: 0.85;
  margin-bottom: 20px;
}

/* --- Timestamp --- */
.timestamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: var(--subtitle);
  opacity: 0.5;
  margin-top: 30px;
  text-align: center;
}

/* --- Intro Section --- */
.intro {
  padding: 40px 0 80px;
  border-bottom: 1px solid var(--border);
}

/* --- Section Title --- */
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--subtitle);
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--subtitle);
  opacity: 0.3;
  box-shadow: 0 0 8px rgba(212, 196, 124, 0.2);
}

/* --- Work Section (Vertical Videos) --- */
.work {
  padding: 80px 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 160%;
  margin-left: -30%;
}

/* --- Instagram Reels Sub-section --- */
.reels-title {
  margin-top: 80px;
}

/* --- Scroll hint text (mobile only) --- */
.scroll-hint-text {
  display: none;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cool-gray);
  opacity: 0.5;
  margin-top: 0;
  margin-bottom: 20px;
  text-transform: lowercase;
}

.reels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 160%;
  margin-left: -30%;
}

/* --- Instagram Reel Cards --- */
.reel-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  background: var(--bg-light);
  text-decoration: none;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.reel-card:hover {
  transform: translateY(-4px);
}

.reel-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Instagram Images Grid --- */
.ig-images-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 160%;
  margin-left: -30%;
}

/* --- Instagram Post Cards --- */
.ig-post-card {
  position: relative;
  display: block;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--bg-light);
  text-decoration: none;
  transition: transform 0.4s ease;
  cursor: pointer;
}

.ig-post-card:hover {
  transform: translateY(-4px);
}

.ig-post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.05) contrast(1.03);
  transition: filter 0.4s ease, transform 0.4s ease;
}

.ig-post-card:hover img {
  filter: grayscale(0) contrast(1.08);
  transform: scale(1.03);
}

.work-card {
  transition: transform 0.4s ease;
  cursor: pointer;
  position: relative;
}

.work-card:hover {
  transform: translateY(-4px);
}

.work-card__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  position: relative;
}

.work-card__image--vertical {
  aspect-ratio: 9 / 16;
}

.work-card__image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.work-card__placeholder {
  width: 100%;
  height: 100%;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cool-gray);
  transition: all 0.5s ease;
  position: relative;
}

.work-card__play {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 196, 124, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--subtitle);
  opacity: 0.5;
  transition: all 0.4s ease;
}

.work-card:hover .work-card__play {
  opacity: 1;
  border-color: var(--subtitle);
  box-shadow: 0 0 20px rgba(212, 196, 124, 0.2);
  transform: scale(1.1);
}

.work-card__placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 196, 124, 0.05) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.work-card:hover .work-card__placeholder {
  border-color: rgba(212, 196, 124, 0.25);
  background: #252525;
}

.work-card:hover .work-card__placeholder::before {
  opacity: 1;
}

.work-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--warm-white);
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.work-card__desc {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--warm-white);
  opacity: 0.6;
  line-height: 1.5;
  margin-bottom: 8px;
}

.work-card__tag {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--subtitle-dim);
  opacity: 0.6;
}

/* --- Video Lightbox Modal --- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s ease;
}

.video-modal.is-open {
  background: rgba(0, 0, 0, 0.97);
  pointer-events: all;
}

.video-modal__inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  opacity: 0;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.video-modal.is-open .video-modal__inner {
  opacity: 1;
}

.video-modal__video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
  object-fit: contain;
}

.video-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.3s ease;
  z-index: 2;
  opacity: 0.6;
  backdrop-filter: blur(8px);
}

.video-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  opacity: 1;
}

.video-modal__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
  pointer-events: none;
}

.video-modal__title {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.video-modal__tag {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 3px;
  color: var(--subtitle-dim);
  opacity: 0.8;
}

/* --- Photos Section --- */
.photos {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: auto;
  gap: 4px;
  margin-left: calc(-1 * var(--gutter));
  margin-right: calc(-1 * var(--gutter));
}

.photo-item {
  overflow: hidden;
  cursor: pointer;
  line-height: 0;
}

.photo-item:hover img {
  transform: scale(1.03);
  filter: grayscale(0) contrast(1.1);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  min-height: 180px;
  background: var(--bg-light);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--cool-gray);
  transition: all 0.5s ease;
  position: relative;
}

.photo-item--tall .photo-placeholder {
  min-height: 372px;
}

.photo-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 196, 124, 0.04) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.5s ease;
}

.photo-item:hover .photo-placeholder {
  border-color: rgba(212, 196, 124, 0.2);
  background: #252525;
}

.photo-item:hover .photo-placeholder::before {
  opacity: 1;
}

.photo-item img {
  width: 100%;
  height: auto;
  display: block;
  filter: grayscale(0.1) contrast(1.05);
  transition: filter 0.5s ease, transform 0.5s ease;
}

.photo-item:hover img {
  filter: grayscale(0) contrast(1.1);
}

.photo-item--full {
  grid-column: 1 / -1;
}

.photo-item--full img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* --- Photo Slideshow Modal --- */
.photo-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: background 0.3s ease;
}

.photo-modal.is-open {
  background: rgba(0, 0, 0, 0.96);
  pointer-events: all;
}

.photo-modal__inner {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.photo-modal.is-open .photo-modal__inner {
  opacity: 1;
}

.photo-modal__img {
  max-width: 90vw;
  max-height: 88vh;
  object-fit: contain;
  display: block;
  border-radius: 2px;
  user-select: none;
  transition: opacity 0.3s ease;
}

.photo-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.3s ease;
  z-index: 2;
  opacity: 0.6;
  backdrop-filter: blur(8px);
}

.photo-modal__close:hover {
  background: rgba(255, 255, 255, 0.15);
  opacity: 1;
}

.photo-modal__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
  opacity: 0.5;
  backdrop-filter: blur(8px);
  z-index: 2;
}

.photo-modal__nav:hover {
  background: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

.photo-modal__nav--prev {
  left: 20px;
}

.photo-modal__nav--next {
  right: 20px;
}

.photo-modal__counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  color: rgba(255, 255, 255, 0.4);
  z-index: 2;
}

/* --- Fly Easter Egg --- */
.intro {
  position: relative;
}

.fly-wrapper {
  position: absolute;
  top: 45px;
  right: 40px;
  z-index: 20;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: filter 0.2s;
}

.fly-wrapper:hover {
  filter: drop-shadow(0 0 6px rgba(212,196,124,0.35));
}

.fly-icon {
  display: block;
  animation: flyIdle 2s ease-in-out infinite;
}

.fly-clickme {
  font-family: var(--font-mono, 'Space Grotesk', sans-serif);
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--subtitle, #d4c47c);
  margin-bottom: 4px;
  animation: clickmePulse 1.6s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}

/* idle bobbing */
@keyframes flyIdle {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(1px, -2px) rotate(1deg); }
  50%      { transform: translate(-1px, 1px) rotate(-1deg); }
  75%      { transform: translate(1px, -1px) rotate(0.5deg); }
}

/* pulsing click me label */
@keyframes clickmePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.4; transform: scale(0.95); }
}

/* fly away animation */
@keyframes flyAway {
  0%   { transform: translate(0, 0) rotate(0deg); opacity: 1; }
  20%  { transform: translate(10px, -20px) rotate(-15deg); opacity: 1; }
  50%  { transform: translate(-40px, -120px) rotate(25deg); opacity: 0.7; }
  80%  { transform: translate(-150px, -300px) rotate(-40deg); opacity: 0.3; }
  100% { transform: translate(-250px, -500px) rotate(60deg); opacity: 0; }
}

.fly-wrapper.is-flying .fly-icon {
  animation: flyAway 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.fly-wrapper.is-flying .fly-clickme {
  animation: none;
  opacity: 0;
  transition: opacity 0.2s;
}

/* --- About Section --- */
.about {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.about-details {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 196, 124, 0.06);
}

.detail-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  color: var(--cool-gray);
  text-transform: uppercase;
}

.detail-value {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--subtitle);
}

/* --- Contact Section --- */
.contact {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.contact-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 30px;
}

.contact-link {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 1px;
  color: var(--subtitle);
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  position: relative;
}

.contact-link::after {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

.contact-link:hover {
  padding-left: 12px;
  border-color: rgba(212, 196, 124, 0.3);
  text-shadow: 0 0 20px rgba(212, 196, 124, 0.4);
}

.contact-link:hover::after {
  opacity: 0.7;
  transform: translateX(0);
}

/* --- Footer --- */
.footer {
  padding: 60px 0 40px;
}

.footer-line {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin-bottom: 30px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
}

.footer-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 2px;
  color: var(--cool-gray);
  opacity: 0.5;
}

/* ============================================
   SIDE DECORATIVE ELEMENTS (Desktop only)
   ============================================ */

.side-elements {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  display: none;
}

.side-el {
  position: absolute;
  color: var(--subtitle);
  opacity: 0;
  animation: fadeFloat 1s ease forwards;
  transition: opacity 0.3s ease;
}

.side-el svg {
  display: block;
}

.side-label {
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--subtitle-dim);
  opacity: 0.4;
  display: block;
  text-align: center;
  margin-top: 6px;
}

/* Camera - top left */
.side-el--1 {
  top: 12%;
  left: 5%;
  width: 90px;
  opacity: 0.12;
  animation-delay: 0.2s;
  transform: rotate(-8deg);
}

/* TLR Camera - bottom right */
.side-el--2 {
  bottom: 20%;
  right: 6%;
  width: 60px;
  opacity: 0.1;
  animation-delay: 0.5s;
  transform: rotate(5deg);
}

/* Lens - top right */
.side-el--3 {
  top: 25%;
  right: 8%;
  width: 70px;
  opacity: 0.08;
  animation-delay: 0.8s;
}

/* Polaroid - left middle */
.side-el--4 {
  top: 50%;
  left: 7%;
  width: 50px;
  opacity: 0.1;
  animation-delay: 0.3s;
  transform: rotate(12deg);
}

/* Film roll - bottom left */
.side-el--5 {
  bottom: 12%;
  left: 4%;
  width: 100px;
  opacity: 0.08;
  animation-delay: 0.7s;
  transform: rotate(-3deg);
}

/* Star - top center-right */
.side-el--6 {
  top: 8%;
  right: 18%;
  width: 30px;
  opacity: 0.12;
  animation-delay: 1s;
}

/* REC sticker */
.side-el--7 {
  top: 40%;
  right: 5%;
  animation-delay: 0.4s;
}

/* ISO sticker */
.side-el--8 {
  bottom: 35%;
  left: 5%;
  animation-delay: 0.6s;
}

/* Film strip - right side */
.side-el--9 {
  top: 65%;
  right: 3%;
  animation-delay: 0.9s;
}

/* f-stop */
.side-el--10 {
  top: 15%;
  left: 14%;
  animation-delay: 1.1s;
}

.sticker-text {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--subtitle);
  opacity: 0.18;
  white-space: nowrap;
}

.sticker-text--small {
  font-size: 10px;
  opacity: 0.15;
}

/* Film strip */
.film-strip {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 6px 4px;
  border-left: 2px solid var(--subtitle);
  border-right: 2px solid var(--subtitle);
  opacity: 0.1;
}

.film-hole {
  width: 8px;
  height: 5px;
  border-radius: 1px;
  border: 1px solid var(--subtitle);
}

@keyframes fadeFloat {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: var(--target-opacity, 0.12);
  }
}

/* --- Scroll reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

/* Desktop: show side elements */
@media (min-width: 1200px) {
  .side-elements {
    display: block;
  }
}

/* Tablet */
@media (max-width: 768px) {
  :root {
    --col-width: 100%;
    --gutter: 20px;
  }

  body {
    font-size: 16px;
    cursor: auto;
  }

  .cursor-glow {
    display: none;
  }

  .hero-title {
    font-size: 64px;
    letter-spacing: -2px;
  }

  .nav {
    gap: 20px;
    padding: 24px 0 16px;
  }

  .hero {
    padding: 60px 0 40px;
  }

  .work-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-left: 0;
  }

  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-left: 0;
  }

  .ig-images-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    width: 100%;
    margin-left: 0;
  }

  .reels-title {
    margin-top: 50px;
  }

  .work-card__title {
    font-size: 14px;
  }

  .work-card__desc {
    display: none;
  }

  .photo-grid {
    gap: 0;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
  }

  .footer-content {
    flex-direction: column;
    gap: 4px;
    align-items: center;
  }
}

/* Small mobile */
@media (max-width: 420px) {
  .work {
    padding: 0;
    margin-left: calc(-1 * var(--gutter));
    margin-right: calc(-1 * var(--gutter));
  }

  .work .section-title {
    padding: 40px var(--gutter) 0;
    margin-bottom: 20px;
  }

  .reels-title {
    margin-top: 30px;
    padding-left: var(--gutter);
    display: block;
    margin-bottom: 8px;
  }

  .scroll-hint-text {
    display: block;
    padding-left: var(--gutter);
    margin-top: 0;
    margin-bottom: 20px;
  }

  /* --- Instagram Reels: horizontal snap carousel on mobile --- */
  .reels-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0 var(--gutter);
    scrollbar-width: none;
    scroll-padding-left: var(--gutter);
    box-sizing: border-box;
    touch-action: auto;
  }

  .reels-grid::-webkit-scrollbar {
    display: none;
  }

  .reel-card {
    flex: 0 0 calc(100vw - 2 * var(--gutter));
    aspect-ratio: 9 / 16;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 6px;
  }

  /* --- Instagram Images: horizontal snap carousel on mobile --- */
  .ig-images-grid {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 10px;
    width: 100%;
    margin: 0;
    padding: 0 var(--gutter);
    scrollbar-width: none;
    scroll-padding-left: var(--gutter);
    box-sizing: border-box;
    touch-action: auto;
  }

  .ig-images-grid::-webkit-scrollbar {
    display: none;
  }

  .ig-post-card {
    flex: 0 0 calc(100vw - 2 * var(--gutter));
    aspect-ratio: 1 / 1;
    height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    border-radius: 6px;
  }

  .work-grid {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow: visible;
    height: auto;
    margin: 0;
    border-radius: 0;
  }

  .work-card {
    height: 75vh;
    min-height: 0;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    padding: 0;
    position: relative;
    overflow: hidden;
    border-radius: 6px;
  }

  .work-card:hover {
    transform: none;
  }

  .work-card__image {
    position: absolute;
    inset: 0;
    margin-bottom: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
  }

  .work-card__image--vertical {
    aspect-ratio: auto;
  }

  .work-card__image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .work-card__info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: auto;
    padding: 24px 16px;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    z-index: 2;
    width: 100%;
    text-align: left;
  }

  .work-card__title {
    color: #fff;
    font-size: 18px;
    margin-bottom: 2px;
  }

  .work-card__tag {
    color: rgba(255,255,255,0.5);
    font-size: 9px;
  }

  .hero-title {
    font-size: 52px;
  }

  .hero-subtitle {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .nav-link {
    font-size: 11px;
  }
}

/* ============================================
   CUSTOM CURSOR (desktop)
   ============================================ */

@media (hover: hover) {
  body {
    cursor: none;
  }

  a, button, .work-card, .photo-item {
    cursor: none;
  }

  .reel-card, .ig-post-card {
    cursor: pointer;
  }
}

@media (max-width: 768px) {
  .cursor-dot {
    display: none;
  }
}

/* --- Reels Scroll Hint Arrow --- */
.reels-scroll-wrapper {
  position: relative;
}

.reels-scroll-hint {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s ease;
  color: var(--subtitle);
  filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.6));
  animation: scrollHintBounce 1.5s ease-in-out infinite;
}

.reels-scroll-hint.is-visible {
  opacity: 1;
}

.reels-scroll-hint.is-hidden {
  opacity: 0 !important;
  animation: none;
}

@keyframes scrollHintBounce {
  0%, 100% { transform: translateY(-50%) translateX(0); }
  50% { transform: translateY(-50%) translateX(8px); }
}

@keyframes grain {
  0%, 100% { transform: translate(0, 0); }
  10% { transform: translate(-2%, -3%); }
  20% { transform: translate(-5%, 2%); }
  30% { transform: translate(3%, -5%); }
  40% { transform: translate(-2%, 5%); }
  50% { transform: translate(-4%, 3%); }
  60% { transform: translate(5%, 0%); }
  70% { transform: translate(0%, 4%); }
  80% { transform: translate(1%, -3%); }
  90% { transform: translate(-3%, 2%); }
}
