/* =========================================================
   Boom-360 Agency — brand-driven, animation-heavy stylesheet
   Palette: Taupe #BFA995 · Black #1B1715 · Soft White #F5F3F1 · Warm Grey #8A817C
   ========================================================= */

:root {
  --taupe: #BFA995;
  --taupe-soft: #D8C9B8;
  --taupe-deep: #A48D75;
  --black: #1B1715;
  --white: #F5F3F1;
  --grey: #8A817C;
  --line: rgba(27, 23, 21, 0.12);
  --line-light: rgba(245, 243, 241, 0.18);

  --radius: 14px;
  --radius-lg: 24px;
  --maxw: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html.lenis { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto; }
.lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }
.lenis.lenis-stopped { overflow: hidden; }
.lenis.lenis-scrolling iframe { pointer-events: none; }

body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: "Montserrat", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
body.no-scroll { overflow: hidden; height: 100vh; }

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }

em {
  font-family: "Fraunces", "Montserrat", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
}

/* =========================================================
   SCROLL PROGRESS BAR
   ========================================================= */
.scrollbar {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px; z-index: 90;
  background: transparent;
  pointer-events: none;
}
.scrollbar span {
  display: block; height: 100%;
  background: linear-gradient(90deg, var(--taupe-deep), var(--taupe));
  width: 0;
  transform-origin: 0 0;
  transition: width 0.05s linear;
}

/* =========================================================
   BOOM METER (floating scroll ring)
   ========================================================= */
.boommeter {
  position: fixed;
  left: 22px; bottom: 22px;
  width: 60px; height: 60px;
  z-index: 70;
  display: grid; place-items: center;
  color: var(--white);
  opacity: 0;
  transform: scale(0.85);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease-out);
  pointer-events: none;
}
.boommeter.is-visible { opacity: 1; transform: scale(1); }
.boommeter svg { position: absolute; inset: 0; transform: rotate(-90deg); }
.boommeter__bar {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 0.1s linear;
}
.boommeter__pct {
  position: relative;
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-shadow: 0 0 8px rgba(0,0,0,0.4);
  mix-blend-mode: difference;
}
@media (max-width: 600px) {
  .boommeter { display: none; }
}

/* =========================================================
   LOADER (v2 — char-stagger reveal + curtain split)
   ========================================================= */
.loader {
  position: fixed; inset: 0; z-index: 200;
  background: var(--black);
  display: grid; place-items: center;
  color: var(--white);
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.is-out {
  opacity: 0; visibility: hidden;
  transform: translateY(-2%);
  transition: transform 1s var(--ease), opacity 0.7s var(--ease), visibility 0s 0.9s;
}
.loader__inner { text-align: center; }
.loader__brand--official {
  width: 200px; height: 200px;
  margin: 0 auto 30px;
  display: grid; place-items: center;
  position: relative;
}
.loader__logo {
  width: 100%; height: 100%; object-fit: contain;
  animation: loaderLogo 1.4s var(--ease-out) both;
}
@keyframes loaderLogo {
  0%   { opacity: 0; transform: scale(0.6) rotate(-12deg); }
  60%  { opacity: 1; transform: scale(1.05) rotate(0); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}
.loader__brand {
  position: relative; width: 220px; height: 100px;
  margin: 0 auto 26px;
}
.loader__circle, .loader__disk {
  position: absolute; top: 50%; transform: translateY(-50%);
  border-radius: 50%;
}
.loader__circle {
  left: 30px; width: 84px; height: 84px;
  border: 2.5px solid var(--taupe);
  animation: ringScale 2.1s var(--ease) infinite;
}
.loader__disk {
  left: 60px; width: 76px; height: 76px;
  background: var(--black);
  border: 1px solid var(--taupe);
}
.loader__name {
  position: absolute; left: 60px; top: 50%; width: 76px;
  transform: translateY(-50%);
  text-align: center;
  font-size: 11px; font-weight: 600; letter-spacing: 0.18em;
  display: inline-flex; justify-content: center;
}
.loader__name span {
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
  animation: loaderChar 0.5s var(--ease-out) forwards;
}
.loader__name span:nth-child(1) { animation-delay: 0.10s; }
.loader__name span:nth-child(2) { animation-delay: 0.16s; }
.loader__name span:nth-child(3) { animation-delay: 0.22s; }
.loader__name span:nth-child(4) { animation-delay: 0.28s; }
.loader__name span:nth-child(5) { animation-delay: 0.34s; }
.loader__name span:nth-child(6) { animation-delay: 0.40s; }
.loader__name span:nth-child(7) { animation-delay: 0.46s; }
.loader__name span:nth-child(8) { animation-delay: 0.52s; }
@keyframes loaderChar {
  to { transform: translateY(0); opacity: 1; }
}

.loader__curtain {
  position: absolute; left: 0; right: 0;
  height: 50%;
  background: var(--black);
  z-index: 3;
  transition: transform 1s var(--ease-out);
  pointer-events: none;
}
.loader__curtain--top { top: 0; transform: translateY(-100%); }
.loader__curtain--bot { bottom: 0; transform: translateY(100%); }
.loader.is-out .loader__curtain--top { transform: translateY(-100%); }
.loader.is-out .loader__curtain--bot { transform: translateY(100%); }
@keyframes ringScale {
  0%, 100% { transform: translateY(-50%) scale(1); opacity: 1; }
  50%      { transform: translateY(-50%) scale(1.18); opacity: 0.6; }
}

.loader__progress {
  width: 220px; max-width: 60vw;
  height: 1px; background: rgba(245,243,241,0.18);
  margin: 0 auto 20px;
  overflow: hidden;
}
.loader__progress span {
  display: block; height: 100%; width: 0;
  background: var(--taupe);
  animation: load 1.4s var(--ease) forwards;
}
@keyframes load { to { width: 100%; } }

.loader__tag {
  font-size: 12px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(245,243,241,0.7);
  margin: 0;
}
.loader__tag em { color: var(--taupe); }

/* =========================================================
   CUSTOM CURSOR
   ========================================================= */
.cursor {
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 300;
  mix-blend-mode: difference;
}
.cursor__dot {
  position: absolute; top: 0; left: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--white);
  transform: translate(-50%, -50%);
}
.cursor__ring {
  position: absolute; top: 0; left: 0;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(245,243,241,0.8);
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.cursor__label {
  position: absolute; top: 0; left: 0;
  transform: translate(-50%, -50%);
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white);
  opacity: 0; transition: opacity 0.25s var(--ease);
  pointer-events: none;
}
body.cursor-hover .cursor__ring {
  width: 60px; height: 60px;
  background: rgba(245,243,241,0.12);
  border-color: rgba(245,243,241,0);
}
body.cursor-view .cursor__ring {
  width: 90px; height: 90px;
  background: var(--taupe);
  border-color: var(--taupe);
}
body.cursor-view .cursor__label { opacity: 1; }
body.cursor-view .cursor__dot { opacity: 0; }
@media (hover: none) {
  .cursor { display: none; }
}

/* =========================================================
   Reusable
   ========================================================= */
.section {
  padding: clamp(72px, 10vw, 140px) var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  position: relative;
}
.section--dark {
  background: var(--black);
  color: var(--white);
  max-width: none;
  width: 100%;
}
.section--dark .section { max-width: var(--maxw); margin: 0 auto; padding-left: 0; padding-right: 0; }
.section--dark em { color: var(--taupe); }

.section__head {
  max-width: 920px;
  margin: 0 0 64px;
}
.section__head h2 {
  font-size: clamp(36px, 5.8vw, 86px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 18px;
}
.section__head--light h2 { color: var(--white); }
.section__lede {
  color: var(--grey);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 60ch;
}
.section--dark .section__lede { color: rgba(245, 243, 241, 0.7); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--taupe-deep);
  margin: 0;
}
.eyebrow--light { color: var(--taupe); }
.dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--taupe-deep);
  display: inline-block;
  animation: pulse 2.2s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(1.4); opacity: 0.5; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease);
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn__label { position: relative; z-index: 2; }
.btn__arrow {
  position: relative; z-index: 2;
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .btn__arrow { transform: translateX(6px) rotate(-8deg); }

.btn--solid { background: var(--black); color: var(--white); }
.btn--solid::before {
  content: ""; position: absolute; inset: 0;
  background: var(--taupe-deep);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease-out);
  z-index: 1;
}
.btn--solid:hover::before { transform: translateY(0); }

.btn--ghost { background: transparent; color: inherit; border-color: currentColor; }
.btn--ghost:hover { background: var(--black); color: var(--white); border-color: var(--black); }

.section--dark .btn--solid { background: var(--taupe); color: var(--black); }
.section--dark .btn--solid::before { background: var(--white); }

.btn--lg { padding: 16px 28px; font-size: 15px; }
.btn--xl { padding: 22px 38px; font-size: 16px; }

