:root {
  --bg: #07100a;
  --surface: #0d1a10;
  --surface2: #111f14;
  --brg: #004225;
  --brg-mid: #0a5c32;
  --brg-light: #1a7a46;
  --green: #2e7d32;
  --green2: #4caf50;
  --cream: #f0e8d8;
  --off-white: #c8c0b0;
  --muted: #6b7a6e;
  --muted-lt: #8a9a8d;
  --border: #1a2b1d;
  --border-lt: #243628;
  --closed-col: #c0392b;
  /* closed status — deep red */
  --ff-display: 'Montserrat', sans-serif;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-body: 'Sora', sans-serif;
  --ff-mono: 'DM Mono', monospace;
}

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

html {}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--ff-body);
  padding-top: 48px;
  font-weight: 300;
  line-height: 1.6;
  overflow-x: hidden;
}

@media (hover: hover) and (pointer: fine) {
  body {
    cursor: none;
  }

  .cur {
    display: block;
  }
}

::-webkit-scrollbar {
  width: 2px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--green);
}

/* ══ CURSOR ══ */
.cur {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  display: none;
}

#cur-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green2);
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
}

#cur-ring {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(46, 125, 50, .45);
  top: 0;
  left: 0;
  transform: translate(-50%, -50%);
  transition: width .35s cubic-bezier(.23, 1, .32, 1), height .35s cubic-bezier(.23, 1, .32, 1), border-color .3s;
}

#cur-ring.hov {
  width: 54px;
  height: 54px;
  border-color: var(--green2);
}

/* ══ NAV ══ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 56px;
  transition: background .5s, padding .4s, border-bottom-color .5s;
  border-bottom: 1px solid transparent;
}

nav.scrolled {
  background: rgba(7, 16, 10, .97);
  backdrop-filter: blur(24px);
  padding: 16px 56px;
  border-bottom-color: var(--border);
}

/* Logo — Frame mark + Montserrat wordmark, matching logo system */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  z-index: 201;
  position: relative;
}

.nav-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 1.05rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1;
}

.nav-wordmark span {
  color: var(--green2);
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
}

.nav-num {
  font-family: var(--ff-mono);
  font-size: .54rem;
  letter-spacing: .22em;
  color: var(--muted);
  padding: 0 16px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: color .3s;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-num:last-child {
  border-right: none;
}

.nav-num:hover {
  color: var(--green2);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  z-index: 201;
  position: relative;
}

/* ── TOP STATUS BAR ── */
#statusBar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  height: 48px;
  overflow: hidden;
  flex-wrap: nowrap;
  font-family: var(--ff-mono);
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  transition: background .5s, border-color .5s;
}

#statusBar.open {
  background: rgba(18, 52, 22, .97);
  border-bottom: 1px solid rgba(76, 175, 80, .4);
}

#statusBar.closed {
  background: rgba(60, 10, 10, .97);
  border-bottom: 1px solid rgba(192, 57, 43, .35);
}

.sb-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
  transition: background .5s;
}

#statusBar.open .sb-dot {
  background: #4caf50;
}

#statusBar.open .sb-dot::before,
#statusBar.open .sb-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(76, 175, 80, .5);
  animation: dotRipple 2.4s ease-out infinite;
}

#statusBar.open .sb-dot::after {
  animation-delay: 1.2s;
}

#statusBar.closed .sb-dot {
  background: #e74c3c;
}

@keyframes dotRipple {
  0% {
    transform: scale(1);
    opacity: .7;
  }
  100% {
    transform: scale(3.5);
    opacity: 0;
  }
}

.sb-label {
  letter-spacing: .3em;
  font-weight: 500;
  font-size: .72rem;
  transition: color .5s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#statusBar.open .sb-label {
  color: #6ddb71;
}

#statusBar.closed .sb-label {
  color: #e74c3c;
}

.sb-divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, .1);
}

.sb-time {
  color: rgba(240, 232, 216, .95);
  letter-spacing: .16em;
  font-size: .66rem;
}

.sb-hours {
  color: rgba(240, 232, 216, .75);
  font-size: .58rem;
  letter-spacing: .14em;
}

nav {
  top: 38px;
}

.nav-cta {
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: var(--brg);
  color: var(--cream);
  padding: 10px 20px;
  text-decoration: none;
  transition: background .3s;
  border: 1px solid var(--brg-mid);
}

.nav-cta:hover {
  background: var(--brg-mid);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  z-index: 201;
  position: relative;
  background: none;
  border: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--cream);
  transition: transform .3s, opacity .3s, width .3s;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg);
  z-index: 199;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 100px 40px 60px;
  transform: translateX(100%);
  transition: transform .5s cubic-bezier(.23, 1, .32, 1);
  border-left: 1px solid var(--border);
}

.mobile-menu.open {
  transform: translateX(0);
}

/* Mobile menu links use Cormorant — large, editorial */
.mob-link {
  font-family: var(--ff-serif);
  font-size: clamp(2.6rem, 9vw, 4rem);
  font-weight: 300;
  font-style: italic;
  letter-spacing: .02em;
  color: var(--cream);
  text-decoration: none;
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  width: 100%;
  transition: color .3s, padding-left .3s;
}

.mob-link:hover {
  color: var(--green2);
  padding-left: 14px;
}

.mob-link span {
  font-family: var(--ff-mono);
  font-size: .55rem;
  font-style: normal;
  letter-spacing: .22em;
  color: var(--green2);
  margin-right: 14px;
  vertical-align: middle;
}

.mob-cta {
  margin-top: 32px;
  font-family: var(--ff-mono);
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--brg);
  color: var(--cream);
  padding: 16px 32px;
  text-decoration: none;
  border: 1px solid var(--brg-mid);
  display: inline-block;
}

