:root {
  --paper: #f4f5f7;
  --paper-2: #e8eaee;
  --ink: #101826;
  --ink-soft: #4a5568;
  --charcoal: #0b1220;
  --charcoal-2: #111b2e;
  --brass: #eb9f3d;
  --brass-light: #f5b65e;
  --blue: #0961a2;
  --blue-light: #2e86c7;
  --line: #d7dae1;
  --line-dark: #26314a;
  --radius: 2px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--ink);
  font-family: "Inter", sans-serif;
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  animation: pageFadeIn 0.7s ease both;
}
@keyframes pageFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
header {
  animation: navDropIn 0.9s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
@keyframes navDropIn {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}
.wrap {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
}
h1,
h2,
h3,
h4 {
  font-family: "Fraunces", serif;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.eyebrow {
  font-family: "Inter", sans-serif;
  text-transform: uppercase;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--brass);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--brass);
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 14px;
  letter-spacing: 0.04em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  border-radius: 40px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition:
    transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.35s ease,
    color 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  white-space: nowrap;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.14);
}
.btn:active {
  transform: translateY(-1px);
}
.btn svg {
  transition: transform 0.35s ease;
}
.btn:hover svg {
  transform: translateX(5px);
}
.btn-solid {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.contact-notification {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: 13px;
  line-height: 1.45;
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.contact-notification.is-fading {
  opacity: 0;
  transform: translateY(-6px);
}
.contact-notification.success {
  color: #276749;
  background: #f0fff4;
  border-color: #9ae6b4;
}
.contact-notification.error {
  color: #9b2c2c;
  background: #fff5f5;
  border-color: #feb2b2;
}
.contact-notification-icon {
  display: grid;
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  background: #38a169;
  font-size: 12px;
  font-weight: 700;
}
.contact-notification.success .contact-notification-icon {
  background: #38a169;
}
.contact-notification.error .contact-notification-icon {
  background: #e53e3e;
}
@media (prefers-reduced-motion: reduce) {
  .contact-notification {
    transition: none;
  }
}
.btn-solid:hover {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--charcoal);
}
.btn-light {
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}
.btn-light:hover {
  background: #fff;
  color: var(--ink);
}
.btn-brass {
  background: var(--brass);
  border-color: var(--brass);
  color: var(--charcoal);
}
.btn-brass:hover {
  background: var(--brass-light);
  border-color: var(--brass-light);
}

/* ---------- NAV ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 0;
  background: rgb(21 19 16 / 74%);
  transition: all 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
  border-bottom: 1px solid transparent;
}
header.solid {
  background: rgba(21, 19, 16, 0.92);
  backdrop-filter: blur(10px);
  padding: 16px 0;
  border-bottom: 1px solid var(--line-dark);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.logo-badge {
  display: flex;
  align-items: center;
  background: #ffffffc9;
  padding: 7px 14px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.3);
  transition:
    padding 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s ease;
}
.foot-logo {
  display: flex;
  align-items: center;
  background: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
.logo-badge img {
  display: block;
  height: 36px;
  width: auto;
  transition: height 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
nav ul {
  display: flex;
  gap: 38px;
}
nav a {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  position: relative;
  padding-bottom: 4px;
}
nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--brass-light);
  transition: width 0.3s ease;
}
nav a:hover::after {
  width: 100%;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-phone {
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}
.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: #fff;
  display: block;
}

/* ---------- HERO (scroll-pinned slider) ---------- */
/* .hero-pin is the tall scroll track; .hero itself sticks to the viewport
     for the duration of that track, and only releases to scroll away once
     the last slide has been reached. */
.hero-pin {
  position: relative;
  height: 400vh; /* 4 slides: 1 viewport held + 3 viewport-heights of scroll to advance */
}
.hero {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 680px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-media {
  position: absolute;
  inset: 0;
  background: var(--ink, #0c0b09);
}
.hero-media img,
.hero-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.01);
  transition:
    opacity 1.1s cubic-bezier(0.45, 0, 0.2, 1),
    transform 6.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
/* static on load: only the first slide is visible, nothing auto-plays */
.hero-media img.active,
.hero-media video.active {
  opacity: 1;
  transform: scale(1.1);
}
.hero-media video {
  background: var(--ink, #0c0b09);
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 10, 0.35) 0%,
    rgba(12, 11, 9, 0.35) 40%,
    rgba(10, 9, 7, 0.92) 100%
  );
}
.hero-dots {
  position: absolute;
  right: 44px;
  bottom: 120px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.hero-dots span {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
  transition: background 0.4s ease;
}
.hero-dots span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--brass-light);
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-dots span.active::after {
  transform: scale(1);
}
@media (max-width: 760px) {
  .hero-dots {
    display: none;
  }
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  width: 100%;
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 60px;
  align-items: end;
}
.hero h1 {
  font-size: clamp(46px, 7vw, 96px);
  color: #fff;
  font-weight: 400;
  opacity: 0;
  transform: translateY(30px);
  animation: riseIn 1s 0.3s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero .eyebrow {
  color: var(--brass-light);
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-side {
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s 0.6s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.hero-side p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15.5px;
  margin-bottom: 28px;
  max-width: 420px;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: riseIn 1s 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes riseIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* crossfade used when the pinned slider swaps text between slides */
.hero .eyebrow,
.hero h1,
.hero-side p {
  transition:
    opacity 0.35s ease,
    transform 0.35s ease;
}
.hero .eyebrow.swap-out,
.hero h1.swap-out,
.hero-side p.swap-out {
  opacity: 0;
  transform: translateY(14px);
}
.scroll-cue {
  position: absolute;
  bottom: 36px;
  left: 40px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: opacity 0.5s ease;
}
.scroll-cue.hide {
  opacity: 0;
  pointer-events: none;
}
.scroll-cue .line {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.4);
  position: relative;
  overflow: hidden;
}
.scroll-cue .line::after {
  content: "";
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--brass-light);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  50% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}
@media (max-width: 760px) {
  .hero-pin {
    height: 320vh;
  }
}

/* ---------- REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.12s;
}
.reveal-delay-2 {
  transition-delay: 0.24s;
}
.reveal-delay-3 {
  transition-delay: 0.36s;
}
.reveal-delay-4 {
  transition-delay: 0.48s;
}

/* directional reveal variants — left / right / bottom fade-ins */
.reveal-left {
  transform: translateX(-50px);
}
.reveal-right {
  transform: translateX(50px);
}
.reveal-left.in,
.reveal-right.in {
  opacity: 1;
  transform: translate(0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
  body,
  header,
  .hero h1,
  .hero .eyebrow,
  .hero-side,
  .hero-btns,
  .subhero h1,
  .subhero .eyebrow,
  .crumb,
  .subhero-media img {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .hero-pin {
    height: auto !important;
  }
  .hero {
    position: relative !important;
  }
}

section {
  padding: 140px 0;
  position: relative;
}
.section-tight {
  padding: 110px 0;
}

/* ---------- ABOUT ---------- */
.about {
  background: var(--paper);
}
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 100px;
  align-items: center;
}
.about-media {
  position: relative;
}
.about-media img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: var(--radius);
}
.badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--charcoal);
  color: #fff;
  padding: 26px 30px;
  width: 190px;
  border: 1px solid var(--brass);
}
.badge .num {
  font-family: "Fraunces", serif;
  font-size: 34px;
  color: var(--brass-light);
  display: inline-block;
  transition: color 0.3s ease;
}
.badge .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 6px;
}
.about h2 {
  font-size: clamp(32px, 3.4vw, 46px);
  margin: 18px 0 26px;
  max-width: 520px;
}
.about p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 540px;
  font-size: 15.5px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 50px;
  border-top: 1px solid var(--line);
}
.stat {
  padding: 26px 24px 0 0;
  border-right: 1px solid var(--line);
}
.stat:last-child {
  border-right: none;
}
.stat .num {
  font-family: "Fraunces", serif;
  font-size: 38px;
  color: var(--brass);
  display: inline-block;
  transition: color 0.3s ease;
}
.stat .lbl {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- COUNT-UP MOTION (logo colours) ---------- */
.stat .num.counting,
.badge .num.counting {
  color: var(--blue-light);
  animation: countClimb 0.5s ease-in-out infinite;
}
.badge .num.counting {
  color: var(--blue-light);
}
@keyframes countClimb {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.045);
  }
}
.stat .num.counted,
.badge .num.counted {
  animation: countSettle 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes countSettle {
  0% {
    transform: scale(1.22);
    color: var(--blue);
  }
  60% {
    transform: scale(0.97);
  }
  100% {
    transform: scale(1);
  }
}

/* ---------- PROJECTS ---------- */
.projects {
  background: var(--charcoal);
  color: #fff;
}
.projects .eyebrow {
  color: var(--brass-light);
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(30px, 3.6vw, 50px);
  color: #fff;
  max-width: 640px;
}
.projects .section-head p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 380px;
  font-size: 15px;
}
.proj-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.proj-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
  cursor: pointer;
  background: var(--charcoal-2);
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.5s ease;
}
.proj-card.in {
  opacity: 1;
  transform: translateY(0);
}
.proj-card:hover {
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
  z-index: 2;
}
.proj-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.8s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s ease;
  filter: grayscale(15%) brightness(0.92);
}
.proj-card:hover img {
  transform: scale(1.1);
  filter: grayscale(0%) brightness(1);
}
.proj-card .proj-idx {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(-8px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}
.proj-card:hover .proj-idx {
  opacity: 1;
  transform: translateY(0);
}
.proj-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(10, 9, 7, 0.92) 0%,
    rgba(10, 9, 7, 0) 65%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px;
  transform: translateY(28%);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.proj-card:hover .proj-overlay {
  transform: translateY(0);
}
.proj-overlay .tag {
  font-size: 10.5px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--brass-light);
  margin-bottom: 6px;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s ease 0.05s,
    transform 0.4s ease 0.05s;
}
.proj-card:hover .proj-overlay .tag {
  opacity: 1;
  transform: translateY(0);
}
.proj-overlay .name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.proj-overlay .name .arrow {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-8px, 0) rotate(-45deg);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 0.1s,
    background 0.3s ease,
    border-color 0.3s ease;
}
.proj-card:hover .proj-overlay .name .arrow {
  opacity: 1;
  transform: translate(0, 0) rotate(0deg);
}
.proj-card:hover .proj-overlay .name .arrow {
  background: var(--brass);
  border-color: var(--brass);
}
.proj-overlay .name .arrow svg {
  width: 14px;
  height: 14px;
  stroke: #fff;
}
.proj-card .play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(21, 19, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.proj-card .play-badge svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  margin-left: 3px;
}
.proj-card:hover .play-badge {
  background: var(--brass);
  border-color: var(--brass);
  transform: translate(-50%, -50%) scale(1.08);
}
.proj-more {
  margin-top: 56px;
  text-align: center;
}

