/* ══════════════════════════════════════════════
   Amelie Designs — index.css
   Palette: Red Chai #632727 · Masala #9d5455
            Cinnamon #bf8b66 · Cardamom #dbcb96
            Cream #f6f1e9
   Type: Transforma Sans Medium · Montserrat
══════════════════════════════════════════════ */

@font-face {
  font-family: 'Transforma';
  src: url('/Assets/TransformaMix_Trial-SemiBold-BF660ca8e1a26a1.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

/* ── Design tokens ── */
:root {
  /* Brand palette */
  --red-chai:  #632727;
  --masala:    #9d5455;
  --cinnamon:  #bf8b66;
  --cardamom:  #dbcb96;
  --cream:     #f6f1e9;
  --deep:      #2d1510;

  /* Light mode semantics */
  --bg:      var(--cream);
  --bg2:     #ede5d8;
  --ink:     var(--red-chai);
  --ink-mid: var(--masala);
  --ink-warm:#bf8b66;
  --ink60:   rgba(99, 39, 39, 0.60);
  --ink20:   rgba(99, 39, 39, 0.18);
  --ink10:   rgba(99, 39, 39, 0.08);

  /* Type */
  --ff-disp: 'Transforma', sans-serif;
  --ff-body: 'Montserrat', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--ff-body);
  font-weight: 400;
  overflow-x: hidden;
  transition: background .35s, color .35s;
}
body.no-scroll { overflow: hidden; }

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Global display heading rule — applies Transforma to all h1 and h2
   that are NOT inside article body content (ar-body) */
h1,
h2:not(.ar-body h2) {
  font-family: var(--ff-disp);
}

.px { padding-left: 6vw; padding-right: 6vw; }

/* ══════════════════════════════════════════════
   INTRO
══════════════════════════════════════════════ */
.intro-star img {
  width: clamp(6vw, 8vw, 10vw);
  height: auto;
  display: block;
  animation: spinStar 8s linear infinite;
}

.intro {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--bg);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  transition: opacity .6s ease .1s, visibility .6s ease .1s;
}
.intro.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.intro-letters {
  display: flex;
  align-items: flex-end;
  line-height: .85;
}

.intro-letter-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.intro-letter-wrap--star { position: relative; overflow: visible; }

.intro-letter {
  font-family: var(--ff-disp);
  font-size: 22vw;
  line-height: .85;
  color: var(--ink);
  letter-spacing: -.02em;
  display: block;
  transform: translateY(100%);
  transition: transform 1s cubic-bezier(.87,0,.13,1);
  transition-delay: calc(var(--n) * 0.1s);
}
.intro.revealed .intro-letter { transform: translateY(0); }

.intro-star {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2vh;
  font-size: 8vw;
  color: var(--cinnamon);
  display: inline-block;
  transition: transform .6s cubic-bezier(.68,0,.265,1.55) .6s;
}
.intro.revealed .intro-star {
  animation: introStarSpin 8s linear infinite .6s;
}
@keyframes introStarSpin {
  from { transform: translateX(-50%) rotate(0deg); }
  to   { transform: translateX(-50%) rotate(360deg); }
}
@keyframes spinStar { to { transform: rotate(360deg); } }

@media (max-width: 700px) {
  .intro-letter { font-size: 12vw; }
  .intro-star img { width: clamp(3rem, 8vw, 5rem); }
  .intro-letter-wrap--star { gap: 1vh; }
}
@media (max-width: 420px) {
  .intro-letter { font-size: 11vw; }
}
@media (max-height: 480px) {
  .intro { align-items: center; }
}

/* ══════════════════════════════════════════════
   FULLSCREEN MENU
══════════════════════════════════════════════ */
.menu-overlay {
  position: fixed; inset: 0; z-index: 500;
  background: var(--red-chai);
  display: flex; align-items: center; justify-content: center;
  clip-path: inset(0 0 100% 0 round 0 0 50% 50%);
  transition: clip-path .7s cubic-bezier(.83,0,.17,1);
  pointer-events: none;
}
.menu-overlay.open {
  clip-path: inset(0 0 0% 0 round 0);
  pointer-events: auto;
}

.menu-overlay__inner {
  position: relative; width: 100%;
  display: flex; flex-direction: column; align-items: center;
}