.mob-footer {
  position: absolute;
  bottom: 40px;
  left: 40px;
  font-family: var(--ff-mono);
  font-size: .55rem;
  letter-spacing: .18em;
  color: var(--muted);
}

/* ══ SECTION UTILITIES ══ */
/* Ghost numbers — Cormorant outline, purely decorative */
.ghost-num {
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-lt);
  line-height: .88;
  display: block;
  margin-bottom: 12px;
  user-select: none;
}

#work .ghost-num,
#clients .ghost-num,
#contact .ghost-num {
  margin-bottom: 28px;
}

.sec-label {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--green2);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.sec-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--green);
}

.sec-title {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  letter-spacing: -.01em;
}

/* All italic accents now use green2, not bronze */
.sec-title em {
  font-style: italic;
  color: var(--green2);
}


/* ══ HERO OVERLAY — sits above the photo, below the content ══ */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to bottom,
      rgba(0, 0, 0, .15) 0%,
      rgba(0, 0, 0, .28) 40%,
      rgba(0, 0, 0, .55) 65%,
      rgba(7, 16, 10, .92) 100%);
}

/* ══ HERO ══ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background: #07100a;
}

.hero-visual::before {
  content: '';
  position: absolute;
  top: 22%;
  right: -8%;
  width: 55%;
  height: 2px;
  background: linear-gradient(to left, transparent, rgba(46, 125, 50, .12), transparent);
  transform: rotate(-7deg);
  box-shadow: 0 0 60px 30px rgba(46, 125, 50, .04);
  animation: sweep 7s ease-in-out infinite alternate;
}

.hero-visual::after {
  content: '';
  position: absolute;
  top: 38%;
  right: -8%;
  width: 45%;
  height: 1px;
  background: linear-gradient(to left, transparent, rgba(255, 255, 255, .05), transparent);
  transform: rotate(-7deg);
  animation: sweep 7s 1.5s ease-in-out infinite alternate;
}

@keyframes sweep {
  0% {
    transform: rotate(-7deg) translateX(0);
    opacity: .5;
  }

  100% {
    transform: rotate(-5deg) translateX(-4%);
    opacity: 1;
  }
}

.hero-grain {
  position: absolute;
  inset: -50%;
  width: 200%;
  height: 200%;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .35;
  animation: grain 8s steps(10) infinite;
  z-index: 1;
  pointer-events: none;
}

@keyframes grain {

  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -3%);
  }

  20% {
    transform: translate(3%, 2%);
  }

  30% {
    transform: translate(-1%, 4%);
  }

  40% {
    transform: translate(4%, -1%);
  }

  50% {
    transform: translate(-3%, 1%);
  }

  60% {
    transform: translate(2%, 3%);
  }

  70% {
    transform: translate(-4%, -2%);
  }

  80% {
    transform: translate(1%, -4%);
  }

  90% {
    transform: translate(-2%, 2%);
  }
}

.hero-media {
  position: absolute;
  inset: -20% 0;            /* extra height top/bottom to allow parallax travel */
  object-fit: cover;
  width: 100%;
  height: 140%;             /* taller than viewport so pan has room */
  opacity: 1;
  display: block;
  filter: brightness(.72);
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 56px 64px;
  margin-top: auto;
}

.hero-loc {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1.1s .2s cubic-bezier(.16, 1, .3, 1) forwards;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .8);
}

/* ── HERO HEADLINE — Cormorant Garamond, large italic, luxury ── */
.hero-h1 {
  font-family: var(--ff-serif);
  font-size: clamp(2.8rem, 6.5vw, 6rem);
  font-weight: 300;
  font-style: italic;
  line-height: .92;
  letter-spacing: -.02em;
  color: var(--cream);
  opacity: 0;
  animation: fadeUp 1.1s .35s cubic-bezier(.16, 1, .3, 1) forwards;
  margin-bottom: 16px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, .9);
}

/* ── HERO WORDMARK below headline — Montserrat 100 to echo the logo ── */
.hero-wordmark-sub {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: clamp(.7rem, 1.2vw, 1.1rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--off-white);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.1s .52s cubic-bezier(.16, 1, .3, 1) forwards;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}

.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  opacity: 0;
  animation: fadeUp 1.1s .7s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-sub {
  font-size: .82rem;
  color: var(--off-white);
  max-width: 340px;
  line-height: 1.85;
  font-weight: 300;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .9);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-shrink: 0;
}

.btn-primary {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  background: var(--brg);
  border: 1px solid var(--brg-mid);
  color: var(--cream);
  padding: 14px 30px;
  text-decoration: none;
  transition: background .3s, border-color .3s;
  display: inline-block;
  white-space: nowrap;
}

.btn-primary:hover {
  background: var(--brg-mid);
  border-color: var(--brg-light);
}

.btn-ghost {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-lt);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .3s;
  white-space: nowrap;
}

.btn-ghost:hover {
  color: var(--cream);
}

.btn-ghost::after {
  content: '→';
  font-size: .85rem;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 56px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1.1s 1.4s cubic-bezier(.16, 1, .3, 1) forwards;
}

