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

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

body {
  font-family: 'Outfit', sans-serif;
  background: #f0e8dd;
  color: #1a1a1a;
  overflow-x: hidden;
  cursor: none;
}

/* ═══════════════════ CUSTOM CURSOR ═══════════════════ */
.custom-cursor {
  position: fixed;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #1a1a1a;
  pointer-events: none;
  z-index: 10000;
  transition: transform .15s ease, background .2s ease, border-color .2s ease;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
}

.custom-cursor.hover {
  transform: translate(-50%, -50%) scale(2);
  background: rgba(255, 255, 255, .15);
  border-color: #fff;
}

/* ═══════════════════ VERTICAL SIDEBAR NAV ═══════════════════ */
.sidebar-nav {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  display: flex;
  z-index: 900;
}

.sidebar-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 48px;
  background: var(--strip-color);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: width .3s ease, filter .2s ease;
}

.sidebar-strip:hover {
  width: 64px;
  filter: brightness(1.05);
}

.sidebar-strip span:first-child {
  font-weight: 400;
  opacity: .7;
}

/* ═══════════════════ FLOATING CTA ═══════════════════ */
.floating-cta {
  position: fixed;
  bottom: 32px;
  left: 32px;
  background: #e8a87c;
  color: #1a1a1a;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  z-index: 950;
  transition: transform .3s ease, box-shadow .3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.floating-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
}

/* ═══════════════════ MOBILE MENU ═══════════════════ */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #1a1a1a;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 26, .97);
  z-index: 1050;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.mobile-menu-overlay.active {
  display: flex;
}

.mobile-menu-overlay a {
  color: #f0e8dd;
  font-size: 2rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: color .2s ease;
}

.mobile-menu-overlay a:hover {
  color: #e8a87c;
}

/* ═══════════════════ MARQUEE BAR ═══════════════════ */
.marquee-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1a1a1a;
  color: #f0e8dd;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  overflow: hidden;
  z-index: 800;
  height: 36px;
  line-height: 36px;
  display: flex;
  align-items: center;
}

.marquee-brand {
  display: flex;
  align-items: center;
  padding: 0 16px;
  flex-shrink: 0;
  z-index: 1;
  background: #1a1a1a;
}

.brand-logo {
  height: 22px;
  width: auto;
  transition: transform .3s ease;
}

