/* ── FONTS ────────────────────────────────────── */
/* Vinque is a desktop font; Cinzel is the closest Google Fonts match */

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

:root {
  --yellow: #FFE100;
  --dark:   #0A0A0A;
  --cream:  #F2EEE6;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: none;            /* Firefox */
  -ms-overflow-style: none;         /* IE / Edge */
}
html::-webkit-scrollbar { display: none; }  /* Chrome / Safari */

body {
  background: var(--dark);
  color: var(--cream);
  font-family: 'Cinzel', 'DM Sans', serif;
  overflow-x: hidden;
  cursor: none;
}

/* ── CUSTOM SCROLL INDICATOR ─────────────────── */
.scroll-track {
  position: fixed; top: 0; right: 0;
  width: 6px; height: 100vh;
  background: rgba(242,238,230,.06);
  z-index: 9990;
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s ease;
}
.scroll-track.visible { opacity: 1; }
.scroll-thumb {
  position: absolute; top: 0; right: 0;
  width: 100%;
  min-height: 30px;
  background: var(--yellow);
  border-radius: 3px;
  transition: background .2s ease, height .15s ease;
}
.scroll-track:hover { pointer-events: all; cursor: pointer; }
.scroll-track:hover .scroll-thumb { background: var(--cream); width: 8px; }

/* ── CURSOR ───────────────────────────────────── */
#cur {
  width: 10px; height: 10px;
  background: var(--yellow);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: width .2s, height .2s, background .2s;
}
#cur-ring {
  width: 34px; height: 34px;
  border: 2px solid var(--cream);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform .12s ease, width .25s, height .25s, background .25s, border-color .25s;
}

/* Text-hover cursor state */
#cur.text-hover {
  width: 3px; height: 28px;
  border-radius: 2px;
  background: var(--cream);
  mix-blend-mode: difference;
}
#cur-ring.text-hover {
  width: 56px; height: 56px;
  background: rgba(255,225,0,.08);
  border-color: var(--yellow);
  mix-blend-mode: difference;
}

/* ── LOGO IMAGE ───────────────────────────────── */
.nav-logo-img {
  height: 40px; width: auto; display: block;
  object-fit: contain;
  filter: brightness(0) invert(1); /* white on dark bg */
}
.ft-logo-img {
  height: 32px; width: auto; display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .7;
}

/* ── NAVIGATION ───────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.6rem 4rem;
  background: var(--dark);
  border-bottom: 2px solid rgba(242,238,230,.12);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.75rem; letter-spacing: .06em;
  color: var(--cream); text-decoration: none;
}
.nav-logo em { color: var(--yellow); font-style: normal; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-family: 'Cinzel', serif;
  font-size: .72rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,238,230,.65); text-decoration: none;
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width .3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--cream) !important;
  color: var(--dark) !important;
  padding: .55rem 1.35rem;
  border: 2px solid var(--cream);
}
.nav-cta:hover { background: var(--yellow) !important; border-color: var(--yellow) !important; color: #fff !important; }
.nav-cta::after { display: none !important; }

/* ── HERO ─────────────────────────────────────── */
.hero {
  min-height: 100vh; padding-top: 70px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-text {
  padding: 2rem 4rem 4rem 4rem;
  display: flex; flex-direction: column; justify-content: flex-start;
  position: relative; z-index: 2;
}
.hero-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  padding: .38rem .9rem; margin-bottom: 1.6rem; width: fit-content;
  animation: fadeUp .5s ease both;
}
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(3.2rem, 10vw, 9rem);
  line-height: .93; letter-spacing: -.01em;
  margin-bottom: 2rem;
  animation: fadeUp .55s .08s ease both;
  transition: letter-spacing .4s cubic-bezier(.25,.8,.25,1);
}
.hero-title:hover {
  letter-spacing: .06em;
}
.hero-title .c-red  { color: var(--yellow); display: inline-block; transition: transform .35s ease, letter-spacing .35s ease; }
.hero-title .c-blue { color: var(--cream); display: inline-block; transition: transform .35s ease, letter-spacing .35s ease; }
.hero-title:hover .c-red  { transform: translateX(4px); letter-spacing: .08em; }
.hero-title:hover .c-blue { transform: translateX(8px); letter-spacing: .08em; }
.hero-desc {
  font-size: 1rem; line-height: 1.75; color: rgba(242,238,230,.6);
  max-width: 400px; margin-bottom: 2.5rem;
  animation: fadeUp .55s .16s ease both;
}
.hero-btns {
  display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap;
  animation: fadeUp .55s .24s ease both;
}
.btn-solid {
  background: var(--cream); color: var(--dark);
  padding: .9rem 2rem; font-weight: 700;
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border: 2px solid var(--cream);
  transition: background .2s, border-color .2s, color .2s; display: inline-block;
}
.btn-solid:hover { background: var(--yellow); border-color: var(--yellow); color: #fff; }
.btn-ghost {
  color: var(--cream); font-weight: 600;
  font-family: 'Cinzel', serif;
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  text-decoration: none; border-bottom: 2px solid rgba(242,238,230,.4);
  padding-bottom: 2px; transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--yellow); border-color: var(--yellow); }