.magnetic { will-change: transform; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 18px var(--pad);
  background: rgba(245, 243, 241, 0.78);
  backdrop-filter: saturate(140%) blur(16px);
  -webkit-backdrop-filter: saturate(140%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), padding 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.is-scrolled {
  padding-top: 12px; padding-bottom: 12px;
  border-color: var(--line);
  background: rgba(245, 243, 241, 0.92);
}
.nav__brand { display: inline-flex; align-items: center; gap: 12px; }
.nav__mark { width: 48px; height: 48px; object-fit: contain; transition: transform 0.6s var(--ease); }
.nav__brand:hover .nav__mark { transform: rotate(-12deg); }
.nav__wordmark { display: flex; flex-direction: column; line-height: 1; }
.nav__name { font-weight: 800; letter-spacing: 0.04em; font-size: 16px; }
.nav__tag { font-size: 10px; letter-spacing: 0.32em; color: var(--grey); margin-top: 4px; }
.nav__links {
  display: flex;
  gap: 36px;
  justify-content: center;
  font-weight: 500;
  font-size: 14px;
}
.nav__links a { position: relative; padding: 4px 0; }
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 100%; height: 1px; background: currentColor;
  transform: scaleX(0); transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__menu {
  display: none;
  background: none; border: 0;
  width: 40px; height: 40px;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px;
  cursor: pointer;
}
.nav__menu span { width: 22px; height: 1.5px; background: var(--black); display: block; }

/* =========================================================
   HERO credentials strip
   ========================================================= */
.hero__credentials {
  position: absolute;
  top: 18px; left: var(--pad); right: var(--pad);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 0 18px;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey);
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 1s var(--ease), transform 1s var(--ease);
}
.is-ready .hero__credentials { opacity: 1; transform: none; transition-delay: 0.5s; }
.hero__credentials b { color: var(--black); font-weight: 700; }
.hero__credentials-sep {
  width: 18px; height: 1px; background: var(--line); display: inline-block;
}
.hero__greet b { color: var(--taupe-deep); }
@media (max-width: 980px) {
  .hero__credentials { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 9vw, 130px) var(--pad) clamp(60px, 9vw, 130px);
  position: relative;
}
.hero__title {
  font-size: clamp(48px, 9vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.04em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.hero__title .line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.06em;
}
.hero__title .line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.hero__title .line__inner em { display: inline-block; }
.is-ready .hero__title .line__inner { transform: translateY(0); }
.is-ready .hero__title .line:nth-child(2) .line__inner { transition-delay: 0.18s; }

/* per-character hero title stagger (added by JS) */
.hero__title .word { display: inline-block; white-space: nowrap; }
.hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(8deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }

.hero__lede {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--grey);
  max-width: 56ch;
  margin: 0 0 36px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__stats {
  display: flex;
  gap: clamp(20px, 4vw, 56px);
  list-style: none;
  padding: 0;
  margin: 56px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__stats strong {
  display: block;
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero__stats span {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--grey);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  line-height: 1.4;
}

/* hero visual — orbital logo */
.hero__visual { display: flex; justify-content: center; align-items: center; min-height: 420px; }
.orbit {
  position: relative;
  width: min(440px, 80%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  will-change: transform;
}
.orbit__ring {
  position: absolute; inset: 0;
  border: 2px solid var(--taupe);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}
.orbit__ring::before {
  content: "";
  position: absolute; top: -7px; left: 50%;
  width: 12px; height: 12px;
  background: var(--taupe-deep); border-radius: 50%;
  transform: translateX(-50%);
}
.orbit__disk {
  width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: var(--black);
  transform: translateX(8%);
  box-shadow: 0 30px 90px -30px rgba(27,23,21,0.45);
  animation: float 6s ease-in-out infinite;
}
.orbit__label {
  position: absolute;
  color: var(--white);
  font-weight: 700;
  letter-spacing: 0.32em;
  font-size: clamp(12px, 1.4vw, 18px);
  transform: translateX(8%);
}
.orbit--logo .orbit__ring {
  inset: -3%;
  border-color: var(--taupe);
  opacity: 0.7;
}
.orbit__logo {
  width: 88%; height: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(27,23,21,0.25));
  animation: float 6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}
.orbit__spark.s3 {
  top: 50%; right: -2%;
  width: 8px; height: 8px;
  background: var(--white);
  border: 1px solid var(--taupe);
  animation: float 4.6s ease-in-out -1s infinite;
}
.orbit__spark {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--taupe);
  filter: blur(0.5px);
}
.orbit__spark.s1 { top: 12%; right: 6%; animation: float 4s ease-in-out infinite; }
.orbit__spark.s2 { bottom: 8%; left: 4%; width: 10px; height: 10px; background: var(--taupe-deep); animation: float 5.3s ease-in-out -2s infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -14px; }
}

.hero__scroll {
  position: absolute;
  left: var(--pad); bottom: 24px;
  display: inline-flex; align-items: center; gap: 14px;
  font-size: 10px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--grey);
}
.hero__scroll-line {
  width: 60px; height: 1px; background: var(--grey);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--black);
  transform: translateX(-100%);
  animation: scrollIndicator 2.4s var(--ease) infinite;
}
@keyframes scrollIndicator {
  0%   { transform: translateX(-100%); }
  60%  { transform: translateX(100%); }
  100% { transform: translateX(100%); }
}

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--black);
  color: var(--white);
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.marquee__track {
  display: inline-flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  padding: 22px 0;
  animation: marquee 42s linear infinite;
  will-change: transform;
}
.marquee__track span {
  font-size: clamp(24px, 3vw, 48px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}
.marquee__track i {
  color: var(--taupe);
  font-size: clamp(18px, 2vw, 30px);
  font-style: normal;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================
   SERVICES — stacked accordion
   ========================================================= */
.services__stack {
  border-top: 1px solid var(--line);
}
.service {
  border-bottom: 1px solid var(--line);
  transition: background 0.6s var(--ease), color 0.6s var(--ease);
  cursor: pointer;
}
.service__row {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1fr) 1.4fr 40px;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  transition: padding 0.5s var(--ease), transform 0.6s var(--ease-out);
}
.service__num {
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--taupe-deep);
  font-weight: 700;
  transition: color 0.5s var(--ease);
}
.service h3 {
  font-size: clamp(22px, 2.4vw, 36px);
  margin: 0;
  letter-spacing: -0.015em;
  font-weight: 700;
  line-height: 1.05;
}
.service p {
  color: var(--grey);
  margin: 0;
  font-size: 15px;
  transition: color 0.5s var(--ease);
}
.service__arrow {
  font-size: 22px;
  color: var(--taupe-deep);
  transform: translateX(-8px);
  opacity: 0.4;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), color 0.5s var(--ease);
}
.service:hover {
  background: var(--black);
  color: var(--white);
}
.service:hover .service__num { color: var(--taupe); }
.service:hover p { color: rgba(245,243,241,0.7); }
.service:hover .service__arrow { transform: translateX(0); opacity: 1; color: var(--taupe); }
.service:hover .service__row { padding-left: 12px; }

/* =========================================================
   WORK — project list (image-follows-cursor)
   ========================================================= */
.work { position: relative; overflow: hidden; }
.projects {
  list-style: none; margin: 0; padding: 0;
  border-top: 1px solid var(--line-light);
}
.project {
  border-bottom: 1px solid var(--line-light);
  transition: padding 0.5s var(--ease);
}
.project a {
  display: grid;
  grid-template-columns: 80px minmax(220px, 1fr) auto 40px;
  align-items: center;
  gap: 32px;
  padding: 36px 0;
  color: rgba(245,243,241,0.55);
  transition: color 0.4s var(--ease), padding 0.5s var(--ease);
}
.project__index {
  font-size: 12px; letter-spacing: 0.22em; font-weight: 700;
  color: var(--taupe);
}
.project__name {
  font-size: clamp(28px, 4.2vw, 64px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
}
.project__tags {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe);
}
.project__arrow {
  font-size: 22px; color: var(--taupe);
  transform: translateX(-8px); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.project:hover a { color: var(--white); padding-left: 24px; }
.project:hover .project__arrow { transform: translateX(0); opacity: 1; }
.project__name {
  background-image: linear-gradient(currentColor 0 0);
  background-size: 0% 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.7s var(--ease-out);
}
.project:hover .project__name { background-size: 100% 1px; }

.projects__preview {
  position: absolute;
  top: 0; left: 0;
  width: 360px; height: 460px;
  pointer-events: none;
  border-radius: var(--radius-lg);
  overflow: hidden;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  transition: opacity 0.45s var(--ease), transform 0.5s var(--ease-out);
  z-index: 5;
  box-shadow: 0 30px 80px -20px rgba(0,0,0,0.5);
}
.projects__preview.is-active { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.projects__preview img { width: 100%; height: 100%; object-fit: cover; }
@media (hover: none) {
  .projects__preview { display: none; }
}

/* =========================================================
   BIG BOOM band
   ========================================================= */
.bigboom {
  background: var(--taupe);
  color: var(--black);
  overflow: hidden;
  padding: clamp(60px, 9vw, 130px) 0;
  position: relative;
}
.bigboom__track {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 280px);
  letter-spacing: -0.04em;
  line-height: 0.85;
  text-transform: uppercase;
  will-change: transform;
}
.bigboom__word {
  -webkit-text-stroke: 0;
  color: var(--black);
}
.bigboom__word:nth-child(3) {
  color: transparent;
  -webkit-text-stroke: 2px var(--black);
}
.bigboom__sep {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 0.45em;
  letter-spacing: 0;
  color: var(--black);
  opacity: 0.7;
}

/* =========================================================
   Logos strip
   ========================================================= */
.logos {
  padding: 56px var(--pad);
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 40px;
  border-bottom: 1px solid var(--line);
}
.logos__label {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--grey);
  font-weight: 600;
}
.logos__row {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  justify-content: space-between;
}
.logos__row span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(18px, 1.8vw, 26px);
  color: var(--black);
  opacity: 0.85;
  transition: opacity 0.3s var(--ease), transform 0.4s var(--ease-out);
}
.logos__row span:hover { opacity: 1; transform: translateY(-3px); }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
}
.about__grid h2 {
  font-size: clamp(36px, 5vw, 76px);
  line-height: 1.03;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 22px;
}
.about__lede {
  color: var(--grey);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 52ch;
  margin: 0 0 18px;
}
.principles {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.principles li {
  background: var(--white);
  padding: 32px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease), transform 0.5s var(--ease-out);
}
.principles li:hover { background: var(--black); color: var(--white); transform: translateY(-3px); }
.principles li:hover p { color: rgba(245,243,241,0.7); }
.principles li:hover .principles__num { color: var(--taupe); }
.principles li:nth-child(5) { grid-column: span 2; background: var(--taupe); color: var(--black); }
.principles li:nth-child(5):hover { background: var(--black); color: var(--white); }
.principles li:nth-child(5) .principles__num { color: var(--black); }
.principles__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--taupe-deep);
  font-weight: 700;
  transition: color 0.5s var(--ease);
}
.principles h4 {
  margin: 0;
  font-size: 20px;
  letter-spacing: -0.01em;
}
.principles p {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.55;
  transition: color 0.5s var(--ease);
}

/* =========================================================
   QUOTE
   ========================================================= */