.brand-logo:hover {
  transform: scale(1.1);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track span {
  white-space: nowrap;
  padding-right: 0;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ═══════════════════ BUTTONS ═══════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: inherit;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all .3s ease;
}

.btn-primary {
  background: #e8a87c;
  color: #1a1a1a;
  border-color: #e8a87c;
}

.btn-primary:hover {
  background: #d4944e;
  border-color: #d4944e;
}

.btn-outline {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-outline:hover {
  background: #1a1a1a;
  color: #f0e8dd;
}

.btn-outline-dark {
  background: transparent;
  color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-outline-dark:hover {
  background: #1a1a1a;
  color: #f0e8dd;
}

.btn-cta {
  background: #e8a87c;
  color: #1a1a1a;
  border-color: #e8a87c;
}

.btn-cta:hover {
  background: #d4944e;
  transform: translateY(-2px);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ═══════════════════ SECTIONS ═══════════════════ */
.section {
  padding: 120px 60px;
}

.section-cream {
  background: #f0e8dd;
}

.section-dark {
  background: #1a1a1a;
  color: #f0e8dd;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 24px;
}

.section-heading-lg {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.1rem;
  font-weight: 400;
  opacity: .7;
  max-width: 600px;
  line-height: 1.6;
}

/* ═══════════════════ HERO ═══════════════════ */
.hero {
  min-height: 100vh;
  padding: 140px 60px 80px;
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-logo {
  height: 60px;
  width: auto;
  filter: invert(1);
  margin-top: -40px;
  margin-bottom: 20px;
  display: block;
}

.hero-label {
  display: inline-block;
  background: #1a1a1a;
  color: #f0e8dd;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 24px;
}

.hero-title span {
  display: block;
}

.hero-accent {
  color: #e8a87c;
}

.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 400;
  opacity: .7;
  line-height: 1.6;
  margin-bottom: 16px;
}

.hero-name {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 32px;
  opacity: .5;
}

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

.hero-3d {
  width: 100%;
  height: 500px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

/* ═══════════════════ INGREDIENTS ═══════════════════ */
.ingredients-bar {
  padding: 40px 60px;
  display: flex;
  justify-content: flex-end;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.ingredient {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ingredient-label {
  font-weight: 700;
}

.gradient-pill {
  display: inline-block;
  width: 40px;
  height: 8px;
  background: linear-gradient(90deg, #98c1d9, #ffb7b2, #ffdac1, #e8a87c);
  border-radius: 4px;
}

/* ═══════════════════ ABOUT ═══════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  opacity: .85;
  margin-bottom: 32px;
}

.about-circles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.circle-item {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .85rem;
  color: #1a1a1a;
  transition: transform .4s ease;
}

.circle-item:hover {
  transform: scale(1.1);
}

/* ═══════════════════ SKILLS ═══════════════════ */
.section-header {
  margin-bottom: 60px;
}

.skills-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 40px;
}

.skill-column {
  background: var(--col-color);
  border-radius: 16px;
  padding: 32px 24px;
  position: relative;
  transform: perspective(600px) rotateY(-2deg);
  transition: transform .4s ease;
}

.skill-column:nth-child(2) {
  transform: perspective(600px) rotateY(0deg);
}

.skill-column:nth-child(3) {
  transform: perspective(600px) rotateY(2deg);
}

.skill-column:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.02);
}

.skill-column-title {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.skill-list {
  list-style: none;
}

.skill-list li {
  padding: 10px 16px;
  background: rgba(255, 255, 255, .45);
  border-radius: 8px;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: .9rem;
  transition: background .2s ease;
}

.skill-list li:hover {
  background: rgba(255, 255, 255, .7);
}

.skills-cta {
  text-align: center;
  margin-bottom: 60px;
}

.skills-tagline {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  max-width: 700px;
}

/* ═══════════════════ PROJECTS FILMSTRIP ═══════════════════ */
.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 24px;
}

.projects-counter {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  opacity: .15;
}

.filmstrip {
  background: #1a1a1a;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.filmstrip-perf {
  height: 28px;
  background: repeating-linear-gradient(90deg,
      #1a1a1a 0 12px,
      #f0e8dd 12px 24px,
      #1a1a1a 24px 28px,
      #f0e8dd 28px 40px);
  background-size: 40px 100%;
}

.filmstrip-track {
  display: flex;
  padding: 20px 40px;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.filmstrip-track::-webkit-scrollbar {
  display: none;
}

.film-card {
  flex: 0 0 360px;
  border-radius: 12px;
  overflow: hidden;
  transition: transform .4s ease;
}

.film-card:hover {
  transform: scale(1.03);
}

.film-card-img {
  height: 220px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 16px;
}

.film-view-badge {
  background: #f0e8dd;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.film-card-overlay {
  position: absolute;
  bottom: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  opacity: 0;
  transition: opacity .3s ease;
}

.film-card:hover .film-card-overlay {
  opacity: 1;
}

.film-card-info {
  background: #f0e8dd;
  padding: 20px;
}

.film-card-info h4 {
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.film-card-info p {
  font-size: .85rem;
  color: #666;
  margin-bottom: 12px;
}

.film-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.film-tags span {
  padding: 4px 10px;
  background: rgba(26, 26, 26, .08);
  border-radius: 50px;
  font-size: .7rem;
  font-weight: 600;
  color: #1a1a1a;
}

.filmstrip-nav {
  display: flex;
  gap: 12px;
  padding: 20px 60px;
}

.filmstrip-btn {
  width: 48px;
  height: 48px;
  border: 2px solid #1a1a1a;
  background: transparent;
  border-radius: 8px;
  font-size: 1.2rem;
  cursor: pointer;
  transition: all .3s ease;
}

.filmstrip-btn:hover {
  background: #1a1a1a;
  color: #f0e8dd;
}

/* ═══════════════════ PROFILES ═══════════════════ */
.profiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.profile-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  color: #1a1a1a;
  text-decoration: none;
  transition: transform .4s ease, box-shadow .4s ease;
}

.profile-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .15);
}

.profile-card svg {
  margin-bottom: 16px;
  opacity: .8;
}

.profile-card h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.profile-card p {
  font-size: .9rem;
  opacity: .6;
}

/* ═══════════════════ RESUME ═══════════════════ */
.resume-section {
  text-align: center;
  padding: 80px 0;
}

.resume-section .section-sub {
  margin: 0 auto 40px;
}

/* ═══════════════════ CONTACT ═══════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 48px;
}

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

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 12px;
  color: #f0e8dd;
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 232, 221, .4);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e8a87c;
}

.form-group textarea {
  resize: vertical;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, .06);
  border-radius: 16px;
}

.contact-card svg {
  opacity: .6;
  flex-shrink: 0;
}

.contact-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-card p {
  font-size: .9rem;
  opacity: .6;
}

.contact-socials {
  display: flex;
  gap: 16px;
  padding-top: 12px;
}

.contact-socials a {
  color: #f0e8dd;
  opacity: .5;
  transition: opacity .3s ease, transform .3s ease;
}

.contact-socials a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

/* ═══════════════════ FOOTER ═══════════════════ */
.footer {
  background: #1a1a1a;
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 40px 60px;
  color: #f0e8dd;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
}

.footer-logo {
  height: 36px;
  width: auto;
  transition: opacity .3s ease;
}

.footer-logo:hover {
  opacity: .8;
}

.footer p {
  font-size: .85rem;
  opacity: .4;
}

/* ═══════════════════ SCROLL PROGRESS BAR ═══════════════════ */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, #e8a87c, #ffb7b2, #98c1d9, #ffdac1);
  background-size: 300% 100%;
  animation: gradientShift 3s ease infinite;
  z-index: 10001;
  transition: width .1s linear;
  box-shadow: 0 0 10px rgba(232, 168, 124, 0.5);
}

@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ═══════════════════ FLOATING ORBS ═══════════════════ */
.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
  animation: orbFloat 8s ease-in-out infinite alternate;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #98c1d9 0%, transparent 70%);
  top: -100px;
  right: -100px;
  animation-duration: 10s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #ffb7b2 0%, transparent 70%);
  bottom: -50px;
  left: -80px;
  animation-duration: 12s;
  animation-delay: -3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, #e8a87c 0%, transparent 70%);
  top: 40%;
  left: 50%;
  animation-duration: 9s;
  animation-delay: -5s;
}

.orb-4 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, #98c1d9 0%, transparent 70%);
  top: -80px;
  left: -120px;
  animation-duration: 11s;
}

.orb-5 {
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, #ffdac1 0%, transparent 70%);
  bottom: -60px;
  right: -60px;
  animation-duration: 13s;
  animation-delay: -2s;
}

@keyframes orbFloat {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -20px) scale(1.05); }
  66% { transform: translate(-15px, 15px) scale(0.95); }
  100% { transform: translate(20px, -30px) scale(1.02); }
}

