/* ──────────────────────────────────────────
   TOKENS
────────────────────────────────────────── */
:root {
  --black:       #0A0A0A;
  --black-2:     #111111;
  --card:        #171717;
  --card-hover:  #1F1F1F;
  --border:      #2A2A2A;
  --mid:         #444444;
  --muted:       #888888;
  --off-white:   #F5F5F0;
  --white:       #FAFAF8;

  --pink:        #F2A7B8;
  --pink-dim:    rgba(242,167,184,0.12);
  --green:       #7CB987;
  --green-dim:   rgba(124,185,135,0.12);

  --font-serif:  'Noto Serif JP', serif;
  --font-sans:   'Inter', sans-serif;

  --nav-h:       64px;
  --max-w:       1200px;
  --radius:      2px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; font-family: var(--font-serif); }

img { display: block; max-width: 100%; }

/* ──────────────────────────────────────────
   UTILITY
────────────────────────────────────────── */
.accent-pink  { color: var(--pink); }
.accent-green { color: var(--green); }

.btn {
  display: inline-block;
  padding: 12px 28px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary {
  background: var(--pink);
  color: var(--black);
  border-color: var(--pink);
}
.btn-primary:hover { background: #f7c5d0; border-color: #f7c5d0; }

.btn-ghost {
  background: transparent;
  color: var(--off-white);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--muted); }

.btn-full { width: 100%; text-align: center; }

/* ──────────────────────────────────────────
   NAV
────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.nav-logo {
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.04em;
}
.nav-logo-jp {
  font-size: 12px;
  color: var(--muted);
  margin-left: 6px;
  font-weight: 300;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--muted);
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--off-white); }
.nav-links a.active { border-bottom: 1px solid var(--pink); padding-bottom: 2px; }

.nav-toggle { display: none; }

/* ──────────────────────────────────────────
   HERO (home)
────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 60px) 40px 80px;
  position: relative;
  overflow: hidden;
}

.hero-keirsen {
  position: absolute;
  top: 0; bottom: 0;
  left: 120px;
  width: 1px;
  background: var(--border);
  transform: scaleY(0);
  transform-origin: top;
  animation: keirsenGrow 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes keirsenGrow {
  to { transform: scaleY(1); }
}

.hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 80px;
  animation: fadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.6s both;
}

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

.hero-eyebrow {
  display: block;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.12em;
  margin-bottom: 24px;
}

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(52px, 8vw, 100px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero-name em {
  font-weight: 300;
  color: var(--muted);
}

.hero-tagline {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 48px;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: var(--border);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Hero grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* Radial vignette — darkens corners, adds cinematic depth */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, transparent 40%, rgba(0,0,0,0.55) 100%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative vertical kanji column — far right of hero */
.hero-kanji-col {
  position: absolute;
  right: 48px;
  top: 50%;
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  font-family: var(--font-serif);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.07);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

/* Ensure hero content sits above grain/vignette */
.hero-content,
.hero-keirsen,
.hero-scroll-indicator { position: relative; z-index: 1; }

/* ──────────────────────────────────────────
   PAGE HERO (inner pages)
────────────────────────────────────────── */
.page-hero {
  padding: calc(var(--nav-h) + 80px) 40px 60px;
  position: relative;
  border-bottom: 1px solid var(--border);
}
.page-hero-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding-left: 80px;
  animation: fadeUp 0.7s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}
.page-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.page-subtitle {
  font-size: 14px;
  color: var(--muted);
  letter-spacing: 0.06em;
  margin-top: 8px;
}

