:root {
  --ink: #0a0a0a;
  --ink-soft: #161616;
  --paper: #f3f1ec;
  --paper-2: #e8e4db;
  --mute: #6e6a63;
  --line: rgba(10, 10, 10, 0.12);
  --line-light: rgba(243, 241, 236, 0.16);
  --signal: #d4ff3a;
  --signal-ink: #0a0a0a;
  --glow: rgba(212, 255, 58, 0.35);
  --directory-red: #c4272d;

  --font-display: "Archivo", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
  --font-hero: "Archivo", system-ui, sans-serif;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --header-h: 5.25rem;
  --pad: clamp(1.25rem, 4vw, 3.5rem);
  --max: 72rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  max-width: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  overflow-x: clip;
  max-width: 100%;
  -webkit-font-smoothing: antialiased;
}

main {
  overflow-x: clip;
  max-width: 100%;
}

/* Custom MAKO cursor follower */
@media (pointer: fine) {
  .has-custom-cursor,
  .has-custom-cursor * {
    cursor: none !important;
  }
}

.cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100001;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s ease;
  will-change: transform;
}

.cursor-follower.is-visible {
  opacity: 1;
}

.cursor-follower__mark {
  display: block;
  width: 48px;
  height: auto;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  opacity: 0.045;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 var(--pad);
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--line-light);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand__mark {
  width: auto;
  height: clamp(3rem, 6vw, 3.85rem);
  object-fit: contain;
  display: block;
}

.brand__mark--footer {
  height: clamp(2.75rem, 5vw, 3.5rem);
}

.brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand__name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.14em;
  font-size: 0.95rem;
  color: #fff;
}

.brand__sub {
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.55);
  margin-top: 0.2rem;
}

.nav {
  display: none;
  gap: 1.75rem;
}

.nav a {
  color: rgba(243, 241, 236, 0.78);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.nav a:hover {
  color: var(--signal);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-link {
  color: rgba(243, 241, 236, 0.75);
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  transition: color 0.25s;
}

.icon-link:hover {
  color: var(--signal);
}

.nav-toggle {
  width: 2.5rem;
  height: 2.5rem;
  border: 0;
  background: transparent;
  display: grid;
  gap: 0.4rem;
  place-content: center;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 1.35rem;
  height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 99;
  background: rgba(10, 10, 10, 0.97);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 2rem var(--pad);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 700;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line-light);
}

.mobile-nav .btn {
  margin-top: 1.5rem;
  border-bottom: 0;
  justify-content: center;
  font-size: 1rem;
  font-family: var(--font-body);
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.15rem;
  border-radius: 0.2rem;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, box-shadow 0.25s;
}

.btn--solid {
  background: var(--signal);
  color: var(--signal-ink);
  box-shadow: 0 0 0 0 var(--glow);
}

.btn--solid:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px var(--glow);
}

.btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(243, 241, 236, 0.35);
}

.btn--ghost:hover {
  border-color: var(--signal);
  color: var(--signal);
}

.btn--lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.92rem;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  color: #fff;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: -12% 0 0;
  height: 124%;
  will-change: transform;
}

.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.2s var(--ease), transform 8s var(--ease);
  z-index: 0;
  will-change: transform, opacity;
}

.hero__img.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(105deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.35) 48%, rgba(10, 10, 10, 0.55) 100%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.35) 0%, transparent 30%, rgba(10, 10, 10, 0.88) 100%),
    radial-gradient(ellipse 70% 55% at 72% 38%, rgba(212, 255, 58, 0.1), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: calc(var(--header-h) + 1rem) var(--pad);
  will-change: transform, opacity;
}

.hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.62);
  opacity: 0;
  transform: translateY(16px);
  animation: riseIn 0.8s var(--ease) 0.1s forwards;
}

.hero__dot {
  width: 0.35rem;
  height: 0.35rem;
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 12px var(--glow);
}