/* ═══════════════════ SHIMMER TEXT ═══════════════════ */
.shimmer-text {
  background: linear-gradient(
    120deg,
    currentColor 0%,
    currentColor 40%,
    #e8a87c 50%,
    currentColor 60%,
    currentColor 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerSweep 4s ease-in-out infinite;
}

@keyframes shimmerSweep {
  0% { background-position: 200% center; }
  100% { background-position: -200% center; }
}

/* ═══════════════════ SCROLL ANIMATIONS (ENHANCED) ═══════════════════ */
.anim-reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.97);
  filter: blur(4px);
  transition: opacity .8s cubic-bezier(0.16, 1, 0.3, 1),
              transform .8s cubic-bezier(0.16, 1, 0.3, 1),
              filter .8s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--delay, 0s);
}

.anim-reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* Directional slide variants */
.anim-slide-right {
  transform: translateX(-60px) scale(0.97);
  filter: blur(4px);
}

.anim-slide-right.visible {
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.anim-slide-left {
  transform: translateX(60px) scale(0.97);
  filter: blur(4px);
}

.anim-slide-left.visible {
  transform: translateX(0) scale(1);
  filter: blur(0);
}

.anim-slide-up {
  transform: translateY(60px) scale(0.95);
  filter: blur(6px);
}

.anim-slide-up.visible {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

/* ═══════════════════ 3D TILT CARDS ═══════════════════ */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .5s ease;
}

.tilt-card:hover {
  transform: perspective(800px) rotateY(-5deg) rotateX(5deg) translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2),
              0 0 30px rgba(232, 168, 124, 0.1);
}

