/* ============================================================
   Hapa Honey — Awwwards site
   Built on the design-system tokens (styles.css). This file is
   the experiential layer: layout, motion, custom cursor, grain.
   ============================================================ */

:root {
  --ink: #14110d;
  --ink-deep: #0b0908;
  --cream: #f7f1ea;
  --cream-2: #efe6db;
  --blush: #ebdad4;
  --brown: #5d3429;
  /* Brand accent — blush on dark surfaces; light sections override to brown below */
  --honey: #ebdad4;
  --honey-bright: #ebdad4;
  --cocoa: #82614b;
  --cocoa-deep: #3a2b20;
  --olive: #847a3e;
  --olive-soft: #a8a177;

  --maxw: 1440px;
  --gutter: clamp(1.25rem, 4vw, 4.5rem);
  --nav-h: 84px;
}

html { -webkit-text-size-adjust: 100%; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
  cursor: none;
}

@media (max-width: 900px) { body { cursor: auto; } }

::selection { background: var(--honey); color: var(--ink); }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------------- Grain + vignette overlay ---------------- */
.grain {
  position: fixed; inset: -50%; z-index: 9000; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 6s steps(8) infinite;
}
@keyframes grain {
  0%,100%{transform:translate(0,0)} 10%{transform:translate(-4%,-4%)} 30%{transform:translate(3%,-2%)}
  50%{transform:translate(-2%,3%)} 70%{transform:translate(4%,2%)} 90%{transform:translate(-3%,-3%)}
}

/* ---------------- Custom cursor ---------------- */
.cursor {
  position: fixed; top: 0; left: 0; z-index: 9500; pointer-events: none;
  width: 10px; height: 10px; border-radius: 50%; background: var(--honey-bright);
  transform: translate(-50%, -50%); mix-blend-mode: difference;
  transition: width .25s var(--ease-standard), height .25s var(--ease-standard), background .25s;
}
.cursor-ring {
  position: fixed; top: 0; left: 0; z-index: 9499; pointer-events: none;
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(247,241,234,.45);
  transform: translate(-50%, -50%);
}
body.cursor-hover .cursor { width: 0; height: 0; }
body.cursor-hover .cursor-ring { width: 72px; height: 72px; border-color: var(--honey-bright); background: rgba(235,218,212,.08); }
.cursor-ring .cur-label {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; color: var(--honey-bright);
  opacity: 0; transition: opacity .2s;
}
body.cursor-view .cursor-ring .cur-label { opacity: 1; }
@media (max-width: 900px) { .cursor, .cursor-ring { display: none; } }

/* ---------------- Loader ---------------- */
.loader {
  position: fixed; inset: 0; z-index: 9800; background: var(--ink-deep);
  display: grid; place-items: center;
}
.loader__inner { text-align: center; }
.loader__mark {
  font-family: var(--font-display); text-transform: uppercase; letter-spacing: -.01em;
  font-size: clamp(2rem, 6vw, 4rem); color: var(--cream); line-height: 1;
  white-space: nowrap;
}
.loader__count {
  font-family: var(--font-body); font-weight: 600; font-size: 13px; letter-spacing: .3em;
  color: var(--honey); margin-top: 1.25rem;
}
.loader__bar { width: min(280px, 60vw); height: 1px; background: rgba(247,241,234,.18); margin: 1.25rem auto 0; overflow: hidden; }
.loader__bar i { display: block; height: 100%; width: 0; background: var(--honey-bright); }
.loader--done { transform: translateY(-100%); opacity: 0; transition: transform .9s var(--ease-standard), opacity .9s var(--ease-standard); }