.menu-close {
  background: none; border: none;
  color: var(--cream); font-size: 2rem;
  cursor: pointer; margin-bottom: 2.5rem;
  opacity: 0; transition: opacity .3s .5s;
}
.menu-overlay.open .menu-close { opacity: 1; }

.menu-nav ul { display: flex; flex-direction: column; gap: 0; }
.menu-nav li { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }

.menu-nav a {
  font-family: var(--ff-disp);
  font-size: clamp(7vw, 9vw, 7rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  display: inline-block;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity .01s, transform 1s cubic-bezier(.83,0,.17,1) .8s;
}
.menu-overlay.open .menu-nav a { opacity: 1; transform: translateY(0); }
.menu-nav a:hover { color: var(--cardamom); }

.menu-num {
  font-family: var(--ff-body);
  font-size: .9rem; font-weight: 300;
  color: rgba(246,241,233,.4);
  display: inline-block;
  opacity: 0; transform: translateY(100%);
  transition: opacity .01s, transform 1s cubic-bezier(.83,0,.17,1) .9s;
}
.menu-overlay.open .menu-num { opacity: 1; transform: translateY(0); }

@media (max-width: 480px) {
  .menu-nav a { font-size: 13vw; }
  .menu-num { font-size: .75rem; }
  .menu-close {
    font-size: 1.6rem;
    padding: .5rem;
  }
}

/* ══════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════ */
header {
  position: sticky; top: 0; z-index: 200;
  background: rgba(246, 241, 233, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(10px);
  mix-blend-mode: normal;
  transform: translateY(-100%);
  animation: slideDown .5s cubic-bezier(.64,0,.78,0) forwards;
  animation-delay: 2.8s;
}

@keyframes slideDown { to { transform: translateY(0); } }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6vw;
}

.header-logo img {
  height: clamp(2.5rem, 5vw, 4.5rem);
  width: auto;
  display: block;
}
.header-logo {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  letter-spacing: -.02em;
  color: var(--ink);
  line-height: 1;
  padding: .5rem 0;
}

.header-contact {
  font-family: var(--ff-body);
  font-size: .72rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--bg);
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 4rem;
  padding: .55rem 1.6rem;
  transition: background .25s, color .25s;
}
.header-contact:hover {
  background: transparent;
  color: var(--ink);
}

.header-menu {
  background: none; border: none;
  font-family: var(--ff-body); font-size: .85rem; letter-spacing: .06em;
  color: var(--ink); cursor: pointer;
}
.header-menu:hover { opacity: .6; }

@media (max-width: 480px) {
  .header-inner { padding: 0 4vw; }
  .header-contact { padding: .45rem 1rem; font-size: .62rem; }
  .header-logo img { height: 2.2rem; }
  .header-menu { font-size: .78rem; padding: .4rem; }
}
@media (max-width: 360px) {
  .header-contact { padding: .4rem .8rem; font-size: .58rem; }
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  padding-top: 4vh;
  padding-bottom: 8vh;
}

.hero-name { line-height: .85; margin-bottom: 1.2rem; }
.hero-name__line-wrap { overflow: hidden; }

.hero-name__line {
  font-family: var(--ff-disp);
  font-size: 12vw;
  line-height: .85;
  letter-spacing: -.02em;
  color: var(--ink);
  transform: translateY(110%);
  opacity: 0;
  transition: transform 1.2s cubic-bezier(.25,1,.5,1), opacity .01s;
}
.hero-name__line.in { transform: translateY(0); opacity: 1; }
#heroLine2 { transition-delay: .15s; }

.hero-roles {
  display: flex; justify-content: flex-end;
  gap: 3rem; padding-right: 4rem;
  opacity: 0;
  transition: opacity 1.2s ease .6s;
  margin-bottom: 2rem;
}
.hero-roles.in { opacity: 1; }
.hero-roles span {
  font-family: var(--ff-disp);
  font-size: clamp(.9rem, 2.5vw, 2rem);
  color: var(--ink60);
  letter-spacing: .01em;
}

.hero-bottom {
  display: flex; gap: 8vw; align-items: flex-start; margin-top: 2rem;
  opacity: 0; transition: opacity 1.2s ease .9s;
}
.hero-bottom.in { opacity: 1; }

.hero-star-wrap { display: flex; justify-content: flex-end; flex: 1; }