.quote {
  background: var(--taupe);
  color: var(--black);
  padding: clamp(80px, 10vw, 140px) var(--pad);
  text-align: center;
}
.quote blockquote { margin: 0 auto; max-width: 1080px; }
.quote p {
  font-size: clamp(36px, 6.4vw, 96px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 24px;
}
.quote em { color: var(--black); }
.quote cite {
  font-style: normal;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(27,23,21,0.6);
  font-weight: 600;
}

/* =========================================================
   CTA
   ========================================================= */
.cta { padding: clamp(96px, 12vw, 180px) var(--pad); text-align: center; }
.cta__inner { max-width: 1100px; margin: 0 auto; }
.cta__title {
  font-size: clamp(72px, 14vw, 220px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 18px 0 30px;
  color: var(--white);
}
.cta__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.cta__title .line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1s var(--ease-out);
}
.cta__title.is-visible .line__inner { transform: translateY(0); }
.cta__title.is-visible .line:nth-child(2) .line__inner { transition-delay: 0.15s; }
.cta em { color: var(--taupe); }
.cta__lede {
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 56ch;
  margin: 0 auto 56px;
}
.cta__contact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto 56px;
  max-width: 920px;
}
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 26px 22px;
  background: rgba(245,243,241,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-out);
  text-align: left;
}
.contact-card:hover {
  background: rgba(191,169,149,0.14);
  border-color: var(--taupe);
  transform: translateY(-3px);
}
.contact-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--taupe);
  font-weight: 600;
}
.contact-card__value {
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 600;
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--black);
  color: var(--white);
  padding: 56px var(--pad);
  border-top: 1px solid var(--line-light);
}
.footer__top {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: center;
  max-width: var(--maxw);
  margin: 0 auto 28px;
}
.footer__mark { width: 64px; height: 64px; object-fit: contain; }
.footer__tagline {
  margin: 0;
  color: rgba(245,243,241,0.65);
  font-size: 14px;
  max-width: 60ch;
}
.footer__bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  font-size: 12px;
  color: rgba(245,243,241,0.55);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: none; }

.split-lines { overflow: hidden; }
.split-lines .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.split-lines .line__inner {
  display: block;
  transform: translateY(110%);
  transition: transform 1.1s var(--ease-out);
}
.split-lines.is-visible .line__inner { transform: translateY(0); }
.split-lines.is-visible .line:nth-child(2) .line__inner { transition-delay: 0.12s; }
.split-lines.is-visible .line:nth-child(3) .line__inner { transition-delay: 0.24s; }

/* =========================================================
   REACH — TikTok phone gallery
   ========================================================= */
.reach { overflow: hidden; }
.reach__stats {
  list-style: none; padding: 0; margin: 0 0 64px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.reach__stats li {
  background: var(--black);
  padding: 28px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.reach__stats strong {
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--taupe);
}
.reach__stats span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(245,243,241,0.6);
  line-height: 1.5;
}

.reach__rail {
  margin: 0 calc(var(--pad) * -1);
  overflow: hidden;
  padding: 10px 0 30px;
  mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.reach__track {
  display: inline-flex;
  gap: 22px;
  padding: 0 var(--pad);
  animation: reachScroll 60s linear infinite;
  will-change: transform;
}
.reach__rail:hover .reach__track { animation-play-state: paused; }
@keyframes reachScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50%)); }
}

.phone {
  margin: 0;
  width: 220px;
  flex-shrink: 0;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out);
}
.phone:hover { transform: translateY(-8px); }
.phone__screen {
  position: relative;
  aspect-ratio: 9 / 19.5;
  border-radius: 28px;
  overflow: hidden;
  background: #000;
  border: 6px solid #111;
  box-shadow: 0 30px 50px -20px rgba(0,0,0,0.6), inset 0 0 0 1px rgba(255,255,255,0.04);
}
.phone__screen::before {
  content: "";
  position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 56px; height: 6px; border-radius: 6px;
  background: #000;
  z-index: 2;
}
.phone__screen img { width: 100%; height: 100%; object-fit: cover; }
.phone figcaption {
  display: flex; flex-direction: column; gap: 4px;
  padding: 14px 4px 0;
  color: var(--white);
}
.phone figcaption span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
}
.phone figcaption b {
  font-size: 18px; font-weight: 700;
}

.reach__note {
  margin: 40px 0 0;
  text-align: center;
  color: rgba(245,243,241,0.6);
  font-size: 14px;
}
.reach__note a {
  color: var(--taupe);
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}

/* =========================================================
   TEAM
   ========================================================= */
.team__tag {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe-deep);
  margin: 40px 0 18px;
  display: flex; align-items: center; gap: 14px;
}
.team__tag::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}
.team__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.team__grid--solo {
  grid-template-columns: minmax(260px, 360px);
  justify-content: start;
}
.member {
  background: var(--white);
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease);
}
.member:hover { border-color: var(--taupe); }
.member__photo {
  width: 100%;
  aspect-ratio: 1;
  background: #f0ebe5;
  overflow: hidden;
}
.member__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}
.member:hover .member__photo img { transform: scale(1.04); }
.member__body { padding: 22px 24px 26px; }
.member__body h4 {
  margin: 0;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: -0.01em;
  font-weight: 700;
}
.member__role {
  margin: 6px 0 14px;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  font-weight: 600;
}
.member__quote {
  margin: 0;
  color: var(--grey);
  font-size: 14px;
  line-height: 1.6;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
}
.member--mascot .member__body h4 { font-family: "Fraunces", serif; font-style: italic; font-weight: 500; color: var(--taupe-deep); }
.team__note {
  margin: 40px 0 0;
  text-align: center;
  color: var(--grey);
  font-size: 14px;
}

@media (max-width: 600px) {
  .team__grid { grid-template-columns: 1fr; }
  .team__grid--solo { grid-template-columns: 1fr; }
}

/* =========================================================
   PACKAGES CTA banner (between Services and EGC)
   ========================================================= */
.pkg-cta {
  background: var(--black);
  color: var(--white);
  padding: clamp(60px, 9vw, 120px) var(--pad);
  border-top: 1px solid rgba(245,243,241,0.1);
}
.pkg-cta__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
}
.pkg-cta__copy h2 {
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: var(--white);
  margin: 14px 0 18px;
}
.pkg-cta__copy h2 em { color: var(--taupe); }
.pkg-cta__copy p {
  color: rgba(245,243,241,0.72);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 56ch;
  margin: 0;
  line-height: 1.6;
}
.pkg-cta__actions {
  display: flex; flex-direction: column; gap: 12px;
  align-items: flex-start;
}
.pkg-cta__actions .btn--solid { background: var(--taupe); color: var(--black); }
.pkg-cta__actions .btn--solid::before { background: var(--white); }
.pkg-cta__actions .btn--ghost { color: var(--white); border-color: rgba(245,243,241,0.45); }
.pkg-cta__actions .btn--ghost:hover { background: var(--taupe); border-color: var(--taupe); color: var(--black); }
@media (max-width: 980px) {
  .pkg-cta__inner { grid-template-columns: 1fr; }
}

/* =========================================================
   TEAM (compact)
   ========================================================= */
.team-compact { padding-top: clamp(60px, 8vw, 100px); padding-bottom: clamp(60px, 8vw, 100px); }
.team-compact__head { max-width: 920px; margin: 0 0 28px; }
.team-compact__head h2 {
  font-size: clamp(36px, 5.4vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 0;
}
.team-compact__list {
  list-style: none;
  padding: 0; margin: 0;
  border-top: 1px solid var(--line);
}
.team-compact__list li {
  display: grid;
  grid-template-columns: 130px minmax(220px, 1.2fr) 1fr;
  align-items: baseline;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease);
}
.team-compact__list li:hover {
  padding-left: 12px;
  background: linear-gradient(90deg, rgba(191,169,149,0.08), transparent 60%);
}
.team-compact__group {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe-deep);
}
.team-compact__name {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.015em;
}
.team-compact__role {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.5;
}
.team-compact__role i {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
}
.team-compact__mascot .team-compact__name {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
}
@media (max-width: 700px) {
  .team-compact__list li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 16px 0;
  }
}

/* =========================================================
   AUTHENTICITY band
   ========================================================= */
.authentic {
  background: var(--taupe);
  color: var(--black);
  padding: clamp(64px, 9vw, 120px) var(--pad);
  text-align: center;
}
.authentic__inner { max-width: 1080px; margin: 0 auto; }
.authentic__eyebrow {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
  opacity: 0.55;
  margin: 0 0 18px;
}
.authentic h2 {
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 0 0 22px;
}
.authentic h2 em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--black);
}
.authentic__copy {
  font-size: clamp(16px, 1.6vw, 20px);
  color: rgba(27,23,21,0.78);
  max-width: 62ch;
  margin: 0 auto 32px;
  line-height: 1.55;
}
.authentic__pull {
  border-top: 1px solid rgba(27,23,21,0.18);
  padding-top: 28px;
  margin: 32px auto 0;
  max-width: 900px;
}
.authentic__pull em {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.005em;
  color: var(--black);
}

/* =========================================================
   BRIEF form
   ========================================================= */
.brief {
  text-align: left;
  background: rgba(245,243,241,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px);
  margin: 0 auto 32px;
  max-width: 880px;
  display: flex; flex-direction: column; gap: 18px;
}
.brief__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.brief__field { display: flex; flex-direction: column; gap: 8px; }
.brief__field span {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 600;
}
.brief__field span i { color: rgba(245,243,241,0.6); font-style: normal; font-weight: 500; }
.brief__field input,
.brief__field select,
.brief__field textarea {
  background: rgba(245,243,241,0.06);
  border: 1px solid var(--line-light);
  border-radius: 10px;
  color: var(--white);
  font-family: inherit;
  font-size: 15px;
  padding: 14px 16px;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
  width: 100%;
}
.brief__field textarea { resize: vertical; min-height: 90px; }
.brief__field input::placeholder,
.brief__field textarea::placeholder { color: rgba(245,243,241,0.4); }
.brief__field input:focus,
.brief__field select:focus,
.brief__field textarea:focus {
  outline: none;
  border-color: var(--taupe);
  background: rgba(245,243,241,0.1);
}
.brief__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--taupe) 50%), linear-gradient(135deg, var(--taupe) 50%, transparent 50%);
  background-position: calc(100% - 22px) center, calc(100% - 16px) center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}
.brief__field select option { background: var(--black); color: var(--white); }
.brief__field input:invalid:not(:placeholder-shown),
.brief__field select:invalid:not(:focus):not(:placeholder-shown) { border-color: rgba(255,120,90,0.7); }