.hero__title {
  margin: 0;
  font-family: var(--font-hero);
  font-weight: 800;
  font-size: clamp(2.4rem, 8.5vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}

.hero__line {
  display: block;
  overflow: hidden;
  padding-bottom: 0.08em;
}

.hero__line-inner {
  display: block;
  transform: translateY(110%);
  animation: lineUp 1s var(--ease) forwards;
}

.hero__line:nth-child(1) .hero__line-inner {
  animation-delay: 0.2s;
}

.hero__line:nth-child(2) .hero__line-inner {
  animation-delay: 0.36s;
}

.hero__line:nth-child(3) .hero__line-inner {
  animation-delay: 0.52s;
}

.hero__line--accent {
  overflow: hidden;
  padding-bottom: 0.2em;
}

.hero__neon {
  display: inline-block;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: clamp(1px, 0.14vw, 2px) var(--signal);
  paint-order: stroke fill;
  animation: neonFlicker 4.2s linear infinite;
  filter:
    drop-shadow(0 0 2px rgba(212, 255, 58, 0.95))
    drop-shadow(0 0 10px rgba(212, 255, 58, 0.75))
    drop-shadow(0 0 24px rgba(212, 255, 58, 0.5))
    drop-shadow(0 0 48px rgba(212, 255, 58, 0.28));
}

@keyframes neonFlicker {
  0%,
  18%,
  22%,
  24%,
  53%,
  57%,
  100% {
    -webkit-text-stroke-color: var(--signal);
    filter:
      drop-shadow(0 0 2px rgba(212, 255, 58, 0.95))
      drop-shadow(0 0 10px rgba(212, 255, 58, 0.75))
      drop-shadow(0 0 24px rgba(212, 255, 58, 0.5))
      drop-shadow(0 0 48px rgba(212, 255, 58, 0.28));
  }

  19%,
  23%,
  54%,
  56% {
    -webkit-text-stroke-color: rgba(212, 255, 58, 0.4);
    filter:
      drop-shadow(0 0 1px rgba(212, 255, 58, 0.35))
      drop-shadow(0 0 6px rgba(212, 255, 58, 0.2));
  }

  20%,
  55% {
    -webkit-text-stroke-color: rgba(212, 255, 58, 0.8);
    filter:
      drop-shadow(0 0 3px rgba(212, 255, 58, 0.8))
      drop-shadow(0 0 14px rgba(212, 255, 58, 0.55))
      drop-shadow(0 0 30px rgba(212, 255, 58, 0.3));
  }
}

@keyframes lineUp {
  to {
    transform: translateY(0);
  }
}

.hero__meta {
  display: grid;
  gap: 1.5rem;
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  max-width: 38rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(243, 241, 236, 0.18);
  opacity: 0;
  transform: translateY(24px);
  animation: riseIn 0.9s var(--ease) 0.75s forwards;
}

.hero__lede {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: clamp(0.72rem, 1.35vw, 0.88rem);
  line-height: 1.55;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.62);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: clamp(4.5rem, 10vw, 6rem);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.55);
}

.hero__scroll i {
  width: 1px;
  height: 3rem;
  background: linear-gradient(to bottom, var(--signal), transparent);
  animation: scrollPulse 1.8s ease-in-out infinite;
  transform-origin: top;
}