.hero-star img {
  width: clamp(5rem, 10vw, 9rem);
  height: auto;
  display: block;
  animation: spinStar 12s linear infinite;
}

.hero-star {
  font-size: clamp(2rem, 10vw, 9rem);
  color: var(--cinnamon);
  display: inline-block;
  animation: spinStar 12s linear infinite;
  transform-origin: center;
}

.hero-media { flex: 2.5; display: flex; gap: 6vw; }

.hero-photo {
  flex: 1.5; max-width: 40vw;
  aspect-ratio: 3/4; overflow: hidden;
  transform: translateX(10vw);
}
@media (min-width: 600px) { .hero-photo { transform: translateX(0); } }

.hero-desc {
  flex: 3; display: flex; flex-direction: column;
  justify-content: flex-end; padding-bottom: 2vh;
}
.hero-desc__text { width: 90%; }
.hero-desc p {
  font-size: clamp(1.2rem, 1vw, .95rem);
  line-height: 1.8; font-weight: 300;
  color: var(--ink60);
  margin-bottom: 1.5rem;
}

/* ══════════════════════════════════════════════
   PILL BUTTON
══════════════════════════════════════════════ */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink); border-radius: 4rem;
  padding: .55rem 1.8rem;
  font-family: var(--ff-body); font-size: .72rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink);
  transition: background .3s, color .3s;
  cursor: pointer; white-space: nowrap;
}
.pill-btn:hover { background: var(--ink); color: var(--bg); }
.pill-btn--wide { width: 100%; max-width: 13em; margin-top: .8rem; }

/* ══════════════════════════════════════════════
   TAGS
══════════════════════════════════════════════ */
.tag {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: .62rem; letter-spacing: .08em; text-transform: uppercase;
  border: 1px solid var(--ink60); border-radius: 2rem;
  padding: .18rem .65rem; color: var(--ink60);
}

/* ══ PHRASE / TEXT SECTIONS ══════════════════ */

.text-section { padding: 10vh 0; }
.phrase-block { margin-bottom: 0; }
.phrase-line  { overflow: hidden; }

.phrase {
  font-family: var(--ff-disp);
  font-size: clamp(2rem, 3.6vw, 4rem);
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.01em;
  transform: translateY(100%) rotateZ(2deg);
  opacity: 0;
  display: inline-block;
  transition: transform .6s cubic-bezier(.83,0,.17,1), opacity .01s;
}
.phrase.in { transform: translateY(0) rotateZ(0deg); opacity: 1; }

.phrase-line:nth-child(1) .phrase { transition-delay: 0s;   }
.phrase-line:nth-child(2) .phrase { transition-delay: .06s; }
.phrase-line:nth-child(3) .phrase { transition-delay: .12s; }
.phrase-line:nth-child(4) .phrase { transition-delay: .18s; }
.phrase-line:nth-child(5) .phrase { transition-delay: .24s; }
.about-media {
  margin-top: 3rem; display: flex;
  gap: 4vw; align-items: flex-end;
}
.about-photo { overflow: hidden; }
.about-photo--left  { flex: 1; aspect-ratio: 3/4; transform: scale(1.1); }
.about-photo--right { flex: 1.5; aspect-ratio: 4/3; padding-bottom: 4vh; }

.about-copy {
  display: flex;
  margin-top: 4rem;
  gap: 6vw;
  padding-top: 2.5rem;
  border-top: 1px solid var(--ink20);
}
.about-copy__spacer { flex: 1; }

.about-copy__cols {
  flex: 2.5;
  display: flex;
  gap: 4vw;
}

.about-copy__col {
  flex: 1;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  font-weight: 400;
  line-height: 1.9;
  color: var(--ink);
  opacity: .75;
}

@media (min-width: 601px) and (max-width: 900px) {
  .proj-card { max-width: 46vw; }
  .hero-name__line { font-size: 13vw; }
  .phrase { font-size: 4.5vw; }
  .about-copy__cols { gap: 3vw; }
}

/* ══════════════════════════════════════════════
   SELECTED PROJECTS
══════════════════════════════════════════════ */
.projects {
  padding: 10vh 0;
  padding-bottom: 30vh;
  position: relative;
  background: var(--bg);
  z-index: 0;
}

