/* ==========================================================================
   TOKENS — Apple-Inspired Dark Minimal
   ========================================================================== */
:root{
  --ink:        #0a0a0a;
  --ink-soft:   #141414;
  --ink-mid:    #1c1c1e;
  --ink-line:   rgba(255,255,255,0.08);
  --ink-line2:  rgba(255,255,255,0.12);

  --paper:      #f5f5f7;
  --paper-dim:  #e5e5ea;
  --paper-line: rgba(10,10,10,0.10);

  --accent:     #ec0868;  /* magenta — brand */
  --cyan:       #00AEEF;
  --magenta:    #ec0868;
  --yellow:     #FFD400;

  /* Apple-style subtle grays */
  --gray-1: #8e8e93;
  --gray-2: #636366;
  --gray-3: #3a3a3c;
  --gray-4: #2c2c2e;

  --font-display: 'Archivo Black', sans-serif;
  --font-head:    'Archivo', sans-serif;
  --font-body:    'Archivo', sans-serif;
  --font-mono:    'Space Mono', monospace;

  --ease:   cubic-bezier(.16,.84,.44,1);
  --ease-spring: cubic-bezier(0.34,1.56,0.64,1);
  --container: 1180px;

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
     transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  background-color: #ffffff;
  background-image: radial-gradient(rgba(0, 0, 0, 0.17) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3{ font-family: var(--font-head); margin:0; font-weight:800; letter-spacing:-0.02em; }
.mono{ font-family: var(--font-mono); }
p{ margin:0; }

:focus-visible{
  outline: 2px solid var(--magenta);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ==========================================================================
   REGISTRATION MARKS + PROGRESS BAR
   ========================================================================== */
.crop-marks{
  display: none;
  position: fixed; inset:0; width:100%; height:100%;
  pointer-events:none; z-index: 60; mix-blend-mode: difference;
}
.crop line{ stroke: #ffffff; stroke-width:1.2; opacity:0.6; }
.crop-tl{ transform: translate(14px,14px); }
.crop-tr{ transform: translate(calc(100vw - 42px),14px); }
.crop-bl{ transform: translate(14px, calc(100vh - 42px)); }
.crop-br{ transform: translate(calc(100vw - 42px), calc(100vh - 42px)); }

.progress-bar{
  position: fixed; top:0; left:0; width:100%; height:2px; z-index: 70;
  background: transparent;
}
.progress-bar span{
  display:block; height:100%; width:0%;
  background: linear-gradient(90deg, var(--cyan), var(--magenta), var(--yellow));
  transition: width .1s linear;
  border-radius: 0 2px 2px 0;
}

/* ==========================================================================
   NAV — Frosted Glass Apple Style
   ========================================================================== */
.nav{
  position: sticky; top:0; z-index: 50;
  display:flex; align-items:center; justify-content:space-between;
  padding: 16px clamp(20px,5vw,56px);
  background: rgba(245,245,247,0.80);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 0.5px solid rgba(10,10,10,0.08);
  transition: background .3s;
}
.nav-mark{ display:flex; align-items:center; gap:10px; }
.mark-box{
  display:grid; place-items:center;
  width:34px; height:34px;
  background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-weight:700; font-size:12px;
  border-radius: 8px;
}
.mark-text{ font-family: var(--font-mono); font-size:12px; letter-spacing:.06em; }

.nav-links{ display:flex; align-items:center; gap:clamp(16px,2.4vw,32px); }
.nav-links a{
  font-family: var(--font-mono); font-size:12px; letter-spacing:.04em;
  position:relative; padding:6px 0; color: var(--gray-2);
  transition: color .25s;
}
.nav-links a:hover{ color: var(--ink); }
.nav-links a:not(.nav-cta)::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:1.5px;
  background: var(--magenta); transform: scaleX(0); transform-origin:left;
  transition: transform .3s var(--ease);
}
.nav-links a:not(.nav-cta):hover::after,
.nav-links a.active::after{ transform: scaleX(1); }
.nav-links a.active{ color: var(--ink); }
.nav-cta{
  background: var(--ink) !important; color: var(--paper) !important;
  padding: 9px 20px !important; border-radius: var(--radius-sm) !important;
  font-size: 12px !important; transition: background .25s, transform .25s var(--ease) !important;
}
.nav-cta:hover{ background: var(--magenta) !important; transform: translateY(-1px) !important; }
.nav-cta::after{ display:none !important; }

.nav-toggle{ display:none; background:none; border:0; width:34px; height:24px;
  position:relative; cursor:pointer; padding:0; }
.nav-toggle span{ position:absolute; left:0; right:0; height:1.5px;
  background:var(--ink); transition: transform .25s var(--ease), opacity .25s; border-radius:2px; }
.nav-toggle span:nth-child(1){ top:0; }
.nav-toggle span:nth-child(2){ top:11px; }
.nav-toggle span:nth-child(3){ top:22px; }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(11px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-11px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero{
  position:relative;
  min-height: 92vh;
  display:grid;
  grid-template-columns: minmax(300px, 1fr) 230px;
  align-items:center;
  column-gap: 48px;
  padding: 64px clamp(20px,5vw,56px) 96px;
  max-width: var(--container);
  margin: 0 auto;
}

/* Greeting */
.hero-label{
  font-size:14px; letter-spacing:.06em;
  color: var(--gray-2); margin-bottom:20px;
  display:flex; align-items:center; gap:10px;
}
#heroGreeting{
  display:flex; align-items:center; gap:8px;
  animation: none;
}
.greeting-flex{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.greeting-emoji{
  font-size: 1.1em;
  display: inline-block;
}
.greeting-text-premium{
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: .08em;
  color: var(--gray-3);
  font-weight: 600;
}
@keyframes greetFadeIn{
  from{ opacity:0; transform: translateY(8px); }
  to{ opacity:1; transform: translateY(0); }
}
.greeting-animate{
  animation: greetFadeIn .6s var(--ease) both;
}

.hero-name{
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  /* Ensure name is never clipped horizontally */
  overflow-x: visible;
  white-space: nowrap;
}
.hero-name .line{ display:block; overflow: hidden; }
.hero-name .dot{ color: var(--magenta); }

.hero-stamp{
  display:inline-block; margin-top:22px;
  padding: 8px 14px;
  border: 1px solid rgba(10,10,10,0.15);
  font-size: 11.5px; letter-spacing:.06em;
  transform: rotate(-1.2deg);
  border-radius: 4px;
  background: rgba(10,10,10,0.03);
}

.hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; }
.btn{
  font-family: var(--font-mono); font-size:12.5px; letter-spacing:.03em;
  padding: 13px 24px; border-radius: var(--radius-sm); display:inline-flex;
  align-items:center; gap:8px;
  transition: transform .25s var(--ease), background .25s, color .25s, box-shadow .25s;
}
.btn-solid{ background: var(--ink); color: var(--paper); }
.btn-solid:hover{
  background: var(--magenta); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(236,8,104,0.3);
}
.btn-ghost{ border: 1px solid rgba(10,10,10,0.2); background: transparent; }
.btn-ghost:hover{
  background: var(--ink); color: var(--paper); transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(10,10,10,0.15);
}

.hero-photo{ position:relative; justify-self:end; }

/* Floating paper airplane decorative element */
.hero-float-decor{
  position: absolute;
  top: -42px;
  right: 28px;
  width: 30px;
  height: 30px;
  color: var(--ink);
  opacity: 0.38;
  pointer-events: none;
  animation: floatDecor 5s ease-in-out infinite;
}
.hero-float-decor svg{ width: 100%; height: 100%; }

@keyframes floatDecor{
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-9px) rotate(5deg); }
}

.photo-frame{
  position:relative; width: min(230px, 100%); background: var(--ink);
  padding:12px 12px 44px;
  box-shadow: 12px 12px 0 var(--paper-dim);
  border-radius: 6px;
}
.photo-frame img{ width:100%; aspect-ratio: 3/4; object-fit:cover;
  object-position: center center; filter: grayscale(.15) contrast(1.05); border-radius:2px; }
.photo-tag{
  position:absolute; left:12px; bottom:12px; right:12px;
  color: var(--paper); font-size:10.5px; letter-spacing:.1em; text-align:center;
}

/* Four CMYK swatches — left-to-right sequential loading animation */
.photo-swatches{ display:flex; gap:8px; margin-top:14px; justify-content:center; align-items:center; }
.sw{
  width: 14px;
  height: 14px;
  display: block;
  border-radius: 50%;
  opacity: 0.35;
  transform: scale(0.9);
  animation: swatchLoading 1.6s ease-in-out infinite;
}
.sw.c{ background: var(--cyan); animation-delay: 0s; }
.sw.m{ background: var(--magenta); animation-delay: 0.4s; }
.sw.y{ background: var(--yellow); animation-delay: 0.8s; }
.sw.k{ background: var(--ink); animation-delay: 1.2s; }

@keyframes swatchLoading{
  0%, 100% {
    opacity: 0.35;
    transform: scale(0.9);
  }
  25% {
    opacity: 1;
    transform: scale(1.35);
    box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.9);
  }
}

