/* ===========================================
   KEletso Tladi — Portfolio
   Dark Cinematic Theme · Neon Orange Accent
   =========================================== */

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

html {
  scroll-behavior: smooth;
  scrollbar-width: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
}

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
  -webkit-user-drag: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

video {
  pointer-events: none;
}

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

/* ---------- VARIABLES ---------- */
:root {
  --bg: #0a0a0a;
  --bg-alt: #111111;
  --text: #ffffff;
  --text-muted: rgba(255,255,255,0.5);
  --accent: #ff5e00;
  --accent-glow: rgba(255,94,0,0.3);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* ---------- UTILITY ---------- */
.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.section-desc {
  font-weight: 200;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

.text-accent {
  color: var(--accent);
}

.section {
  min-height: 100vh;
  padding: 100px 5vw;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

/* ---------- HIDDEN CHECKBOX ---------- */
#menu-toggle {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1003;
  opacity: 0;
  width: 0;
  height: 0;
}

/* ---------- MENU ICON (HAMBUGER) ---------- */
.menu-icon {
  position: fixed;
  top: 24px;
  right: 5vw;
  z-index: 1002;
  width: 28px;
  height: 20px;
  cursor: pointer;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  position: absolute;
  left: 0;
  border-radius: 2px;
  transition: transform 0.4s cubic-bezier(0.65, 0, 0.35, 1), width 0.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu-icon span:nth-child(1) { top: 0; transform-origin: center; }
.menu-icon span:nth-child(2) { bottom: 0; width: 65%; transform-origin: center; }

.menu-icon:hover span:nth-child(2) { width: 100%; }

#menu-toggle:checked + .menu-icon {
  transform: rotate(180deg);
}

#menu-toggle:checked + .menu-icon span:nth-child(1) {
  top: 9px;
  transform: rotate(45deg);
}

#menu-toggle:checked + .menu-icon span:nth-child(2) {
  bottom: 9px;
  width: 100%;
  transform: rotate(-45deg);
}

/* ---------- MENU OVERLAY ---------- */
.menu {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.menu__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transform: scale(0.85) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu__link {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.12em;
  padding: 0.15em 0;
  position: relative;
  transition: color 0.4s, letter-spacing 0.4s;
}

.menu__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.4s cubic-bezier(0.65, 0, 0.35, 1), left 0.4s cubic-bezier(0.65, 0, 0.35, 1);
}

.menu__link:hover {
  color: var(--accent);
  letter-spacing: 0.25em;
}

.menu__link:hover::after {
  width: 100%;
  left: 0;
}

#menu-toggle:checked ~ .menu {
  opacity: 1;
  visibility: visible;
}

#menu-toggle:checked ~ .menu .menu__inner {
  transform: scale(1) translateY(0);
}

/* ---------- PAGE CONTENT WRAPPER ---------- */
.page-content-wrapper {
  position: relative;
  z-index: 2;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1), border-radius 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  min-height: 100vh;
  background: var(--bg);
  transform-origin: center center;
  max-width: 1500px;
  margin: 0 auto;
  outline: 1px solid rgba(255,94,0,0.25);
  outline-offset: -1px;
  box-shadow: 0 0 15px rgba(255,94,0,0.15);
  animation: neonBorder 2.5s ease-in-out infinite;
}

@keyframes neonBorder {
  0%, 100% { box-shadow: 0 0 10px rgba(255,94,0,0.2), 0 0 25px rgba(255,94,0,0.1); }
  50% { box-shadow: 0 0 20px rgba(255,94,0,0.4), 0 0 50px rgba(255,94,0,0.2), 0 0 80px rgba(255,94,0,0.08); }
}

.page-content-wrapper::before,
.page-content-wrapper::after {
  content: '';
  position: fixed;
  top: -10vh;
  height: 120vh;
  width: 55vw;
  background: var(--bg);
  z-index: 0;
  transition: transform 0.55s cubic-bezier(0.65, 0, 0.35, 1), box-shadow 0.55s cubic-bezier(0.65, 0, 0.35, 1);
  pointer-events: none;
}