/* ---------- SERVICES ---------- */
.services {
  background: var(--paper);
}
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.svc-card {
  background: var(--paper);
  padding: 46px 38px;
  transition:
    background 0.4s ease,
    color 0.4s ease;
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
  z-index: 0;
}
.svc-card:hover::before {
  transform: translateY(0);
}
.svc-card > * {
  position: relative;
  z-index: 1;
}
.svc-num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: var(--brass);
  margin-bottom: 30px;
  display: block;
  transition: color 0.4s ease;
}
.svc-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  stroke: var(--ink);
  transition: stroke 0.4s ease;
}
.svc-card h3 {
  font-size: 21px;
  margin-bottom: 14px;
  transition: color 0.4s ease;
}
.svc-card p {
  font-size: 14px;
  color: var(--ink-soft);
  transition: color 0.4s ease;
}
.svc-card:hover h3,
.svc-card:hover p,
.svc-card:hover .svc-num {
  color: #fff;
}
.svc-card:hover .svc-icon {
  stroke: var(--brass-light);
}

/* ---------- WHY ---------- */
.why {
  background: var(--paper-2);
}
.why-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.why h2 {
  font-size: clamp(30px, 3.4vw, 46px);
  max-width: 460px;
  margin-bottom: 20px;
}
.why > .wrap > .why-grid > div:first-child p {
  color: var(--ink-soft);
  max-width: 420px;
  font-size: 15px;
}
.why-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.why-item {
  position: relative;
  background: var(--paper-2);
  padding: 34px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    box-shadow 0.45s ease;
}
.why-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--brass);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.why-item:hover::before {
  transform: scaleY(1);
  transform-origin: top;
}
.why-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(16, 24, 38, 0.1);
  z-index: 1;
}
.why-item .ic {
  flex: none;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.4s ease,
    transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.why-item:hover .ic {
  background: var(--brass);
  transform: rotate(-10deg) scale(1.08);
}
.why-item svg {
  flex: none;
  width: 22px;
  height: 22px;
  stroke: var(--brass);
  transition: stroke 0.4s ease;
}
.why-item:hover svg {
  stroke: #fff;
}
.why-item h4 {
  font-family: "Inter", sans-serif;
  font-size: 15.5px;
  font-weight: 600;
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.why-item:hover h4 {
  color: var(--brass);
}
.why-item p {
  font-size: 13px;
  color: var(--ink-soft);
}

/* ---------- TESTIMONIALS ---------- */
.testi {
  background: var(--charcoal);
  color: #fff;
}
.testi-wrap {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.testi .eyebrow {
  justify-content: center;
  color: var(--brass-light);
}
.testi .eyebrow::before {
  display: none;
}
.testi-slide {
  display: none;
}
.testi-slide.active {
  display: block;
  animation: fadeSlide 0.7s ease;
}
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.testi-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(21px, 2.6vw, 30px);
  font-weight: 400;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 34px;
}
.testi-quote::before {
  content: "“";
  color: var(--brass);
}
.testi-quote::after {
  content: "”";
  color: var(--brass);
}
.testi-name {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.testi-name span {
  display: block;
  font-family: "Inter";
  font-weight: 400;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 44px;
}
.testi-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}
.testi-dots button.active {
  background: var(--brass);
  border-color: var(--brass);
  width: 22px;
  border-radius: 5px;
}

/* ---------- PROCESS ---------- */
.process {
  background: var(--paper);
}
.proc-track {
  position: relative;
  margin-top: 70px;
}
.proc-line-svg {
  position: absolute;
  top: 34px;
  left: 0;
  width: 100%;
  height: 6px;
}
.proc-line-svg path {
  fill: none;
  stroke: var(--line);
  stroke-width: 1.5;
}
.proc-line-svg path.draw {
  stroke: var(--brass);
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.proc-line-svg path.draw.in {
  stroke-dashoffset: 0;
}
.proc-steps {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 14px;
  position: relative;
}
.proc-step {
  text-align: center;
  padding: 14px 10px 6px;
  border-radius: 10px;
  transition:
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1),
    background 0.4s ease;
}
.proc-step:hover {
  transform: translateY(-8px);
  background: var(--paper-2);
}
.proc-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--paper);
  border: 2px solid var(--line);
  margin: 0 auto 22px;
  position: relative;
  z-index: 2;
  transition:
    border-color 0.4s ease,
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.4s ease;
}
.proc-step.in .proc-dot {
  border-color: var(--brass);
  background: var(--brass);
}
.proc-step:hover .proc-dot {
  transform: scale(1.5);
  box-shadow: 0 0 0 6px rgba(235, 159, 61, 0.16);
}
.proc-step .idx {
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: var(--brass);
  display: block;
  margin-bottom: 8px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.proc-step:hover .idx {
  transform: scale(1.15);
}
.proc-step h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.proc-step:hover h4 {
  color: var(--brass);
}
.proc-step p {
  font-size: 12.5px;
  color: var(--ink-soft);
}

/* ---------- CTA ---------- */
.cta {
  position: relative;
  height: 49vh;
  min-height: 306px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.78),
    rgba(10, 9, 7, 0.6)
  );
}
.cta-inner {
  position: relative;
  z-index: 2;
  color: #fff;
}
.cta h2 {
  font-size: clamp(34px, 5vw, 64px);
  color: #fff;
  max-width: 760px;
  margin: 0 auto 34px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- CONTACT ---------- */
.contact {
  background: var(--paper-2);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
}
.contact h2 {
  font-size: clamp(30px, 3.4vw, 44px);
  margin-bottom: 18px;
  max-width: 420px;
}
.contact > .wrap > .contact-grid > div:first-child > p {
  color: var(--ink-soft);
  max-width: 420px;
  margin-bottom: 44px;
  font-size: 15px;
}
.c-item {
  display: flex;
  gap: 20px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.c-item:last-child {
  border-bottom: 1px solid var(--line);
}
.c-item svg {
  flex: none;
  width: 22px;
  height: 22px;
  stroke: var(--brass);
  margin-top: 3px;
}
.c-item .lbl {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 4px;
}
.c-item .val {
  font-size: 15.5px;
  font-weight: 500;
}
.form-card {
  background: var(--paper);
  padding: 48px;
  border: 1px solid var(--line);
}
.form-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}
.form-card > p {
  font-size: 13.5px;
  color: var(--ink-soft);
  margin-bottom: 30px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  margin-bottom: 8px;
}
.field input,
.field textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 10px 2px;
  font-family: "Inter";
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s ease;
}
.field input:focus,
.field textarea:focus {
  border-color: var(--brass);
}
.field textarea {
  resize: none;
  height: 70px;
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.65);
  padding: 90px 0 0;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid var(--line-dark);
}
.foot-logo {
  display: inline-flex;
  margin-bottom: 18px;
}
.foot-logo .logo-badge img {
  height: 40px;
}
.foot-grid p {
  font-size: 13.5px;
  line-height: 1.8;
  max-width: 280px;
}
.foot-col h5 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
  margin-bottom: 22px;
}
.foot-col ul li {
  margin-bottom: 12px;
  font-size: 13.5px;
}
.foot-col ul li a:hover {
  color: var(--brass-light);
}
.foot-social {
  display: flex;
  gap: 14px;
  margin-top: 24px;
}
.foot-social a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.foot-social a:hover {
  border-color: var(--brass);
  color: var(--brass-light);
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
  gap: 10px;
}
.foot-bottom p {
  flex: 1 1 100%;
  margin: 0;
  text-align: center;
}