.scroll-cue{
  position:absolute; left: clamp(20px,5vw,56px); bottom: 28px;
  font-size:10.5px; letter-spacing:.14em; display:flex; align-items:center; gap:8px;
  color: var(--gray-2);
}
.scroll-cue span{ display:inline-block; animation: bob 1.6s ease-in-out infinite; }
@keyframes bob{ 0%,100%{ transform: translateY(0);} 50%{ transform: translateY(5px);} }

/* CMYK divider bar */
.cmyk-bar{ display:flex; align-items:center; height:28px; }
.cmyk-seg{ flex:1; height:100%; }
.cmyk-seg.c{ background: var(--cyan); } .cmyk-seg.m{ background: var(--magenta); }
.cmyk-seg.y{ background: var(--yellow); } .cmyk-seg.k{ background: var(--ink); }

/* ==========================================================================
   SECTIONS (shared)
   ========================================================================== */
.section{ max-width: var(--container); margin:0 auto; padding: 140px clamp(20px,5vw,56px); }
.section-dark{
  max-width:none; background: var(--ink-soft); color: var(--paper);
}
.section-dark .section-head,
.section-dark .tabs, .section-dark .proof-grid,
.section-dark .contact-ticket{ max-width: var(--container); margin:0 auto;
  padding-left: clamp(20px,5vw,56px); padding-right: clamp(20px,5vw,56px); }