.brief__field--full {}

.brief__actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  justify-content: space-between;
  margin-top: 8px;
}
.brief__note {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,243,241,0.55);
}

.cta__contact--alt { margin-top: 32px; }

/* =========================================================
   Floating WhatsApp FAB
   ========================================================= */
.fab {
  position: fixed;
  right: 22px; bottom: 22px;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 16px 40px -8px rgba(37,211,102,0.45), 0 4px 14px rgba(0,0,0,0.18);
  z-index: 80;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fab:hover { transform: scale(1.08); }
.fab__pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: fabPulse 2s var(--ease) infinite;
  pointer-events: none;
}
@keyframes fabPulse {
  0%   { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* =========================================================
   Sticky bottom CTA bar
   ========================================================= */
.stickybar {
  position: fixed;
  left: 16px; right: 92px; bottom: 22px;
  z-index: 70;
  pointer-events: none;
  transform: translateY(140%);
  transition: transform 0.5s var(--ease-out);
}
.stickybar.is-visible { transform: translateY(0); pointer-events: auto; }
.stickybar__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 12px 14px 12px 22px;
  background: var(--black);
  color: var(--white);
  border-radius: 999px;
  box-shadow: 0 20px 60px -15px rgba(0,0,0,0.5);
  border: 1px solid rgba(245,243,241,0.1);
}
.stickybar__label {
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 15px;
}
.stickybar__label em { color: var(--taupe); }
.stickybar__actions { display: flex; gap: 8px; }
.stickybar__actions .btn { padding: 10px 18px; font-size: 13px; }
.stickybar__wa { color: var(--white); border-color: rgba(245,243,241,0.4); }
.stickybar__wa:hover { background: rgba(245,243,241,0.08); color: var(--white); border-color: var(--white); }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .nav__menu { display: inline-flex; }
  .nav .btn { display: none; }
  .hero { grid-template-columns: 1fr; }
  .hero__visual { order: -1; min-height: 300px; }
  .orbit { width: min(320px, 70%); }
  .work__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .logos { grid-template-columns: 1fr; }
  .cta__contact { grid-template-columns: 1fr; }
  .hero__stats { flex-wrap: wrap; gap: 24px 36px; }
  .service__row { grid-template-columns: 56px 1fr 36px; }
  .service__row p { display: none; }
  .project a { grid-template-columns: 56px 1fr 36px; gap: 16px; }
  .project__tags { display: none; }
  .reach__stats { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr 1fr; }
  .brief__row { grid-template-columns: 1fr; }
  .stickybar { left: 12px; right: 88px; bottom: 14px; }
  .stickybar__label { font-size: 13px; }
  .stickybar__actions .btn { padding: 9px 14px; font-size: 12px; }
}
@media (max-width: 600px) {
  .principles { grid-template-columns: 1fr; }
  .principles li:nth-child(5) { grid-column: auto; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__title { font-size: clamp(44px, 13vw, 84px); }
  .bigboom__track { font-size: clamp(72px, 22vw, 160px); gap: 24px; }
  .projects__preview { display: none; }
  .reach__stats { grid-template-columns: 1fr 1fr; }
  .team__grid { grid-template-columns: 1fr; }
  .phone { width: 180px; }
  .stickybar__wa { display: none; }
  .stickybar__label { display: none; }
  .stickybar { left: auto; right: 88px; }
  .fab { width: 54px; height: 54px; right: 16px; bottom: 16px; }
}

/* =========================================================
   IPHONE PHILOSOPHY section
   ========================================================= */
.iphone-philo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.iphone-philo__lede {
  color: var(--grey);
  font-size: clamp(16px, 1.4vw, 18px);
  max-width: 56ch;
  margin: 14px 0 26px;
}
.iphone-philo__points {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 14px;
}
.iphone-philo__points li {
  position: relative;
  padding-left: 26px;
  font-size: 15px;
  color: var(--black);
  line-height: 1.6;
}
.iphone-philo__points li::before {
  content: "";
  position: absolute;
  left: 0; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--taupe);
  box-shadow: 0 0 0 3px rgba(191,169,149,0.18);
}
.iphone-philo__points b { color: var(--black); font-weight: 700; }
.iphone-philo__device {
  display: flex; justify-content: center; align-items: center;
  perspective: 1200px;
  min-height: 600px;
}