.page-content-wrapper::before {
  left: -8vw;
}

.page-content-wrapper::after {
  right: -8vw;
}

.page-content {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease;
}

#menu-toggle:checked ~ .page-content-wrapper {
  transform: scale(0.85);
  border-radius: 24px;
  pointer-events: none;
}

#menu-toggle:checked ~ .page-content-wrapper::before {
  transform: translateX(-12vw);
  box-shadow: 4px 0 30px rgba(0,0,0,0.4);
}

#menu-toggle:checked ~ .page-content-wrapper::after {
  transform: translateX(12vw);
  box-shadow: -4px 0 30px rgba(0,0,0,0.4);
}

#menu-toggle:checked ~ .page-content-wrapper .page-content {
  opacity: 0.3;
}

/* ---------- NEON SCROLL RAY ---------- */
.scroll-ray {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 800px;
  background: radial-gradient(ellipse at center, rgba(255,94,0,0.15) 0%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

/* ---------- SCROLL DOTS ---------- */
.scroll-dots {
  position: fixed;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.dot {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.3s, transform 0.3s;
}

.dot:hover { transform: scale(1.4); }

.dot.is-active {
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ---------- HERO ---------- */
.hero {
  padding: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

.hero__videos {
  position: absolute;
  inset: 0;
}

.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__video--2 {
  opacity: 0;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(10,10,10,0.3) 0%, rgba(10,10,10,0.85) 100%);
}

.hero__content {
  position: relative;
  z-index: 2;
}

.hero__greeting {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  opacity: 0;
}

.hero__title, .hero__subtitle, .hero__scroll {
  opacity: 0;
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(3.5rem, 12vw, 9rem);
  line-height: 0.95;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero__subtitle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(0.9rem, 1.6vw, 1.3rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__dot {
  color: var(--accent);
  opacity: 0.6;
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ---------- ORIGIN ---------- */
.origin {
  flex-direction: row;
  align-items: center;
  gap: 5vw;
  padding: 80px 5vw;
}

.origin__image-wrap {
  flex: 0 0 40%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(255,94,0,0.15);
  position: relative;
}

.origin__image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,94,0,0.2), transparent);
}

.origin__image {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.origin__text {
  flex: 1;
}

/* ---------- ABOUT ---------- */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  align-items: center;
}

.about__images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 12px;
  height: 500px;
}

.about__img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.about__img-wrap--1 {
  grid-column: 1;
  grid-row: 1 / 3;
}

.about__img-wrap--2 {
  grid-column: 2;
  grid-row: 1;
}

.about__img-wrap--3 {
  grid-column: 2;
  grid-row: 2;
}

.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.about__img-wrap:hover .about__img {
  transform: scale(1.08);
}

/* ---------- SKILLS ---------- */
.skills {
  text-align: center;
  min-height: auto;
  padding: 120px 5vw;
}

.skills__header {
  margin-bottom: 4rem;
}

.skills__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.skill-card {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: left;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
  cursor: default;
  opacity: 1;
}

.skill-card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-6px);
}

.skill-card__icon {
  width: 44px;
  height: 44px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

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

.skill-card__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
}

.skill-card__desc {
  font-weight: 200;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- JOURNEY ---------- */
.journey {
  text-align: center;
  min-height: auto;
  padding: 120px 5vw;
}

.journey__header {
  margin-bottom: 2rem;
}

.journey__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.journey__card {
  flex: 1;
  max-width: 300px;
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}

.journey__card:hover {
  border-color: var(--accent);
  box-shadow: 0 0 40px var(--accent-glow);
  transform: translateY(-6px);
}

.journey__step {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}

.journey__icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin: 0 auto 1.2rem;
}

.journey__icon svg {
  width: 100%;
  height: 100%;
}

.journey__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
}

.journey__desc {
  font-weight: 200;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.journey__connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  flex-shrink: 0;
}

.journey__line {
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, var(--accent), rgba(255,94,0,0.2));
}