.hero-dots {
  position: absolute; bottom: 4rem; left: 4rem;
  display: flex; gap: .5rem; align-items: center;
}
.geo-dot { width: 11px; height: 11px; border-radius: 50%; }
.hero-scroll {
  font-size: .68rem; letter-spacing: .18em; text-transform: uppercase;
  color: rgba(242,238,230,.4); margin-left: .5rem;
}
.hero-shape {
  position: absolute; bottom: -60px; left: 30%; z-index: 1;
  width: 160px; height: 160px;
  border: 24px solid var(--yellow);
  opacity: .35; transform: rotate(12deg);
  pointer-events: none;
}

/* ── HERO CAROUSEL ────────────────────────────── */
.hero-car {
  position: relative; overflow: hidden;
  border-left: 2px solid rgba(242,238,230,.12);
  min-height: 0;
  max-height: calc(100vh - 70px);
}
.car-track {
  display: flex; height: 100%;
  transition: transform .65s cubic-bezier(.77,0,.175,1);
}
.car-slide { min-width: 100%; height: 100%; position: relative; flex-shrink: 0; }
.car-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slide-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 2rem 2rem;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: white;
}
.slide-tag {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase;
  opacity: .8; margin-bottom: .4rem;
}
.slide-name { font-family: 'Cinzel', serif; font-size: 1.2rem; font-weight: 600; }

/* shared carousel controls */
.car-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 100%; display: flex; justify-content: space-between;
  padding: 0 1rem; pointer-events: none;
}
.car-btn {
  width: 46px; height: 46px;
  background: var(--yellow); border: 2px solid var(--dark);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; pointer-events: all; font-size: 1.15rem;
  transition: background .2s, color .2s; user-select: none;
}
.car-btn:hover { background: var(--yellow); color: var(--dark); border-color: var(--yellow); }
.car-dots {
  position: absolute; bottom: 1.4rem; right: 1.4rem;
  display: flex; gap: .4rem;
}
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.45); cursor: pointer;
  transition: background .2s, transform .2s;
}
.dot.on { background: var(--yellow); transform: scale(1.4); }