/* Work page tabs */
.work-tabs {
  display: flex;
  gap: 0;
  max-width: var(--max-w);
  margin: 40px auto 0;
  padding-left: 80px;
  border-top: 1px solid var(--border);
  padding-top: 0;
}
.work-tab {
  padding: 16px 28px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
.work-tab:hover { color: var(--off-white); }
.work-tab.active { color: var(--off-white); border-bottom-color: var(--pink); }
.work-tab.tab-green { color: var(--muted); }
.work-tab.tab-green.active { color: var(--off-white); border-bottom-color: var(--green); }

/* ──────────────────────────────────────────
   SECTIONS
────────────────────────────────────────── */
.section {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 40px;
}

.section-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 40px;
}

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 40px;
}
.section-link {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.section-link:hover { color: var(--pink); }

/* ──────────────────────────────────────────
   HIGHLIGHTS GRID (home)
────────────────────────────────────────── */
.highlights { padding-top: 0; padding-bottom: 80px; }

.highlights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.highlight-card {
  background: var(--black);
  padding: 48px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: background 0.2s;
  position: relative;
}
.highlight-card:hover { background: var(--card); }

.highlight-num {
  font-family: var(--font-serif);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.1em;
}
.highlight-cat {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.highlight-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.3;
}
.highlight-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}
.highlight-arrow {
  font-size: 18px;
  color: var(--muted);
  margin-top: 8px;
  transition: transform 0.2s;
}
.highlight-card:hover .highlight-arrow { transform: translateX(4px); color: var(--pink); }

/* ──────────────────────────────────────────
   STAT BAR
────────────────────────────────────────── */
.stat-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 40px 0;
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 60px;
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 40px;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: var(--border);
}

/* ──────────────────────────────────────────
   FEATURED PREVIEW (home page)
────────────────────────────────────────── */
.preview-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}
.preview-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-decoration: none;
}

/* Real thumbnail cards */
.yt-preview .preview-thumb-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--card);
  transition: border-color 0.2s;
}
.yt-preview:hover .preview-thumb-wrap { border-color: var(--pink); }
.yt-preview .preview-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.82);
  transition: transform 0.4s ease, filter 0.3s ease;
}
.yt-preview:hover .preview-thumb { transform: scale(1.03); filter: brightness(1); }
.yt-preview .preview-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  background: rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.2s;
}
.yt-preview:hover .preview-play { opacity: 1; }

/* Placeholder fallback (still used if no thumb) */
.preview-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s;
}
.placeholder-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
  padding: 20px;
}
.placeholder-icon { font-size: 28px; opacity: 0.5; }
.placeholder-text { font-size: 13px; font-family: var(--font-serif); color: var(--muted); }
.placeholder-sub {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--border);
  border: 1px dashed var(--border);
  padding: 3px 10px;
  border-radius: 2px;
}

.preview-meta { display: flex; flex-direction: column; gap: 2px; }
.preview-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.preview-title {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
}

/* ──────────────────────────────────────────
   WORK PAGE — SECTION HEADERS
────────────────────────────────────────── */
.work-section { padding-top: 80px; padding-bottom: 80px; }
.cine-section { background: linear-gradient(180deg, var(--black) 0%, rgba(124,185,135,0.03) 100%); }