.journey__arrow {
  font-size: 1.2rem;
  color: var(--accent);
  opacity: 0.7;
}

/* ---------- AMBITION ---------- */
.ambition {
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 5vw;
  overflow: hidden;
}

.ambition__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.ambition__text {
  position: absolute;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: clamp(6rem, 18vw, 16rem);
  color: var(--accent);
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 0.08em;
  white-space: nowrap;
  z-index: 1;
  opacity: 0.85;
  pointer-events: none;
}

.ambition__text--outline {
  z-index: 3;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 2px rgba(255,255,255,0.85);
  paint-order: stroke;
  opacity: 1;
  -webkit-mask-image: url('../images/ambition.png');
  mask-image: url('../images/ambition.png');
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.ambition__image {
  position: relative;
  z-index: 2;
  max-height: 70vh;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.ambition__caption {
  margin-top: 2rem;
  font-weight: 200;
  font-size: 1rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ---------- WORK ---------- */
.work {
  padding-bottom: 120px;
}

.work__header {
  text-align: center;
  margin-bottom: 2rem;
}

.work__filter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 3rem;
}

.work__filter-btn {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.work__filter-btn:hover {
  border-color: var(--accent);
  color: #fff;
}

.work__filter-btn.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.work__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 12px;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 5vw;
  min-height: 60vh;
}

.work__item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-alt);
  aspect-ratio: 4 / 3;
  transition: transform 0.4s, box-shadow 0.4s;
}

.work__item:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 40px rgba(255,94,0,0.15);
}

.work__item img,
.work__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.65, 0, 0.35, 1);
}

.work__item:hover img,
.work__item:hover video {
  transform: scale(1.06);
}

.work__item a {
  display: block;
  width: 100%;
  height: 100%;
}

.work__item--wide {
  grid-column: span 2;
}

.work__item--tall {
  grid-row: span 2;
  aspect-ratio: auto;
}

.work__item--full {
  grid-column: 1 / -1;
}

.work__item-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0.75rem;
  text-align: center;
  color: var(--text-muted);
}

.work__item-placeholder span {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.75rem;
  color: #fff;
}

.work__item-placeholder small {
  font-size: 0.6rem;
  opacity: 0.5;
}

.work__item-video-link {
  display: block;
  width: 100%;
  height: 100%;
}

.work__item.is-hidden {
  display: none;
}

/* ---------- WORK: FLOATING PREVIEW ---------- */
.work__preview {
  position: fixed;
  z-index: 999;
  pointer-events: none;
  width: min(420px, 40vw);
  height: min(320px, 30vw);
  background: var(--bg-alt);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  opacity: 0;
  transition: opacity 0.3s;
}

.work__preview.is-visible {
  opacity: 1;
}

.work__preview-img {
  max-width: 95%;
  max-height: 90%;
  object-fit: contain;
}

.work__preview-label {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ---------- CONTACT ---------- */
.contact {
  padding: 120px 5vw 60px;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5vw;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  align-items: start;
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact__input,
.contact__textarea {
  background: var(--bg-alt);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 1rem 1.2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: #fff;
  outline: none;
  transition: border-color 0.3s;
}

.contact__input:focus,
.contact__textarea:focus {
  border-color: var(--accent);
}

.contact__input::placeholder,
.contact__textarea::placeholder {
  color: var(--text-muted);
  font-weight: 200;
}

/* ---------- MUSIC TOGGLE BUTTON ---------- */
.music-btn {
  position: fixed;
  top: 20px;
  right: calc(5vw + 44px);
  z-index: 1002;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s, border-color 0.3s, background 0.3s;
}

.music-btn:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255,94,0,0.1);
}

.music-icon {
  width: 18px;
  height: 18px;
}

.music-btn.is-muted .music-icon--on { display: none; }
.music-btn:not(.is-muted) .music-icon--off { display: none; }