.hero-scroll-line {
  width: 44px;
  height: 1px;
  background: linear-gradient(to right, var(--green2), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.hero-scroll-text {
  font-family: var(--ff-mono);
  font-size: .5rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ══ STATS ══ */
.stats {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
}

.stat {
  flex: 1;
  padding: 30px 28px;
  border-right: 1px solid var(--border);
  text-align: center;
}

.stat:last-child {
  border-right: none;
}

/* Stats use Cormorant for the numbers — matches logo serif system */
.stat-num {
  font-family: var(--ff-serif);
  font-size: 2.8rem;
  font-weight: 300;
  letter-spacing: .02em;
  color: var(--cream);
  line-height: 1;
}

.stat-num em {
  color: var(--green2);
  font-style: normal;
}

.stat-lbl {
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 6px;
}

/* ══ MARQUEE ══ */
.marquee-wrap {
  overflow: hidden;
  background: var(--brg);
  border-top: 1px solid var(--brg-mid);
  border-bottom: 1px solid var(--brg-mid);
  padding: 11px 0;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.marquee-item {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, .75);
  padding: 0 36px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 18px;
}

.marquee-item::after {
  content: '◆';
  font-size: .38rem;
  color: rgba(240, 232, 216, .3);
}

/* ══ 01 — MISSION ══ */
#mission {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

/* Mission ghost number — Cormorant outline */
.mission-num {
  font-family: var(--ff-serif);
  font-size: clamp(6rem, 16vw, 14rem);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-lt);
  line-height: .88;
  user-select: none;
}

.mission-statement {
  font-family: var(--ff-serif);
  font-size: clamp(1.6rem, 2.6vw, 2.5rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--cream);
  margin-bottom: 24px;
}

.mission-statement em {
  font-style: italic;
  color: var(--green2);
}

.mission-body {
  font-size: .83rem;
  color: var(--muted-lt);
  line-height: 1.95;
  max-width: 500px;
}

.mission-tag {
  margin-top: 32px;
  display: inline-block;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green2);
  border: 1px solid var(--brg);
  padding: 10px 20px;
}

/* ══ 02 — SERVICES ══ */
#services {
  padding: 100px 56px;
  border-bottom: 1px solid var(--border);
}

.services-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 60px;
  gap: 32px;
}

.services-sub {
  font-size: .81rem;
  color: var(--muted);
  max-width: 240px;
  line-height: 1.85;
  text-align: right;
  flex-shrink: 0;
}

.srv-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: var(--border);
}
.srv-grid .srv-card:nth-child(1),
.srv-grid .srv-card:nth-child(2),
.srv-grid .srv-card:nth-child(3) {
  grid-column: span 2;
}
.srv-grid .srv-card:nth-child(4),
.srv-grid .srv-card:nth-child(5) {
  grid-column: span 3;
}

.srv-card {
  background: var(--bg);
  padding: 42px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
  transition: background .4s;
}

.srv-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green2);
  transition: width .55s cubic-bezier(.23, 1, .32, 1);
}

.srv-card:hover {
  background: var(--surface);
}

.srv-card:hover::after {
  width: 100%;
}

.srv-tag {
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .28em;
  color: var(--green2);
  text-transform: uppercase;
}

.srv-name {
  font-family: var(--ff-serif);
  font-size: 1.65rem;
  font-weight: 400;
  color: var(--cream);
}

.srv-desc {
  font-size: .79rem;
  color: var(--muted);
  line-height: 1.88;
}

.srv-arrow {
  font-size: 1.1rem;
  color: var(--green);
  margin-top: auto;
  align-self: flex-end;
  transition: transform .3s;
}

.srv-card:hover .srv-arrow {
  transform: translate(3px, -3px);
}

/* ══ 03 — WORK ══ */
#work {
  padding: 100px 0 80px;
  border-bottom: 1px solid var(--border);
}

.work-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 52px;
  padding: 0 56px;
  gap: 32px;
}

.work-filters {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.wf-btn {
  font-family: var(--ff-mono);
  font-size: .54rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: none;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 8px 16px;
  cursor: pointer;
  transition: all .3s;
}

.wf-btn:hover,
.wf-btn.active {
  background: var(--brg);
  border-color: var(--brg-mid);
  color: var(--cream);
}

.work-grid {
  display: grid;
  gap: 3px;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-areas:
    "mclaren    mclaren    nyfw"
    "london     london     commonwealth"
    "nyc        nyc        aston";
}

.work-nda-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  margin-top: 3px;
}

.w-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.w-item.wide {
  aspect-ratio: unset;
  min-height: 320px;
}

.w-item.span2 {
  aspect-ratio: unset;
  min-height: 320px;
}

.w-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  transition: transform .65s cubic-bezier(.23, 1, .32, 1);
}

.w-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.w-item:hover .w-bg {
  transform: scale(1.05);
}