/* ---------- LIGHTBOX ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.94);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}
.lightbox.open {
  display: flex;
}
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
}
.lightbox video {
  max-width: 90vw;
  max-height: 85vh;
}
.lightbox-embed {
  width: min(90vw, 960px);
  aspect-ratio: 16 / 9;
  max-height: 85vh;
}
.lightbox-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.lightbox-close {
  position: absolute;
  top: 32px;
  right: 40px;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
}

/* ---------- PROJECT DETAIL MODAL ---------- */
.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(8, 7, 6, 0.82);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 32px;
}
.project-modal.open {
  display: flex;
}
.pm-inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  max-height: 88vh;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
}
.pm-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(9, 14, 24, 0.5);
  border: none;
  padding: 8px 14px;
  border-radius: 20px;
}
.pm-grid {
  display: grid;
  grid-template-columns: minmax(280px, 34%) 1fr;
  max-height: 88vh;
}
.pm-info {
  padding: 40px 34px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
#pmBadge {
  position: static;
  box-shadow: none;
}
.pm-name {
  font-family: "Fraunces", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.25;
}
.pm-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pm-meta svg {
  flex: none;
  opacity: 0.7;
}
.pm-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-top: 2px;
}
.pm-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}
.pm-thumb {
  width: 68px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  padding: 0;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.65;
  transition: all 0.25s ease;
  flex: none;
}
.pm-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pm-thumb:hover {
  opacity: 1;
}
.pm-thumb.active {
  opacity: 1;
  border-color: var(--blue);
}
.pm-media {
  position: relative;
  background: var(--charcoal);
  height: 100%;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}