.work-section-header {
  margin-bottom: 60px;
  padding-left: 0;
}
.work-section-label {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.work-section-title {
  font-family: var(--font-serif);
  font-size: clamp(27px, 3.4vw, 44px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.work-section-desc {
  font-size: 14px;
  color: var(--muted);
  max-width: 520px;
}

/* ──────────────────────────────────────────
   WORK CATEGORIES
────────────────────────────────────────── */
.work-category { margin-bottom: 72px; }
.work-category:last-child { margin-bottom: 0; }

.category-label {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding-bottom: 12px;
  margin-bottom: 32px;
}
.category-label.green { color: var(--green); border-bottom-color: rgba(124,185,135,0.3); }

/* Sub-category labels inside a category (e.g. Feature Films / Commercials / Music Videos) */
.sub-category-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(242,167,184,0.6);
  margin-top: 40px;
  margin-bottom: 20px;
  padding-left: 2px;
}

/* ──────────────────────────────────────────
   WORK CARDS
────────────────────────────────────────── */
.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.work-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.work-card:hover {
  border-color: var(--pink);
  transform: translateY(-2px);
}
.cine-card:hover { border-color: var(--green); }

.work-card-badge {
  padding: 8px 16px;
  font-size: 11px;
  letter-spacing: 0.08em;
  background: var(--pink-dim);
  border-bottom: 1px solid rgba(242,167,184,0.2);
}

.work-card-placeholder {
  position: relative;
  overflow: hidden;
  background: var(--black-2);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.work-card-placeholder.tall { aspect-ratio: 16/7; }

/* Real photo dropped into a placeholder box (e.g. featured Dheemi Aanch card) —
   fills and crops properly instead of floating at native size */
.featured-thumb-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.work-card-info {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.work-card-role {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.work-card-role.accent-green { color: var(--green); }

.work-card-title {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.3;
}

.work-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 2px;
}
.tag {
  font-size: 10px;
  padding: 3px 8px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 2px;
  letter-spacing: 0.06em;
  color: var(--muted);
}
.green-tag {
  background: var(--green-dim);
  border-color: rgba(124,185,135,0.25);
  color: var(--green);
}

.work-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

/* Featured card full-width */
.featured-card { grid-column: 1 / -1; flex-direction: row; gap: 0; }
.featured-card .work-card-placeholder { flex: 1; aspect-ratio: auto; min-height: 240px; }
.featured-card .work-card-info { flex: 1; padding: 32px; }

/* ──────────────────────────────────────────
   KEIRSEN DIVIDER
────────────────────────────────────────── */
.section-keirsen-divider {
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 40px;
}
.keirsen-line {
  flex: 1;
  height: 1px;
  background: var(--border);
}
.keirsen-kanji {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 300;
  color: var(--green);
  letter-spacing: 0.1em;
}

/* ──────────────────────────────────────────
   CINE SKILLS BAR
────────────────────────────────────────── */
.cine-skills-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 60px;
  padding: 24px 32px;
  background: var(--green-dim);
  border: 1px solid rgba(124,185,135,0.2);
  border-radius: var(--radius);
}
.cine-skill {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
}
.cine-divider { color: rgba(124,185,135,0.4); }

/* ──────────────────────────────────────────
   ABOUT PAGE
────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: start;
}

.about-photo-placeholder {
  background: var(--card);
  border: 1px solid var(--border);
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}

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

.about-quick-info { display: flex; flex-direction: column; gap: 0; }
.quick-info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  gap: 16px;
}
.qi-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}
.qi-value { text-align: right; }

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.about-heading em { color: var(--muted); }

.about-body {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(245,245,240,0.8);
  margin-bottom: 20px;
}
.about-body:last-of-type { margin-bottom: 40px; }

.about-cta-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* SKILLS */
.skills-section { border-top: 1px solid var(--border); padding-top: 80px; }
.skills-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.skill-group-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.skill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.skill-list li {
  font-size: 13px;
  color: rgba(245,245,240,0.7);
  padding-left: 12px;
  position: relative;
}
.skill-list li::before {
  content: '·';
  position: absolute;
  left: 0;
  color: var(--border);
}

/* ──────────────────────────────────────────
   CONTACT PAGE
────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.contact-heading em { color: var(--muted); }

.contact-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-details { margin-bottom: 40px; }
.contact-detail-row {
  display: flex;
  gap: 20px;
  align-items: baseline;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
a.contact-detail-row:hover { color: var(--pink); }

.cd-label {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  width: 60px;
  flex-shrink: 0;
}
.cd-value { font-size: 14px; }

.social-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}
.social-slots { display: flex; gap: 8px; flex-wrap: wrap; }
.social-slot {
  padding: 8px 14px;
  border: 1px dashed var(--border);
  font-size: 11px;
  color: var(--border);
  border-radius: 2px;
  letter-spacing: 0.06em;
}
.social-slot-active {
  border: 1px solid rgba(242,167,184,0.4);
  color: var(--pink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.social-slot-active:hover {
  background: var(--pink-dim);
  color: #fff;
}

/* FORM */
.contact-form { display: flex; flex-direction: column; gap: 20px; }

.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.form-input {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  appearance: none;
}
.form-input:focus { border-color: var(--pink); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select { cursor: pointer; }
.form-select option { background: var(--card); }

.form-note {
  font-size: 12px;
  color: var(--muted);
  text-align: center;
  margin-top: -8px;
}
.form-note a { color: var(--pink); }

.form-error {
  font-size: 12px;
  color: var(--pink);
  text-align: center;
  border: 1px solid rgba(242,167,184,0.3);
  background: var(--pink-dim);
  border-radius: var(--radius);
  padding: 10px 14px;
}

.form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 20px;
  text-align: center;
}
.success-icon {
  font-size: 32px;
  color: var(--green);
  border: 1px solid var(--green);
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ──────────────────────────────────────────
   FOOTER
────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-left { display: flex; align-items: center; gap: 20px; }
.footer-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 700;
}
.footer-jp {
  font-size: 11px;
  color: var(--muted);
  margin-left: 4px;
}
.footer-copy { font-size: 12px; color: var(--muted); }

.footer-nav { display: flex; gap: 24px; }
.footer-nav a {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--off-white); }

.footer-contact a {
  font-size: 12px;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-contact a:hover { color: var(--pink); }

/* ──────────────────────────────────────────
   YOUTUBE CARDS
────────────────────────────────────────── */
.yt-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
}

.yt-thumb-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: var(--black-2);
  border-bottom: 1px solid var(--border);
}

.yt-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease, filter 0.3s ease;
  filter: brightness(0.85);
}