.sw-a {
  background: radial-gradient(ellipse at 55% 40%, #1a2e1a 0%, #050d07 80%);
}

.sw-b {
  background: radial-gradient(ellipse at 45% 55%, #1e1a12 0%, #080608 80%);
}

.sw-c {
  background: radial-gradient(ellipse at 60% 35%, #1a1018 0%, #060508 80%);
}

.sw-d {
  background: radial-gradient(ellipse at 40% 60%, #0d1e12 0%, #060a07 80%);
}

.sw-e {
  background: radial-gradient(ellipse at 50% 45%, #1e1814 0%, #080708 80%);
}

.sw-f {
  background: radial-gradient(ellipse at 55% 50%, #1a0e10 0%, #070508 80%);
}

.sw-g {
  background: radial-gradient(ellipse at 35% 55%, #101a14 0%, #060908 80%);
}

.sw-h {
  background: radial-gradient(ellipse at 60% 40%, #101a14 0%, #060908 80%);
}

.sw-i {
  background: radial-gradient(ellipse at 45% 50%, #101a14 0%, #060908 80%);
}



.w-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
  line-height: 1.8;
  flex-direction: column;
  gap: 10px;
}

.w-placeholder::before {
  content: '[ Image Pending ]';
  font-size: .44rem;
  letter-spacing: .28em;
  color: var(--border-lt);
  display: block;
}

.w-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 16, 10, .94) 0%, rgba(7, 16, 10, .3) 55%, rgba(7, 16, 10, 0) 100%);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .42s cubic-bezier(.23, 1, .32, 1), transform .42s cubic-bezier(.23, 1, .32, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 30px;
}

.w-item:hover .w-overlay {
  opacity: 1;
  transform: translateY(0);
}

.w-mark {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  opacity: 0;
  transition: opacity .4s;
}

.w-item:hover .w-mark {
  opacity: 0.55;
}

.w-cat {
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 6px;
  transform: translateY(10px);
  opacity: 0;
  transition: transform .38s .04s cubic-bezier(.23, 1, .32, 1), opacity .38s .04s;
}

.w-title {
  font-family: var(--ff-serif);
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--cream);
  transform: translateY(10px);
  opacity: 0;
  transition: transform .38s .1s cubic-bezier(.23, 1, .32, 1), opacity .38s .1s;
}

.w-item:hover .w-cat,
.w-item:hover .w-title {
  transform: translateY(0);
  opacity: 1;
}

.work-see-all {
  text-align: center;
  margin-top: 44px;
  padding: 0 56px;
}

/* ══ 04 — ABOUT ══ */
#about {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
  border-bottom: 1px solid var(--border);
}

.about-img-wrap {
  position: relative;
}

.about-img-frame {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 4/5;
  background: var(--surface2);
  overflow: hidden;
}

.about-img-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .18em;
  color: var(--border-lt);
  text-align: center;
  line-height: 1.8;
  padding: 20px;
}

.about-corner {
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 80px;
  height: 80px;
  border-right: 1px solid var(--green);
  border-bottom: 1px solid var(--green);
}

.about-badge {
  position: absolute;
  bottom: 28px;
  left: 0;
  background: var(--brg);
  color: var(--cream);
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  padding: 14px 20px;
  line-height: 1.8;
  border: 1px solid var(--brg-mid);
}

.about-content {
  padding-top: 16px;
}

.about-headline {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 22px;
}

.about-headline em {
  font-style: italic;
  color: var(--green2);
}

.about-body {
  font-size: .83rem;
  color: var(--muted-lt);
  line-height: 1.95;
  margin-bottom: 28px;
}

.creds {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 28px 0;
}

.cred {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .78rem;
  color: var(--muted-lt);
}

.cred-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

/* ══ 05 — CLIENTS ══ */
#clients {
  padding: 80px 56px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.clients-tier-label {
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  display: block;
}

.brands-row {
  display: flex;
  gap: 1px;
  margin-bottom: 1px;
}

.brand-logo {
  flex: 1;
  padding: 36px 20px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  /* Brand names in Cormorant — refined, not aggressive */
  font-family: var(--ff-serif);
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: .1em;
  color: var(--cream);
  transition: color .3s, background .3s;
}

.brand-logo:hover {
  color: var(--green2);
  background: var(--surface2);
}

.divider-line {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}

.clients-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
}

.client-logo {
  padding: 22px 16px;
  text-align: center;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--ff-mono);
  font-size: .56rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.7;
  transition: color .3s, background .3s;
}

.client-logo:hover {
  color: var(--cream);
  background: var(--surface2);
}

/* ══ 06 — PROCESS ══ */
#process .ghost-num {
  -webkit-text-stroke: 1px rgba(76, 175, 80, .3);
}

#process {
  padding: 100px 56px;
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}

.process-head {
  margin-bottom: 56px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
}

.p-step {
  background: var(--bg);
  padding: 44px 36px;
  transition: background .3s;
  position: relative;
  border-top: 2px solid transparent;
}

.p-step:hover {
  background: var(--bg2);
  border-top-color: var(--green2);
}

/* Process step numbers — Cormorant, refined */
.p-step-num {
  font-family: var(--ff-serif);
  font-size: 3.2rem;
  font-weight: 200;
  color: transparent;
  -webkit-text-stroke: 1px var(--border-lt);
  line-height: 1;
  margin-bottom: 24px;
}

.p-step-name {
  font-family: var(--ff-serif);
  font-size: 1.55rem;
  font-weight: 400;
  color: var(--cream);
  margin-bottom: 14px;
}

.p-step-desc {
  font-size: .78rem;
  color: rgba(240, 235, 224, .7);
  line-height: 1.82;
}

/* ══ QUOTE BREAK ══ */
.quote-break {
  padding: 96px 56px;
  background: var(--surface2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.quote-break::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(0, 66, 37, .04) 40px, rgba(0, 66, 37, .04) 41px);
}

.quote-text {
  position: relative;
  font-family: var(--ff-serif);
  font-size: clamp(1.5rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.38;
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 24px;
}

.quote-text::before {
  content: '\201C';
  opacity: .5;
}

.quote-text::after {
  content: '\201D';
  opacity: .5;
}

.quote-attr {
  position: relative;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(240, 232, 216, .5);
}

/* ══ 07 — CONTACT ══ */
#contact {
  padding: 100px 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  border-bottom: 1px solid var(--border);
}

.contact-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2.2rem, 4.5vw, 4.3rem);
  font-weight: 300;
  line-height: 1.06;
  color: var(--cream);
  margin-bottom: 18px;
}

.contact-headline em {
  font-style: italic;
  color: var(--green2);
}

.contact-sub {
  font-size: .82rem;
  color: var(--muted-lt);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 360px;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-bottom: 32px;
}

.c-info-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.c-info-key {
  font-family: var(--ff-mono);
  font-size: .54rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green2);
  width: 72px;
  padding-top: 3px;
  flex-shrink: 0;
}

.c-info-val {
  font-size: .82rem;
  color: var(--off-white);
  line-height: 1.6;
}