/* ---------------- Nav ---------------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 800; height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease-standard), backdrop-filter .4s, border-color .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled { background: rgba(11,9,8,.72); backdrop-filter: blur(14px); border-color: rgba(247,241,234,.08); }
.nav__row { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav__logo img { height: clamp(34px, 4vw, 42px); filter: brightness(0) invert(1); display: block; }
.nav__links { display: flex; gap: 2.25rem; align-items: center; }
.nav__links a {
  font-size: 13px; letter-spacing: .06em; text-transform: uppercase; font-weight: 600;
  color: var(--cream); position: relative; padding: 4px 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--honey-bright);
  transition: width .35s var(--ease-standard);
}
.nav__links a:hover::after { width: 100%; }
.nav__cta {
  display: inline-flex; align-items: center; gap: .55rem; padding: .7rem 1.35rem; border-radius: 999px;
  background: var(--honey-bright); color: var(--ink); font-weight: 700; font-size: 13px;
  letter-spacing: .04em; transition: transform .3s var(--ease-standard), background .3s;
}
.nav__cta:hover { background: var(--cream); transform: translateY(-2px); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: 8px; }
.nav__burger span { width: 26px; height: 2px; background: var(--cream); transition: .3s; }

@media (max-width: 900px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: flex; }
}

/* Mobile menu */
.menu {
  position: fixed; inset: 0; z-index: 790; background: var(--ink-deep);
  display: flex; flex-direction: column; justify-content: center; gap: 1rem;
  padding: var(--gutter); transform: translateY(-100%); transition: transform .6s var(--ease-standard);
}
.menu.open { transform: translateY(0); }
.menu a {
  font-family: var(--font-display); text-transform: uppercase; font-size: clamp(2.2rem, 11vw, 3.5rem);
  color: var(--cream); line-height: 1.05;
}
.menu a:nth-child(odd) { color: var(--honey-bright); }

/* ---------------- Hero ---------------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; padding-top: var(--nav-h); }
.hero__video {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 18%;
  z-index: 0; display: block;
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: rgba(11,9,8,.55);
}
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(to bottom, rgba(11,9,8,.25) 0%, rgba(11,9,8,.1) 35%, rgba(11,9,8,.72) 100%);
}
.hero__content { position: relative; z-index: 3; width: 100%; padding-block: clamp(2rem, 5vh, 4rem); }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: .7rem; font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--honey-bright); font-weight: 600; margin-bottom: 1.6rem;
}
.hero__eyebrow::before { content: ""; width: 38px; height: 1px; background: var(--honey-bright); }
.hero__title {
  font-family: var(--font-display); text-transform: uppercase; color: var(--cream);
  font-size: clamp(2.6rem, 7.6vw, 7.5rem); line-height: .94; letter-spacing: -.02em; font-weight: 400;
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--honey-bright); }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: flex-end; justify-content: space-between;
  margin-top: clamp(1.8rem, 4vw, 3rem);
}
.hero__lede { max-width: 30rem; font-size: clamp(1rem, 1.3vw, 1.18rem); line-height: 1.55; color: rgba(247,241,234,.82); }
.hero__scroll { display: inline-flex; align-items: center; gap: .7rem; font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: rgba(247,241,234,.6); }
.hero__scroll i { display: inline-block; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(6px)} }

/* ---------------- Marquee ---------------- */
.marquee { background: var(--honey-bright); color: var(--ink); padding: 1.1rem 0; overflow: hidden; border-block: 1px solid rgba(20,17,13,.15); }
.marquee__track { display: flex; gap: 3rem; white-space: nowrap; width: max-content; will-change: transform; }
.marquee__track span {
  font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.3rem, 2.4vw, 2.1rem);
  letter-spacing: -.01em; display: inline-flex; align-items: center; gap: 3rem;
}
.marquee__track span::after { content: "✦"; font-size: .7em; color: var(--cocoa-deep); }

/* ---------------- Sections base ---------------- */
.section { position: relative; padding-block: clamp(5rem, 12vh, 11rem); }
.s-cream { background: var(--cream); color: var(--ink); --honey: var(--brown); --honey-bright: var(--brown); }
.s-ink { background: var(--ink); color: var(--cream); }
.s-cocoa { background: var(--cocoa-deep); color: var(--cream); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .7rem; font-size: 12px; letter-spacing: .2em;
  text-transform: uppercase; font-weight: 600; color: var(--honey); margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; opacity: .6; }

/* ---------------- Mission (pinned word reveal) ---------------- */
.mission { padding-block: clamp(7rem, 22vh, 16rem); }
.mission__text {
  font-family: var(--font-display); text-transform: uppercase; line-height: 1.06; letter-spacing: -.015em;
  font-size: clamp(1.9rem, 5.2vw, 5rem); max-width: 18ch; font-weight: 400;
}
.mission__text .w { display: inline; color: rgba(20,17,13,.14); transition: color .3s; }
.mission__text .w.is-on { color: var(--ink); }
.mission__text .w.accent.is-on { color: var(--honey); font-style: italic; }
.mission__foot { margin-top: clamp(2.5rem, 5vw, 4rem); display: flex; flex-wrap: wrap; gap: 2rem 4rem; }
.mission__foot p { max-width: 26rem; font-size: 1.05rem; line-height: 1.6; color: rgba(20,17,13,.66); }