/* IPHONE frame (CSS-only) */
.iphone {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 19.5;
  background: #1a1a1a;
  border-radius: 44px;
  padding: 8px;
  box-shadow:
    0 30px 80px -20px rgba(0,0,0,0.45),
    0 0 0 2px #2a2a2a,
    inset 0 0 0 1px rgba(255,255,255,0.04);
  transform: rotateY(-8deg) rotateX(4deg);
  transition: transform 0.6s var(--ease-out);
  animation: phoneFloat 7s ease-in-out infinite;
}
.iphone-philo__device:hover .iphone { transform: rotateY(0) rotateX(0); }
@keyframes phoneFloat {
  0%, 100% { translate: 0 0; }
  50%      { translate: 0 -12px; }
}
.iphone__notch {
  position: absolute;
  top: 16px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 26px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.iphone__btn {
  position: absolute;
  background: #2a2a2a;
  border-radius: 2px;
}
.iphone__btn--silent { left: -2px; top: 90px; width: 3px; height: 26px; }
.iphone__btn--up     { left: -2px; top: 130px; width: 3px; height: 48px; }
.iphone__btn--down   { left: -2px; top: 190px; width: 3px; height: 48px; }
.iphone__btn--power  { right: -2px; top: 150px; width: 3px; height: 76px; }
.iphone__screen {
  position: relative;
  width: 100%; height: 100%;
  background: #000;
  border-radius: 36px;
  overflow: hidden;
  z-index: 1;
}
.iphone__statusbar {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 2;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 28px 0;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  pointer-events: none;
}
.iphone__reel {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  height: 600%;
  animation: iphoneReel 22s var(--ease-out) infinite;
  will-change: transform;
}
.iphone__reel img {
  width: 100%;
  flex: 0 0 calc(100% / 6);
  object-fit: cover;
}
@keyframes iphoneReel {
  0%, 12%    { transform: translateY(0); }
  14%, 26%   { transform: translateY(calc(-100% / 6)); }
  28%, 40%   { transform: translateY(calc(-200% / 6)); }
  42%, 54%   { transform: translateY(calc(-300% / 6)); }
  56%, 68%   { transform: translateY(calc(-400% / 6)); }
  70%, 95%   { transform: translateY(calc(-500% / 6)); }
  100%       { transform: translateY(0); }
}
.iphone__shotbadge {
  position: absolute;
  bottom: 16px; left: 50%; transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: var(--white);
  padding: 7px 14px;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 999px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 3;
  border: 1px solid rgba(245,243,241,0.2);
}

/* =========================================================
   RIG — (removed; equipment is mentioned in the body text)
   ========================================================= */

.rig, .rig__clamp, .rig__arm-pitch, .rig__arm-roll, .rig__joint, .rig__grip, .rig__tripod, .rig__leg, .rig__yoke { display: none; }

/* (legacy rig rules kept below but inert via .rig parent display:none) */
.rig__clamp--legacy {
  position: absolute;
  top: 80px;
  width: 18px;
  height: 100px;
  background: linear-gradient(135deg, #5e5e60 0%, #43434a 50%, #2a2a30 100%);
  border-radius: 4px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -8px 14px rgba(0,0,0,0.4),
    0 4px 12px rgba(0,0,0,0.3);
  z-index: 6;
}
.rig__clamp--left  { left: calc(50% - 132px); }
.rig__clamp--right { left: calc(50% + 114px); }
.rig__clamp::before {
  content: "";
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 8px; height: 26px;
  background: linear-gradient(180deg, #3a3a40, #1f1f23);
  border-radius: 2px;
}
.rig__clamp--left::before  { right: -4px; }
.rig__clamp--right::before { left: -4px; }

/* Articulated arm — pitch segment coming off right side of phone */
.rig__arm-pitch {
  position: absolute;
  top: 200px;
  left: calc(50% + 124px);
  width: 22px;
  height: 90px;
  background: linear-gradient(135deg, #5a5a5e 0%, #38383d 60%, #1f1f24 100%);
  border-radius: 6px;
  transform: rotate(-12deg);
  transform-origin: top left;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -10px 14px rgba(0,0,0,0.35),
    0 6px 12px rgba(0,0,0,0.3);
  z-index: 4;
}
.rig__joint--pitch {
  position: absolute;
  top: 188px;
  left: calc(50% + 118px);
  width: 32px;
  height: 32px;
  background:
    radial-gradient(circle at 35% 35%, #6a6a6e 0%, #38383d 60%, #1f1f24 100%);
  border-radius: 50%;
  border: 2px solid #2a2a30;
  box-shadow:
    inset 0 0 0 3px rgba(0,0,0,0.25),
    0 6px 14px rgba(0,0,0,0.4);
  z-index: 5;
}
.rig__joint--pitch::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 8px; height: 8px;
  background: #1a1a1f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.rig__arm-roll {
  position: absolute;
  top: 268px;
  left: calc(50% + 100px);
  width: 22px;
  height: 110px;
  background: linear-gradient(135deg, #5a5a5e 0%, #38383d 60%, #1f1f24 100%);
  border-radius: 6px;
  transform: rotate(8deg);
  transform-origin: top left;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -10px 14px rgba(0,0,0,0.35),
    0 6px 12px rgba(0,0,0,0.3);
  z-index: 4;
}

.rig__joint--yaw {
  position: absolute;
  top: 376px;
  left: calc(50% + 92px);
  width: 64px;
  height: 28px;
  background:
    linear-gradient(180deg, #5a5a5e 0%, #38383d 50%, #1f1f24 100%);
  border-radius: 30px 30px 8px 8px;
  border: 2px solid #2a2a30;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 6px 14px rgba(0,0,0,0.4);
  z-index: 5;
}
.rig__joint--yaw::before {
  content: "";
  position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, #6a6a6e 0%, #2a2a30 75%);
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.4);
}

/* Grip body — DJI Osmo Mobile vertical handle */
.rig__grip {
  position: absolute;
  top: 400px;
  left: calc(50% + 92px);
  width: 64px;
  height: 220px;
  background:
    linear-gradient(135deg, #58585c 0%, #3c3c42 35%, #25252b 70%, #1a1a20 100%);
  border-radius: 10px 10px 6px 6px;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.16),
    inset -3px 0 8px rgba(0,0,0,0.3),
    inset 3px 0 8px rgba(255,255,255,0.05),
    0 10px 24px rgba(0,0,0,0.45);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
  gap: 8px;
}

.rig__grip-screen {
  width: 44px;
  height: 18px;
  background: linear-gradient(180deg, #0a0a0c 0%, #15151a 100%);
  border-radius: 3px;
  border: 1px solid #2a2a30;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  display: flex; justify-content: center; align-items: center;
  gap: 3px;
  padding: 0 4px;
}
.rig__grip-screen i {
  width: 4px; height: 4px;
  border-radius: 1px;
  background: var(--taupe);
  opacity: 0.6;
}
.rig__grip-screen i:nth-child(1) { background: #25D366; opacity: 0.95; }
.rig__grip-screen i:nth-child(2) { opacity: 0.4; }
.rig__grip-screen i:nth-child(3) { opacity: 0.9; }
.rig__grip-screen i:nth-child(4) { opacity: 0.3; }

.rig__grip-mode {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #6a6a6e 0%, #2a2a30 80%);
  border: 1px solid #1a1a20;
  color: rgba(255,255,255,0.7);
  font-size: 10px;
  font-weight: 700;
  display: grid; place-items: center;
  letter-spacing: 0;
}
.rig__grip-dial {
  position: absolute;
  top: 70px;
  left: -6px;
  width: 12px;
  height: 28px;
  background:
    linear-gradient(180deg, #58585c 0%, #2a2a30 100%),
    repeating-linear-gradient(0deg, rgba(0,0,0,0.4) 0 1px, transparent 1px 3px);
  background-blend-mode: overlay;
  border-radius: 3px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.rig__grip-wheel {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%,
      #2a2a30 0% 32%,
      #1a1a1f 33% 36%,
      #4a4a50 37% 100%
    );
  border: 1px solid #1a1a20;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    inset 0 -3px 6px rgba(0,0,0,0.4);
  margin-top: 6px;
  position: relative;
}
.rig__grip-wheel::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  background: #1a1a1f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.rig__grip-record {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #ff4a4a, #c22b2b 65%, #7e1a1a 100%);
  border: 2px solid #2a2a30;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.3),
    0 0 6px rgba(220, 60, 60, 0.35);
}
.rig__grip-back {
  width: 18px; height: 8px;
  border-radius: 4px;
  background: linear-gradient(180deg, #4a4a50, #2a2a30);
  border: 1px solid #1a1a20;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}

.rig__grip-logo {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.35);
  text-transform: lowercase;
}

/* Tripod — splayed wide stance under the grip */
.rig__tripod {
  position: absolute;
  top: 612px;
  left: calc(50% + 124px);
  width: 0;
  height: 0;
  z-index: 3;
}
.rig__leg {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 92px;
  background: linear-gradient(180deg, #4a4a50 0%, #2a2a30 70%, #1a1a20 100%);
  border-radius: 4px;
  transform-origin: top center;
  box-shadow: inset 1px 0 0 rgba(255,255,255,0.1);
}
.rig__leg::after {
  content: "";
  position: absolute;
  bottom: -4px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 8px;
  background: #1a1a20;
  border-radius: 3px;
}
.rig__leg--l { transform: translate(-50%, 0) rotate(-46deg); }
.rig__leg--r { transform: translate(-50%, 0) rotate(46deg); }
.rig__leg--c { transform: translate(-50%, 0) rotate(0deg); }

@media (max-width: 980px) {
  .iphone-philo__device { min-height: 700px; }
  .rig { transform: rotateY(0) rotateX(0); }
}
@media (max-width: 600px) {
  .iphone-philo__device { min-height: 600px; }
  .rig {
    transform: scale(0.78);
    transform-origin: top center;
  }
}

/* =========================================================
   EGC section
   ========================================================= */
.egc__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(191,169,149,0.18);
  border: 1px solid var(--taupe);
  color: var(--taupe);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.egc__versus {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: stretch;
  margin: 56px 0 36px;
}
.egc__col {
  background: rgba(245,243,241,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.egc__col--new {
  background: var(--taupe);
  color: var(--black);
  border-color: var(--taupe);
}
.egc__col--new .egc__tag { color: var(--black); }
.egc__col--new ul li::marker { color: var(--black); }
.egc__col h3 {
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.01em;
  margin: 8px 0 18px;
  line-height: 1.15;
  font-weight: 700;
}
.egc__col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.egc__col ul li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,243,241,0.7);
}
.egc__col--new ul li { color: var(--black); }
.egc__col ul li::before {
  content: "✦";
  position: absolute; left: 0; top: 0;
  color: var(--taupe);
  font-size: 12px;
}
.egc__col--new ul li::before { color: var(--black); }
.egc__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe);
  font-weight: 700;
  margin: 0 0 4px;
}
.egc__vs {
  align-self: center;
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 900;
  color: var(--taupe);
  letter-spacing: -0.02em;
}
.egc__lede2 {
  margin: 18px 0 0;
  color: rgba(245,243,241,0.78);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 64ch;
  line-height: 1.6;
}
.egc__lede2 b { color: var(--taupe); }
.egc__pull {
  margin: 40px auto 0;
  max-width: 900px;
  text-align: center;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: 28px 16px;
}
.egc__pull em {
  display: block;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--white);
  font-size: clamp(22px, 3vw, 36px);
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.egc__pull b { color: var(--taupe); font-weight: 700; font-style: italic; }
.egc__note {
  margin: 32px 0 0;
  text-align: center;
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
}
.egc__note em { color: var(--taupe); }

/* =========================================================
   AUDIENCE — chips
   ========================================================= */
.audience__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.achip {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-out);
  cursor: default;
}
.achip:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-4px);
}
.achip:hover i { color: var(--taupe); }
.achip b {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.005em;
}
.achip i {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--grey);
  transition: color 0.4s var(--ease);
}

/* =========================================================
   PROBLEM-SOLVER section
   ========================================================= */
.solver__inner {
  max-width: 1080px; margin: 0 auto;
}
.solver h2 {
  font-size: clamp(36px, 5.4vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 40px;
  color: var(--white);
}
.solver__symptoms {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: grid; gap: 1px;
  background: var(--line-light);
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}
.solver__symptoms li {
  background: var(--black);
  padding: 26px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: center;
  transition: background 0.4s var(--ease);
}
.solver__symptoms li:hover { background: #221d1b; }
.solver__symptoms b {
  font-size: clamp(18px, 1.8vw, 22px);
  font-weight: 700;
  letter-spacing: -0.005em;
  color: var(--white);
}
.solver__symptoms span {
  color: rgba(245,243,241,0.65);
  font-size: 15px;
  position: relative;
  padding-left: 24px;
}
.solver__symptoms span::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--taupe);
  font-weight: 700;
}
.solver__cta {
  text-align: center;
  display: flex; flex-direction: column; gap: 28px; align-items: center;
}
.solver__cta p {
  margin: 0;
  color: rgba(245,243,241,0.75);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 60ch;
  line-height: 1.6;
}
.solver__cta b { color: var(--taupe); }

/* =========================================================
   WORK more
   ========================================================= */
.work__more {
  text-align: center;
  margin: 56px 0 0;
}
.work__more .btn--ghost { color: var(--white); border-color: rgba(245,243,241,0.5); }
.work__more .btn--ghost:hover { background: var(--taupe); border-color: var(--taupe); color: var(--black); }

@media (max-width: 980px) {
  .iphone-philo__grid { grid-template-columns: 1fr; }
  .egc__versus { grid-template-columns: 1fr; }
  .egc__vs { text-align: center; }
  .solver__symptoms li { grid-template-columns: 1fr; gap: 6px; }
  .solver__symptoms span { padding-left: 18px; }
}

/* =========================================================
   3D TILT cards
   ========================================================= */
[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.5s var(--ease-out);
}
[data-tilt] > * { transform: translateZ(0); }

/* =========================================================
   ABOUT drop cap
   ========================================================= */
.about__lede--dropcap::first-letter {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 4.6em;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--taupe-deep);
}

/* =========================================================
   BRIEF wrap + live WhatsApp preview
   ========================================================= */
.brief__wrap {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  align-items: start;
  text-align: left;
  margin: 0 auto 32px;
  max-width: 1100px;
}
.brief__wrap .brief { margin: 0; max-width: none; }

.wapreview {
  background: #0e1c1a;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(245,243,241,0.08);
  box-shadow: 0 28px 60px -20px rgba(0,0,0,0.6);
  position: sticky;
  top: 100px;
}
.wapreview__head {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 18px;
  background: #1f2c2c;
  border-bottom: 1px solid rgba(245,243,241,0.05);
}
.wapreview__avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--white);
  display: grid; place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}