.c-info-val a {
  color: inherit;
  text-decoration: none;
  transition: color .3s;
}

.c-info-val a:hover {
  color: var(--cream);
}

.calendly-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-mono);
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green2);
  border: 1px solid var(--brg);
  padding: 12px 22px;
  text-decoration: none;
  transition: background .3s, color .3s;
}

.calendly-btn:hover {
  background: var(--brg);
  color: var(--cream);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.f-label {
  font-family: var(--ff-mono);
  font-size: .53rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}

.f-input,
.f-select,
.f-textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--cream);
  font-family: var(--ff-body);
  font-weight: 300;
  font-size: .82rem;
  padding: 12px 14px;
  outline: none;
  transition: border-color .3s;
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
}

.f-input::placeholder,
.f-textarea::placeholder {
  color: var(--muted);
}

.f-input:focus,
.f-select:focus,
.f-textarea:focus {
  border-color: var(--green2);
}

.f-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7a6e' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  background-color: var(--surface);
}

.f-textarea {
  resize: vertical;
  min-height: 110px;
}

.f-submit {
  font-family: var(--ff-mono);
  font-size: .6rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--brg);
  border: 1px solid var(--brg-mid);
  padding: 16px 34px;
  cursor: pointer;
  transition: background .3s, border-color .3s;
  align-self: flex-start;
}

.f-submit:hover {
  background: var(--brg-mid);
  border-color: var(--brg-light);
}

/* ══ FOOTER ══ */
footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 56px 56px 32px;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 52px;
  gap: 40px;
}

.footer-logo-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Footer wordmark — Montserrat 100 matching nav */
.footer-wordmark {
  font-family: 'Montserrat', sans-serif;
  font-weight: 100;
  font-size: 1.1rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-wordmark span {
  color: var(--green2);
}

.footer-tagline {
  font-family: var(--ff-mono);
  font-size: .54rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  margin-top: 6px;
}

.footer-nav {
  display: flex;
  gap: 56px;
  flex-wrap: wrap;
}

.fn-col h4 {
  font-family: var(--ff-mono);
  font-size: .54rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 14px;
}

.fn-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.fn-col a {
  font-size: .8rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.fn-col a:hover {
  color: var(--cream);
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-family: var(--ff-mono);
  font-size: .53rem;
  letter-spacing: .14em;
  color: var(--muted);
}

.footer-social {
  display: flex;
  gap: 20px;
}

.footer-social a {
  font-family: var(--ff-mono);
  font-size: .53rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s;
}

.footer-social a:hover {
  color: var(--green2);
}

/* ══ ANIMATIONS ══ */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: .3;
  }

  50% {
    opacity: 1;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .95s cubic-bezier(.16, 1, .3, 1), transform .95s cubic-bezier(.16, 1, .3, 1);
}

.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

.rd1 {
  transition-delay: .1s;
}

.rd2 {
  transition-delay: .2s;
}

.rd3 {
  transition-delay: .3s;
}


/* ══════════════════════════════════════════════════════════
   MOTION UPGRADES
══════════════════════════════════════════════════════════ */

/* ── Scroll progress bar ── */
#scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green2) 0%, var(--green3) 100%);
  z-index: 9999;
  transition: width .08s linear;
  transform-origin: left;
}

/* ── Clip-path heading reveal ── */
.reveal-clip {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 1.1s cubic-bezier(.16, 1, .3, 1);
}
.reveal-clip.vis {
  clip-path: inset(0 0 0% 0);
}

/* ── Stagger delays beyond rd3 ── */
.rd4 { transition-delay: .4s; }
.rd5 { transition-delay: .5s; }
.rd6 { transition-delay: .6s; }
.rd7 { transition-delay: .7s; }
.rd8 { transition-delay: .8s; }
.rd9 { transition-delay: .9s; }

/* ── Work grid item entry ── */
.w-item {
  --entry-delay: 0s;
}
.w-item.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 1s var(--entry-delay) cubic-bezier(.16, 1, .3, 1),
              transform 1s var(--entry-delay) cubic-bezier(.16, 1, .3, 1);
}
.w-item.reveal.vis {
  opacity: 1;
  transform: translateY(0);
}

/* ── Magnetic button base ── */
.btn-primary,
.btn-ghost,
.nav-cta,
.calendly-btn {
  transition: transform .6s cubic-bezier(.16, 1, .3, 1),
              background .25s, color .25s, border-color .25s, box-shadow .5s;
}

/* ── Refined status dot ripple ── */
#statusBar.open .sb-dot::before,
#statusBar.open .sb-dot::after {
  animation: dotRippleRefined 2.8s cubic-bezier(0, .5, .5, 1) infinite;
}
#statusBar.open .sb-dot::after {
  animation-delay: 1.4s;
}

@keyframes dotRippleRefined {
  0%   { transform: scale(1);   opacity: .55; }
  60%  { opacity: .15; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* ── Section heading underline draw ── */
.sec-label {
  position: relative;
  display: inline-block;
}
.sec-label::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  height: 1px;
  width: 0;
  background: var(--green2);
  transition: width .8s .4s cubic-bezier(.16, 1, .3, 1);
}
.sec-label.vis::after {
  width: 100%;
}

/* ── Service card border-top draw ── */
.srv-card {
  border-top: 2px solid transparent;
  transition: border-color .5s, transform .6s cubic-bezier(.16, 1, .3, 1), box-shadow .6s cubic-bezier(.16, 1, .3, 1);
}
.srv-card:hover {
  border-top-color: var(--green2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,.28);
}

/* ── Process step number count-up visual ── */
.p-step-num {
  transition: color .4s, transform .5s cubic-bezier(.23, 1, .32, 1);
}
.p-step.vis .p-step-num {
  color: var(--green2);
}
.p-step:hover .p-step-num {
  transform: scale(1.12);
}


/* ══════════════════════════════════════════════════════════
   VIDEO — PLAY BUTTON + MODAL LIGHTBOX
══════════════════════════════════════════════════════════ */

/* ── Play button on video tiles ── */
.w-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(.92);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.7);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  transition: transform .45s cubic-bezier(.16,1,.3,1),
              background .3s,
              border-color .3s;
  pointer-events: none;
}
.w-play svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px; /* optical center for triangle */
}
.w-item:hover .w-play {
  transform: translate(-50%, -50%) scale(1);
  background: rgba(46,125,50,.75);
  border-color: var(--green2);
}