.projects__heading-wrap {
  position: sticky; top: 8vh; z-index: 0;
  line-height: .85; pointer-events: none;
  background: var(--bg);
}
.projects__heading-overflow          { overflow: hidden; padding-bottom: 0.25em;}
.projects__heading-overflow--center  { display: flex; justify-content: center; }

.projects__heading-word {
  font-family: var(--ff-disp);
  font-size: 15vw; line-height: 1.1;
  letter-spacing: -.01em; color: var(--ink);
  display: block;
  transform: translateY(80%); opacity: 0;
  transition: transform 1.2s cubic-bezier(.83,0,.17,1), opacity .01s;
}
.projects__heading-word.in { transform: translateY(0); opacity: 1; }
#projProjects { transition-delay: .05s; }

.projects__cards { position: relative; z-index: 2; margin-top: -4vh; }

.proj-item { display: flex; margin-bottom: 12vw; }

.proj-card {
  display: block;
  width: 100%;
  max-width: 60vw;
  cursor: none;
  padding: 1rem;
  background: rgba(246, 241, 233, 0.35);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border: 1px solid rgba(99, 39, 39, 0.12);
  border-radius: 1rem;
  box-shadow: 0 8px 32px rgba(99, 39, 39, 0.06);
  transition: background .4s, box-shadow .4s, transform .4s cubic-bezier(.16,1,.3,1);
}
@media (min-width: 768px) { .proj-card { max-width: 30vw; } }

@media (min-width: 1024px) and (hover: hover) and (pointer: fine) {
  .proj-card { max-width: 42vw; }
}

.proj-card:hover {
  background: rgba(246, 241, 233, 0.55);
  box-shadow: 0 14px 40px rgba(99, 39, 39, 0.12);
}

.proj-card__img {
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg2);
  border-radius: 0.6rem;
}
.proj-card__img img { transition: transform .5s cubic-bezier(.16,1,.3,1); }
.proj-card:hover .proj-card__img img { transform: scale(1.05); }

.proj-card__footer {
  display: flex; justify-content: space-between;
  align-items: baseline;
  margin-top: .9rem;
  padding: 0 .2rem;
}
.proj-card__title {
  font-family: var(--ff-disp);
  font-size: 2.2rem; line-height: 1; color: var(--ink);
}
.proj-card__year { font-size: .7rem; color: var(--ink60); font-weight: 300; }
.proj-card__tags {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-top: .4rem;
  padding: 0 .2rem;
}

.proj-item--cta {
  margin-top: 4vh;
  margin-bottom: 4vh;
  position: relative;
  z-index: 3;
}

.pill-btn--lg {
  font-size: .85rem;
  padding: .9rem 3rem;
  letter-spacing: .14em;
  background: var(--bg);
}

@media (hover: none) and (pointer: coarse) {
  .work-cta-desktop { display: none; }
  .proj-item--cta:has(.work-cta-desktop) { display: none; }
}

/* ══════════════════════════════════════════════
   SERVICES
══════════════════════════════════════════════ */
.services { padding-bottom: 20vh;
 background: var(--bg);
  position: relative;
  z-index: 1;}

.services-display { margin-bottom: 8vh; }
.services-display__row         { display: flex; justify-content: space-evenly; align-items: flex-end; }
.services-display__row--bottom { justify-content: space-between; align-items: flex-start; }

.serv-img { width: 11vw; aspect-ratio: 2/3; overflow: hidden; flex-shrink: 0; }
@media (min-width: 768px) { .serv-img { width: 10vw; } }

.services-display__heading { display: flex; justify-content: center; padding: .5rem 0; }
.services-display__heading h2 {
  font-family: var(--ff-disp);
  font-size: 15vw; line-height: 1;
  letter-spacing: -.02em; text-transform: uppercase;
  color: var(--ink);
}

.services-body  { display: flex; gap: 3vw; position: relative; }
.services-list  { flex: 1; border-top: 1px solid var(--ink20); border-bottom: 1px solid var(--ink20); }

.service-row {
  padding: 1.8rem 1rem;
  border-bottom: 1px solid var(--ink20);
  transition: background .25s;
}
.service-row:last-child { border-bottom: none; }
.service-row:hover { background: var(--ink10); }