.section-dark{ padding: 140px 0; }

.section-head{ margin-bottom: 64px; max-width: 640px; }
.section-head--center{ text-align:center; margin-left:auto; margin-right:auto; max-width:680px; }
.tag{ display:block; font-size:11px; letter-spacing:.16em; color: var(--magenta);
  margin-bottom:16px; text-transform:uppercase; }
.section-head h2{ font-size: clamp(2rem, 4.2vw, 3rem); line-height:1.1; }
.section-note{ margin-top:14px; color: var(--gray-1); font-size:.93rem; }

/* ==========================================================================
   ABOUT / PROFILE — centered, refined typography
   ========================================================================== */
.about-prose{
  max-width: 72ch;
  margin: 0 auto;
  text-align: center;
}
.about-prose p{
  font-size: 17px;
  line-height: 1.85;
  color: #3a3a3c;
  margin-bottom: 20px;
}
.about-prose p:last-child{ margin-bottom:0; }

/* ==========================================================================
   PASSIONS — Premium Glass Cards
   ========================================================================== */
.passions-section{
  margin-top: 110px;
  text-align:center;
}
.passions-heading{
  font-size: 11px; letter-spacing:.16em; color: var(--magenta);
  margin-bottom: 36px; text-transform:uppercase;
}
.passions-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.passion-card{
  position: relative;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: var(--radius-lg);
  padding: 40px 28px 36px;
  text-align: center;
  cursor: pointer;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow:
    0 4px 20px rgba(10,10,10,0.06),
    0 1px 4px rgba(10,10,10,0.04),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition:
    transform .4s var(--ease-spring),
    box-shadow .4s var(--ease),
    background .3s;
  outline:none;
}
.passion-card:hover,
.passion-card:focus-visible{
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 24px 60px rgba(10,10,10,0.12),
    0 8px 24px rgba(10,10,10,0.08),
    inset 0 1px 0 rgba(255,255,255,1);
  background: rgba(255,255,255,0.85);
}
.passion-icon{
  font-size: 2.4rem;
  margin-bottom: 18px;
  display: block;
  transition: transform .5s var(--ease-spring);
  line-height: 1;
}
.passion-card:hover .passion-icon{
  transform: scale(1.2) rotate(-5deg);
}
.passion-title{
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 10px;
}
.passion-desc{
  font-size: .88rem;
  line-height: 1.65;
  color: var(--gray-2);
}

/* ==========================================================================
   EXPERIENCE / PRODUCTION LOG
   ========================================================================== */

/* ---- TOOLKIT MARQUEE — seamless infinite loop ---- */
.tools-marquee{ margin-top:64px; }
.tools-label{ display:block; font-size:10.5px; letter-spacing:.16em; color: var(--gray-1); margin-bottom:16px; }