/* ── Video tile cursor ── */
.w-item.has-video {
  cursor: pointer;
}
.w-item.has-video .w-overlay {
  background: linear-gradient(to top, rgba(7,16,10,.88) 0%, rgba(7,16,10,.15) 55%, rgba(7,16,10,0) 100%);
}

/* ── Video badge ── */
.w-video-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(76,175,80,.35);
  padding: 5px 10px;
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--green3);
}
.w-video-badge-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--green2);
  flex-shrink: 0;
  animation: vbPulse 2s ease-in-out infinite;
}
@keyframes vbPulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: .35; }
}

/* ── Modal overlay ── */
#video-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(4,10,6,.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s cubic-bezier(.16,1,.3,1),
              visibility .4s;
}
#video-modal.open {
  opacity: 1;
  visibility: visible;
}
.vm-inner {
  position: relative;
  width: min(88vw, 1200px);
  aspect-ratio: 16/9;
  background: #000;
  box-shadow: 0 40px 120px rgba(0,0,0,.7);
  transform: scale(.94) translateY(20px);
  transition: transform .5s cubic-bezier(.16,1,.3,1);
}
#video-modal.open .vm-inner {
  transform: scale(1) translateY(0);
}
.vm-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.vm-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid rgba(255,255,255,.2);
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, color .2s;
  font-family: var(--ff-mono);
  line-height: 1;
}
.vm-close:hover {
  border-color: var(--green2);
  color: var(--green3);
}
.vm-meta {
  position: absolute;
  bottom: -40px;
  left: 0;
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}


/* ── Hero video background ── */
.hero-video-wrap {
  position: absolute;
  inset: -20% 0;
  width: 100%;
  height: 140%;
  overflow: hidden;
  pointer-events: none;
  will-change: transform;
  filter: brightness(.68);
}
.hero-video-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  /* Scale to cover: Vimeo iframes need width/height set for cover behavior */
  width: 100%;
  height: 100%;
  min-width: 177.78vh;  /* 16:9 = 100*(16/9) */
  min-height: 56.25vw;  /* 16:9 = 100*(9/16) */
  transform: translate(-50%, -50%);
  border: none;
}
/* Fallback: hide on desktop once video wrapper exists, show on mobile */
.hero-media-fallback {
  position: absolute;
  inset: -20% 0;
  object-fit: cover;
  width: 100%;
  height: 140%;
  opacity: 1;
  display: block;
  filter: brightness(.68);
  will-change: transform;
  transition: opacity .6s ease;
}
/* On desktop: fallback sits behind the video layer */
@media (hover: hover) and (pointer: fine) {
  .hero-media-fallback {
    z-index: 0;
  }
  .hero-video-wrap {
    z-index: 1;
  }
}
/* On mobile/touch: hide iframe, show fallback only */
@media (hover: none), (max-width: 768px) {
  .hero-video-wrap {
    display: none;
  }
  .hero-media-fallback {
    display: block;
  }
}
/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video-wrap { display: none; }
}