/* ── MARQUEE ──────────────────────────────────── */
.marquee-wrap {
  background: var(--dark); overflow: hidden;
  padding: 1.1rem 0;
  border-top: 3px solid var(--dark);
  border-bottom: 3px solid var(--dark);
}
.marquee-inner {
  display: flex; gap: 3rem; width: max-content;
  animation: scroll-x 22s linear infinite;
}
.m-item {
  font-family: 'Cinzel', serif;
  font-size: 1.35rem; letter-spacing: .1em;
  color: var(--cream); display: flex; align-items: center;
  gap: 1.5rem; white-space: nowrap;
}
.m-star { color: var(--yellow); }
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── ABOUT ────────────────────────────────────── */
.about {
  display: grid; grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid rgba(242,238,230,.12);
}
.about-text {
  padding: 6rem 4rem;
  border-right: 1px solid rgba(242,238,230,.12);
}
.sec-label {
  font-family: 'Cinzel', serif;
  font-size: .68rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--yellow);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .7rem;
}
.sec-label::before { content: ''; width: 28px; height: 2px; background: currentColor; display: block; }
.sec-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.4rem);
  font-weight: 800; line-height: 1.05; margin-bottom: 1.5rem;
}
.about-body { font-size: 1rem; line-height: 1.78; color: rgba(242,238,230,.55); margin-bottom: 1.2rem; }
.stats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.5rem; margin-top: 2.5rem;
}
.stat { border-top: 1px solid rgba(242,238,230,.2); padding-top: 1rem; }
.stat-n {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem; line-height: 1; color: var(--cream);
}
.stat-n sup { font-size: 1.4rem; }
.stat-l { font-size: .78rem; letter-spacing: .05em; color: rgba(242,238,230,.4); text-transform: uppercase; margin-top: .3rem; }

/* About mini-carousel */
.about-car-wrap {
  padding: 4rem;
  display: flex; flex-direction: column; justify-content: center; gap: 1.5rem;
}
.mini-car {
  position: relative; overflow: hidden;
  border: 1px solid rgba(242,238,230,.2); aspect-ratio: 4/3;
}
.mini-car .car-track { height: 100%; }
.mini-car .car-slide img { width: 100%; height: 100%; object-fit: cover; }
.mini-btn { width: 36px !important; height: 36px !important; font-size: 1rem !important; }
.about-caption { font-size: .88rem; font-style: italic; color: rgba(242,238,230,.4); text-align: center; }

/* ── INVERTED OVERRIDES FOR ABOUT ──────────────── */
.about { background: var(--cream); color: var(--dark); border-bottom-color: rgba(10,10,10,.12); }
.about .about-text { border-right-color: rgba(10,10,10,.12); }
.about .sec-label { color: var(--dark); }
.about .sec-title { color: var(--dark); }
.about .about-body { color: rgba(10,10,10,.85); font-weight: 500; }
.about .stat { border-top-color: rgba(10,10,10,.2); }
.about .stat-n { color: var(--dark); font-weight: 800; }
.about .stat-l { color: rgba(10,10,10,.7); font-weight: 600; }
.about .mini-car { border-color: rgba(10,10,10,.2); }
.about .about-caption { color: rgba(10,10,10,.5); }
.about .car-btn { background: transparent; border-color: rgba(10,10,10,.25); color: var(--dark); }
.about .car-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--cream); }
.about .dot { background: rgba(10,10,10,.25); }
.about .dot.on { background: var(--dark); }

/* ── WORK ─────────────────────────────────────── */
.work {
  background: #141414; padding: 6rem 0;
  border-bottom: 1px solid rgba(242,238,230,.12);
}
.work-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  padding: 0 4rem; margin-bottom: 3rem;
}
.work-head .sec-label { color: var(--yellow); }
.work-head .sec-label::before { background: var(--yellow); }
.work-head .sec-title { color: var(--cream); }
.work-count {
  font-family: 'Cinzel', serif;
  font-size: 5rem; line-height: 1;
  color: rgba(255,255,255,.08);
}
.work-wrap { overflow: hidden; }
.work-track { display: flex; transition: transform .55s cubic-bezier(.77,0,.175,1); }
.work-card {
  flex: 0 0 33.333%; max-width: 33.333%;
  border-right: 2px solid rgba(255,255,255,.08);
  position: relative; overflow: hidden; cursor: pointer; display: block;
}
a.work-card-link {
  text-decoration: none; color: inherit;
}
.work-card:last-child { border-right: none; }
.work-img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block;
  transition: transform .5s ease; filter: grayscale(15%);
}
.work-card:hover .work-img { transform: scale(1.06); filter: grayscale(0%); }
.work-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 2.5rem 1.5rem 1.5rem;
  background: linear-gradient(transparent, rgba(0,0,0,.82));
  color: white;
}
.work-tag {
  display: inline-block; font-size: .68rem; font-weight: 700;
  letter-spacing: .13em; text-transform: uppercase;
  padding: .22rem .65rem; margin-bottom: .65rem;
}
.work-name { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 600; margin-bottom: .25rem; }
.work-yr { font-size: .78rem; opacity: .55; }
.work-ctrls {
  display: flex; justify-content: center; gap: 1rem;
  margin-top: 3rem; padding: 0 4rem;
}
.work-ctrls .car-btn {
  background: transparent; border-color: rgba(255,255,255,.25); color: white;
}
.work-ctrls .car-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