.wapreview__avatar img { width: 34px; height: 34px; object-fit: contain; }
.wapreview__name { margin: 0; color: var(--white); font-size: 14px; font-weight: 600; letter-spacing: -0.005em; }
.wapreview__status { margin: 2px 0 0; font-size: 11px; color: rgba(245,243,241,0.5); display: inline-flex; align-items: center; gap: 6px; }
.wapreview__status i {
  width: 6px; height: 6px; border-radius: 50%;
  background: #25D366;
  animation: pulse 2s var(--ease) infinite;
  display: inline-block;
}
.wapreview__body {
  padding: 22px 18px;
  background:
    radial-gradient(rgba(245,243,241,0.04) 1px, transparent 1px) 0 0/16px 16px,
    #0e1c1a;
  min-height: 240px;
}
.wapreview__bubble {
  position: relative;
  background: #1b3a36;
  color: var(--white);
  padding: 12px 14px 20px;
  border-radius: 14px 14px 14px 4px;
  font-size: 13px;
  line-height: 1.55;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.wapreview__bubble p { margin: 0 0 4px; }
.wapreview__bubble p:last-of-type { margin-bottom: 0; }
.wapreview__bubble b { color: var(--taupe); font-weight: 700; }
.wapreview__bubble [data-pv] { color: rgba(245,243,241,0.85); }
.wapreview__bubble [data-pv]:empty::before,
.wapreview__bubble [data-pv]:not([data-filled])::before { content: ""; }
.wapreview__bubble time {
  position: absolute; right: 12px; bottom: 6px;
  font-size: 10px; letter-spacing: 0.04em;
  color: rgba(245,243,241,0.5);
}
.wapreview__optional { display: none; }
.wapreview__optional[data-show] { display: block; }
.wapreview__bubble p span[data-pv]:empty { color: rgba(245,243,241,0.4); }
.wapreview__bubble p span[data-pv]:empty::after { content: "—"; }

/* =========================================================
   FOOTER PRINCIPLES MARQUEE
   ========================================================= */
.footmarquee {
  background: var(--taupe);
  color: var(--black);
  overflow: hidden;
  border-top: 1px solid rgba(27,23,21,0.12);
  border-bottom: 1px solid rgba(27,23,21,0.12);
}
.footmarquee__track {
  display: inline-flex;
  gap: 56px;
  align-items: center;
  white-space: nowrap;
  padding: 28px 0;
  animation: marquee 50s linear infinite;
  will-change: transform;
}
.footmarquee__track span {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(28px, 4vw, 56px);
  letter-spacing: -0.01em;
}
.footmarquee__track i {
  color: var(--black);
  opacity: 0.5;
  font-size: clamp(16px, 2vw, 22px);
  font-style: normal;
}

/* =========================================================
   BOOM BURST (easter egg confetti)
   ========================================================= */
.boomburst {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 250;
  overflow: hidden;
}
.boomburst.is-flash::before {
  content: "";
  position: absolute; inset: 0;
  background: var(--taupe);
  animation: flash 0.6s var(--ease) forwards;
}
@keyframes flash {
  0%   { opacity: 0; }
  20%  { opacity: 0.6; }
  100% { opacity: 0; }
}
.boomburst__piece {
  position: absolute;
  top: 50%; left: 50%;
  width: 12px; height: 12px;
  background: var(--taupe);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  animation: burst 1.4s var(--ease-out) forwards;
}
.boomburst__piece:nth-child(3n)   { background: var(--black); }
.boomburst__piece:nth-child(4n+1) { background: var(--taupe-deep); border-radius: 50%; }
.boomburst__piece:nth-child(5n+2) { background: var(--white); }
@keyframes burst {
  to {
    transform: translate(calc(-50% + var(--dx,0px)), calc(-50% + var(--dy,0px))) rotate(var(--rot,360deg));
    opacity: 0;
  }
}
.boomburst__word {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.6);
  font-family: "Montserrat", sans-serif;
  font-weight: 900;
  font-size: clamp(80px, 18vw, 240px);
  letter-spacing: -0.04em;
  color: var(--black);
  text-shadow: 0 0 0 var(--taupe);
  opacity: 0;
  animation: boomWord 1.2s var(--ease-out) forwards;
}
@keyframes boomWord {
  0%   { opacity: 0; transform: translate(-50%, -50%) scale(0.5); }
  30%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
  70%  { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
  100% { opacity: 0; transform: translate(-50%, -50%) scale(1.2); }
}

@media (max-width: 980px) {
  .brief__wrap { grid-template-columns: 1fr; }
  .wapreview { position: relative; top: auto; }
}

/* =========================================================
   SERVICES page
   ========================================================= */
.page-services .nav__links .is-active { color: var(--taupe-deep); font-weight: 700; }

.sv-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.sv-hero__title {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.sv-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.sv-hero__title .line__inner { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.is-ready .sv-hero__title .line__inner { transform: translateY(0); }
.sv-hero__title .word { display: inline-block; }
.sv-hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .sv-hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }
.sv-hero__lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey);
  max-width: 68ch;
  margin: 0 0 36px;
  line-height: 1.6;
}
.sv-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.sv-hero__nav {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-wrap: wrap;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.sv-hero__nav a {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey);
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  transition: background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.sv-hero__nav a:hover { background: var(--black); color: var(--white); border-color: var(--black); }

/* Service detail card */
.sv-card { padding-top: clamp(70px, 10vw, 130px); padding-bottom: clamp(70px, 10vw, 130px); }
.sv-card--alt { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sv-card__head { max-width: 920px; margin: 0 0 48px; }
.sv-card__num {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe-deep);
}
.sv-card__badge {
  display: inline-flex; align-items: center;
  background: rgba(191,169,149,0.18);
  border: 1px solid var(--taupe);
  color: var(--taupe-deep);
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.18em;
  font-weight: 700;
  margin-left: 12px;
}
.sv-card__head h2 {
  font-size: clamp(40px, 5.8vw, 84px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  margin: 14px 0 16px;
}
.sv-card__pitch {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.4;
  margin: 0;
  max-width: 70ch;
}

.sv-card__body {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: start;
}
.sv-card__includes h4,
.sv-card__metablock h5 {
  margin: 0 0 16px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe-deep);
}
.sv-card__includes ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 12px;
  border-top: 1px solid var(--line);
}
.sv-card__includes li {
  position: relative;
  padding: 14px 0 14px 28px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  border-bottom: 1px solid var(--line);
}
.sv-card__includes li::before {
  content: "→";
  position: absolute; left: 0; top: 14px;
  color: var(--taupe-deep);
  font-weight: 700;
}
.sv-card__meta { display: flex; flex-direction: column; gap: 24px; }
.sv-card__metablock {
  background: rgba(191,169,149,0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.sv-card__metablock p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--grey);
}
.sv-card__metablock p i {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
}
.sv-card__meta .btn { align-self: flex-start; }

/* Why us */
.sv-why__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.sv-why__grid li {
  background: rgba(245,243,241,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.sv-why__grid li:hover {
  background: rgba(191,169,149,0.14);
  border-color: var(--taupe);
  transform: translateY(-4px);
}
.sv-why__grid b {
  font-size: clamp(17px, 1.5vw, 20px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.sv-why__grid span {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(245,243,241,0.7);
}

/* Bundle CTA */
.sv-bundle { padding: clamp(60px, 9vw, 120px) var(--pad); text-align: center; }
.sv-bundle__inner { max-width: 880px; margin: 0 auto; }
.sv-bundle__inner h2 {
  font-size: clamp(40px, 6.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 14px 0 18px;
}
.sv-bundle__inner p {
  font-size: clamp(16px, 1.5vw, 19px);
  color: var(--grey);
  max-width: 60ch;
  margin: 0 auto 32px;
  line-height: 1.6;
}
.sv-bundle__inner p a { color: var(--taupe-deep); border-bottom: 1px solid currentColor; }

@media (max-width: 980px) {
  .sv-card__body { grid-template-columns: 1fr; }
  .sv-why__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .sv-why__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   CONTACT page
   ========================================================= */
.page-contact .nav__links .is-active { color: var(--taupe-deep); font-weight: 700; }

.ct-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.ct-hero__title {
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.ct-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.ct-hero__title .line__inner { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.is-ready .ct-hero__title .line__inner { transform: translateY(0); }
.ct-hero__title .word { display: inline-block; }
.ct-hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .ct-hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }
.ct-hero__lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey);
  max-width: 66ch;
  margin: 0 0 40px;
  line-height: 1.6;
}
.ct-hero__lede b { color: var(--black); font-weight: 700; }
.ct-hero__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
.ct-hero__quick-card {
  display: flex; flex-direction: column; gap: 4px;
  padding: 22px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.ct-hero__quick-card:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
  transform: translateY(-4px);
}
.ct-hero__quick-card:hover .ct-hero__quick-label { color: var(--taupe); }
.ct-hero__quick-card:hover .ct-hero__quick-note { color: rgba(245,243,241,0.6); }
.ct-hero__quick-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  font-weight: 700;
}
.ct-hero__quick-value {
  font-size: clamp(16px, 1.5vw, 19px);
  font-weight: 700;
  margin-top: 2px;
}
.ct-hero__quick-note {
  font-size: 12px;
  color: var(--grey);
  margin-top: 4px;
  font-family: "Fraunces", serif;
  font-style: italic;
}

/* Steps */
.ct-steps {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ct-step {
  background: var(--white);
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  min-height: 240px;
  position: relative;
}
.ct-step:hover { background: var(--black); color: var(--white); }
.ct-step:hover .ct-step__num { color: var(--taupe); }
.ct-step:hover p { color: rgba(245,243,241,0.7); }
.ct-step:hover a { color: var(--taupe); }
.ct-step__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--taupe-deep);
  font-weight: 700;
}
.ct-step h3 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.ct-step p {
  margin: 0;
  font-size: 14px;
  color: var(--grey);
  line-height: 1.55;
}
.ct-step__time {
  position: absolute;
  top: 24px; right: 24px;
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: 13px;
  color: var(--taupe-deep);
}
.ct-step:hover .ct-step__time { color: var(--taupe); }

/* Vibe cards */
.ct-vibe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ct-vibe__card {
  background: rgba(245,243,241,0.04);
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease-out);
}
.ct-vibe__card:hover {
  background: rgba(191,169,149,0.12);
  border-color: var(--taupe);
  transform: translateY(-3px);
}
.ct-vibe__card h4 {
  margin: 0;
  font-size: clamp(18px, 1.7vw, 22px);
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--white);
}
.ct-vibe__card p {
  margin: 0;
  font-size: 14px;
  color: rgba(245,243,241,0.7);
  line-height: 1.6;
}
.ct-vibe__card p b { color: var(--taupe); font-weight: 700; }

/* Sneak peek */
.ct-peek__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.ct-peek__card {
  display: flex; flex-direction: column; gap: 8px;
  color: inherit;
  transition: transform 0.4s var(--ease-out);
}
.ct-peek__card:hover { transform: translateY(-4px); }
.ct-peek__img {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #2a2421;
}
.ct-peek__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.ct-peek__card:hover .ct-peek__img img { transform: scale(1.05); }
.ct-peek__name {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.005em;
}
.ct-peek__meta {
  margin: 2px 0 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  font-weight: 600;
}
.ct-peek__cta {
  text-align: center;
  margin: 40px 0 0;
}

/* FAQ */
.ct-faq__list {
  list-style: none;
  padding: 0; margin: 0;
  max-width: 980px;
  border-top: 1px solid var(--line);
}
.ct-faq__list li {
  border-bottom: 1px solid var(--line);
}
.ct-faq__list summary {
  cursor: pointer;
  padding: 24px 4px;
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 700;
  letter-spacing: -0.01em;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  transition: color 0.3s var(--ease);
}
.ct-faq__list summary::-webkit-details-marker { display: none; }
.ct-faq__list summary::after {
  content: "+";
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
  font-size: 28px;
  line-height: 1;
  transition: transform 0.4s var(--ease-out);
  flex-shrink: 0;
}
.ct-faq__list details[open] summary::after { transform: rotate(45deg); color: var(--black); }
.ct-faq__list summary:hover { color: var(--taupe-deep); }
.ct-faq__list details > div {
  padding: 0 4px 24px;
  color: var(--grey);
  font-size: 15px;
  line-height: 1.7;
  max-width: 70ch;
}

/* Closing reassurance */
.ct-close__inner { max-width: 980px; margin: 0 auto; text-align: center; }
.ct-close__inner h2 {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  margin: 18px 0 22px;
}
.ct-close__inner p {
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 64ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.ct-close__inner p a { color: var(--taupe); border-bottom: 1px solid currentColor; }
.ct-close__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ct-close__cta .btn--ghost { color: var(--white); border-color: rgba(245,243,241,0.4); }
.ct-close__cta .btn--ghost:hover { background: var(--taupe); border-color: var(--taupe); color: var(--black); }

@media (max-width: 980px) {
  .ct-hero__quick { grid-template-columns: 1fr; }
  .ct-steps { grid-template-columns: 1fr 1fr; }
  .ct-vibe__grid { grid-template-columns: 1fr 1fr; }
  .ct-peek__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .ct-steps { grid-template-columns: 1fr; }
  .ct-vibe__grid { grid-template-columns: 1fr; }
  .ct-peek__grid { grid-template-columns: 1fr 1fr; }
}

/* =========================================================
   ABOUT page
   ========================================================= */
.page-about .nav__links .is-active { color: var(--taupe-deep); font-weight: 700; }

.ab-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.ab-hero__title {
  font-size: clamp(48px, 8vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.ab-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.ab-hero__title .line__inner { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.is-ready .ab-hero__title .line__inner { transform: translateY(0); }
.ab-hero__title .word { display: inline-block; }
.ab-hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .ab-hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }
.ab-hero__lede {
  font-size: clamp(16px, 1.6vw, 22px);
  color: var(--grey);
  max-width: 64ch;
  margin: 0;
  line-height: 1.55;
}
.ab-hero__lede b { color: var(--black); font-weight: 700; }

.ab-spark__inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}
.ab-spark__inner h2 {
  color: var(--white);
  font-size: clamp(40px, 6vw, 92px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 14px 0 28px;
}
.ab-spark__copy {
  color: rgba(245,243,241,0.78);
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  margin: 0 auto 18px;
  max-width: 60ch;
}
.ab-spark__copy b { color: var(--taupe); font-weight: 700; }
.ab-spark__copy em { color: var(--taupe); }

.ab-pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ab-pillar {
  background: var(--white);
  padding: 36px 30px;
  display: flex; flex-direction: column; gap: 14px;
  transition: background 0.5s var(--ease), color 0.5s var(--ease);
  min-height: 280px;
}
.ab-pillar:hover { background: var(--black); color: var(--white); }
.ab-pillar:hover .ab-pillar__num { color: var(--taupe); }
.ab-pillar:hover p { color: rgba(245,243,241,0.75); }
.ab-pillar__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--taupe-deep);
  font-weight: 700;
  transition: color 0.5s var(--ease);
}
.ab-pillar h3 {
  margin: 0;
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.15;
}
.ab-pillar p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--grey);
  transition: color 0.5s var(--ease);
}
.ab-pillar p b { color: var(--black); font-weight: 700; }
.ab-pillar:hover p b { color: var(--white); }