.pm-media img,
.pm-media video {
  width: 100%;
  height: 100%;
  max-height: 88vh;
  object-fit: cover;
  display: block;
}
@media (max-width: 800px) {
  .project-modal {
    padding: 0;
  }
  .pm-inner {
    max-height: 100vh;
    height: 100%;
    border-radius: 0;
    overflow-y: auto;
  }
  .pm-grid {
    grid-template-columns: 1fr;
    max-height: none;
  }
  .pm-media {
    order: -1;
    min-height: 300px;
    max-height: 42vh;
  }
  .pm-media img,
  .pm-media video {
    max-height: 42vh;
  }
  .pm-info {
    padding: 26px 22px 34px;
    overflow-y: visible;
  }
}

@media (max-width: 1080px) {
  .about-grid,
  .why-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .proj-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-row {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 26px;
  }
  .stat:nth-child(2) {
    border-right: none;
  }
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }
  .proc-steps {
    grid-template-columns: repeat(4, 1fr);
    row-gap: 36px;
  }
  .proc-line-svg {
    display: none;
  }
}
@media (max-width: 760px) {
  .wrap {
    padding: 0 24px;
  }
  nav ul,
  .nav-phone {
    display: none;
  }
  .nav-right > .btn {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
  .logo-badge {
    padding: 7px 12px;
    border-radius: 9px;
  }
  .logo-badge img {
    height: 32px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  section {
    padding: 90px 0;
  }
  .proj-grid {
    grid-template-columns: 1fr 1fr;
  }
  .svc-grid {
    grid-template-columns: 1fr;
  }
  .why-list {
    grid-template-columns: 1fr;
  }
  .badge {
    position: static;
    margin-top: 20px;
    width: auto;
    display: inline-flex;
    gap: 14px;
    align-items: center;
  }
  .about-media img {
    height: 400px;
  }
  .proc-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

/* ---------- SUB-PAGE HERO ---------- */
.subhero {
  position: relative;
  height: 56vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.subhero-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.subhero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  animation: subheroKenBurns 9s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
@keyframes subheroKenBurns {
  from {
    transform: scale(1.22);
  }
  to {
    transform: scale(1.06);
  }
}
.subhero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 13, 10, 0.45) 0%,
    rgba(10, 9, 7, 0.88) 100%
  );
}
.subhero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 0px;
  color: #fff;
  width: 100%;
}
.subhero h1 {
  font-size: clamp(38px, 5.4vw, 68px);
  color: #fff;
  font-weight: 400;
  opacity: 0;
  transform: translateY(26px);
  animation: riseIn 1s 0.25s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.subhero .eyebrow {
  opacity: 0;
  transform: translateY(18px);
  animation: riseIn 1s 0.05s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

/* ---------- WAVE DIVIDER ---------- */
.wave-divider {
  position: relative;
  z-index: 5;
  line-height: 0;
  margin-top: -2px;
  background: var(--paper);
  overflow: visible;
  isolation: isolate;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 64px;
}
.wave-divider .wave-fill-1 {
  fill: var(--paper-2);
  opacity: 0.75;
}
.wave-divider .wave-fill-2 {
  fill: var(--brass);
  opacity: 0.28;
}
.wave-divider .wave-fill-3 {
  fill: var(--wave-top, var(--paper));
}
@media (max-width: 640px) {
  .wave-divider svg {
    height: 40px;
  }
}
.crumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  opacity: 0;
  animation: riseIn 1s 0.5s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}
.crumb a:hover {
  color: var(--brass-light);
}
.crumb .sep {
  opacity: 0.5;
}

/* ---------- TEAM ---------- */
.team {
  background: var(--paper);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 20px;
}
.team-card {
  background: var(--paper);
  padding: 44px 38px;
  text-align: left;
  transition:
    background 0.4s ease,
    transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.team-card:hover {
  transform: translateY(-6px);
  background: #fff;
}
.team-card .role {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brass);
  margin-bottom: 10px;
}
.team-card h3 {
  font-size: 26px;
  margin-bottom: 6px;
}
.team-card .init {
  width: 110px;
  height: 110px;
  border-radius: 26%;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--brass-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Fraunces", serif;
  font-size: 24px;
  margin-bottom: 24px;
  box-shadow: 0 0 0 0 rgba(235, 159, 61, 0);
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease;
}
.team-card:hover .init {
  transform: scale(1.06) rotate(-2deg);
  box-shadow: 0 0 0 6px rgba(235, 159, 61, 0.16);
}
.team-card img.init {
  object-fit: cover;
}
@media (max-width: 760px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 32px 24px;
  }
  .team-card .init {
    width: 96px;
    height: 96px;
    margin-bottom: 20px;
  }
}
/* ---------- GALLERY PAGE (legacy masonry, kept in case it's reused) ---------- */
.gallery-page {
  background: var(--paper);
}
.gallery-masonry {
  columns: 3 280px;
  column-gap: 2px;
}
.gallery-masonry .proj-card {
  width: 100%;
  margin-bottom: 2px;
  break-inside: avoid;
  aspect-ratio: auto;
}
.gallery-masonry .proj-card img {
  height: auto;
}
@media (max-width: 760px) {
  .gallery-masonry {
    columns: 1 280px;
  }
}