/* ══ RESPONSIVE ══ */
@media (max-width: 1100px) {
  nav {
    padding: 22px 32px;
  }

  nav.scrolled {
    padding: 14px 32px;
  }

  .nav-center {
    display: none;
  }

  .nav-status {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  #statusBar {
    padding: 0 20px;
    font-size: .44rem;
    gap: 10px;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .sb-hours {
    font-size: .44rem;
    white-space: nowrap;
  }

  #hero {
    min-height: 100svh;
  }

  .hero-content {
    padding: 0 32px 72px;
  }

  .hero-h1 {
    font-size: clamp(3.5rem, 12vw, 8rem);
  }

  .hero-scroll {
    left: 32px;
  }

  .stats {
    flex-wrap: wrap;
    padding: 0 16px;
  }

  .stat {
    flex: 0 0 50%;
    padding: 24px 16px;
  }

  #mission {
    padding: 80px 32px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  #services {
    padding: 80px 32px;
  }

  .services-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .services-sub {
    text-align: left;
    max-width: 100%;
  }

  .srv-grid {
    grid-template-columns: 1fr 1fr;
  }

  #work {
    padding: 80px 0 60px;
  }

  .work-head {
    padding: 0 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .work-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: none;
    grid-auto-flow: dense;
  }

  .w-item[style*="grid-area"] {
    grid-area: auto !important;
  }

  .w-item.wide,
  .w-item.span2 {
    grid-column: span 2;
  }

  #about {
    padding: 80px 32px;
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-img-frame {
    max-width: 380px;
  }

  #clients {
    padding: 64px 32px;
  }

  .client-logo {
    flex: 0 0 calc(33.333% - 1px);
    font-size: .55rem;
  }

  #process {
    padding: 80px 32px;
  }

  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  #contact {
    padding: 80px 32px;
    grid-template-columns: 1fr;
    gap: 56px;
  }

  footer {
    padding: 44px 32px 28px;
  }

  .footer-top {
    flex-direction: column;
    gap: 40px;
  }

  .f-row {
    grid-template-columns: 1fr 1fr;
  }

  .marquee-track {
    animation-duration: 25s;
  }

  .w-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .25) 60%, transparent 100%);
  }

  /* NDA tiles: hide gradient overlay on touch — the w-nda card content IS the display */
  .w-nda-tile .w-overlay {
    display: none;
  }

  /* JPD tile alone in its row at tablet — span full width so it doesn't look like empty space */

  .work-nda-row {
    grid-template-columns: 1fr 1fr;
  }
  .srv-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .srv-grid .srv-card:nth-child(1),
  .srv-grid .srv-card:nth-child(2) {
    grid-column: span 2;
  }
  .srv-grid .srv-card:nth-child(3) {
    grid-column: span 4;
  }
  .srv-grid .srv-card:nth-child(4),
  .srv-grid .srv-card:nth-child(5) {
    grid-column: span 2;
  }
  .clients-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 640px) {
  #statusBar {
    height: 38px;
    font-size: .5rem;
    gap: 8px;
    flex-wrap: nowrap;
    overflow: hidden;
    justify-content: flex-start;
    padding: 0 14px;
  }

  .sb-label {
    font-size: .5rem;
    letter-spacing: .15em;
    flex-shrink: 1;
    min-width: 0;
  }

  .sb-time {
    flex-shrink: 0;
  }

  .sb-hours {
    display: none;
  }

  .sb-divider:last-of-type {
    display: none;
  }

  nav {
    top: 38px;
  }

  .w-overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(0, 0, 0, .82) 0%, rgba(0, 0, 0, .3) 60%, transparent 100%);
  }

  /* NDA tiles: w-nda card content is already visible — hide the duplicate bottom overlay */
  .w-nda-tile .w-overlay {
    display: none;
  }

  .hero-h1 {
    font-size: clamp(2.8rem, 10vw, 5rem);
  }

  .hero-wordmark-sub {
    font-size: .5rem;
  }

  .hero-ctas {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .stat {
    flex: 0 0 50%;
  }

  .stat-num {
    font-size: 2rem;
  }

  .srv-grid {
    grid-template-columns: 1fr;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-areas: none;
    grid-auto-flow: row;
  }

  .w-item[style*="grid-area"] {
    grid-area: auto !important;
  }

  .w-item.wide,
  .w-item.span2 {
    grid-column: span 1;
    aspect-ratio: 4/3;
  }

  .w-item {
    aspect-ratio: 4/3;
  }

  #about {
    grid-template-columns: 1fr;
  }

  .about-img-frame {
    max-width: 100%;
  }

  .about-badge {
    left: 0;
    bottom: 16px;
  }

  .about-corner {
    display: none;
  }

  #contact {
    grid-template-columns: 1fr;
  }

  .f-row {
    grid-template-columns: 1fr;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .client-logo {
    flex: 0 0 calc(50% - 1px);
    padding: 16px 8px;
    font-size: .5rem;
  }

  .clients-row {
    flex-wrap: wrap;
  }

  .brands-row {
    flex-direction: column;
    gap: 12px;
  }

  .w-nda-title {
    font-size: .95rem;
  }

  .w-nda-body {
    font-size: .58rem;
  }

  .work-see-all {
    padding: 0 32px;
  }

  footer {
    padding: 32px 24px 20px;
  }

  .f-row {
    gap: 24px;
  }

  .work-nda-row {
    grid-template-columns: 1fr;
  }
  .srv-grid {
    grid-template-columns: 1fr;
  }
  .srv-grid .srv-card:nth-child(n) {
    grid-column: span 1;
  }
  .clients-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ══ NDA / CONFIDENTIAL PORTFOLIO TILES ══ */
.w-nda {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px;
  text-align: center;
  gap: 16px;
}

.w-nda-icon {
  width: 44px;
  height: 44px;
  opacity: .25;
  margin-bottom: 4px;
}

.w-nda-tag {
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--green2);
  opacity: .7;
}

.w-nda-title {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
}

.w-nda-body {
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.9;
  max-width: 200px;
}

.w-nda-rule {
  width: 32px;
  height: 1px;
  background: var(--border-lt);
  margin: 4px 0;
}

.w-nda-badge {
  font-family: var(--ff-mono);
  font-size: .44rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .6;
  border: 1px solid var(--border-lt);
  padding: 5px 12px;
}

/* Forensic tile gets a more severe treatment */
/* All NDA tiles: subtle border so they're always distinguishable from page bg */
/* NDA tiles: border accent */
.w-nda-tile {
  outline: 1px solid rgba(76, 175, 80, .15);
}

.w-nda-chain {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-mono);
  font-size: .42rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
  opacity: .5;
}

.w-nda-chain::before,
.w-nda-chain::after {
  content: '—';
  color: var(--border-lt);
}

/* ══════════════════════════════════════════════════════
   JERICKO MEDIA — Results / Case Study Section
   Paste at the BOTTOM of your existing CSS file
   ══════════════════════════════════════════════════════ */

#results {
  position: relative;
  padding: 100px 56px 120px;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
}

#results::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent, transparent 80px,
      rgba(76, 175, 80, 0.015) 80px, rgba(76, 175, 80, 0.015) 81px);
  pointer-events: none;
}

.results-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 64px;
}

.results-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border-lt);
  padding: 8px 18px 8px 12px;
  margin-bottom: 24px;
}

.results-badge-dot {
  width: 6px;
  height: 6px;
  background: var(--green2);
  border-radius: 50%;
  position: relative;
  flex-shrink: 0;
}

.results-badge-dot::before,
.results-badge-dot::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(76, 175, 80, .5);
  animation: dotRipple 2.4s ease-out infinite;
}