/* ---------------- Serve (split) ---------------- */
.serve__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; }
.serve__media { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 4/5; }
.serve__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.12); will-change: transform; }
.serve__media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.serve h2 { font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: .98; margin-bottom: 1.6rem; }
.serve__list { margin-top: 2.5rem; border-top: 1px solid rgba(20,17,13,.14); }
.serve__list li { list-style: none; display: flex; gap: 1.2rem; align-items: baseline; padding: 1.15rem 0; border-bottom: 1px solid rgba(20,17,13,.14); }
.serve__list .n { font-size: 12px; font-weight: 700; color: var(--honey); letter-spacing: .1em; }
.serve__list .t { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(1.1rem, 2vw, 1.6rem); }

/* ---------------- Services (sticky stack) ---------------- */
.svc__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; margin-bottom: 3.5rem; }
.svc__head h2 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: .95; }
.svc__cards { display: flex; flex-direction: column; gap: 2.5rem; }
.svc-card {
  position: sticky; top: calc(var(--nav-h) + 24px);
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(1.5rem, 4vw, 4rem);
  background: var(--ink); border: 1px solid rgba(247,241,234,.12); border-radius: 22px;
  padding: clamp(1.5rem, 3vw, 3rem); overflow: hidden;
}
.svc-card__media { border-radius: 14px; overflow: hidden; aspect-ratio: 16/11; }
.svc-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease-standard); }
.svc-card:hover .svc-card__media img { transform: scale(1.06); }
.svc-card__media video { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .9s var(--ease-standard); }
.svc-card:hover .svc-card__media video { transform: scale(1.06); }
.svc-card__num { font-family: var(--font-display); font-size: clamp(2.4rem,5vw,4rem); color: var(--honey); line-height: 1; }
.svc-card__body { display: flex; flex-direction: column; }
.svc-card h3 { font-size: clamp(1.8rem, 3.2vw, 2.8rem); margin: 1rem 0 1.1rem; }
.svc-card p { color: rgba(247,241,234,.72); font-size: 1.05rem; line-height: 1.6; max-width: 34ch; }
.svc-card__tags { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: auto; padding-top: 1.8rem; }
.svc-card__tags span { font-size: 12px; letter-spacing: .04em; padding: .4rem .8rem; border: 1px solid rgba(247,241,234,.22); border-radius: 999px; color: rgba(247,241,234,.8); }

/* ---------------- Work (horizontal scroll) ---------------- */
.work { background: var(--ink); overflow: hidden; padding-bottom: clamp(5rem, 12vh, 11rem); }
.work__head { padding-top: clamp(4rem, 9vh, 8rem); }
.work__head h2 { font-size: clamp(2.4rem, 6vw, 5.5rem); line-height: .95; }
.work__pin { height: 100svh; display: flex; align-items: center; }
.work__track { display: flex; gap: clamp(1.5rem, 3vw, 3rem); padding-inline: var(--gutter); will-change: transform; }
.work-card { position: relative; flex: 0 0 auto; width: min(46vw, 560px); }
.work-card__media { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; position: relative; }
.work-card__media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); will-change: transform; }
.work-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,9,8,.6), transparent 55%); }
.work-card__meta { display: flex; justify-content: space-between; align-items: flex-start; margin-top: 1.3rem; gap: 1rem; }
.work-card__meta h3 { font-size: clamp(1.4rem, 2.4vw, 2.1rem); }
.work-card__meta .yr { font-size: 12px; letter-spacing: .1em; color: var(--honey); font-weight: 600; padding-top: .5rem; }
.work-card__tags { color: rgba(247,241,234,.6); font-size: 13px; margin-top: .4rem; }
.work-card__view {
  position: absolute; top: 1rem; right: 1rem; z-index: 3; width: 56px; height: 56px; border-radius: 50%;
  background: rgba(247,241,234,.12); backdrop-filter: blur(8px); border: 1px solid rgba(247,241,234,.25);
  display: grid; place-items: center; color: var(--cream); font-size: 1.1rem;
  opacity: 0; transform: scale(.7); transition: .4s var(--ease-standard);
}
.work-card:hover .work-card__view { opacity: 1; transform: scale(1); }
.work__progress { height: 2px; background: rgba(247,241,234,.12); margin: 2.5rem var(--gutter) 0; border-radius: 2px; overflow: hidden; }
.work__progress i { display: block; height: 100%; width: 0; background: var(--honey-bright); }