/* ---------- FILTER TABS (shared) ---------- */
.filter-tabs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 40px 0 46px;
}
.filter-tabs button {
  padding: 10px 22px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 20px;
}
.filter-tabs button.active,
.filter-tabs button:hover {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* ---------- PROJECTS PAGE (card theme) ---------- */
.subhero--projects {
  height: 42vh;
  min-height: 432px;
}
.subhero-content--center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 0px;
  padding-top: 46px;
}
.subhero-content--center .crumb {
  justify-content: center;
}

.projects-page {
  position: relative;
  padding-top: 54px;
  background-color: var(--paper-2);
  background-image:
    radial-gradient(circle, rgba(9, 97, 162, 0.1) 1px, transparent 1px),
    radial-gradient(
      ellipse 620px 420px at 12% 8%,
      rgba(120, 84, 52, 0.1),
      transparent 60%
    ),
    radial-gradient(
      ellipse 560px 400px at 90% 14%,
      rgba(235, 159, 61, 0.1),
      transparent 58%
    ),
    radial-gradient(
      ellipse 680px 480px at 20% 92%,
      rgba(120, 84, 52, 0.07),
      transparent 60%
    ),
    radial-gradient(
      ellipse 520px 380px at 50% 40%,
      rgba(9, 97, 162, 0.06),
      transparent 65%
    ),
    radial-gradient(
      ellipse 620px 440px at 95% 95%,
      rgba(245, 240, 230, 0.5),
      transparent 55%
    ),
    linear-gradient(
      155deg,
      var(--paper) 0%,
      var(--paper-2) 45%,
      var(--paper) 100%
    );
  background-size:
    22px 22px,
    auto,
    auto,
    auto,
    auto,
    auto,
    auto;
}
.filter-tabs--projects {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 44px;
  box-sizing: border-box;
}
.filter-tabs--projects button {
  background: rgba(255, 255, 255, 0.55);
  border-radius: 6px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--blue);
  border-color: rgba(16, 24, 38, 0.18);
  width: auto;
  min-width: 0;
  white-space: nowrap;
}
.filter-tabs--projects button.active,
.filter-tabs--projects button:hover {
  background: #fff;
  color: var(--blue);
  border-color: #000000;
  box-shadow: 0 4px 14px rgba(9, 97, 162, 0.18);
  /* width: 100%; */
}

@media (max-width: 600px) {
  .filter-tabs--projects {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 32px;
  }

  .filter-tabs--projects button {
    padding: 10px 8px;
  }
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px 30px;
  padding-bottom: 70px;
  align-items: stretch;
}

/* Card shell — the signature move is the photo itself: it rests as a
   desaturated, blueprint-tinted "rendering" and only resolves to full
   colour on hover/focus, as if the drawing were being built in real
   time. Everything else (frame, rule, link) stays quiet around it. */