.yt-card:hover .yt-thumb {
  transform: scale(1.03);
  filter: brightness(1);
}

.yt-play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  background: rgba(0,0,0,0.3);
  opacity: 0;
  transition: opacity 0.2s;
}

.yt-card:hover .yt-play-btn { opacity: 1; }

/* ──────────────────────────────────────────
   INSTAGRAM CARDS
────────────────────────────────────────── */
.ig-card { display: flex; flex-direction: column; text-decoration: none; cursor: pointer; }

.ig-thumb-wrap {
  position: relative;
  aspect-ratio: 1/1;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
  transition: filter 0.2s;
}
.ig-card:hover .ig-thumb-wrap { filter: brightness(1.15); }

.ig-thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-align: center;
}
.ig-thumb-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ig-icon { font-size: 28px; opacity: 0.9; }
.ig-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.8; }

.ig-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

/* ──────────────────────────────────────────
   GOOGLE DRIVE CARDS
────────────────────────────────────────── */
.drive-thumb-wrap {
  display: flex;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
  background: #1a1a2e;
  border-bottom: 1px solid var(--border);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s;
}
.drive-thumb-wrap:hover { background: #22223a; }
.drive-thumb-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: #aaa;
}
.drive-thumb-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.drive-icon { font-size: 28px; color: var(--pink); }
.drive-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; }
.drive-type-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(0,0,0,0.6);
  color: var(--pink);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  border: 1px solid rgba(242,167,184,0.3);
}

/* Playlist header link */
.playlist-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  padding: 10px 18px;
  border: 1px solid rgba(124,185,135,0.4);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--green);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.playlist-link:hover {
  background: var(--green-dim);
  color: #fff;
}
.playlist-link-icon { font-size: 10px; }

/* Script / document link (e.g. Dheemi Aanch screenplay PDF) */
.script-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  padding: 10px 18px;
  border: 1px solid rgba(242,167,184,0.4);
  border-radius: 2px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--pink);
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  align-self: flex-start;
}
.script-link:hover {
  background: var(--pink-dim);
  color: #fff;
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
@media (max-width: 960px) {
  .highlights-grid { grid-template-columns: 1fr; }
  .preview-grid { grid-template-columns: 1fr 1fr; }
  .preview-item.large { grid-column: 1 / -1; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-photo-placeholder { aspect-ratio: 16/9; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .featured-card { flex-direction: column; }
  .featured-card .work-card-placeholder { min-height: auto; }
  .stat { padding: 0 30px; }
}

@media (max-width: 680px) {
  .nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--off-white);
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    border-bottom: 1px solid var(--border);
    padding: 20px 20px;
    gap: 4px;
    z-index: 99;
  }

  .hero { padding: calc(var(--nav-h) + 40px) 20px 60px; }
  .hero-content { padding-left: 32px; }
  .hero-keirsen { left: 16px; }

  .page-hero { padding: calc(var(--nav-h) + 40px) 20px 40px; }
  .page-hero-content { padding-left: 32px; }

  .section { padding: 48px 20px; }
  .work-tabs { padding-left: 0; }

  .stat-bar { flex-wrap: wrap; padding: 24px; }
  .stat { padding: 16px 24px; }
  .stat-divider { width: 40px; height: 1px; }

  .preview-grid { grid-template-columns: 1fr; }
  .preview-item.large { grid-column: auto; }
  .skills-grid { grid-template-columns: 1fr; }

  .footer { flex-direction: column; align-items: flex-start; padding: 24px 20px; }
  .section-keirsen-divider { padding: 0 20px; }
}