@media (max-width: 900px) {
  .work__pin { height: auto; display: block; padding-block: 3rem; }
  .work__track { flex-direction: column; }
  .work-card { width: 100%; }
  .work__progress { display: none; }
}

/* ---------------- Stats ---------------- */
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3.5rem); }
.stat { border-top: 1px solid rgba(247,241,234,.18); padding-top: 1.5rem; }
.stat__num { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5.5rem); line-height: 1; color: var(--honey-bright); }
.stat__num .suf { color: var(--cream); }
.stat__label { margin-top: 1rem; font-size: 14px; letter-spacing: .04em; color: rgba(247,241,234,.7); text-transform: uppercase; }
@media (max-width: 760px) { .stats__grid { grid-template-columns: 1fr 1fr; } }

/* ---------------- Testimonials ---------------- */
.tst__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); margin-top: 3.5rem; }
.tst-card { background: var(--cream); color: var(--ink); border-radius: 18px; padding: clamp(1.5rem, 2.5vw, 2.4rem); display: flex; flex-direction: column; gap: 1.4rem; }
.tst-card__stars { color: var(--honey); letter-spacing: .15em; font-size: 1.05rem; }
.tst-card blockquote { font-family: var(--font-display); font-size: clamp(1.15rem, 1.8vw, 1.5rem); line-height: 1.25; margin: 0; }
.tst-card figcaption { display: flex; align-items: center; gap: .9rem; margin-top: auto; }
.tst-card figcaption img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.tst-card .nm { font-weight: 700; font-size: 15px; }
.tst-card .rl { font-size: 13px; color: rgba(20,17,13,.6); }
@media (max-width: 900px) { .tst__grid { grid-template-columns: 1fr; } }

/* ---------------- CTA ---------------- */
.cta { position: relative; overflow: hidden; text-align: center; padding-block: clamp(6rem, 16vh, 13rem); }
.cta__bg { position: absolute; left: 0; right: 0; top: -15%; bottom: -15%; z-index: 0; }
.cta__bg img { width: 100%; height: 100%; object-fit: cover; will-change: transform; }
.cta__bg video { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; will-change: transform; }
.cta::before { content:""; position:absolute; inset:0; z-index:1; background: rgba(11,9,8,.62); }
.cta .wrap { position: relative; z-index: 2; }
.cta h2 { font-size: clamp(2.6rem, 8vw, 7.5rem); line-height: .95; color: var(--cream); }
.cta h2 em { font-style: italic; color: var(--honey-bright); }
.cta p { max-width: 34rem; margin: 1.8rem auto 2.6rem; font-size: 1.15rem; color: rgba(247,241,234,.85); line-height: 1.55; }
.cta__btn {
  display: inline-flex; align-items: center; gap: .8rem; padding: 1.1rem 2.4rem; border-radius: 999px;
  background: var(--honey-bright); color: var(--ink); font-weight: 700; font-size: 1rem; letter-spacing: .02em;
  transition: transform .35s var(--ease-standard), background .35s;
}
.cta__btn:hover { transform: translateY(-3px); background: var(--cream); }

/* ---------------- Footer ---------------- */
.footer { background: var(--ink-deep); color: var(--cream); padding-block: clamp(4rem, 8vh, 7rem) 2.5rem; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3.5rem; border-bottom: 1px solid rgba(247,241,234,.12); }
.footer__brand img { height: clamp(34px, 4vw, 42px); filter: brightness(0) invert(1); margin-bottom: 1.4rem; }
.footer__brand p { color: rgba(247,241,234,.65); max-width: 24rem; line-height: 1.6; }
.footer__col h4 { font-family: var(--font-body); font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--honey); margin-bottom: 1.2rem; }
.footer__col a, .footer__col p { display: block; color: rgba(247,241,234,.78); margin-bottom: .7rem; font-size: 15px; }
.footer__col a:hover { color: var(--honey-bright); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-top: 2rem; font-size: 13px; color: rgba(247,241,234,.55); }
.footer__bottom a { color: var(--honey); text-decoration: none; transition: color .3s; }
.footer__bottom a:hover { color: var(--honey-bright); text-decoration: underline; }
.footer__socials { display: flex; gap: 1.4rem; }
.footer__socials a { color: rgba(247,241,234,.78); font-size: 1.3rem; }
.footer__socials a:hover { color: var(--honey-bright); }
@media (max-width: 760px) { .footer__top { grid-template-columns: 1fr; } }