.projects-grid .proj-card.tile-card {
  position: static;
  aspect-ratio: auto;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(16, 24, 38, 0.07);
  box-shadow: 0 1px 2px rgba(16, 24, 38, 0.04);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  opacity: 0;
  transform: translateY(28px) scale(0.97);
  animation: cardArrive 0.7s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  transition:
    box-shadow 0.45s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.45s ease,
    transform 0.45s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.projects-grid .proj-card.tile-card:hover,
.projects-grid .proj-card.tile-card:focus-visible {
  border-color: rgba(235, 159, 61, 0.45);
  box-shadow:
    0 32px 60px -18px rgba(9, 20, 36, 0.32),
    0 10px 24px -8px rgba(9, 20, 36, 0.12);
  transform: translateY(-10px);
}
.projects-grid .proj-card.tile-card:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}
@keyframes cardArrive {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.projects-grid .proj-card.tile-card:nth-child(3n + 1) {
  animation-delay: 0.05s;
}
.projects-grid .proj-card.tile-card:nth-child(3n + 2) {
  animation-delay: 0.15s;
}
.projects-grid .proj-card.tile-card:nth-child(3n + 3) {
  animation-delay: 0.25s;
}
@media (prefers-reduced-motion: reduce) {
  .projects-grid .proj-card.tile-card {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.tile-media {
  position: relative;
  aspect-ratio: 16/11;
  overflow: hidden;
  flex: none;
}
.projects-grid .proj-card.tile-card img,
.projects-grid .proj-card.tile-card .tile-thumb-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* filter: grayscale(0.85) contrast(1.05) brightness(0.96) saturate(1.1); */
  transform: scale(1.001); /* establishes its own layer, keeps the zoom crisp */
  transition:
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.9s ease;
}
.projects-grid .proj-card.tile-card:hover img,
.projects-grid .proj-card.tile-card:focus-visible img,
.projects-grid .proj-card.tile-card:hover .tile-thumb-video,
.projects-grid .proj-card.tile-card:focus-visible .tile-thumb-video {
  transform: scale(1.08);
  filter: grayscale(0) contrast(1) brightness(1) saturate(1);
}
/* Blueprint tint: a navy multiply wash that reads as a site drawing
   until the card is engaged, then lifts to reveal the finished photo. */
.tile-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    rgba(9, 32, 58, 0.5) 0%,
    rgba(9, 22, 40, 0.32) 55%,
    rgba(9, 14, 24, 0.5) 100%
  );
  mix-blend-mode: multiply;
  opacity: 1;
  transition: opacity 0.7s ease;
}
.projects-grid .proj-card.tile-card:hover .tile-media::after,
.projects-grid .proj-card.tile-card:focus-visible .tile-media::after {
  opacity: 0;
}
/* Drafting-mat frame: inset, invisible at rest, closes in around the
   photo once it "resolves" — a nod to a plan being brought to review. */
.tile-media::before {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(245, 240, 230, 0);
  opacity: 0;
  transform: scale(0.94);
  transition:
    opacity 0.5s ease,
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.5s ease;
  z-index: 1;
  pointer-events: none;
}
.projects-grid .proj-card.tile-card:hover .tile-media::before,
.projects-grid .proj-card.tile-card:focus-visible .tile-media::before {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(245, 240, 230, 0.55);
}

.proj-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  padding: 7px 13px;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.22);
}
.proj-badge--completed {
  background: #2f8f5b;
}
.proj-badge--ongoing {
  background: #c8791f;
}
.proj-badge--residential {
  background: var(--blue);
}
.proj-badge--ongoing::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin: 0 6px 1px 0;
  border-radius: 50%;
  background: #fff;
  vertical-align: middle;
  animation: pulseDot 1.7s ease-in-out infinite;
}
@keyframes pulseDot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.65);
  }
}
@media (prefers-reduced-motion: reduce) {
  .proj-badge--ongoing::before {
    animation: none;
  }
}

.tile-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  padding: 22px 22px 18px;
  flex: 1;
}
.tile-name {
  font-family: "Fraunces", serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
  padding-bottom: 11px;
  transition: color 0.4s ease;
}
.tile-name::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 0;
  background: var(--brass);
  transition: width 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.projects-grid .proj-card.tile-card:hover .tile-name,
.projects-grid .proj-card.tile-card:focus-visible .tile-name {
  color: var(--blue);
}
.projects-grid .proj-card.tile-card:hover .tile-name::after,
.projects-grid .proj-card.tile-card:focus-visible .tile-name::after {
  width: 34px;
}
.tile-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.tile-meta svg {
  flex: none;
  stroke: var(--brass);
  opacity: 0.9;
}