.ab-principles__grid {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: rgba(245,243,241,0.12);
  border: 1px solid rgba(245,243,241,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.ab-principles__grid li {
  background: var(--black);
  padding: 28px 22px;
  display: flex; flex-direction: column; gap: 8px;
  transition: background 0.4s var(--ease);
}
.ab-principles__grid li:hover { background: #221d1b; }
.ab-principles__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--taupe);
  font-weight: 700;
}
.ab-principles__grid h4 {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.005em;
  color: var(--white);
}
.ab-principles__grid p {
  margin: 0;
  font-size: 13px;
  color: rgba(245,243,241,0.7);
  line-height: 1.5;
}

.ab-end__inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.ab-end__inner h2 {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  margin: 18px 0 22px;
}
.ab-end__inner p {
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 60ch;
  margin: 0 auto 40px;
  line-height: 1.6;
}
.ab-end__inner p b { color: var(--taupe); }
.ab-end__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.ab-end__cta .btn--ghost { color: var(--white); border-color: rgba(245,243,241,0.4); }
.ab-end__cta .btn--ghost:hover { background: var(--taupe); border-color: var(--taupe); color: var(--black); }

@media (max-width: 980px) {
  .ab-pillars__grid { grid-template-columns: repeat(2, 1fr); }
  .ab-principles__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .ab-pillars__grid { grid-template-columns: 1fr; }
  .ab-principles__grid { grid-template-columns: 1fr; }
}

/* =========================================================
   Project package badge (home Work list)
   ========================================================= */
.project__pkg {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 6px;
  padding: 5px 12px;
  background: rgba(191,169,149,0.18);
  border: 1px solid rgba(191,169,149,0.5);
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe);
}
.project__pkg::before { content: "★"; color: var(--taupe); }
.project a { align-items: start; }
.project__name-wrap { display: flex; flex-direction: column; gap: 4px; }

/* =========================================================
   Selected package pill (in contact form)
   ========================================================= */
.brief__pkg-pill {
  display: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  margin: 0 0 18px;
  background: rgba(191,169,149,0.18);
  border: 1px solid var(--taupe);
  border-radius: 999px;
  color: var(--taupe);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  width: max-content;
  max-width: 100%;
}
.brief__pkg-pill.is-shown { display: inline-flex; }
.brief__pkg-pill::before { content: "★"; }
.brief__pkg-pill button {
  background: none; border: 0;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  padding: 0 0 0 6px;
}

/* =========================================================
   PACKAGES page
   ========================================================= */
.page-packages .nav__links .is-active {
  color: var(--taupe-deep);
  font-weight: 700;
}

.pk-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.pk-hero__title {
  font-size: clamp(48px, 8.5vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.pk-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.pk-hero__title .line__inner { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.is-ready .pk-hero__title .line__inner { transform: translateY(0); }
.pk-hero__title .word { display: inline-block; }
.pk-hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .pk-hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }
.pk-hero__lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey);
  max-width: 68ch;
  margin: 0 0 36px;
}
.pk-hero__lede b { color: var(--black); font-weight: 700; }
.pk-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

.packages {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(20px, 3vw, 32px);
  padding-top: 0;
}
.pk {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  display: flex; flex-direction: column; gap: 22px;
  transition: transform 0.5s var(--ease-out), border-color 0.4s var(--ease), background 0.5s var(--ease);
  will-change: transform;
}
.pk:hover { border-color: var(--taupe-deep); }

.pk--featured {
  grid-column: span 2;
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}
.pk--featured:hover { border-color: var(--taupe); }
.pk--featured .pk__tag,
.pk--featured .pk__expect-label { color: var(--taupe); }
.pk--featured .pk__pitch,
.pk--featured .pk__expect ul,
.pk--featured .pk__includes li span,
.pk--featured .pk__note { color: rgba(245,243,241,0.75); }
.pk--featured .pk__includes li { border-color: rgba(245,243,241,0.12); }
.pk--featured .pk__includes b { color: var(--taupe); }

.pk--boom {
  background: linear-gradient(135deg, var(--taupe-soft), var(--taupe));
  color: var(--black);
  border-color: var(--taupe-deep);
}
.pk--boom .pk__tag { color: var(--black); opacity: 0.7; }
.pk--boom .pk__name--boom {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.pk__ribbon {
  position: absolute;
  top: -1px; left: -1px;
  padding: 10px 18px;
  background: var(--taupe);
  color: var(--black);
  border-bottom-right-radius: var(--radius);
  font-size: 11px;
  letter-spacing: 0.22em;
  font-weight: 700;
  text-transform: uppercase;
}
.pk__head { display: flex; flex-direction: column; gap: 10px; }
.pk__tag {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--taupe-deep);
  font-weight: 700;
}
.pk__name {
  margin: 4px 0 0;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  font-weight: 800;
}
.pk__pitch {
  margin: 8px 0 0;
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.6;
  color: var(--grey);
}
.pk__pitch em { color: var(--taupe-deep); }
.pk--featured .pk__pitch em { color: var(--taupe); }
.pk--boom .pk__pitch { color: rgba(27,23,21,0.8); }
.pk--boom .pk__pitch em { color: var(--black); font-weight: 600; }

.pk__includes {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  gap: 0;
}
.pk__includes li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.pk__includes li:last-child { border-bottom: 0; }
.pk__includes li b {
  font-size: 18px;
  font-weight: 800;
  color: var(--taupe-deep);
  text-align: center;
}
.pk__includes li > :nth-child(2) {
  font-size: 15px;
  font-weight: 600;
}
.pk__includes li span {
  grid-column: 2 / -1;
  font-size: 12px;
  color: var(--grey);
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-top: 2px;
}
.pk__includes li i { font-style: italic; font-family: "Fraunces", serif; font-weight: 500; color: var(--taupe-deep); }
.pk__includes--minimal li b { color: var(--black); }
.pk--featured .pk__includes--minimal li b { color: var(--taupe); }

.pk__expect {
  background: rgba(191,169,149,0.08);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}