.marquee-track{
  display: flex;
  width: 100%;
  overflow: hidden;
  margin-bottom: 44px;
  padding: 18px 0;
  border-top:1px solid var(--paper-line);
  border-bottom:1px solid var(--paper-line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

/* Text marquee groups */
.marquee-group{
  display:flex; align-items:center; flex-shrink:0;
  animation: marquee-scroll 22s linear infinite;
}
.marquee-chip{
  font-size:.82rem; letter-spacing:.04em; white-space:nowrap;
  padding:8px 18px; border:1px solid var(--paper-line); border-radius:2px;
  margin: 0 8px; transition: color .3s, border-color .3s;
}
.marquee-track:hover .marquee-chip{ color: var(--magenta); border-color: var(--magenta); }
.marquee-dot{ color: var(--cyan); font-size:.7rem; flex-shrink:0; }

/* ICON marquee — ONE SINGLE HORIZONTAL STRAIGHT LINE (ZERO OVERLAP) */
.marquee-track--icons{
  border:none;
  padding: 16px 0;
  margin-bottom: 0;
  overflow: hidden;
  display: flex;
  flex-wrap: nowrap !important;
  align-items: center;
  width: 100%;
  user-select: none;
  white-space: nowrap;
}

/* Each group animated continuously across the viewport */
.marquee-group--icons{
  display: flex;
  flex-wrap: nowrap !important;
  align-items: center;
  flex-shrink: 0 !important;
  gap: 45px;
  padding-right: 45px;
  animation: icons-scroll 24s linear infinite;
  will-change: transform;
}

@keyframes icons-scroll{
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

.tool-icon{
  flex-shrink: 0 !important;
  width: auto;
  height: 48px;
  max-width: 80px;
  margin: 0;
  object-fit: contain;
  display: inline-block;
  background: transparent;
  box-shadow: none;
  filter: drop-shadow(0 2px 5px rgba(0,0,0,0.06));
  transition: transform .35s var(--ease-spring), filter .35s;
}

.tool-icon:hover{
  transform: translateY(-4px);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,0.14));
}

.icon-ps{ background: transparent; }
.icon-ai{ background: transparent; }
.icon-ae{ background: transparent; }
.icon-pr{ background: transparent; }
.icon-id{ background: transparent; }
.icon-fig{ background: transparent; }
.icon-cd{ background: transparent; }

@keyframes marquee-scroll{
  from{ transform: translateX(-100%); }
  to{ transform: translateX(0%); }
}
@media (prefers-reduced-motion: reduce){
  .marquee-group, .marquee-group--icons{ animation: none; }
}

/* Timeline */
.timeline-wrap{
  overflow:hidden; width:100%; margin-bottom:12px; padding: 6px 0 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.timeline-track{ display:flex; width:100%; }
.timeline-group{
  display:flex; flex-shrink:0;
  animation: marquee-scroll 42s linear infinite;
}
.timeline-wrap:hover .timeline-group{ animation-play-state: paused; }
.tl-card{
  flex-shrink:0; width:320px; margin:0 12px;
  border:1px solid var(--paper-line); border-radius: var(--radius-md); padding:24px 22px;
  background: var(--paper);
  transition: border-color .3s, transform .3s var(--ease), box-shadow .3s;
}
.tl-card:hover{
  border-color: var(--magenta); transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(236,8,104,0.12);
}
.tl-card-top{ display:flex; justify-content:space-between; align-items:center;
  gap:10px; margin-bottom:14px; }
.tl-date{ font-size:11px; letter-spacing:.03em; color: var(--gray-2); white-space:nowrap; }
.tl-status{ font-size:10px; letter-spacing:.1em; padding:3px 9px;
  border:1px solid var(--paper-line); border-radius:20px; color: var(--gray-2); white-space:nowrap; }
.tl-status.active{ color:#22c55e; border-color:rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.06); }
.tl-card h3{ font-size:1.1rem; margin-bottom:4px; }
.tl-card .role{ font-family: var(--font-mono); font-size:.76rem; color: var(--magenta); margin-bottom:10px; }
.tl-card p:not(.role){ font-size:.86rem; color:#3a3a3c; line-height:1.55; }
@media (prefers-reduced-motion: reduce){
  .timeline-group{ animation:none; }
}

/* AI-assisted process section wrapper & callout box */
.ai-feature-wrap{
  margin-top: 56px;
  position: relative;
  width: 100%;
}

.ai-feature{
  padding: 36px 40px;
  border: 1px solid var(--paper-line);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.ai-feature::before{
  content:""; position:absolute; top:16px; right:16px; width:8px; height:8px;
  background: var(--cyan); border-radius:50%;
  animation: aiPulseGlow 2.6s ease-in-out infinite;
  z-index: 3;
}
@keyframes aiPulseGlow{
  0%, 100%{
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(0, 200, 255, 0.45);
  }
  50%{
    transform: scale(1.25);
    box-shadow: 0 0 10px 4px rgba(0, 200, 255, 0.35);
  }
}
@media (prefers-reduced-motion: reduce){
  .ai-feature::before{ animation:none; }
}

.ai-tag{ font-size:10px; letter-spacing:.14em; color: var(--magenta); }
.ai-feature p{ font-size:.98rem; max-width:72ch; color:#3a3a3c; line-height:1.65; }

/* Floating Decorative AI Icons — OUTSIDE card with comfortable breathing space */
.ai-icons-outer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 5;
}

.ai-float-icon {
  position: absolute;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
  will-change: transform;
}

/* Scattered Positions with 35px - 55px minimum horizontal clearance from card edges */
/* Left side floating icons */
.ai-icon-1 {
  top: -35px;
  left: -48px;
  animation: aiScatteredJump 4.1s ease-in-out infinite;
  animation-delay: -1.2s;
}
.ai-icon-2 {
  top: 42%;
  left: -88px;
  animation: aiScatteredJump 3.8s ease-in-out infinite;
  animation-delay: -3.4s;
}
.ai-icon-3 {
  bottom: -32px;
  left: -42px;
  animation: aiScatteredJump 4.5s ease-in-out infinite;
  animation-delay: -0.8s;
}

/* Right side floating icons */
.ai-icon-4 {
  top: -32px;
  right: -50px;
  animation: aiScatteredJump 3.9s ease-in-out infinite;
  animation-delay: -2.6s;
}
.ai-icon-5 {
  top: 46%;
  right: -82px;
  animation: aiScatteredJump 4.3s ease-in-out infinite;
  animation-delay: -1.9s;
}
.ai-icon-6 {
  bottom: -35px;
  right: -40px;
  animation: aiScatteredJump 3.6s ease-in-out infinite;
  animation-delay: -0.2s;
}

/* Organic single-icon jump keyframe */
@keyframes aiScatteredJump {
  0%, 22%, 100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.08));
  }
  9% {
    transform: translate3d(0, -12px, 0) scale(1.05) rotate(-1.5deg);
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.12));
  }
  16% {
    transform: translate3d(0, -1px, 0) scale(1.01) rotate(0.5deg);
  }
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .ai-float-icon { width: 28px; height: 28px; }
  .ai-icon-1 { top: -24px; left: -25px; }
  .ai-icon-2 { left: -50px; }
  .ai-icon-3 { bottom: -20px; left: -22px; }
  .ai-icon-4 { top: -22px; right: -28px; }
  .ai-icon-5 { right: -48px; }
  .ai-icon-6 { bottom: -22px; right: -22px; }
}