.tile-btn {
  margin-top: auto;
  align-self: stretch;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 15px 0 0;
  margin-top: 16px;
  border-top: 1px solid var(--line);
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: inherit;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.3s ease,
    border-color 0.3s ease;
}
.tile-btn svg {
  flex: none;
  transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.projects-grid .proj-card.tile-card:hover .tile-btn,
.projects-grid .proj-card.tile-card:focus-visible .tile-btn {
  color: var(--brass);
  border-color: rgba(235, 159, 61, 0.4);
}
.projects-grid .proj-card.tile-card:hover .tile-btn svg,
.projects-grid .proj-card.tile-card:focus-visible .tile-btn svg {
  transform: translateX(5px);
}
@media (prefers-reduced-motion: reduce) {
  .projects-grid .proj-card.tile-card,
  .projects-grid .proj-card.tile-card img,
  .tile-media::after,
  .tile-media::before,
  .tile-name,
  .tile-name::after,
  .tile-btn svg {
    transition: none !important;
  }
  .projects-grid .proj-card.tile-card:hover {
    transform: none;
  }
}
@media (max-width: 900px) {
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- PAGE INTRO ---------- */
.page-intro {
  max-width: 640px;
}
.page-intro p {
  color: var(--ink-soft);
  font-size: 15.5px;
  margin-top: 16px;
}

/* ---------- SIMPLE CARD (used on service detail rows) ---------- */
.svc-detail-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
  padding: 80px 0;
  border-top: 1px solid var(--line);
}
.svc-detail-row:first-of-type {
  border-top: none;
}
.svc-detail-row.rev {
  grid-template-columns: 1.1fr 0.9fr;
}
.svc-detail-row.rev .svc-detail-text {
  order: 2;
}
.svc-detail-media {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.svc-detail-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.9s ease;
  filter: grayscale(10%) brightness(0.96);
}
.svc-detail-row:hover .svc-detail-media img {
  transform: scale(1.07);
  filter: grayscale(0%) brightness(1);
}
.svc-detail-text .idx {
  font-family: "Fraunces", serif;
  color: var(--brass);
  font-size: 14px;
  display: block;
  margin-bottom: 16px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.svc-detail-row:hover .svc-detail-text .idx {
  transform: translateX(6px);
}
.svc-detail-text h3 {
  font-size: clamp(24px, 2.6vw, 34px);
  margin-bottom: 16px;
}
.svc-detail-text p {
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 460px;
}
@media (max-width: 900px) {
  .svc-detail-row,
  .svc-detail-row.rev {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .svc-detail-row.rev .svc-detail-text {
    order: 0;
  }
}

/* Active nav link */
nav a.active {
  color: #fff;
}
nav a.active::after {
  width: 100%;
}

/* ---------- INTERIOR SHOWCASE STRIP (home page) ---------- */
.interior-showcase {
  background: var(--paper-2);
}
.interior-showcase .section-head h2 {
  color: var(--ink);
}
.showcase-grid {
  display: grid;
  grid-template-columns: 1.3fr repeat(4, 1fr);
  gap: 2px;
  margin-top: 50px;
}
.showcase-grid .sc-feature {
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.showcase-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.showcase-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 1s cubic-bezier(0.2, 0.7, 0.2, 1),
    filter 0.8s ease;
  filter: grayscale(10%) brightness(0.94);
}
.showcase-grid .sc-feature img {
  aspect-ratio: 3/4;
}
.showcase-grid a:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1);
}
.showcase-grid a {
  display: block;
  position: relative;
  isolation: isolate;
}
/* signature: a brass picture-frame draws inward from the edges on hover,
   echoing "styled with intent" — each tile becomes a framed photograph */
.showcase-grid a::before {
  content: "";
  position: absolute;
  inset: 22px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(245, 182, 94, 0);
  transition:
    inset 0.55s cubic-bezier(0.2, 0.7, 0.2, 1),
    border-color 0.55s ease;
}
.showcase-grid a:hover::before {
  inset: 14px;
  border-color: rgba(245, 182, 94, 0.9);
}
.sc-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
  font-family: "Fraunces", serif;
  font-size: 13px;
  color: #fff;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.4s ease 0.1s,
    transform 0.4s ease 0.1s;
}
.showcase-grid a:hover .sc-num {
  opacity: 0.85;
  transform: translateY(0);
}
.sc-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 22px 22px 20px;
  z-index: 2;
  background: linear-gradient(0deg, rgba(10, 9, 7, 0.85), rgba(10, 9, 7, 0));
  color: #fff;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.showcase-grid a:hover .sc-label {
  opacity: 1;
  transform: translateY(0);
}
.sc-label::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: var(--brass-light);
  margin-bottom: 10px;
}
.sc-label .txt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}
@media (max-width: 1080px) {
  .showcase-grid {
    grid-template-columns: 1fr 1fr;
  }
  .showcase-grid .sc-feature {
    grid-row: span 1;
    aspect-ratio: 4/3;
  }
  .showcase-grid .sc-feature img {
    aspect-ratio: 4/3;
  }
}
@media (max-width: 640px) {
  .showcase-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- TESTIMONIALS BG IMAGE ---------- */
.testi.has-bg {
  position: relative;
}
.testi.has-bg .testi-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.testi.has-bg .testi-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.testi.has-bg .testi-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(10 9 7 / 74%), rgba(10, 9, 7, 0.96));
}
.testi.has-bg .wrap {
  position: relative;
  z-index: 1;
}
.wave-divider {
  display: none;
}
/* ---------- SIGNATURE STORY (immersive scroll-pinned showcase) ----------
   Mirrors the hero-pin technique: a tall scroll track holds a sticky
   full-viewport panel in place while scroll position drives which slide
   is active, a parallax depth shift on the image, a fill progress rail,
   and a cursor-follow spotlight for a more tactile, immersive feel. */