/* big footer wordmark */
.footer__mark { font-family: var(--font-display); text-transform: uppercase; font-size: clamp(3.5rem, 18vw, 17rem); line-height: .82; letter-spacing: -.02em; color: rgba(247,241,234,.06); margin-top: 3rem; pointer-events: none; }

/* ---------------- Reveal utility ---------------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease-standard), transform .9s var(--ease-standard); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-line { display: block; overflow: hidden; }
.reveal-line > * { display: block; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  .grain { animation: none; }
}

@media (max-width: 700px) {
  .serve__grid { grid-template-columns: 1fr; }
  .svc-card { grid-template-columns: 1fr; position: relative; top: 0; }
  .mission__text { max-width: none; }
}

/* ---------------- Micro-interactions ---------------- */

/* Serve list — rows nudge right, number lights up */
.serve__list li {
  transition: padding-left .35s var(--ease-standard), border-color .35s;
  cursor: default;
}
.serve__list li:hover { padding-left: .7rem; border-bottom-color: var(--honey); }
.serve__list .n { transition: color .3s; }
.serve__list .t { transition: color .3s; }
.serve__list li:hover .n { color: var(--honey-bright); }
.serve__list li:hover .t { color: var(--cocoa-deep); }

/* Serve media — gentle warm-up on hover (filter, so it never fights GSAP transforms) */
.serve__media img { transition: filter .6s var(--ease-standard); }
.serve__media:hover img { filter: brightness(1.06) saturate(1.05); }

/* Service cards — border wakes up, number glows, tags fill */
.svc-card { transition: border-color .45s var(--ease-standard); }
.svc-card:hover { border-color: rgba(247,241,234,.3); }
.svc-card__num { transition: color .4s, transform .4s var(--ease-standard); }
.svc-card:hover .svc-card__num { color: var(--honey-bright); transform: translateX(4px); }
.svc-card__tags span {
  transition: background .3s, color .3s, border-color .3s, transform .3s var(--ease-standard);
}
.svc-card__tags span:hover {
  background: var(--honey-bright); color: var(--ink);
  border-color: var(--honey-bright); transform: translateY(-2px);
}

/* Work cards — title underline slides in, year brightens, media settles */
.work-card__meta h3 {
  display: inline-block; position: relative;
}
.work-card__meta h3::after {
  content: ""; position: absolute; left: 0; bottom: -4px; height: 2px; width: 0;
  background: var(--honey-bright); transition: width .45s var(--ease-standard);
}
.work-card:hover .work-card__meta h3::after { width: 100%; }
.work-card .yr { transition: color .3s, transform .3s var(--ease-standard); }
.work-card:hover .yr { color: var(--honey-bright); transform: translateX(-3px); }
.work-card__media { transition: transform .6s var(--ease-standard); }
.work-card:hover .work-card__media { transform: scale(.985); }

/* Stats — accent border sweeps in, number lifts */
.stat { transition: border-color .45s var(--ease-standard); }
.stat:hover { border-top-color: var(--honey-bright); }
.stat__num { transition: transform .45s var(--ease-standard); }
.stat:hover .stat__num { transform: translateY(-4px); }

/* Testimonials — card lifts, avatar tilts, stars spread */
.tst-card {
  transition: transform .5s var(--ease-standard), box-shadow .5s var(--ease-standard);
}
.tst-card:hover { transform: translateY(-6px); box-shadow: 0 24px 56px rgba(11,9,8,.35); }
.tst-card figcaption img { transition: transform .4s var(--ease-standard); }
.tst-card:hover figcaption img { transform: scale(1.1) rotate(-3deg); }
.tst-card__stars { transition: letter-spacing .45s var(--ease-standard); }
.tst-card:hover .tst-card__stars { letter-spacing: .22em; }

/* CTA + nav buttons — arrow nudges toward the corner */
.cta__btn i, .nav__cta i { transition: transform .3s var(--ease-standard); }
.cta__btn:hover i, .nav__cta:hover i { transform: translate(3px, -3px); }

/* Footer — links step out, socials hop */
.footer__col a { transition: transform .3s var(--ease-standard), color .3s; }
.footer__col a:hover { transform: translateX(5px); }
.footer__socials a { transition: transform .3s var(--ease-standard), color .3s; }
.footer__socials a:hover { transform: translateY(-3px); }

/* ============================================================
   Portfolio highlights (home) + category subpages
   ============================================================ */