@keyframes scrollPulse {
  0%,
  100% {
    transform: scaleY(0.45);
    opacity: 0.4;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

.hero__dots {
  position: absolute;
  left: var(--pad);
  bottom: clamp(4.5rem, 10vw, 6rem);
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 4;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__wave-svg {
  display: block;
  width: 100%;
  min-width: 100%;
  height: clamp(3.5rem, 8vw, 5.5rem);
}

.hero__wave-layer {
  transform-origin: center bottom;
}

.hero__wave-layer--back {
  animation: makoWaveDrift 14s ease-in-out infinite alternate;
}

.hero__wave-layer--mid {
  animation: makoWaveDrift 10s ease-in-out infinite alternate-reverse;
}

.hero__wave-layer--front {
  animation: makoWaveDrift 18s ease-in-out infinite alternate;
  animation-delay: -4s;
}

@keyframes makoWaveDrift {
  0% {
    transform: scaleY(1);
  }
  100% {
    transform: scaleY(1.05);
  }
}

.hero__dot-btn {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 241, 236, 0.35);
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.hero__dot-btn.is-active {
  background: var(--signal);
  box-shadow: 0 0 12px var(--glow);
  transform: scale(1.2);
}

@media (min-width: 900px) {
  .hero__meta {
    grid-template-columns: 1.3fr auto;
    align-items: end;
    max-width: 52rem;
    gap: 2rem;
  }
}

@media (max-width: 600px) {
  .hero__lede {
    letter-spacing: 0.14em;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero__line-inner {
    transform: none;
    animation: none;
  }
}

/* —— Shared sections —— */
.section-head {
  max-width: 40rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
}

.section-head--light {
  color: #fff;
}

.section-head--light .eyebrow {
  color: var(--signal);
}

.section-head--light .section-copy,
.section-head--light h2 {
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a8640;
}

h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.9rem, 4.5vw, 3.1rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.section-copy {
  margin: 0;
  color: var(--mute);
  font-size: 1.05rem;
}

.nav a[aria-current="page"] {
  color: var(--signal);
}

/* —— Portfolio page —— */
.portfolio-page {
  background: var(--ink);
}

.page-hero {
  padding: calc(var(--header-h) + 3rem) var(--pad) 3rem;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212, 255, 58, 0.1), transparent 55%);
  pointer-events: none;
}

.page-hero__inner {
  position: relative;
  max-width: 44rem;
}

.page-hero .eyebrow {
  color: var(--signal);
}

.page-hero h1 {
  margin: 0 0 1.25rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5.5vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.page-hero__copy {
  margin: 0 0 1.75rem;
  color: rgba(243, 241, 236, 0.72);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 38rem;
}

.portfolio-gallery {
  padding: 0;
  background: var(--ink);
}

.portfolio-grid {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.portfolio-grid .service__copy {
  padding: 0.85rem;
}

.portfolio-grid .service h3 {
  font-size: clamp(0.72rem, 1.4vw, 0.95rem);
}

.portfolio-grid .service p {
  display: none;
}

.portfolio-cta {
  padding: clamp(3rem, 8vw, 5rem) var(--pad);
  background: var(--paper);
}

.portfolio-cta__inner {
  max-width: var(--max);
  margin: 0 auto;
  text-align: center;
}

.portfolio-cta__inner p {
  margin: 0 0 1.5rem;
  color: var(--mute);
  font-size: 1.05rem;
}

.work .section-head .btn {
  margin-top: 0.5rem;
}

.page-hero--compact {
  padding-bottom: 2rem;
}

.page-hero--compact h1 {
  font-size: clamp(2.2rem, 5vw, 3rem);
}

/* —— Project detail page —— */
.project-page {
  background: var(--ink);
}

.service--link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.service--link:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: -2px;
}

.project-hero {
  padding: calc(var(--header-h) + 3rem) var(--pad) clamp(2.5rem, 6vw, 3.5rem);
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.project-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212, 255, 58, 0.1), transparent 55%);
  pointer-events: none;
}

.project-hero__inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

.project-back {
  display: inline-block;
  margin-bottom: 1.25rem;
  color: rgba(243, 241, 236, 0.62);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.project-back:hover {
  color: var(--signal);
}

.project-hero .eyebrow {
  color: var(--signal);
}

.project-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 1.25rem;
  color: #fff;
}

.project-hero__copy {
  margin: 0 0 1.75rem;
  color: rgba(243, 241, 236, 0.72);
  font-size: 1.08rem;
  line-height: 1.65;
  max-width: 58ch;
}

.project-gallery {
  padding: 0 var(--pad) clamp(3rem, 8vw, 5rem);
  background: var(--ink);
}

.project-gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: none;
  margin: 0 auto;
}

.project-gallery__item {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #111;
}

.project-gallery__item--hero {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.project-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease);
}

.project-gallery__item:hover img {
  transform: scale(1.03);
}

.project-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.project-nav__link {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: clamp(1.5rem, 4vw, 2.25rem) var(--pad);
  color: inherit;
  text-decoration: none;
  border-right: 1px solid var(--line);
  transition: background 0.25s;
}

.project-nav__link--next {
  border-right: 0;
  text-align: right;
  align-items: flex-end;
}