@media (max-width: 600px) {
  .music-btn {
    top: 14px;
    right: calc(5vw + 38px);
    width: 30px;
    height: 30px;
  }
  .music-icon {
    width: 15px;
    height: 15px;
  }
}

.contact__btn {
  background: var(--accent);
  border: none;
  border-radius: 10px;
  padding: 1rem 2rem;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
}

.contact__btn:hover {
  box-shadow: 0 0 30px var(--accent-glow);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 4rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 200;
}

.footer__socials {
  display: flex;
  gap: 16px;
}

.footer__social-link {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.footer__social-link:hover,
.footer__credit:hover {
  color: var(--accent);
}

.footer__credit {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  transition: color 0.3s;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255,255,255,0.1);
}

/* ---------- TEXT BLEED (CUTOUT OVERLAY) ---------- */
.text-bleed {
  position: relative;
  display: inline-block;
}

.text-bleed__title {
  position: relative;
  z-index: 1;
}

.text-bleed__image {
  position: absolute;
  z-index: 2;
  opacity: 0.6;
  pointer-events: none;
  max-height: 60vh;
  width: auto;
  object-fit: contain;
}

.origin .text-bleed__image {
  right: -20%;
  top: -80%;
  transform: scaleX(-1);
}

@media (max-width: 900px) {
  .origin .text-bleed__image {
    right: -10%;
    top: -50%;
    opacity: 0.3;
  }
}

@media (max-width: 600px) {
  .origin .text-bleed__image {
    display: none;
  }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {
  .origin {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
  }
  .origin__text { text-align: center; }
  .section-desc { max-width: 100%; }

  .origin__image {
    height: 350px;
  }

  .about__grid {
    grid-template-columns: 1fr;
  }
  .about__images {
    height: 280px;
  }

  .contact__inner {
    grid-template-columns: 1fr;
  }

  .scroll-dots {
    display: none;
  }

  .journey__grid {
    flex-direction: column;
    gap: 16px;
  }

  .journey__connector {
    flex-direction: row;
    padding: 0;
  }

  .journey__line {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent), rgba(255,94,0,0.2));
  }

  .journey__arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 600px) {
  .section {
    min-height: auto;
    padding: 60px 5vw;
  }

  .section-title {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .section-desc {
    font-size: 0.9rem;
  }

  /* ---------- HERO ---------- */
  .hero__title {
    font-size: clamp(2.5rem, 14vw, 4rem);
  }

  .hero__subtitle {
    flex-direction: column;
    gap: 0.2rem;
  }
  .hero__dot { display: none; }

  /* ---------- ORIGIN ---------- */
  .origin__image {
    height: 240px;
  }

  /* ---------- ABOUT ---------- */
  .about__images {
    height: 200px;
    gap: 6px;
  }

  /* ---------- SKILLS ---------- */
  .skills__grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    padding: 1.5rem 1.2rem;
  }

  /* ---------- JOURNEY ---------- */
  .journey {
    padding: 60px 5vw;
  }

  .journey__card {
    padding: 1.5rem 1.2rem;
  }

  /* ---------- AMBITION ---------- */
  .ambition__text {
    font-size: clamp(2.5rem, 14vw, 5rem);
    white-space: normal;
    word-break: break-word;
  }

  .ambition__image {
    max-height: 40vh;
  }

  /* ---------- WORK ---------- */
  .work__gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
    padding: 0 4vw;
    min-height: auto;
  }

  .work__item {
    aspect-ratio: 16 / 12;
    border-radius: 6px;
  }

  .work__item--wide {
    grid-column: span 2;
  }

  .work__item--tall {
    grid-row: span 1;
    aspect-ratio: 16 / 12;
  }

  .work__item--full {
    grid-column: 1 / -1;
  }

  .work__preview {
    width: 85vw;
    height: 50vw;
    max-height: 280px;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 12px;
    top: auto;
  }

  .work__filter-btn {
    font-size: 0.7rem;
    padding: 0.35rem 0.9rem;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    padding: 60px 5vw 40px;
  }

  .contact__inner {
    gap: 2rem;
  }
}