/* ── SKILLS / PROCESS ─────────────────────────── */
.skills { padding: 6rem 4rem; border-bottom: 1px solid rgba(242,238,230,.12); }
.skills-head {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; margin-bottom: 4rem;
}
.skills-desc { font-size: 1rem; line-height: 1.75; color: rgba(242,238,230,.5); margin-top: 1.5rem; }
.proc-wrap { overflow: hidden; }
.proc-track { display: flex; transition: transform .55s cubic-bezier(.77,0,.175,1); }
.proc-card {
  min-width: 25%; flex-shrink: 0;
  border: 1px solid rgba(242,238,230,.15);
  border-right: none;
  padding: 2rem; position: relative;
  overflow-wrap: anywhere; word-wrap: break-word; word-break: break-word;
}
.proc-card:last-child { border-right: 1px solid rgba(242,238,230,.15); }
.proc-stripe {
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
}
.proc-num {
  font-family: 'Cinzel', serif;
  font-size: 3.2rem; line-height: 1;
  color: var(--cream); margin-bottom: 1rem;
}
.proc-icon { font-size: 1.8rem; margin-bottom: .9rem; }
.proc-name { font-family: 'Cinzel', serif; font-size: .95rem; font-weight: 600; margin-bottom: .6rem; overflow-wrap: anywhere; }
.proc-desc { font-size: .84rem; line-height: 1.65; color: rgba(242,238,230,.45); overflow-wrap: anywhere; }
.proc-ctrls { display: flex; gap: .8rem; margin-top: 2rem; }

/* ── INVERTED OVERRIDES FOR SKILLS ─────────────── */
.skills { background: var(--cream); color: var(--dark); border-bottom-color: rgba(10,10,10,.12); }
.skills .sec-label { color: var(--dark); }
.skills .sec-label::before { background: var(--dark); }
.skills .sec-title { color: var(--dark); }
.skills .skills-desc { color: rgba(10,10,10,.85); font-weight: 500; }
.skills .proc-card { border-color: rgba(10,10,10,.15); border-right: none; }
.skills .proc-card:last-child { border-right: 1px solid rgba(10,10,10,.15); }
.skills .proc-num { color: var(--dark); font-weight: 800; }
.skills .proc-name { color: var(--dark); }
.skills .proc-desc { color: rgba(10,10,10,.75); font-weight: 500; }
.skills .proc-stripe[style*="--cream"] { background: var(--dark) !important; }
.skills .car-btn { background: transparent; border-color: rgba(10,10,10,.25); color: var(--dark); }
.skills .car-btn:hover { background: var(--dark); border-color: var(--dark); color: var(--cream); }

/* ── TESTIMONIALS ─────────────────────────────── */
.testi {
  background: #1a1a1a; padding: 6rem 4rem;
  border-bottom: 1px solid rgba(242,238,230,.12);
  position: relative; overflow: hidden;
}
.testi::before {
  content: ''; position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: rgba(255,255,255,.05); pointer-events: none;
}
.testi::after {
  content: ''; position: absolute;
  bottom: -140px; left: 8%;
  width: 280px; height: 280px;
  background: rgba(0,0,0,.1); transform: rotate(45deg);
  pointer-events: none;
}
.testi .sec-label { color: var(--yellow); }
.testi .sec-label::before { background: var(--yellow); }
.testi .sec-title { color: white; }
.testi-wrap { margin-top: 3rem; overflow: hidden; position: relative; z-index: 1; }
.testi-track { display: flex; transition: transform .55s cubic-bezier(.77,0,.175,1); }
.testi-card {
  flex: 0 0 100%; max-width: 100%; min-width: 0;
  padding: 3rem;
  border: 2px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  overflow-wrap: anywhere;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}