.project-nav__link span {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.project-nav__link strong {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  font-weight: 700;
}

.project-nav__link:hover {
  background: rgba(10, 10, 10, 0.04);
}

@media (max-width: 640px) {
  .project-gallery__grid {
    grid-template-columns: 1fr;
  }

  .project-nav {
    grid-template-columns: 1fr;
  }

  .project-nav__link {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
    align-items: flex-start;
  }

  .project-nav__link--next {
    border-bottom: 0;
    text-align: left;
    align-items: flex-start;
  }
}

/* —— Contact page —— */
.contact-page {
  background: var(--paper);
}

/* —— Blog page —— */
.blog-page {
  background: var(--paper);
}

.blog-hero {
  padding-bottom: clamp(5rem, 12vw, 7rem);
}

.blog-hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  z-index: 2;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  overflow: hidden;
}

.blog-hero__wave .hero__wave-svg {
  display: block;
  width: 100%;
  height: clamp(3rem, 7vw, 4.5rem);
}

.blog-main {
  padding: clamp(2.5rem, 6vw, 4rem) var(--pad) clamp(3rem, 8vw, 5rem);
  max-width: var(--max);
  margin: 0 auto;
}

.blog-list__head {
  margin: clamp(2.5rem, 6vw, 4rem) 0 clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(2rem, 5vw, 3rem);
  border-top: 1px solid var(--line);
}

.blog-list__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.05;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.25rem, 3vw, 1.75rem);
}

.blog-card {
  background: #fff;
  border: 1px solid var(--line);
  overflow: hidden;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.blog-card:hover {
  border-color: rgba(10, 10, 10, 0.2);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(10, 10, 10, 0.08);
}

.blog-card__link {
  display: grid;
  color: inherit;
  text-decoration: none;
  height: 100%;
}

.blog-card__media {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--ink);
}

.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.blog-card:hover .blog-card__media img {
  transform: scale(1.05);
}

.blog-card__body {
  padding: clamp(1.25rem, 3vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  flex: 1;
}

.blog-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.blog-card__tag {
  display: inline-block;
  padding: 0.28rem 0.55rem;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(212, 255, 58, 0.35);
  color: var(--ink);
}

.blog-card__meta {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

.blog-card h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  text-transform: none;
}

.blog-card__body p {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.6;
  flex: 1;
}

.blog-card__more {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--signal);
  padding-bottom: 0.15rem;
  transition: color 0.25s;
  align-self: flex-start;
}

.blog-card:hover .blog-card__more {
  color: #5a5a10;
}

.blog-card--featured {
  border-color: rgba(10, 10, 10, 0.14);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.07);
}

.blog-card--featured .blog-card__link {
  grid-template-columns: 1fr;
}

.blog-card--featured .blog-card__media {
  aspect-ratio: 16 / 9;
}

.blog-card--featured h2 {
  font-size: clamp(1.35rem, 3vw, 2rem);
  max-width: 28ch;
}

.blog-card--featured .blog-card__body {
  padding: clamp(1.5rem, 4vw, 2.25rem);
  gap: 0.75rem;
}

.blog-cta {
  padding: clamp(3.5rem, 9vw, 6rem) var(--pad);
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.blog-cta__inner {
  max-width: 36rem;
  margin: 0 auto;
}

.blog-cta__inner .eyebrow {
  color: var(--signal);
}

.blog-cta__inner h2 {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
  line-height: 1.02;
}

.blog-cta__inner p {
  margin: 0 0 1.5rem;
  color: rgba(243, 241, 236, 0.72);
  font-size: 1.05rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .blog-card--featured .blog-card__link {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .blog-card--featured .blog-card__media {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .blog-card:not(.blog-card--featured) .blog-card__link {
    grid-template-rows: auto 1fr;
  }
}

@media (min-width: 1100px) {
  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-card--featured .blog-card__link {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

/* —— Services —— */
.services {
  padding: clamp(4rem, 10vw, 6rem) 0 0;
  background: var(--paper);
  position: relative;
}

.services .section-head {
  padding: 0 var(--pad);
  margin-left: auto;
  margin-right: auto;
  max-width: var(--max);
}

.services::before,
.services::after {
  display: none;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  width: 100%;
  margin: 0;
  max-width: none;
}

.service {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #0a0a0a;
  padding: 0;
  border: 0;
  color: #fff;
}

.service > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.service::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.15) 0%,
    rgba(0, 0, 0, 0.35) 40%,
    rgba(0, 0, 0, 0.88) 100%
  );
  z-index: 1;
  transition: background 0.35s var(--ease);
}

.service:hover > img {
  transform: scale(1.06);
}

.service:hover::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.45) 35%,
    rgba(0, 0, 0, 0.92) 100%
  );
}