@media (max-width: 768px) {
  .ai-icons-outer { display: none; }
}

/* ==========================================================================
   PROJECTS / TABS / PROOF CARDS
   ========================================================================== */
.tabs{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 96px;
  padding-bottom: 20px;
  padding-top: 5px;
}
.tab{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  padding: 12px 24px;
  font-size: 12.5px;
  letter-spacing: .04em;
  border-radius: 100px;
  cursor: pointer;
  transition: transform .3s var(--ease-spring), background .3s, color .3s, border-color .3s, box-shadow .3s;
  font-family: var(--font-mono);
}
.tab:hover{
  transform: translateY(-3px);
  border-color: rgba(255,255,255,0.4);
  color: #ffffff;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.tab.active{
  background: #ffffff;
  color: var(--ink);
  border-color: #ffffff;
  box-shadow: 0 6px 24px rgba(255,255,255,0.25);
  transform: translateY(-1px);
}

.proof-grid { 
  display: grid; 
  grid-template-columns: repeat(3, 1fr); 
  gap: 28px; 
  max-height: 800px; 
  overflow-y: auto;
  padding: 20px 10px 20px 20px;
  margin: -20px -10px -20px -20px;
}

.proof-grid::-webkit-scrollbar { width: 8px; }
.proof-grid::-webkit-scrollbar-track { background: transparent; }
.proof-grid::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 10px; }
.proof-grid::-webkit-scrollbar-thumb:hover { background: rgba(255,255,255,0.3); }
.proof-card{
  background: var(--ink-mid); border:1px solid var(--ink-line);
  overflow:hidden; position:relative; border-radius: var(--radius-md);
  transition: transform .35s var(--ease), border-color .35s, box-shadow .35s;
  content-visibility: auto; contain-intrinsic-size: 1px 320px;
}
.proof-card:hover{
  transform: translateY(-8px);
  border-color: rgba(255,255,255,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.proof-card.is-hidden{ display:none; }

/* ==========================================================================
   BEHANCE EXPLORATION CTA — Minimal dark section extension
   ========================================================================== */
.behance-cta-wrap {
  margin-top: 56px;
  padding-bottom: 24px;
  text-align: center;
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(20px, 5vw, 56px);
  padding-right: clamp(20px, 5vw, 56px);
}

.behance-cta-card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 32px 54px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  color: var(--paper);
  text-decoration: none;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), transform 0.35s var(--ease-spring);
  cursor: pointer;
}

.behance-cta-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

.behance-tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--magenta);
  text-transform: uppercase;
}

.behance-title {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.95);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s;
}

.behance-cta-card:hover .behance-title {
  color: #ffffff;
}

.behance-arrow {
  display: inline-block;
  color: var(--magenta);
  font-weight: 800;
  transition: transform 0.35s var(--ease-spring);
}

.behance-cta-card:hover .behance-arrow {
  transform: translateX(6px);
}