.testi-quote {
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.65; color: white; font-style: italic;
  margin-bottom: 2rem; position: relative;
}
.testi-quote::before {
  content: '"';
  font-family: 'Cinzel', serif;
  font-size: 7rem; line-height: .6;
  color: rgba(255,255,255,.13); display: block; margin-bottom: .6rem;
}
.testi-author { display: flex; align-items: center; gap: 1rem; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--yellow); flex-shrink: 0;
}
.testi-name { font-family: 'Cinzel', serif; font-weight: 600; color: white; margin-bottom: .2rem; }
.testi-role { font-size: .82rem; color: rgba(255,255,255,.55); }
.testi-ctrls { display: flex; gap: .8rem; margin-top: 2rem; position: relative; z-index: 1; }
.t-btn {
  width: 46px; height: 46px;
  background: transparent; border: 2px solid rgba(255,255,255,.35);
  color: white; display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 1.05rem;
  transition: background .2s, border-color .2s; user-select: none;
}
.t-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); }

/* ── CONTACT ──────────────────────────────────── */
.contact { display: grid; grid-template-columns: 1fr 1fr; }
.contact-left {
  padding: 6rem 4rem;
  border-right: 1px solid rgba(242,238,230,.12);
}
.contact-cta {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.8rem, 4.5vw, 4.8rem);
  line-height: 1.0; margin: 1rem 0 2.5rem;
}
.contact-cta .acc { color: var(--yellow); }
.contact-items { display: flex; flex-direction: column; gap: .8rem; }
.c-link {
  display: flex; align-items: center; gap: 1rem;
  font-size: .95rem; color: var(--cream); text-decoration: none;
  border-bottom: 1px solid rgba(242,238,230,.1); padding-bottom: .8rem;
  transition: color .2s;
}
.c-link:hover { color: var(--yellow); }
.c-icon {
  width: 40px; height: 40px; background: rgba(242,238,230,.1); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0; transition: background .2s;
}
.c-link:hover .c-icon { background: var(--yellow); }
.contact-right {
  padding: 6rem 4rem; background: #141414;
  border-left: 1px solid rgba(242,238,230,.12);
}
.contact-right .sec-label { color: var(--yellow); }
.contact-right .sec-label::before { background: var(--yellow); }
.f-group { margin-bottom: 1.4rem; }
.f-label {
  display: block; font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: .45rem;
}
.f-input, .f-area {
  width: 100%; padding: .82rem 1rem;
  background: transparent; border: 1px solid rgba(242,238,230,.2);
  font-family: 'Cinzel', serif; font-size: .85rem; color: var(--cream);
  outline: none; transition: background .2s, border-color .2s; resize: none;
  overflow-wrap: anywhere; word-wrap: break-word; word-break: break-word;
}
.f-input:focus, .f-area:focus { background: rgba(242,238,230,.05); border-color: var(--yellow); }
.f-input::placeholder, .f-area::placeholder { color: rgba(242,238,230,.25); }
.f-area { height: 112px; }
.f-submit {
  width: 100%; padding: 1rem 2rem;
  background: var(--cream); color: var(--dark);
  border: 2px solid var(--cream);
  font-family: 'Cinzel', serif; font-weight: 700;
  font-size: .82rem; letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer; transition: background .2s;
}
.f-submit:hover { background: var(--yellow); border-color: var(--yellow); color: #fff; }

/* ── FOOTER ───────────────────────────────────── */
footer {
  background: var(--dark); padding: 2.8rem 4rem;
  display: flex; justify-content: space-between; align-items: center;
}
.ft-logo { font-family: 'Bebas Neue', sans-serif; font-size: 1.9rem; color: var(--cream); letter-spacing: .06em; }
.ft-logo em { color: var(--yellow); font-style: normal; }
.ft-copy { font-size: .78rem; color: rgba(255,255,255,.35); letter-spacing: .04em; }
.ft-social { display: flex; gap: .75rem; }
.s-link {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  color: white; text-decoration: none; font-size: .82rem;
  transition: background .2s, border-color .2s;
}
.s-link:hover { background: var(--yellow); border-color: var(--yellow); }

/* ── ANIMATIONS ───────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── HAMBURGER ────────────────────────────────── */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 6px;
  z-index: 110;
}
.nav-burger span {
  display: block;
  width: 100%; height: 2px;
  background: var(--cream);
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
/* X state */
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 1.2rem 2rem; }
  .hero { grid-template-columns: 1fr; }
  .hero-car { display: none; }
  .hero { padding-top: 60px; min-height: auto; }
  .hero-text { padding: 2rem 2rem 3rem; justify-content: flex-start; }
  .hero-dots { position: static; margin-top: 3rem; }
  .about { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(10,10,10,.12); }
  .about-car-wrap { padding: 3rem 2rem; }
  .work-head { padding: 0 2rem; }
  .work-ctrls { padding: 0 2rem; }
  .work-card { min-width: 50%; }
  .proc-card { min-width: 50%; }
  .testi { padding: 4rem 2rem; }
  .contact { grid-template-columns: 1fr; }
  .contact-left { padding: 4rem 2rem; border-right: none; border-bottom: 1px solid rgba(242,238,230,.12); }
  .contact-right { padding: 4rem 2rem; border-left: none; }
  .skills { padding: 4rem 2rem; }
  .skills-head { grid-template-columns: 1fr; gap: 1rem; }
  footer { padding: 2.5rem 2rem; flex-direction: column; gap: 1.5rem; text-align: center; }
}
@media (max-width: 640px) {
  #cur, #cur-ring { display: none; }
  body { cursor: auto; }
  nav { padding: 1rem 1.5rem; }
  .nav-burger { display: flex; }
  /* Full-screen slide-down mobile menu */
  .nav-links {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    position: fixed;
    inset: 0;
    background: var(--dark);
    border-bottom: none;
    z-index: 100;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity .3s ease, transform .3s ease;
  }
  .nav-links.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .nav-links li { list-style: none; }
  .nav-links a {
    font-size: 1.4rem !important;
    letter-spacing: .2em !important;
  }
  .nav-cta {
    margin-top: .5rem;
    padding: .8rem 2.5rem !important;
  }
  .hero-text { padding: 1.5rem 1.5rem 2.5rem; }
  .hero-shape { width: 100px; height: 100px; bottom: -20px; border-width: 16px; }
  .about-text { padding: 3rem 1.5rem; }
  .stats { grid-template-columns: 1fr; gap: 1rem; }
  .stat-n { font-size: 2.5rem; }
  .about-car-wrap { padding: 2rem 1.5rem; }
  .work-head { padding: 0 1.5rem; flex-direction: column; align-items: flex-start; gap: .5rem; margin-bottom: 2rem; }
  .work-count { font-size: 3.5rem; }
  .work-ctrls { padding: 0 1.5rem; margin-top: 2rem; }
  .work-card { min-width: 88%; }
  .work-info { transform: translateY(0); padding-bottom: 2.5rem; }
  .proc-card { min-width: calc(100vw - 3rem); max-width: calc(100vw - 3rem); padding: 1.5rem; }
  .proc-num { font-size: 2.4rem; }
  .skills { padding: 3rem 1.5rem; }
  .skills-head { margin-bottom: 2.5rem; }
  .testi { padding: 3rem 1.5rem; }
  .testi-card { padding: 1.5rem; }
  .contact-left, .contact-right { padding: 3rem 1.5rem; }
  .contact-cta { font-size: clamp(2.4rem, 8vw, 2.8rem); margin-bottom: 2rem; }
  footer { padding: 2rem 1.5rem; }
}