.service__copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
}

.service h3 {
  margin: 0;
  font-family: var(--font-hero);
  font-weight: 700;
  font-size: clamp(0.78rem, 1.7vw, 1.05rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.15;
  color: #fff;
}

.service p {
  margin: 0;
  color: rgba(243, 241, 236, 0.72);
  font-size: clamp(0.72rem, 1.2vw, 0.85rem);
  line-height: 1.4;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease), opacity 0.35s var(--ease), margin 0.35s;
}

.service:hover p,
.service:focus-within p {
  max-height: 12rem;
  opacity: 1;
  margin-top: 0.15rem;
}

@media (max-width: 767px) {
  .services .service p {
    display: none;
  }
}

.service--solid {
  background: #111;
}

.service--solid:nth-child(odd) {
  background: #0d0d0d;
}

.service--solid:nth-child(even) {
  background: #161616;
}

.service--solid::after {
  background: linear-gradient(
    180deg,
    transparent 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.service--solid .service__copy {
  inset: 0;
  padding: 1.1rem;
  justify-content: flex-end;
}

.service--solid p {
  max-height: none;
  opacity: 0.7;
}

/* —— Work —— */
.work {
  padding: clamp(4rem, 10vw, 7rem) 0 0;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: visible;
}

.work__fin {
  position: absolute;
  top: -3.35rem;
  right: clamp(1.25rem, 9vw, 7rem);
  z-index: 10;
  display: block;
  width: clamp(5.5rem, 14vw, 10rem);
  aspect-ratio: 220 / 150;
  --fin-shift: 1.15rem;
  transform: translateX(0) scaleX(1);
  transform-origin: center center;
  animation: finSwim 7.5s ease-in-out infinite;
  background: var(--ink);
  opacity: 1;
  -webkit-mask: url("assets/mako-fin.png") center / contain no-repeat;
  mask: url("assets/mako-fin.png") center / contain no-repeat;
  pointer-events: none;
  user-select: none;
}

@keyframes finSwim {
  0%,
  100% {
    transform: translateX(0) scaleX(1);
  }

  16% {
    transform: translateX(calc(var(--fin-shift) * -1)) scaleX(1);
  }

  26% {
    transform: translateX(calc(var(--fin-shift) * -1)) scaleX(1);
  }

  30% {
    transform: translateX(calc(var(--fin-shift) * -1)) scaleX(-1);
  }

  48% {
    transform: translateX(var(--fin-shift)) scaleX(-1);
  }

  58% {
    transform: translateX(var(--fin-shift)) scaleX(-1);
  }

  62% {
    transform: translateX(var(--fin-shift)) scaleX(1);
  }

  80% {
    transform: translateX(0) scaleX(1);
  }
}

.work .section-head {
  padding: 0 var(--pad);
  margin-left: auto;
  margin-right: auto;
  max-width: none;
  width: min(100%, var(--max));
}

.work::before {
  content: "";
  position: absolute;
  inset: auto 0 -20% 40%;
  height: 50%;
  background: radial-gradient(circle, rgba(212, 255, 58, 0.12), transparent 60%);
  pointer-events: none;
}

.work-showcase {
  display: grid;
  gap: 0.35rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(0.35rem, 1vw, 0.5rem) clamp(0.35rem, 1vw, 0.5rem);
}

.work-shot {
  margin: 0;
  position: relative;
  overflow: hidden;
  background: #111;
}

.work-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 16rem;
  transition: transform 0.9s var(--ease), filter 0.5s;
  filter: saturate(1.05) contrast(1.05);
}

.work-shot:hover img {
  transform: scale(1.04);
}

.work-shot figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem 1rem 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: rgba(243, 241, 236, 0.9);
}