/* ═══════════════════ MAGNETIC BUTTON ═══════════════════ */
.magnetic-btn {
  position: relative;
  overflow: hidden;
  transition: all .4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Button ripple */
.btn-ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: scale(0);
  animation: rippleExpand .6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleExpand {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ═══════════════════ ENHANCED CIRCLE ITEMS ═══════════════════ */
.circle-item {
  transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .4s ease;
}

.circle-item:hover {
  transform: scale(1.15) rotate(5deg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* ═══════════════════ ENHANCED FILM CARDS ═══════════════════ */
.film-card {
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .5s ease;
}

.film-card:hover {
  transform: perspective(600px) rotateY(-3deg) scale(1.04) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ═══════════════════ ENHANCED FORM FOCUS ═══════════════════ */
.form-group input:focus,
.form-group textarea:focus {
  border-color: #e8a87c;
}

/* ═══════════════════ SKILL COLUMN ENHANCED ═══════════════════ */
.skill-column {
  transition: transform .5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow .4s ease;
}

.skill-column:hover {
  transform: perspective(600px) rotateY(0deg) scale(1.04) translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.skill-list li {
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.skill-list li:hover {
  background: rgba(255, 255, 255, 0.75);
  transform: translateX(6px);
  box-shadow: -4px 0 0 var(--col-color, #e8a87c);
}

/* ═══════════════════ SECTION POSITION FOR ORBS ═══════════════════ */
.hero,
.section-dark,
.section-cream {
  position: relative;
  overflow: hidden;
}

/* ═══════════════════ FLOATING CTA ENHANCED ═══════════════════ */
/* ═══════════════════ PROFILE CARD SVG SPIN ═══════════════════ */
.profile-card:hover svg {
  animation: iconBounce .5s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes iconBounce {
  0% { transform: scale(1) rotate(0deg); }
  30% { transform: scale(1.2) rotate(-10deg); }
  60% { transform: scale(0.95) rotate(5deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* ═══════════════════ CONTACT CARD HOVER ═══════════════════ */
.contact-card {
  transition: transform .3s ease, background .3s ease;
}

.contact-card:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, .1);
}

/* ═══════════════════ RESPONSIVE ═══════════════════ */
@media (max-width: 1024px) {
  .sidebar-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero-title {
    font-size: 4rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-3d {
    height: 350px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .skill-column {
    transform: none !important;
  }

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

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

  .section {
    padding: 80px 24px;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .ingredients-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px;
  }

  .section-heading {
    font-size: 2.2rem;
  }

  .section-heading-lg {
    font-size: 2.5rem;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-counter {
    font-size: 2.5rem;
  }

  .filmstrip-nav {
    padding: 20px 24px;
  }

  .film-card {
    flex: 0 0 300px;
  }

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

  body {
    cursor: auto;
  }

  .custom-cursor {
    display: none;
  }

  .floating-cta {
    bottom: 16px;
    left: 16px;
    padding: 10px 20px;
    font-size: .85rem;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-3d {
    height: 260px;
  }

  .section-heading-lg {
    font-size: 1.8rem;
  }

  .skills-tagline {
    font-size: 1.3rem;
  }

  .film-card {
    flex: 0 0 260px;
  }

  .film-card-img {
    height: 160px;
  }
}