.pk--featured .pk__expect { background: rgba(245,243,241,0.06); border-color: rgba(245,243,241,0.12); }
.pk--boom .pk__expect { background: rgba(27,23,21,0.08); border-color: rgba(27,23,21,0.12); }
.pk__expect-label {
  margin: 0 0 10px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe-deep);
}
.pk__expect ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 6px;
}
.pk__expect ul li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--grey);
}
.pk__expect ul li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--taupe-deep);
  font-weight: 700;
}
.pk__expect ul li b { color: var(--black); font-weight: 700; }
.pk--featured .pk__expect ul li b { color: var(--white); }

.pk__note {
  margin: 0;
  font-size: 13px;
  color: var(--grey);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  line-height: 1.55;
}
.pk__note a { color: var(--taupe-deep); border-bottom: 1px solid currentColor; }
.pk--boom .pk__note em { font-size: 18px; color: var(--black); }
.pk__note--boom { text-align: center; padding: 8px 0; }

.pk .btn { margin-top: auto; align-self: flex-start; }
.pk--featured .btn--solid { background: var(--taupe); color: var(--black); }
.pk--featured .btn--solid::before { background: var(--white); }
.pk--boom .btn--solid { background: var(--black); color: var(--white); }
.pk--boom .btn--solid::before { background: rgba(245,243,241,0.2); }

/* Compare table */
.pk-compare__table-wrap { overflow-x: auto; margin: 0 calc(var(--pad) * -1); padding: 0 var(--pad); }
.pk-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 720px;
}
.pk-compare__table thead th {
  text-align: left;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 18px 16px;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
}
.pk-compare__table thead th.is-featured { color: var(--taupe-deep); }
.pk-compare__table tbody th {
  text-align: left;
  padding: 16px;
  font-weight: 600;
  font-size: 13px;
  color: var(--grey);
  border-bottom: 1px solid var(--line);
  width: 200px;
}
.pk-compare__table tbody td {
  padding: 16px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
}
.pk-compare__table tbody td.is-featured {
  background: rgba(191,169,149,0.12);
  color: var(--black);
  font-weight: 700;
}
.pk-compare__note {
  text-align: center;
  margin: 32px 0 0;
  font-size: 14px;
  color: var(--grey);
}

.pk-end__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.pk-end__inner h2 {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  margin: 18px 0 22px;
}
.pk-end__inner p {
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 60ch;
  margin: 0 auto 40px;
}
.pk-end__cta { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.pk-end__cta .btn--ghost { color: var(--white); border-color: rgba(245,243,241,0.4); }
.pk-end__cta .btn--ghost:hover { background: var(--taupe); border-color: var(--taupe); color: var(--black); }

@media (max-width: 980px) {
  .packages { grid-template-columns: 1fr; }
  .pk--featured { grid-column: auto; }
}

/* Portfolio card package badge */
.pf-case__pkg {
  display: inline-flex; align-items: center; gap: 10px;
  margin: 14px 0 0;
  padding: 8px 14px;
  background: rgba(191,169,149,0.16);
  border: 1px solid var(--taupe);
  border-radius: 999px;
  color: var(--taupe-deep);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.3s var(--ease), color 0.3s var(--ease);
}
.pf-case__pkg::before { content: "★"; color: var(--taupe-deep); }
.pf-case__pkg:hover { background: var(--taupe); color: var(--black); }
.pf-case__pkg:hover::before { color: var(--black); }

/* =========================================================
   PORTFOLIO page
   ========================================================= */
.page-portfolio .nav__links .is-active {
  color: var(--taupe-deep);
  font-weight: 700;
}
.page-portfolio .nav__links .is-active::after { transform: scaleX(1); transform-origin: left; }

.pf-hero {
  padding: clamp(80px, 12vw, 160px) var(--pad) clamp(40px, 6vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
}
.pf-hero__title {
  font-size: clamp(56px, 9vw, 148px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  font-weight: 800;
  margin: 22px 0 26px;
}
.pf-hero__title .line { display: block; overflow: hidden; padding-bottom: 0.06em; }
.pf-hero__title .line__inner { display: block; transform: translateY(110%); transition: transform 1.1s var(--ease-out); }
.is-ready .pf-hero__title .line__inner { transform: translateY(0); }
.pf-hero__title .word { display: inline-block; }
.pf-hero__title .ch {
  display: inline-block;
  transform: translateY(110%) rotate(6deg);
  opacity: 0;
  transition: transform 0.9s var(--ease-out), opacity 0.5s var(--ease-out);
}
.is-ready .pf-hero__title .ch { transform: translateY(0) rotate(0); opacity: 1; }

.pf-hero__lede {
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--grey);
  max-width: 64ch;
  margin: 0 0 48px;
}
.pf-hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
  padding: 0;
  margin: 0;
}
.pf-hero__stats li {
  background: var(--white);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 8px;
}
.pf-hero__stats strong {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.pf-hero__stats span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey);
  line-height: 1.45;
}

.pf-filter {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: rgba(245,243,241,0.85);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: clamp(12px, 2.4vw, 32px);
  padding: 14px var(--pad);
  overflow-x: auto;
  scrollbar-width: none;
}
.pf-filter::-webkit-scrollbar { display: none; }
.pf-filter a {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--grey);
  white-space: nowrap;
  transition: color 0.3s var(--ease);
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}
.pf-filter a:hover { color: var(--black); border-color: var(--taupe); }

.pf-case { padding-top: clamp(80px, 10vw, 140px); padding-bottom: clamp(80px, 10vw, 140px); }
.pf-case--alt { background: var(--white); }
.pf-case__head { max-width: 880px; margin: 0 0 56px; }
.pf-case__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--taupe-deep);
  margin: 0;
}
.pf-case__head h2 {
  font-size: clamp(32px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -0.025em;
  font-weight: 700;
  margin: 12px 0 12px;
}
.pf-case__sector {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  font-size: clamp(15px, 1.4vw, 18px);
  color: var(--grey);
  margin: 0;
}

.pf-case__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: 56px;
}
.pf-case__intro {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
  margin-bottom: 56px;
}
.pf-case__story { display: grid; gap: 28px; }
.pf-case__chapter { display: grid; gap: 10px; }
.pf-case__chaplabel {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--taupe-deep);
  position: relative;
  padding-left: 22px;
}
.pf-case__chaplabel::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 14px; height: 1px;
  background: var(--taupe);
  transform: translateY(-50%);
}
.pf-case__chapter p {
  margin: 0;
  color: var(--grey);
  font-size: clamp(15px, 1.4vw, 17px);
  line-height: 1.7;
}
.pf-case__chapter p b { color: var(--black); font-weight: 700; }
.pf-case__chapter ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 8px;
}
.pf-case__chapter ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--grey);
  line-height: 1.5;
}
.pf-case__chapter ul li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--taupe-deep);
  font-weight: 700;
}
.pf-case__chapter:first-child p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 3.4em;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--taupe-deep);
}
.pf-case__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #2a2421;
}
.pf-case__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s var(--ease); }
.pf-case__cover:hover img { transform: scale(1.04); }
.pf-case__copy p { margin: 0 0 16px; color: var(--grey); font-size: 16px; line-height: 1.7; }
.pf-case__copy p:first-of-type::first-letter {
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  float: left;
  font-size: 3.6em;
  line-height: 0.85;
  padding: 0.05em 0.12em 0 0;
  color: var(--taupe-deep);
}
.pf-case__copy h4 {
  margin: 22px 0 12px;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--black);
}
.pf-case__copy ul {
  list-style: none;
  padding: 0; margin: 0;
  display: grid; gap: 10px;
}
.pf-case__copy ul li {
  position: relative;
  padding-left: 22px;
  font-size: 15px;
  color: var(--grey);
}
.pf-case__copy ul li::before {
  content: "→";
  position: absolute; left: 0; top: 0;
  color: var(--taupe-deep);
  font-weight: 700;
}

.pf-case__stats {
  list-style: none;
  padding: 0;
  margin: 0 0 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pf-case__stats li {
  background: var(--white);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 6px;
}
.pf-case__stats strong {
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}
.pf-case__stats span {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--grey);
}
.pf-case__stats--qual strong {
  font-size: clamp(18px, 1.7vw, 22px);
  font-family: "Fraunces", serif;
  font-style: italic;
  font-weight: 500;
  color: var(--taupe-deep);
}

.pf-case__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: start;
}
.pf-case__shot {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: #2a2421;
  transition: transform 0.5s var(--ease-out);
}
.pf-case__shot:hover { transform: translateY(-4px); }
.pf-case__shot img { width: 100%; height: 100%; object-fit: cover; }
.pf-case__shot--wide { grid-column: span 2; aspect-ratio: 4 / 3; }
.pf-case__gallery .phone { width: auto; }
.phone--link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.phone--link .phone__screen { position: relative; }
.phone--link .phone__screen::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.5) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 1;
}
.phone--link:hover .phone__screen::after { opacity: 1; }
.phone__watch {
  position: absolute;
  left: 50%; bottom: 14px;
  transform: translate(-50%, 10px);
  font-style: normal;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--white);
  background: var(--taupe-deep);
  padding: 6px 12px;
  border-radius: 999px;
  opacity: 0;
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease-out);
  white-space: nowrap;
  z-index: 2;
}
.phone--link:hover .phone__watch { opacity: 1; transform: translate(-50%, 0); }
.phone--link figcaption { position: relative; }

.pf-end__inner {
  max-width: 900px; margin: 0 auto; text-align: center;
}
.pf-end__inner h2 {
  font-size: clamp(40px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--white);
  margin: 18px 0 22px;
}
.pf-end__inner p {
  color: rgba(245,243,241,0.7);
  font-size: clamp(16px, 1.5vw, 19px);
  max-width: 60ch;
  margin: 0 auto 40px;
}

@media (max-width: 980px) {
  .pf-case__layout { grid-template-columns: 1fr; }
  .pf-case__intro { grid-template-columns: 1fr; }
  .pf-case__stats { grid-template-columns: 1fr 1fr; }
  .pf-hero__stats { grid-template-columns: 1fr 1fr; }
  .pf-case__gallery { grid-template-columns: 1fr 1fr; }
  .pf-case__shot--wide { grid-column: auto; }
  .pf-filter { top: 64px; }
}
@media (max-width: 600px) {
  .pf-case__gallery { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal, .hero__title .line__inner, .cta__title .line__inner, .split-lines .line__inner { opacity: 1 !important; transform: none !important; }
}