.service-row__head { display: flex; align-items: center; gap: 1.2rem; margin-bottom: 1rem; }
.service-row__icon { font-size: 1.6rem; color: var(--cinnamon); animation: spinStar 10s linear infinite; }

.service-row__title {
  font-family: var(--ff-disp);
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  line-height: 1; color: var(--ink);
}
.service-row__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .8rem; }
.service-row__desc {
  font-size: 1rem; line-height: 1.8;
  font-weight: 300; color: var(--ink60); max-width: 55ch;
}

.services-sticky {
  flex: 1;
  position: sticky;
  top: 4vh;
  height: 180vh;
  overflow: hidden;
}
.services-sticky__img { width: 100%; height: 100%; overflow: hidden; }
.services-sticky__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .4s;
}

@media (max-width: 480px) {
  .serv-img { width: 22vw; }
  .services-display__row--bottom .serv-img:nth-child(3) {
    display: none;
  }
  .services-display__heading h2 { font-size: 18vw; }
}

/* ══════════════════════════════════════════════
   MISSION
══════════════════════════════════════════════ */
.text-section--mission { padding-top: 6vh; }
.mission-inner { width: 90%; margin-left: auto; }
.mission-label {
  font-size: .72rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink60); margin-bottom: 1.2rem; display: block;
  font-weight: 500;
}

/* ══════════════════════════════════════════════
   PROCESS
══════════════════════════════════════════════ */
.process { padding: 12vh 6vw; }

.process-grid {
  display: grid; grid-template-columns: 1fr; gap: 1.2rem;
}
@media (min-width: 600px)  { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(3, 1fr); } }

.process-card {
  border-radius: .75rem; padding: 1.6rem;
  min-height: 30vh; display: flex; flex-direction: column;
}
@media (min-width: 1024px) { .process-card { min-height: 55vh; } }

.process-card--bordered {
  border: 1.5px solid var(--ink);
  transition: background .3s, color .3s;
}
.process-card--bordered:hover { background: var(--ink); color: var(--bg); }
.process-card--bordered:hover .process-card__desc { opacity: 1; }

.process-card--accent { background: var(--red-chai); color: var(--cream); }
.process-card--tl { border-radius: 100% .75rem .75rem .75rem; align-items: flex-end; justify-content: flex-end; }
.process-card--br { border-radius: .75rem .75rem 100% .75rem; }

.process-card h5 {
  font-family: var(--ff-disp);
  font-size: 2.2rem; letter-spacing: .04em;
}
.process-card h6 {
  font-family: var(--ff-disp); font-size: 1.7rem; margin-bottom: auto;
}
.process-card__desc {
  font-size: .88rem;
  line-height: 1.8;
  font-weight: 400;
  opacity: 0;
  transition: opacity .3s;
  margin-top: auto;
}

@media (max-width: 600px) {
  .process-card { min-height: 22vh; padding: 1.2rem; }
  .process-card h5 { font-size: 1.7rem; }
  .process-card h6 { font-size: 1.4rem; }
  .process-card__desc { opacity: 1; font-size: .82rem; }
  .proj-item--cta { display: none; }
}

/* ══ TOOLS MARQUEE ═══════════════════════════ */
.tools-marquee {
  overflow: hidden;
  border-top: 1px solid var(--ink20);
  border-bottom: 1px solid var(--ink20);
  padding: 2.5rem 0;
  margin-bottom: 0;
}

.tools-marquee__track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: toolsScroll 28s linear infinite;
}
.tools-marquee:hover .tools-marquee__track {
  animation-play-state: paused;
}

@keyframes toolsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.tools-marquee__item {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-shrink: 0;
  opacity: .5;
  transition: opacity .3s;
}
.tools-marquee__item:hover { opacity: 1; }

.tools-marquee__item img {
  width: 2rem;
  height: 2rem;
  object-fit: contain;
  display: block;
}

.tools-marquee__item span {
  font-family: var(--ff-body);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}

/* ══════════════════════════════════════════════
   LET'S TALK
══════════════════════════════════════════════ */
.letstalk { padding: 4vh 0; }

.letstalk__inner {
  display: block; border-radius: 100rem;
  padding: 1.5rem 0; overflow: hidden;
  transition: background .3s, color .3s;
}
.letstalk__inner:hover { background: var(--red-chai); color: var(--cream); }