@media (max-width: 640px) {
  .behance-cta-wrap {
    margin-top: 36px;
  }
  .behance-cta-card {
    padding: 24px 24px;
    width: 100%;
  }
}
.proof-visual{ position:relative; aspect-ratio: 4/3; overflow:hidden; }
.proof-caption{ padding:18px 20px 22px; }
.cat-tag{ display:block; font-size:10px; letter-spacing:.14em; color: var(--yellow); margin-bottom:8px; }
.proof-caption h3{ font-size:1rem; margin-bottom:6px; }
.proof-caption p{ font-size:.83rem; color: var(--gray-1); }

.proof-visual::before, .proof-visual::after{
  content:""; position:absolute; width:16px; height:16px;
  border: 1.2px solid var(--paper); opacity:0; transition: opacity .3s;
}
.proof-visual::before{ top:8px; left:8px; border-right:none; border-bottom:none; }
.proof-visual::after{ bottom:8px; right:8px; border-left:none; border-top:none; }
.proof-card:hover .proof-visual::before, .proof-card:hover .proof-visual::after{ opacity:.6; }

/* -- banner mock -- */
.mock-banner{ display:flex; align-items:center; justify-content:center; flex-direction:column; gap:10px; }
.mock-banner-bg{ position:absolute; inset:0; background: linear-gradient(135deg, var(--cyan), var(--magenta) 60%); opacity:.9; }
.mock-banner--alt .mock-banner-bg{ background: linear-gradient(135deg, var(--yellow), var(--cyan) 65%); }
.mock-banner-headline{ position:relative; font-family: var(--font-display); font-size:1.6rem; color:var(--ink); text-align:center; line-height:1; text-transform:uppercase; }
.mock-banner-cta{ position:relative; font-family: var(--font-mono); font-size:.72rem; background:var(--ink); color:var(--paper); padding:6px 12px; border-radius:4px; }