.work-shot--hero {
  grid-column: 1 / -1;
}

.work-shot--hero img {
  min-height: clamp(18rem, 55vw, 32rem);
}

/* —— Sign Fitters Directory strip —— */
.guild-strip {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #2a1416;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.guild-strip__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.guild-strip__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: 55% 45%;
  transform: none;
  opacity: 0.62;
  filter: saturate(0.9) contrast(1.05);
}

.guild-strip__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(196, 39, 45, 0.52) 0%, rgba(120, 28, 32, 0.48) 50%, rgba(40, 18, 20, 0.62) 100%),
    radial-gradient(ellipse 60% 90% at 88% 50%, rgba(255, 255, 255, 0.06), transparent 58%);
}

.guild-strip__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: clamp(3.5rem, 8vw, 5rem) var(--pad);
  max-width: var(--max);
  margin: 0 auto;
}

.guild-strip__copy {
  max-width: 40rem;
}

.guild-strip__copy .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.guild-strip__copy h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.guild-strip__accent {
  color: #fff;
  text-shadow: 0 0 28px rgba(255, 255, 255, 0.18);
}

.guild-strip__lede {
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 42ch;
}

.guild-strip__badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  justify-self: start;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(8px);
  text-align: center;
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.guild-strip__badge:hover {
  border-color: rgba(255, 255, 255, 0.55);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.22);
}

.guild-strip__badge img {
  width: clamp(6.5rem, 14vw, 9rem);
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
}

.guild-strip__badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
  max-width: 14ch;
  line-height: 1.35;
}

.guild-strip__badge:hover .guild-strip__badge-label {
  color: #fff;
}

@media (max-width: 640px) {
  .guild-strip__bg img {
    object-position: 40% 50%;
  }
}

/* —— About —— */
.about {
  padding: clamp(4rem, 10vw, 7rem) var(--pad);
  position: relative;
  overflow: visible;
  background:
    linear-gradient(135deg, #f7f5f0 0%, #ebe6db 50%, #f0eee6 100%);
}

.about::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(
      135deg,
      rgba(247, 245, 240, 0.94) 0%,
      rgba(235, 230, 219, 0.92) 45%,
      rgba(240, 238, 230, 0.96) 100%
    ),
    url("assets/manchester-aerial.png") center 35% / cover no-repeat;
  filter: saturate(0.4) contrast(0.88);
  opacity: 0.65;
}

.about__grid,
.about__prose,
.about__points--below {
  position: relative;
  z-index: 1;
}

.about__grid {
  display: grid;
  gap: 2.5rem;
  max-width: var(--max);
  margin: 0 auto;
  align-items: start;
}

.about__copy p {
  color: var(--mute);
}

.about__lead {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  font-weight: 500;
}

.about__prose {
  max-width: var(--max);
  margin: clamp(2.5rem, 5vw, 4rem) auto 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
}

.about__prose p {
  margin: 0 0 1.25rem;
  color: var(--mute);
  font-size: 0.98rem;
  line-height: 1.72;
}

.about__prose-footer {
  margin-top: clamp(1rem, 2.5vw, 1.75rem);
  padding-top: clamp(1rem, 2.5vw, 1.75rem);
  border-top: 1px solid var(--line);
}

.about__prose-footer p {
  font-weight: 500;
  color: var(--ink);
  max-width: none;
}

.about__prose-footer .btn {
  margin-top: 1.25rem;
}

.about__points {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.about__points--below {
  max-width: var(--max);
  margin: clamp(2rem, 4vw, 3rem) auto 0;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line);
}

.about__points li {
  position: relative;
  padding-left: 1.5rem;
  font-weight: 600;
}

.about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.65rem;
  height: 0.65rem;
  background: var(--signal);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--glow);
}

.about__points a {
  color: var(--ink);
  border-bottom: 1px solid rgba(10, 10, 10, 0.25);
  transition: color 0.25s, border-color 0.25s;
}

.about__points a:hover {
  color: #5a5a10;
  border-bottom-color: var(--signal);
}

.quote {
  background: var(--ink);
  color: #fff;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative;
  display: flex;
  flex-direction: column;
}