.highlights {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(1rem, 2.2vw, 2rem); margin-top: clamp(2rem, 5vw, 3.5rem);
}
.hl-card { display: block; text-decoration: none; color: inherit; }
.hl-card__media {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/5;
}
.hl-card__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-standard);
}
.hl-card:hover .hl-card__media img { transform: scale(1.06); }
.hl-card:hover .work-card__view { opacity: 1; transform: scale(1); }
.hl-card__media::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(11,9,8,.55), transparent 55%); }
.hl-card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1.1rem; }
.hl-card__meta h3 { font-size: clamp(1.3rem, 2.4vw, 2rem); line-height: 1.05; }
.hl-card__count { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--honey); font-weight: 600; white-space: nowrap; }

/* Subpage shell */
.subpage { padding-top: calc(var(--nav-h) + clamp(2.5rem, 7vh, 6rem)); }
.subpage__head { max-width: 60rem; }
.subpage__back {
  display: inline-flex; align-items: center; gap: .5rem; text-decoration: none;
  color: var(--honey); font-size: 13px; letter-spacing: .06em; text-transform: uppercase;
  font-weight: 600; margin-bottom: 2rem; transition: gap .3s var(--ease-standard);
}
.subpage__back:hover { gap: .9rem; }
.subpage__head h1 { font-family: var(--font-display); font-size: clamp(2.6rem, 7vw, 5.5rem); line-height: .98; margin: .4rem 0 1.2rem; }
.subpage__head p { color: rgba(247,241,234,.7); font-size: 1.1rem; line-height: 1.6; max-width: 42rem; }

/* Portfolio item grid */
.portfolio-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.4rem, 3vw, 2.6rem); margin-top: clamp(2.5rem, 6vw, 4.5rem);
}
.portfolio-grid--reels { grid-template-columns: repeat(3, 1fr); }
.pf-card { display: block; text-decoration: none; color: inherit; }
.pf-card__media {
  position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 16/10;
  background: rgba(247,241,234,.05); border: 1px solid rgba(247,241,234,.08);
}
.pf-card__media img { width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .8s var(--ease-standard); }
.pf-card:hover .pf-card__media img { transform: scale(1.05); }
.pf-card:hover .work-card__view { opacity: 1; transform: scale(1); }
.pf-card__meta { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; margin-top: 1rem; }
.pf-card__meta h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
.pf-card__tag { font-size: 12px; letter-spacing: .08em; text-transform: uppercase; color: var(--honey); font-weight: 600; white-space: nowrap; }

/* Instagram reel embeds + self-hosted video reels */
.pf-card--reel .pf-card__media { aspect-ratio: 9/16; border-radius: 16px; }
.pf-card--reel iframe { width: 100%; height: 100%; border: 0; display: block; }
.pf-card--reel video { width: 100%; height: 100%; object-fit: cover; display: block; background: #000; }

/* Social media — name cards (most have no public link) */
.social-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.8rem); margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.social-card {
  display: flex; flex-direction: column; justify-content: space-between; gap: 1.4rem;
  min-height: 12rem; padding: clamp(1.4rem, 2.5vw, 2.2rem);
  border-radius: 16px; border: 1px solid rgba(247,241,234,.12);
  background: rgba(247,241,234,.03); text-decoration: none; color: inherit;
  transition: border-color .4s var(--ease-standard), transform .4s var(--ease-standard), background .4s;
}
a.social-card:hover { border-color: var(--honey); transform: translateY(-4px); background: rgba(247,241,234,.06); }
.social-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.9rem); line-height: 1.1; }
.social-card__handle { font-size: 13px; letter-spacing: .04em; color: rgba(247,241,234,.6); display: inline-flex; align-items: center; gap: .5rem; }
a.social-card .social-card__handle { color: var(--honey); }

/* Graphic design — masonry gallery */
.gd-grid { columns: 3 280px; column-gap: clamp(.8rem, 2vw, 1.4rem); margin-top: clamp(2.5rem, 6vw, 4.5rem); }
.gd-item { display: block; break-inside: avoid; margin: 0 0 clamp(.8rem, 2vw, 1.4rem); border-radius: 12px; overflow: hidden; }
.gd-item img { width: 100%; height: auto; display: block; transition: transform .6s var(--ease-standard); }
.gd-item:hover img { transform: scale(1.04); }

@media (max-width: 900px) {
  .hl-card__media { aspect-ratio: 4/5; }
  .portfolio-grid, .portfolio-grid--reels, .social-grid { grid-template-columns: 1fr; }
  .portfolio-grid--reels { grid-template-columns: repeat(2, 1fr); }
}