/* -- packaging mock -- */
.mock-pack{ display:grid; place-items:center; background: #1a1a1a; }
.pack-box{ position:relative; width:110px; height:130px; transform-style:preserve-3d; transform: rotateX(8deg) rotateY(-24deg); transition: transform .5s var(--ease); }
.proof-card:hover .pack-box{ transform: rotateX(8deg) rotateY(-8deg); }
.pack-face{ position:absolute; inset:0; display:grid; place-items:center; font-family:var(--font-mono); font-size:.68rem; letter-spacing:.1em; color:var(--ink); }
.pack-front{ background: var(--yellow); }
.mock-pack--alt .pack-front{ background: var(--cyan); }
.pack-side{ width:26px; height:130px; right:-26px; left:auto; background:#c9c9c9; filter:brightness(.75); transform: rotateY(90deg); transform-origin:left; }
.pack-top{ width:110px; height:26px; top:-26px; background:#e6e6e6; filter:brightness(.9); transform: rotateX(90deg); transform-origin:bottom; }

/* -- reel mock -- */
.mock-reel{ display:grid; place-items:center; background: linear-gradient(180deg,#141414,#1e1e1e); }
.reel-frame{
  width:96px; height:170px; border:1.5px solid rgba(255,255,255,0.2); border-radius: var(--radius-md);
  display:grid; place-items:center; position:relative; background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}
.reel-play{ font-size:1.6rem; color: var(--paper); }
.reel-time{ position:absolute; bottom:10px; font-size:.62rem; color: var(--gray-1); }
.mock-reel--alt{ background: linear-gradient(180deg,#1a1020,#201426); }

/* -- branding mock -- */
.mock-brand{ display:grid; place-items:center; background: #141414; gap:16px; }
.brand-mark{ font-family: var(--font-display); font-size:3rem; color: var(--paper); }
.brand-swatches{ display:flex; gap:6px; }
.brand-swatches i{ width:20px; height:20px; display:block; border-radius:50%; }
.brand-swatches i:nth-child(1){ background: var(--cyan);} .brand-swatches i:nth-child(2){ background: var(--magenta);}
.brand-swatches i:nth-child(3){ background: var(--yellow);} .brand-swatches i:nth-child(4){ background: var(--paper);}
.mock-brand--alt{ background:#18191e; }
.brand-card{ width:150px; height:90px; background: var(--paper); border-radius: var(--radius-sm); padding:14px; display:flex; flex-direction:column; gap:8px; justify-content:center; }
.brand-card-mark{ font-family:var(--font-display); font-size:1.1rem; color:var(--ink); }
.brand-card-line{ height:5px; background: var(--paper-dim); border-radius:2px; width:80%; }
.brand-card-line.short{ width:45%; }

/* -- ui/ux mock -- */
.mock-ui{ display:grid; place-items:center; background:#111213; }
.ui-window{ width:200px; background:#1e2022; border-radius: var(--radius-sm); padding:10px; }
.ui-dots{ display:flex; gap:5px; margin-bottom:8px; }
.ui-dots i{ width:7px; height:7px; border-radius:50%; background:#3a3d40; display:block; }
.ui-block{ background:#2c2f32; border-radius:4px; }
.ui-nav{ height:12px; width:60%; margin-bottom:8px; }
.ui-hero{ height:50px; margin-bottom:8px; background: linear-gradient(135deg, var(--cyan), var(--magenta)); opacity:.5; border-radius:4px; }
.ui-hero.tall{ height:70px; }
.ui-row{ display:flex; gap:6px; }
.ui-card{ flex:1; height:34px; }
.ui-card.small{ height:26px; }

/* ==========================================================================
   CONTACT — Premium Apple Two-Column Layout
   ========================================================================== */
.contact-new{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px,5vw,56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 600px;
}

/* LEFT: illustration */
.contact-illustration{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact-bg-img{
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4));
  transition: transform .6s var(--ease);
}
.contact-illustration:hover .contact-bg-img{
  transform: scale(1.02) translateY(-6px);
}

/* RIGHT: content */
.contact-content{
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-inner{
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-inner > .tag{
  font-size: 11px;
  letter-spacing: .18em;
  color: var(--cyan);
  margin-bottom: 14px;
}
.contact-heading{
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
  color: var(--paper);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.contact-tagline{
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(245,245,247,0.65);
  margin-bottom: 40px;
  max-width: 46ch;
}

/* Contact list */
.contact-list{
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 40px;
}
.contact-item{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  transition:
    background .3s var(--ease),
    border-color .3s,
    transform .3s var(--ease),
    box-shadow .3s;
  cursor: pointer;
}
.contact-item:hover{
  background: rgba(255,255,255,0.09);
  border-color: rgba(255,255,255,0.16);
  transform: translateX(6px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.contact-item-icon{
  flex-shrink:0;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-sm);
  color: var(--paper);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.contact-item-icon svg{ width:18px; height:18px; }
.contact-item:hover .contact-item-icon{
  background: var(--magenta);
  transform: scale(1.1);
}
.contact-item-body{
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width:0;
}
.contact-item-label{
  font-size: 10px;
  letter-spacing: .14em;
  color: rgba(245,245,247,0.45);
  text-transform: uppercase;
}
.contact-item-value{
  font-size: .93rem;
  color: var(--paper);
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Primary CTA button */
.btn-connect{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #00c853, #00a843);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .04em;
  border-radius: 100px;
  align-self: flex-start;
  font-weight: 600;
  transition:
    transform .3s var(--ease-spring),
    box-shadow .3s var(--ease);
  box-shadow: 0 4px 20px rgba(0,200,83,0.3);
  position: relative;
  overflow: hidden;
}
.btn-connect::before{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
  opacity:0; transition: opacity .3s;
}
.btn-connect:hover{
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 40px rgba(0,200,83,0.45),
    0 0 0 1px rgba(255,255,255,0.1);
}
.btn-connect:hover::before{ opacity:1; }
.btn-connect svg{ width:16px; height:16px; transition: transform .3s var(--ease); }
.btn-connect:hover svg{ transform: translateX(3px); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer{
  display:flex; justify-content:space-between; align-items:center;
  padding: 48px clamp(20px,5vw,56px); font-size:11px; letter-spacing:.08em;
  color: #ffffff;
  background: #000000;
  border-top: none;
}
.site-footer span{ color: rgba(255,255,255,0.7); }
.footer-marks{ color: var(--magenta); letter-spacing:.3em; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
[data-reveal]{
  opacity:0; transform: translateY(28px);
  transition: opacity .85s var(--ease), transform .85s var(--ease);
}
[data-reveal].in-view{ opacity:1; transform:none; }
.hero-name .line[data-reveal]{ transform: translateY(100%); }
.hero-name .line[data-reveal].in-view{ transform: translateY(0); }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px){
  .hero{ grid-template-columns:1fr; padding-top:140px; column-gap: 0; }
  .hero-photo{ justify-self:start; margin-top:20px; }
  .photo-frame{ width: min(250px, 100%); }
  /* Allow name to wrap naturally on single-column mobile layout */
  .hero-name{ white-space: normal; }
  .proof-grid{ grid-template-columns: repeat(2,1fr); }
  .tl-card{ width:260px; }
  .contact-new{
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .contact-illustration{ justify-content: center; }
  .contact-bg-img{ max-width: 380px; }
  .contact-tagline{ max-width:none; }
  .btn-connect{ align-self: center; }
  .passions-grid{ grid-template-columns: repeat(3,1fr); gap:14px; }
}
@media (max-width: 720px){
  .passions-grid{ grid-template-columns: 1fr; gap:14px; }
}
@media (max-width: 680px){
  .nav-links{
    position:fixed; top:64px; left:0; right:0; background: rgba(245,245,247,0.96);
    backdrop-filter: blur(20px);
    flex-direction:column; align-items:flex-start; padding:20px clamp(20px,5vw,56px);
    border-bottom:1px solid var(--paper-line);
    transform: translateY(-140%); transition: transform .35s var(--ease);
  }
  .nav-links.open{ transform: translateY(0); }
  .nav-toggle{ display:block; }
  .proof-grid{ grid-template-columns:1fr; }
  .crop-marks{ display:none; }
}

/* ==========================================================================
   PROFILE — Clean editorial layout (no background box, border, or shadow)
   ========================================================================== */
.profile-prose{
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}
.profile-prose p{
  font-size: 17px;
  line-height: 1.9;
  color: #2c2c2e;
  margin-bottom: 20px;
}
.profile-prose p:last-child{ margin-bottom: 0; }

/* ==========================================================================
   CONTACT — Clean White Section (no dark background, no inner white card)
   ========================================================================== */
.section-contact{
  background: #ffffff !important;
  color: var(--ink) !important;
  max-width: none;
  padding: 100px clamp(20px,5vw,56px);
}
.contact-clean-wrap{
  max-width: var(--container);
  margin: 0 auto;
}

.contact-tag-clean{
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--magenta);
  display: block;
  margin-bottom: 36px;
}

/* 2-column contact grid */
.contact-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 44px;
}

/* Individual contact grid card */
.cg-card{
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 22px;
  background: #f9f9fb;
  border: 1px solid rgba(10,10,10,0.08);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(10,10,10,0.03);
  cursor: pointer;
  transition:
    transform .3s var(--ease-spring),
    box-shadow .3s var(--ease),
    border-color .3s,
    background .3s;
  text-decoration: none;
  color: var(--ink);
}
.cg-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(10,10,10,0.08);
  border-color: rgba(236,8,104,0.25);
  background: #ffffff;
}
.cg-icon{
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(10,10,10,0.05);
  border-radius: 12px;
  color: var(--ink);
  transition: background .3s, color .3s, transform .3s var(--ease);
}
.cg-icon svg{ width: 20px; height: 20px; }
.cg-card:hover .cg-icon{
  background: var(--yellow);
  color: #000000;
  transform: scale(1.06);
}
.cg-body{
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.cg-label{
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.cg-value{
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Primary CTA */
.contact-cta-wrap{
  display: flex;
  justify-content: flex-start;
}
.contact-cta-btn{
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 40px;
  background: var(--ink);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .06em;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition:
    transform .3s var(--ease-spring),
    box-shadow .3s var(--ease),
    background .3s;
  box-shadow: 0 4px 20px rgba(10,10,10,0.15);
  position: relative;
  overflow: hidden;
}
.contact-cta-btn::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity .3s;
}
.contact-cta-btn:hover{
  background: #25d366;  /* WhatsApp green */
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37,211,102,0.35);
}
.contact-cta-btn:hover::after{ opacity: 1; }
.cta-wa-icon{ width: 20px; height: 20px; flex-shrink: 0;}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (FAB)
   ========================================================================== */
.fab-wa{
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 999;
  width: 64px; height: 64px;
  background: #25d366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow:
    0 4px 16px rgba(37,211,102,0.45),
    0 1px 4px rgba(0,0,0,0.12);
  text-decoration: none;
  color: #fff;
  animation: fab-pulse 3s ease-in-out infinite;
  transition: transform .3s var(--ease-spring), box-shadow .3s;
}
.fab-wa svg{ width: 30px; height: 30px; }
.fab-wa:hover{
  transform: scale(1.08);
  box-shadow:
    0 8px 32px rgba(37,211,102,0.6),
    0 2px 8px rgba(0,0,0,0.15);
  animation: none;  /* stop pulse on hover */
}

/* Tooltip */
.fab-wa-tooltip{
  position: absolute;
  right: calc(100% + 12px);
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,10,10,0.88);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: .04em;
  white-space: nowrap;
  padding: 7px 14px;
  border-radius: 8px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  transform: translateY(-50%) translateX(6px);
}
.fab-wa-tooltip::after{
  content: "";
  position: absolute; top: 50%; right: -5px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: rgba(10,10,10,0.88);
  border-right: none;
}
.fab-wa:hover .fab-wa-tooltip{
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

@keyframes fab-pulse{
  0%, 100%{ box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 0 rgba(37,211,102,0.3); }
  60%{ box-shadow: 0 4px 16px rgba(37,211,102,0.45), 0 0 0 14px rgba(37,211,102,0); }
}

/* Responsive contact grid */
@media (max-width: 680px){
  .contact-grid{ grid-template-columns: 1fr; }
  .contact-cta-btn{ padding: 15px 28px; font-size: 12px; }
  .fab-wa{ width: 56px; height: 56px; bottom: 20px; right: 20px; }
  .fab-wa svg{ width: 26px; height: 26px; }
  .fab-wa-tooltip{ display: none; }
}