.letstalk__track {
  display: flex; align-items: center; gap: 4vw;
  white-space: nowrap; width: max-content;
  animation: carousel 15s linear infinite;
}
.letstalk__track span {
  font-family: var(--ff-disp);
  font-size: 12vw; line-height: 1;
  letter-spacing: -.02em; text-transform: uppercase;
}
.letstalk__sep { font-size: 7vw !important; color: var(--cinnamon) !important; opacity: .8; }

@keyframes carousel {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 480px) {
  .letstalk__track span { font-size: 16vw; }
  .letstalk__sep { font-size: 9vw !important; }
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer { padding-top: 4vh; padding-bottom: 2rem; }

.footer-star {
  display: flex;
  justify-content: center;
  margin-bottom: 4vh;
}

.footer-star img {
  width: clamp(4rem, 8vw, 8rem);
  height: auto;
  display: block;
  animation: spinStar 20s linear infinite;
}

.footer-body {
  display: flex; flex-direction: column; gap: 3rem;
}
@media (min-width: 768px) {
  .footer-body { flex-direction: row; justify-content: space-between; }
}

.footer-links { display: flex; flex-direction: row; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
@media (min-width: 768px) { .footer-links { flex-direction: column; justify-content: normal; gap: .5rem; } }

.footer-links a {
  font-size: .9rem; color: var(--ink); text-transform: capitalize;
  position: relative; width: fit-content;
}
.footer-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--ink);
  transition: width .3s ease;
}
.footer-links a:hover::after { width: 100%; }

.footer-cta { flex: 1; }
.footer-cta__overflow { overflow: hidden; }
.footer-cta__line {
  font-family: var(--ff-disp);
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1; color: var(--ink); display: block;
  transform: translateY(100%);
  transition: transform .8s cubic-bezier(.83,0,.17,1);
}
.footer-cta__line.in { transform: translateY(0); }
.footer-cta__overflow:nth-child(1) .footer-cta__line { transition-delay: .05s; }
.footer-cta__overflow:nth-child(2) .footer-cta__line { transition-delay: .10s; }
.footer-cta__overflow:nth-child(3) .footer-cta__line { transition-delay: .15s; }

.footer-meta {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  align-items: flex-start; gap: 1.5rem;
  margin-top: 2rem; padding-top: 1.5rem;
  border-top: 1px solid var(--ink20);
}
.footer-meta__group { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-meta__label { font-size: .7rem; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--ink60); margin-bottom: .2rem; }
.footer-meta__value { font-size: .85rem; color: var(--ink); font-weight: 400; }

.ping-dot {
  color: #22c55e; display: inline-block;
  animation: ping .8s ease-in-out infinite alternate; margin-right: .2rem;
}
@keyframes ping { from { opacity: .4; } to { opacity: 1; } }

.footer-copy { font-size: .68rem; color: var(--ink60); margin-top: 1rem; }

@media (max-width: 480px) {
  .footer-meta__group { gap: 1.5rem; }
  .footer-links { gap: .8rem 1.2rem; }
  .footer-cta__line { font-size: clamp(1.4rem, 6vw, 2.2rem); }
}

/* ══════════════════════════════════════════════
   HOVER CURSOR
══════════════════════════════════════════════ */
.hover-cursor {
  position: fixed; top: 0; left: 0;
  width: 9em; height: 9em; border-radius: 50%;
  background: var(--red-chai); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none; z-index: 9999;
  opacity: 0; transform: translate(-50%, -50%) scale(.5);
  transition: opacity .4s, transform .4s cubic-bezier(.16,1,.3,1);
}
.hover-cursor.visible { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.hover-cursor__inner {
  display: flex; gap: 2rem;
  white-space: nowrap; overflow: hidden;
  font-family: var(--ff-disp); font-size: 1rem;
  animation: carousel 3s linear infinite;
}

/* ══════════════════════════════════════════════
   REVIEWS
══════════════════════════════════════════════ */
.reviews {
  padding: 10vh 0;
  border-top: 1px solid var(--ink20);
}

.reviews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 4vw;
  padding: 0 6vw 5vh;
}

.reviews__header-left {
  flex-shrink: 0;
}

.reviews__label {
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink60);
  display: block;
  margin-bottom: .8rem;
}