.quote::before {
  content: "“";
  position: absolute;
  top: 0.4rem;
  left: 1rem;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--signal);
  opacity: 0.9;
  pointer-events: none;
}

.quote__viewport {
  position: relative;
  min-height: clamp(11rem, 24vw, 14.5rem);
  flex: 1;
}

.quote__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s var(--ease), visibility 0.45s;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote__slide.is-active {
  opacity: 1;
  visibility: visible;
}

.quote blockquote {
  margin: 1.5rem 0 1.25rem;
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  line-height: 1.55;
  font-weight: 500;
}

.quote figcaption {
  margin: 0;
}

.quote cite {
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--signal);
  font-weight: 700;
}

.quote__dots {
  display: flex;
  gap: 0.45rem;
  margin-top: 1.25rem;
}

.quote__dot {
  width: 0.55rem;
  height: 0.55rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(243, 241, 236, 0.35);
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, box-shadow 0.25s;
}

.quote__dot.is-active {
  background: var(--signal);
  box-shadow: 0 0 12px var(--glow);
  transform: scale(1.2);
}

@media (prefers-reduced-motion: reduce) {
  .quote__slide {
    transition: none;
  }
}

/* —— Contact —— */
.contact {
  padding: 0;
  background: var(--paper);
}

.contact--page {
  padding: 0;
  background: var(--paper);
}

.contact__split {
  display: grid;
  grid-template-columns: 1fr;
  min-height: clamp(32rem, 70vh, 44rem);
}

.contact__map {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  min-height: clamp(18rem, 40vh, 28rem);
}

.contact__map-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  border: 0;
  background: var(--ink);
  filter: invert(1) hue-rotate(180deg) brightness(0.82) contrast(1.08) saturate(0.75);
  /* Decorative embed — must not capture pointer events or custom cursor freezes */
  pointer-events: none;
}

.contact__map-pin {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 360;
  width: 1.75rem;
  height: 1.75rem;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.contact__map-pin-dot {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 0.7rem;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--signal);
  box-shadow: 0 0 14px rgba(212, 255, 58, 0.85);
}

.contact__map-pin-pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 255, 58, 0.55);
  animation: mapPinPulse 2.8s ease-out infinite;
}

@keyframes mapPinPulse {
  0% {
    transform: scale(0.45);
    opacity: 0.9;
  }

  70% {
    transform: scale(1.35);
    opacity: 0;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

.contact__map::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 350;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 50%, rgba(212, 255, 58, 0.14), transparent 42%),
    linear-gradient(to top, rgba(10, 10, 10, 0.55) 0%, transparent 38%);
}

.contact__map-copy {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 400;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: linear-gradient(to top, rgba(10, 10, 10, 0.92) 0%, rgba(10, 10, 10, 0.55) 55%, transparent 100%);
  color: #fff;
  pointer-events: none;
}

.contact__map-copy .eyebrow {
  color: var(--signal);
}

.contact__map-copy h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.contact__map-copy p {
  margin: 0;
  max-width: 28ch;
  color: rgba(243, 241, 236, 0.72);
  font-size: 0.95rem;
  line-height: 1.55;
}

.contact__map-attrib {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  color: rgba(243, 241, 236, 0.4);
  pointer-events: auto;
}

.contact__map-attrib:hover {
  color: var(--signal);
}

.contact__form-side {
  display: flex;
  align-items: stretch;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  background: var(--paper);
}

.contact__panel {
  width: 100%;
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  display: grid;
  gap: 1rem;
  align-content: start;
}

.contact__panel .eyebrow {
  color: var(--mute);
  margin: 0;
}

.contact__panel h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  max-width: 22ch;
}

.contact__message {
  margin: 0;
  color: var(--mute);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 38ch;
}

.contact__footer {
  display: grid;
  gap: 1rem;
  padding-top: 0.5rem;
  border-top: 1px dashed rgba(10, 10, 10, 0.18);
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2rem;
}

.contact__details a {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: color 0.25s;
}

.contact__details a:hover {
  color: #5a6210;
}

.contact__details span {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.socials {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.socials a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--mute);
  border-bottom: 1px solid transparent;
  transition: color 0.25s, border-color 0.25s;
}