.results-badge-dot::after {
  animation-delay: 1.2s;
}

.results-badge-text {
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}

.results-headline {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
}

.results-headline em {
  font-style: italic;
  color: var(--green2);
}

.results-intro {
  font-size: .82rem;
  font-weight: 300;
  line-height: 1.85;
  color: var(--muted);
  letter-spacing: .02em;
}

.results-intro strong {
  color: var(--off-white);
  font-weight: 400;
}

/* Stat grids */
.r-grid-primary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  margin-bottom: 2px;
}

.r-grid-secondary {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-top: none;
  margin-bottom: 52px;
}

.r-card {
  background: var(--bg);
  padding: 36px 28px 32px;
  position: relative;
  overflow: hidden;
  transition: background .3s;
}

.r-card:hover {
  background: var(--surface2);
}

.r-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green2), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s;
}

.r-card:hover::after {
  transform: scaleX(1);
}

.r-card--hero {
  background: rgba(46, 125, 50, .08);
}

.r-card--hero:hover {
  background: rgba(46, 125, 50, .13);
}

.r-card--hero::after {
  background: linear-gradient(90deg, var(--green2), transparent);
}

.r-card--sm {
  padding: 22px 28px;
}

.r-label {
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
}

.r-value {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}

.r-card--sm .r-value {
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  margin-bottom: 4px;
}

.r-card--hero .r-value {
  color: var(--green2);
}

.r-unit {
  font-size: .55em;
  color: var(--green);
  font-style: italic;
}

.r-card--hero .r-unit {
  color: var(--green2);
}

.r-sub {
  font-size: .7rem;
  color: var(--muted);
  line-height: 1.55;
}

.r-sub strong {
  color: var(--green2);
  font-weight: 500;
}

/* Insight bar */
.r-insight {
  border: 1px solid var(--border-lt);
  border-left: 3px solid var(--green2);
  background: var(--bg);
  padding: 28px 36px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 52px;
}

.r-insight-mark {
  font-family: var(--ff-serif);
  font-size: 4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--green2);
  opacity: .3;
  flex-shrink: 0;
  line-height: 1;
}

.r-insight-text {
  font-size: .8rem;
  line-height: 1.8;
  color: var(--muted-lt);
}

.r-insight-text strong {
  color: var(--cream);
}

.r-insight-text em {
  color: var(--green2);
  font-style: normal;
}

/* Top post block */
.r-top-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
}

.r-top-label {
  background: var(--bg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.r-top-eyebrow {
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green2);
  margin-bottom: 14px;
}

.r-top-title {
  font-family: var(--ff-serif);
  font-size: clamp(1.4rem, 2.5vw, 2.1rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 10px;
}

.r-top-meta {
  font-family: var(--ff-mono);
  font-size: .48rem;
  letter-spacing: .16em;
  color: var(--muted);
}

.r-top-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "v v" "l f";
  gap: 2px;
  background: var(--border);
}

.r-mini {
  background: var(--surface2);
  padding: 28px 24px;
}

.r-mini:first-child {
  grid-area: v;
  background: rgba(46, 125, 50, .1);
}

.r-mini:nth-child(2) {
  grid-area: l;
}

.r-mini:nth-child(3) {
  grid-area: f;
}

.r-mini .r-value {
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
}

.r-mini:first-child .r-value {
  color: var(--green2);
}

/* Footer note */
.r-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}

.r-footer-note {
  font-family: var(--ff-mono);
  font-size: .46rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

.r-footer-cta {
  font-family: var(--ff-mono);
  font-size: .52rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--green2);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap .25s;
}

.r-footer-cta:hover {
  gap: 14px;
}

@media (max-width: 900px) {
  #results {
    padding: 80px 24px 100px;
  }

  .results-header {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .r-grid-primary {
    grid-template-columns: repeat(2, 1fr);
  }

  .r-grid-secondary {
    grid-template-columns: repeat(2, 1fr);
  }

  .r-top-post {
    grid-template-columns: 1fr;
  }

  .r-insight {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {

  .r-grid-primary,
  .r-grid-secondary {
    grid-template-columns: 1fr;
  }

  .r-top-stats {
    grid-template-areas: "v" "l" "f";
    grid-template-columns: 1fr;
  }
}
/* ── ABOUT PULL-QUOTE ── */
.about-quote {
  font-family: var(--ff-serif);
  font-size: clamp(.95rem, 1.5vw, 1.15rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(240,235,224,.72);
  border-left: 2px solid var(--green2);
  padding: 18px 26px;
  margin: 28px 0 32px;
  line-height: 1.75;
}
.about-quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--ff-mono);
  font-style: normal;
  font-size: .46rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--green2);
}

/* ── iOS SAFARI FIXES ── */
/* Prevent double-tap zoom on inputs/selects */
input, select, textarea, button {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
/* Prevent iOS auto-zoom on input focus (font-size must be ≥16px) */
.f-input, .f-select, .f-textarea {
  font-size: 16px !important;
}
/* Fix position:fixed status bar on iOS (momentum scroll) */
.status-bar {
  -webkit-transform: translateZ(0);
}
/* Smooth scrolling — iOS safe */
html {
  -webkit-overflow-scrolling: touch;
}
/* Prevent hero image from getting squashed on iOS landscape */
@media screen and (max-width: 812px) and (orientation: landscape) {
  #hero { min-height: 100svh; }
  .hero-media { object-position: center 30%; }
}
/* Safe area insets for iPhone notch/home bar */
footer {
  padding-bottom: max(24px, env(safe-area-inset-bottom));
}
.status-bar {
  padding-left: max(16px, env(safe-area-inset-left));
  padding-right: max(16px, env(safe-area-inset-right));
}