.story-pin {
  position: relative;
  height: 350vh; /* 3 slides */
  background: var(--charcoal);
}
.story {
  position: sticky;
  top: 0;
  height: 100vh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.story-media {
  position: absolute;
  inset: -6% 0;
  background: var(--ink, #0c0b09);
}
.story-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.12) translateY(0);
  transition: opacity 1s cubic-bezier(0.45, 0, 0.2, 1);
  will-change: opacity, transform;
}
.story-media img.active {
  opacity: 1;
}
.story-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(10, 9, 7, 0.15) 0%,
    rgba(10, 9, 7, 0.3) 45%,
    rgba(10, 9, 7, 0.92) 100%
  );
}
.story-glow {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    420px circle at var(--gx, 50%) var(--gy, 50%),
    rgba(235, 159, 61, 0.16),
    transparent 70%
  );
}
.story:hover .story-glow {
  opacity: 1;
}
.story-eyebrow {
  position: relative;
  z-index: 2;
  color: var(--brass-light);
  font:
    600 12px/1 "Inter",
    sans-serif;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 46px;
  padding: 44px 0 0 0;
}
.story-rail {
  position: absolute;
  top: 44px;
  right: 44px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
}
.story-rail .track {
  width: 120px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}
.story-rail .track::after {
  content: "";
  position: absolute;
  inset: 0;
  width: var(--story-progress, 0%);
  background: var(--brass);
  transition: width 0.1s linear;
}
.story-rail .count {
  color: #fff;
  font:
    500 12px/1 "Inter",
    sans-serif;
  letter-spacing: 0.05em;
  opacity: 0.85;
  min-width: 44px;
}
.story-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 44px 64px;
}
.story-content .tag {
  color: var(--brass-light);
  font:
    600 12px/1 "Inter",
    sans-serif;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease;
}
.story-content h3 {
  font:
    500 clamp(30px, 4.4vw, 60px)/1.06 "Fraunces",
    serif;
  color: #fff;
  margin: 0 0 18px;
  max-width: 720px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.05s,
    transform 0.6s ease 0.05s;
}
.story-content p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  max-width: 460px;
  margin: 0 0 26px;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.1s,
    transform 0.6s ease 0.1s;
}
.story-content .btn {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease 0.15s,
    transform 0.6s ease 0.15s;
}
.story[data-in="1"] .story-content .tag,
.story[data-in="1"] .story-content h3,
.story[data-in="1"] .story-content p,
.story[data-in="1"] .story-content .btn {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 760px) {
  .story-pin {
    height: 300vh;
  }
  .story-rail {
    top: 24px;
    right: 24px;
  }
  .story-rail .track {
    width: 70px;
  }
  .story-eyebrow {
    padding-top: 24px;
    margin-bottom: 24px;
    padding-left: 24px;
  }
  .story-content {
    padding: 0 24px 44px;
  }
}

/* ---------- PROJECT DETAIL PAGE ---------- */
.pd-details {
  padding: 90px 0 30px;
}
.pd-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: center;
}
.pd-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  /* position: sticky; */
  top: 120px;
  align-self: start;
  max-height: calc(100vh - 150px);
}
.pd-badge {
  position: static;
}
.pd-name {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--blue);
  line-height: 1.2;
}
.pd-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-soft);
}
.pd-meta svg {
  flex: none;
  opacity: 0.7;
}
.pd-desc {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 460px;
}
.pd-back {
  margin-top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--blue);
}
.pd-back svg {
  transform: rotate(180deg);
  transition: transform 0.25s ease;
}
.pd-back:hover svg {
  transform: rotate(180deg) translateX(3px);
}
.pd-media {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 24px 50px rgba(20, 20, 15, 0.16);
}
.pd-media img,
.pd-media video {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
}

.pd-embed {
  width: 100%;
  height: 560px;
}
.pd-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* ---------- PROJECT PORTFOLIO GALLERY ---------- */
.pd-portfolio {
  padding: 60px 0 110px;
  background: var(--paper-2);
}
.pd-portfolio-head {
  text-align: center;
  margin-bottom: 44px;
}
.pd-portfolio-head .eyebrow {
  display: block;
  margin-bottom: 8px;
}
.pd-portfolio-head h2 {
  font-family: "Fraunces", serif;
  font-size: clamp(26px, 2.6vw, 36px);
}
.portfolio-grid {
  column-count: 4;
  column-gap: 20px;
}
.portfolio-grid img {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(20, 20, 15, 0.12);
  break-inside: avoid;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.portfolio-grid img:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 32px rgba(20, 20, 15, 0.2);
}
.pd-not-found {
  padding: 140px 0;
  text-align: center;
}
.pd-not-found h1 {
  font-family: "Fraunces", serif;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 14px;
}
.pd-not-found p {
  color: var(--ink-soft);
  margin-bottom: 26px;
}
@media (max-width: 1080px) {
  .pd-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pd-info {
    position: static;
  }
  .pd-media img,
  .pd-media video {
    height: 420px;
  }
  .pd-embed {
    height: 420px;
  }
  .portfolio-grid {
    column-count: 3;
  }
}
@media (max-width: 760px) {
  .portfolio-grid {
    column-count: 2;
  }
  .pd-media img,
  .pd-media video {
    height: 320px;
  }
  .pd-embed {
    height: 320px;
  }
}
@media (max-width: 480px) {
  .portfolio-grid {
    column-count: 1;
  }
}

@media (max-width: 760px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 300;
    height: 107vh;
    width: min(76vw, 320px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 8px;
    padding: 96px 32px 40px;
    background: var(--charcoal);
    border: 1px solid var(--line-dark);
    box-shadow: -30px 0 60px -30px rgba(11, 22, 32, 0.35);
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 0.8, 0.3, 1);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    width: 100%;
    padding: 12px 0;
    color: rgba(255, 255, 255, 0.82);
    border-bottom: 1px solid #eadfce;
    font-size: 15px;
    line-height: inherit;
  }

  .nav-links a.active,
  .nav-links a:hover {
    color: var(--brass);
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle.open {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: 301;

    width: 32px;
    height: 32px;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle.open span {
    position: absolute;
    width: 32px;
    height: 2px;
    background: white;
  }

  .nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg);
  }
}