.socials a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}

.contact__form {
  display: grid;
  gap: 0.85rem;
}

.field-row {
  display: grid;
  gap: 0.85rem;
}

.contact__form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mute);
}

.contact__form input,
.contact__form textarea {
  width: 100%;
  padding: 0.65rem 0;
  border: 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.22);
  background: transparent;
  color: var(--ink);
  border-radius: 0;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  resize: vertical;
}

.contact__form input:focus,
.contact__form textarea:focus {
  border-bottom-color: var(--ink);
  background: rgba(212, 255, 58, 0.08);
}

.contact__form input::placeholder,
.contact__form textarea::placeholder {
  color: rgba(10, 10, 10, 0.35);
  font-style: italic;
}

.contact__send {
  justify-self: start;
  margin-top: 0.25rem;
  box-shadow: 0 6px 18px rgba(212, 255, 58, 0.25);
}

.form-note {
  margin: 0;
  min-height: 1.25rem;
  font-size: 0.9rem;
  color: #5a6210;
}

/* —— Footer —— */
.site-footer {
  background: #050505;
  color: rgba(243, 241, 236, 0.65);
  padding: 2.5rem var(--pad) 1.75rem;
}

.footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--line-light);
}

.brand--footer {
  color: #fff;
}

.membership {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.85rem 0.55rem 0.55rem;
  border: 1px solid rgba(243, 241, 236, 0.18);
  border-radius: 0.2rem;
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
  max-width: 20rem;
}

.membership:hover {
  border-color: var(--signal);
  background: rgba(212, 255, 58, 0.06);
  transform: translateY(-2px);
}

.membership__badge {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.15rem;
  flex-shrink: 0;
}

.membership__text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.membership__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(243, 241, 236, 0.45);
}

.membership__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
  color: #fff;
  line-height: 1.25;
}

.membership:hover .membership__name {
  color: var(--signal);
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding-top: 1.25rem;
  font-size: 0.85rem;
}

.footer__bottom p {
  margin: 0;
}

.credit {
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: rgba(243, 241, 236, 0.5);
}

.credit strong {
  color: var(--signal);
  font-weight: 800;
  letter-spacing: 0.12em;
}

/* —— Reveal —— */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

/* —— Responsive —— */
@media (min-width: 720px) {
  .nav-toggle {
    display: none;
  }

  .nav {
    display: flex;
  }

  .service-grid:not(.portfolio-grid) {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .work-showcase {
    grid-template-columns: 1.2fr 1fr;
  }

  .work-shot--wide {
    grid-column: span 1;
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 980px) {
  .service-grid:not(.portfolio-grid) {
    grid-template-columns: repeat(5, 1fr);
  }

  .about__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3.5rem;
  }

  .about__prose {
    columns: 2;
    column-gap: 3rem;
  }

  .about__prose-footer {
    break-inside: avoid;
    column-span: all;
  }

  .about__points--below {
    grid-template-columns: 1fr 1fr;
    column-gap: 2.5rem;
  }

  .work__fin {
    top: -4.25rem;
    width: clamp(7rem, 11vw, 10.5rem);
    --fin-shift: 1.6rem;
  }

  .guild-strip__inner {
    grid-template-columns: 1fr auto;
    gap: 3rem;
  }

  .guild-strip__badge {
    justify-self: end;
  }

  .contact__split {
    grid-template-columns: 1fr 1fr;
    min-height: clamp(36rem, 75vh, 48rem);
  }

  .contact__map {
    min-height: auto;
  }

  .contact__form-side {
    padding: clamp(2rem, 4vw, 3rem);
  }

  .field-row {
    grid-template-columns: 1fr 1fr;
  }

  .work-showcase {
    grid-template-columns: 1.4fr 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .work-shot--hero {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .work-shot--hero img {
    min-height: 100%;
    height: 100%;
  }

  .work-shot--wide {
    grid-column: span 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .hero__media,
  .hero__content {
    transform: none !important;
    opacity: 1 !important;
  }

  .hero__wave-layer {
    animation: none !important;
  }

  .hero__img {
    transform: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