.reviews__heading {
  font-family: var(--ff-disp);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--ink);
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
}
.reviews__heading.in {
  opacity: 1;
  transform: translateY(0);
}

.reviews__sub {
  font-size: clamp(.72rem, .9vw, .88rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--ink60);
  max-width: 32ch;
  text-align: right;
}

.reviews__track-wrap {
  overflow: hidden;
  padding: 0 6vw 1rem;
  cursor: grab;
}
.reviews__track-wrap:active { cursor: grabbing; }

.reviews__track {
  display: flex;
  gap: 2rem;
  transition: transform .6s cubic-bezier(.25,1,.5,1);
  will-change: transform;
  user-select: none;
}

.review-card {
  flex: 0 0 calc(50% - 1rem);
  border: 1px solid var(--ink20);
  border-radius: 1rem;
  padding: 2.5rem 2.8rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: border-color .3s, background .3s;
}
.review-card:hover {
  border-color: var(--ink);
  background: var(--ink10);
}

.review-card__stars {
  font-size: .8rem;
  letter-spacing: .3em;
  color: var(--cinnamon);
}

.review-card__quote {
  font-family: var(--ff-disp);
  font-size: clamp(1.1rem, 1.8vw, 1.5rem);
  line-height: 1.4;
  color: var(--ink);
  font-weight: normal;
  flex: 1;
}

.review-card__author {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ink20);
}
.review-card__name {
  font-size: .82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: .04em;
}
.review-card__role {
  font-size: .7rem;
  font-weight: 300;
  color: var(--ink60);
  letter-spacing: .06em;
}
.review-card__link {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink20);
  padding-bottom: .1rem;
  align-self: flex-start;
  transition: border-color .25s, color .25s;
}
.review-card__link:hover {
  color: var(--cinnamon);
  border-color: var(--cinnamon);
}

.reviews__nav {
  display: flex;
  gap: .8rem;
  padding: 2.5rem 6vw 0;
}

.reviews__btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
}
.reviews__btn:hover {
  background: var(--ink);
  color: var(--bg);
}
.reviews__btn:disabled {
  opacity: .25;
  cursor: default;
}
.reviews__btn:disabled:hover {
  background: transparent;
  color: var(--ink);
}

.footer-copy a {
  color: inherit;
  opacity: .6;
  text-decoration: none;
  transition: opacity .2s;
}
.footer-copy a:hover { opacity: 1; }

/* ══════════════════════════════════════════════
   RESPONSIVE (mobile, max-width: 600px)
══════════════════════════════════════════════ */
@media (max-width: 600px) {
  .hero-media      { flex-direction: column; gap: 1.5rem; }
  .hero-photo      { max-width: 70vw; }
  .hero-bottom     { flex-direction: column; gap: 1rem; }
  .hero-roles      { padding-right: 0; gap: 1rem; }

  .about-copy      { flex-direction: column; }
  .about-copy__spacer { display: none; }
  .about-copy__cols   { flex-direction: column; }

  .about-media {
    flex-direction: column;
    gap: 6vw;
  }
  .about-photo--left,
  .about-photo--right {
    flex: none;
    width: 100%;
    transform: none;
    padding-bottom: 0;
  }
  .about-photo--left { aspect-ratio: 4/3; }

  .phrase          { font-size: 7vw; }
  .proj-card       { max-width: 80vw; }
  .proj-item       { justify-content: center !important; }

  .services-display__row { gap: 1rem; }
  .serv-img        { width: 20vw; }
  .services-body   { flex-direction: column; }

  .services-sticky {
    position: static;
    height: auto;
    aspect-ratio: 4/3;
    width: 100%;
    margin-top: 2rem;
  }

  .reviews__header { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .reviews__sub    { text-align: left; max-width: 100%; }
  .review-card     { flex: 0 0 88vw; padding: 1.6rem; gap: 1.2rem; }
  .review-card__quote { font-size: 1.05rem; }
  .reviews__nav    { padding-top: 1.5rem; }

  .pill-btn        { padding: .7rem 1.6rem; }
  .reviews__btn    { width: 2.6rem; height: 2.6rem; min-width: 44px; min-height: 44px; }
}

@media (hover: none) and (pointer: coarse) {
  [data-parallax] { transform: none !important; }
}
@media (hover: none) and (pointer: coarse) {
  .hover-cursor { display: none !important; }
}